@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');

body {
	line-height: 1.5;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	opacity: 0.9;
}

body.hidden-scrolling {
	overflow-y: hidden;
	overflow-x: hidden; 
}

html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	box-sizing: border-box;
}

.containers {
	max-width: 3430px;
	margin: auto;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

/*header*/
.header {
	position: relative;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
	/* margin-bottom: 15px; */
}

.sticky {
	position: fixed;
	top: 0px;
	width: 100%;
	margin-bottom: 10px;
}

.header-main {
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* padding: 10px 0; */
	border-radius: 4px;
}

.header .logo {
	padding: 0 15px;
}

.header .logo a {
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}

.header .nav-menu {
	padding: 0 15px;
}

.header .menu>.menu-item {
	display: inline-block;
	margin-left: 30px;
	position: relative;
}

.header .menu>.menu-item>a {
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color: #140B5C;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}

.header .menu>.menu-item>a .plus {
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left: 5px;
	pointer-events: none;
}

.header .menu>.menu-item>a .plus:before,
.header .menu>.menu-item>a .plus:after {
	content: '';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top: 50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.header .menu>.menu-item:hover>a .plus:before,
.header .menu>.menu-item:hover>a .plus:after {
	background-color: #ff6100;
}

.header .menu>.menu-item>a .plus:after {
	transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover,
.header .menu>.menu-item:hover>a {
	color: #ff6100;
}

.header .menu>.menu-item>.sub-menu {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 220px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #ff6100;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

@media(min-width: 992px) {
	.header .menu>.menu-item-has-children:hover>.sub-menu {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.header .menu>.menu-item-has-children:hover>a .plus:after {
		transform: translate(-50%, -50%) rotate(0deg);
	}
}

.header .menu>.menu-item>.sub-menu>.menu-item {
	display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}

.header .open-nav-menu {
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.header .open-nav-menu span {
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
	position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}

.header .open-nav-menu span:before {
	top: -7px;
}

.header .open-nav-menu span:after {
	top: 7px;
}

.header .close-nav-menu {
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin: 0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}

.header .close-nav-menu img {
	width: 16px;
}

.header .menu-overlay {
	position: fixed;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}


/* responsive */

@media(max-width: 991px) {
	.header .menu-overlay.active {
		visibility: visible;
		opacity: 1;
	}

	.header .nav-menu {
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top: 0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}

	.header .nav-menu.open {
		visibility: visible;
		right: 0px;
	}

	.header .menu>.menu-item {
		display: block;
		margin: 0;
	}

	.header .menu>.menu-item-has-children>a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header .menu>.menu-item>a {
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}

	.header .menu>.menu-item:first-child>a {
		border-top: 1px solid #333333;
	}

	.header .menu>.menu-item>a .plus:before,
	.header .menu>.menu-item>a .plus:after {
		background-color: #ffffff;
	}

	.header .menu>.menu-item-has-children.active>a .plus:after {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	.header .menu>.menu-item>.sub-menu {
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border: none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top: auto;
		max-height: 0;
		overflow: hidden;
	}

	.header .menu>.menu-item>.sub-menu>.menu-item>a {
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}

	.header .close-nav-menu,
	.header .open-nav-menu {
		display: flex;
	}
}

.signin-btn {
	background-color: #ff6100;
	color: #fff;
	padding: 1px 10px;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
	border: 2px solid transparent;
}

.signin-btn:hover {
	color: #ff6100;
	background-color: #fff;
	border: 2px solid #ff6100;
}

/* header ends */

/* Home Section */
.banner {
	margin-top: 50px;
	height: 700px;
	display: grid;
	/* place-items: center; */
	/* text-align: center; */
	background-image: url("img/2.jpg");
	background-size: cover;
	background-position: center center;
	position: relative;
	z-index: 1;
}

.banner img {
	height: 643px;
	width: 100%;
}

.responsive-img {
	max-width: auto;
	height: auto;
}


.first-txt {
	color: #140B5C;
	position: absolute;
	top: 30px;
	left: 70px;
	font-size: 3rem;
}



/* Home section ends  */

/* Our Services */
.services h1 {

	color: #140B5C;
	font-weight: 500;
	font-size: 4rem;
	font-family: 'Trocchi', serif;
	text-align: center;
}

.img-area {

	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100vh;
	padding: 20px;
}

.wrapper2 {
	max-width: 1280px;
	margin: 0 auto;
	padding: 50px 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	grid-auto-rows: 155px;
	grid-auto-flow: dense;
	grid-gap: 70px;
	width: 100%;
}

.single-box {
	position: relative;
	text-align: center;

}

.single-box h3 {
	position: absolute;
	bottom: -55px;
	width: 100%;
	height: 45px;
	line-height: 45px;
	color: #fff;
	background: #140B5C;
	text-align: center;
	border-radius: 10px;
	font-family: 'Trocchi', serif;

}

.single-box a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.single-box img {
	width: auto;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s;
	user-select: none;
}

.single-box a:hover img {
	transform: rotate(5deg) scale(1.4);
}

@media (max-width: 768px) {
	.img-area {
		padding:0;
	}

	.wrapper2 {
		max-width: 100%;
		padding: 0;
	}
}

/* Our services ends  */
/* Country-cards */
.c12 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: #ffff;
	margin: 0;
	/* padding-top: 70px; */
}

.c12 h1 {
	color: #140B5C;
	font-weight: 500;
	font-size: 4rem;
	font-family: 'Trocchi', serif;

}

.heading_layer {
	padding-left: 400px;
	color: #140B5C;
}

.country {
	display: flex;
	position: relative;

}

.card {
	position: relative;
	width: 400px;
	height: 250px;
	margin: 20px;
}

.card .face {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 10px;
	overflow: hidden;
	transition: .5s;

}

.card.front {
	transform: perspective(600px) rotateY(0deg);
	box-shadow: 0 Spx 10px O#000;

}

.card.front img {

	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.card .front h3 {
	position: absolute;
	bottom: -10px;
	width: 100%;
	height: 45px;
	line-height: 45px;
	color: #fff;
	background: #140B5C;
	text-align: center;
}

.card .back {
	transform: perspective(600px)rotateY(180deg);
	background: rgb(3, 35, 54);
	padding: 15px;
	color: #f3f3f3;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	box-shadow: 0 5px 10px #000;
}

.card .back .link {
	border-top: solid 1px #f3f3f3;
	height: 50px;
	line-height: 50px;

}

.card .back .link a {
	color: #f3f3f3;
}

.card .back h3 {
	font-size: 30px;
	margin-top: 20px;
	letter-spacing: 2px;
}

.card .back p {
	letter-spacing: 1px;
}

.card:hover .front {
	transform: perspective(600px) rotateY(180deg);
}

.card:hover .back {
	transform: perspective(600px) rotateY(360deg);
}

@media screen and (max-width: 768px) {
	.c12 {
		flex-direction: column;
    display: block;
    position: inherit;
    margin-top: 80px;
	}

	.c12 h1 {
		display: block;
	}

	.heading_layer {
		padding-left: inherit;

	}

	.card {

		margin: 10px;
		display: flex;
		position: relative;

	}

	.country {
		flex-direction: column;
		align-items: center;
		display: flex;
		position: relative;
		width: 415px;
	}

}

.country {
	position: relative;
	display: flex;

}

/* Country-cards ends */

/* Why Vaarush */
.wv {
	height: 100%;
	width: 100%;
	display: grid;
	place-items: center;
}

.series {
	display: flex;
	flex-wrap: wrap;
}

.series h1 {
	color: #140B5C;
	font-weight: 500;
	font-size: 4rem;
	font-family: 'Trocchi', serif;
}

.prop {
	width: 100%;
	padding: 0 1em 1em 1em;
	text-align: center;
	position: relative;
	display: flex;
}

.label {

	width: 100%;
	height: 100%;
	padding: 5em 4em;
	background: linear-gradient(#ffffff 50%, #ff6100 50%);
	background-size: 100% 200%;
	background-position: 0 2.5%;
	border-radius: 5px;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	transition: 0.5s;
}

.label h3 {
	font-size: 25px;
	font-weight: 600;
	color: #ff6100;
	margin: 1em 0;

}

.label p {
	color: #575a7b;
	font-size: 15px;
	line-height: 1.6;
	/* letter-spacing: 0.03em; */
	justify-content: center;

}

.icon-wrapper {
	background-color: #ff6100;
	position: relative;
	margin: auto;
	font-size: 30px;
	height: 2.5em;
	width: 2.5em;
	color: #ffffff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: 0.5s;
}

.label:hover {
	background-position: 0 100%;
}

.label:hover .icon-wrapper {
	background-color: #ffffff;
	color: #ff6100;
}

.label:hover h3 {
	color: #ffffff;
}

.label:hover p {
	color: #f0f0f0;
}

@media screen and (min-width: 768px) {
	.wv {
		padding: 0 2em;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.prop {
		flex: 0 50%;
		max-width: 50%;
	}

	.series {
		display: flex;
	}
}

@media screen and (min-width: 991px) {
	.wv {
		flex-wrap: wrap;
		padding: 1em 3em;
		flex-direction: column;

	}

	.series {
		display: flex;
	}

	.prop {
		display: flex;
		flex: 0 0 33.33%;
		max-width: 33.33%;
	}
}

/* Why Vaarush ends*/



/* Testimonials */
.testimonials {
	position: relative;

}

.testimonials h1 {
	text-align: center;
	color: #140B5C;
	font-weight: 500;
	font-size: 4rem;
	font-family: 'Trocchi', serif;
}

.swiper {

	width: 900px;
	height: 500px;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px;
}

.swiper-slide img {
	width: 300px;
	height: 100%;
	object-fit: cover;
}

.detail-bx {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin: 20px;
}

.quote-detail-bx {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.quote-icon-bx {
	width: 100%;
}

.quote-icon {
	font-size: 60px;
	color: #dfe4ea;
}

.bxs-quote-alt-right {
	float: right;
}

.name-detail {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;

}

.name {
	font-size: 32px;
	font-weight: 600;
	color: #ff6100;
}

.job {
	font-size: 24px;
	font-weight: 400;
	color: #333;
}

.swiper-button {
	width: 60px !important;
	height: 60px !important;
	background: #ff6100;
	transition: 0.2s;

}

.swiper-button:hover {
	background: rgba(0, 0, 0, 0.2);
}

.swiper-button::after,
.swiper-button::before {
	font-size: 20px;
	color: #fff;
}

.swiper-pagination-bullet {
	width: 20px !important;
	height: 20px !important;
	background-color: rgba(0, 0, 0, 0.8) !important;
}

.swiper-pagination-bullet-active {
	background-color: #ff6100 !important;
}

@media screen and (max-width:992px) {

	.swiper {
		width: 100vw;
		height: auto;
	}

	.swiper-slide {
		height: 100%;
		flex-direction: column;
		padding: 0 50px;
	}

	.swiper-slide img {
		height: auto;
	}

	.swiper-slide p {
		font-size: 12px;
	}

	.quote-icon {
		font-size: 24px;
	}

	.swiper-pagination-bullet {
		width: 10px !important;
		height: 10px !important;
	}

	.name-detail {
		margin-bottom: 20px;
	}

	.name-detail .name {
		font-size: 18px;
	}

	.name-detail .job {
		font-size: 16px;
	}

	.swiper-button {
		width: 40px !important;
		height: 40px !important;
	}

	.swiper-button::after,
	.swiper-button::before {
		font-size: 20px !important;
	}

}

/* Testimonials ends */

/* Contact us */
.wrapper1 {
	position: relative;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	background: #fff;
	padding: 0px 36px;
	border-radius: 8px;
	border: 2px solid #fff;
	margin: 70px;
}

.wrapper___container {
	display: flex;
	flex-direction: row;
	column-gap: 90px;
}

.wrapper___container .container__col {
	width: 50%;
	padding: 0px 20px;
}

.contact__title {
	padding: 10px 0px;
}

.contact__title h3 {
	font-size: 3rem;
	font-weight: 700;
	/* margin-bottom: 6px; */
	color: #ff6100;
	font-family: 'Trocchi', serif;
}

.contact__title p {
	font-size: 3rem;
	font-weight: 600;
	font-family: 'Bree Serif', serif;
	color: #140B5C;
}



.xm__screen {
	display: none;
}

.xs__screen {
	display: block;
}

.contact__form {
	padding: 5px 0px;
	display: block;
}

.contact__form__item {
	margin: 10px 0px;
}

.contact__form__item input,
.contact__form__item textarea {
	width: 100%;
	font-family: inherit;
	font-size: 16px;
	min-height: 42px;
	border: 1px solid #ff6200a1;
	border-radius: 4px;
	padding: 6px 10px;
}

.contact__form__item input:focus,
.contact__form__item textarea:focus {
	outline: none;
	border: 2px solid #ff6200a1;
}

.contact__form__item label {
	display: inline;
	padding: 2px 0px;
	font-size: 15px;
	font-weight: 500;
}

.contact__form__submit {
	width: 100%;
	padding: 8px 12px;
	background: #ff6100;
	border: 2px solid #ff6200a1;
	border-radius: 4px;
	color: #fff;
	font-family: inherit;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 18px;
	cursor: pointer;
}

.contact__form__submit:hover {
	background: #fff;
	color: #ff6100;
	border: 2px solid #ff6100;
}

.Contact {
	width: auto;
	height: 500px;
}

.contact__info___list {
	display: flex;
	flex-direction: column;
}

.contact__info__list__items {
	display: flex;
	align-items: center;
	column-gap: 15px;
	margin: 13px 85px;
}

.contact__info__list__items i {
	align-items: flex-start;
	font-size: 24px;
	padding: 14px;
	background: #ff6200a1;
	border-radius: 100%;
	color: #ff6100;
}

.contact__info__list__items p {
	font-size: 15px;
}

.contact__info__list__items p a {
	text-decoration: none;
	color: #000;
}

/** Mobile Device **/

@media only screen and (max-width:540px) {
	body {
		height: auto;
	}

	.wrapper1 {
		width: 100%;
		/* padding: 20px 12px; */
		margin: 10px 0px;

	}

	.wrapper___container {
		display: flex;
		flex-direction: column-reverse;
	}

	.wrapper___container .container__col {
		width: 100%;
		padding: 0px 10px;
	}

	.xm__screen {
		display: block;
	}

	.xs__screen {
		display: none;
	}

	.Contact {
		display: none;
	}
}

/* Contact Us--End */

/* footer */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

footer {
	margin: 0 auto;
	padding: 0;
	background: #ff6100;
	position: relative;

}

footer::before {
	content: '';
	left: 0;
	top: 100px;
	height: 1px;
	width: 100%;
	background: #ff6100;
}

footer .content {
	/* max-width: 1250px; */
	margin: auto;
	padding: 15px 40px 10px 40px;
}

footer .content .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* margin-bottom: 40px; */
}

.content .top .logo-details {

	color: #140B5C;
	font-size: 30px;
}

.content .top .logo-details img {
	margin-bottom: 10px;
}

.content .top .media-icons {
	display: flex;
}

.content .top .media-icons a {
	height: 40px;
	width: 40px;
	margin: 0 8px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	color: #ffffff;
	font-size: 17px;
	text-decoration: none;
	transition: all 0.4s ease;
}

.top .media-icons a:nth-child(1) {
	background: #4267B2;
}

.top .media-icons a:nth-child(1):hover {
	color: #1DA1F2;
	background: #fff;
}

.top .media-icons a:nth-child(2) {
	background: #1DA1F2;
}

.top .media-icons a:nth-child(2):hover {
	color: #1DA1F2;
	background: #fff;
}

.top .media-icons a:nth-child(3) {
	background: #E1306C;
}

.top .media-icons a:nth-child(3):hover {
	color: #E1306C;
	background: #fff;
}

.top .media-icons a:nth-child(4) {
	background: #0077B5;
}

.top .media-icons a:nth-child(4):hover {
	color: #0077B5;
	background: #fff;
}

.top .media-icons a:nth-child(5) {
	background: #FF0000;
}

.top .media-icons a:nth-child(5):hover {
	color: #FF0000;
	background: #fff;
}
.top .media-icons a:nth-child(6) {
	background: #00ff2a;
}

.top .media-icons a:nth-child(6):hover {
	color: #00ff2a;
	background: #fff;
}

footer .content .link-boxes {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

footer .content .link-boxes .box {
	width: calc(100% / 5 - 10px);
}

.content .link-boxes .box .link_name {
	color: #ffffff;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
	position: relative;
}

.link-boxes .box .link_name::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 50px;
	background: #ffffff;
	;
}

.content .link-boxes .box li {
	margin: 6px 0;
	list-style: none;
}

.content .link-boxes .box li a {
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.4s ease
}

.content .link-boxes .box li a:hover {
	opacity: 1;
	text-decoration: wavy;
	text-decoration: double;
	color: #140B5C;
}

.content .link-boxes .input-box {
	margin-right: 55px;
}

.link-boxes .input-box input {
	height: 40px;
	width: calc(100% + 55px);
	outline: none;
	border: 2px solid #AFAFB6;
	background: #140B5C;
	border-radius: 4px;
	padding: 0 15px;
	font-size: 15px;
	color: #fff;
	margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
	color: #AFAFB6;
	font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
	background: #fff;
	color: #140B5C;
	border: none;
	font-size: 18px;
	font-weight: 500;
	margin: 4px 0;
	opacity: 0.8;
	cursor: pointer;
	transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
	opacity: 1;
}

footer .bottom-details {
	width: 100%;
	background: #ff6100;
	border-top: 1px solid #ffffff;
}

footer .bottom-details .bottom_text {
	max-width: 1250px;
	margin: auto;
	padding: 10px 0px;
	display: flex;
	justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
	font-size: 14px;
	font-weight: 300;
	color: #ffffff;
	opacity: 0.8;
	text-decoration: none;
}

.bottom-details .bottom_text a:hover {
	opacity: 1;
	text-decoration: underline;
}

.bottom-details .bottom_text a {
	margin-right: 10px;
}

@media (max-width: 991px) {
	body section {
	width: 96%;
	}
	footer .content .link-boxes {
		flex-wrap: wrap;
	}

	footer .content .link-boxes .input-box {
		width: 40%;
		margin-top: 10px;
	}
}

@media (max-width: 700px) {
	footer {
		position: relative;
	}

	.content .top .logo-details {
		font-size: 26px;
	}

	.content .top .media-icons a {
		height: 35px;
		width: 35px;
		font-size: 14px;
		line-height: 35px;
	}

	footer .content .link-boxes .box {
		width: calc(100% / 3 - 10px);
	}

	footer .content .link-boxes .input-box {
		width: 60%;
	}

	.bottom-details .bottom_text span,
	.bottom-details .bottom_text a {
		font-size: 12px;
	}
}

@media (max-width: 520px) {
	footer::before {
		top: 145px;
	}

	footer .content .top {
		flex-direction: column;
	}

	.content .top .media-icons {
		margin-top: 16px;
	}

	footer .content .link-boxes .box {
		width: calc(100% / 2 - 10px);
	}

	footer .content .link-boxes .input-box {
		width: 100%;
	}
}

/* footer :end */
.foot {
	position: fixed;
	left: 0;
	bottom: 0px;
	width: 100%;
	font-family: 'Bree Serif', serif;
	color: white;
	text-align: center;
	z-index: 999999;
}

.foot a {
	color: #fff;
}

.foot a:hover {
	color: #140B5C;
	text-decoration: none;
}

.column1 {
	float: left;
	width: 50%;
	background-color: #140B5C;
}

.column1:hover {
	background-color: orange;


}

.column2 {
	background-color: #140B5C;

}

.column2:hover {
	background-color: orange;


}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;

}

.vertical {
	border-left: 1px solid white;
	height: 200px;
	position: absolute;
	left: 50%;
}
@media(max-width: 520px) {
	.banner img {
		width: 100%;
		height: auto;
	}
	.banner {
		height: auto;
	}
	.first-txt {
        position: inherit;
        top: 0;
        left: 0;
    }
	.card {
		width: 100%;
    margin: 10px 0 !important;
	}
	.card img {
		width: 100%;
	}
	.prop {
		padding: 0;
	}
	.country {
		width: 100%;
	}
	.label {
		padding: 5rem 0;
	}
}