@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@700&family=Offside&display=swap');

*{
	padding: 0px;
	margin: 0px;
}

html{
	scroll-behavior: smooth;
}

p, h3, h4, h5, a, label{
	font-family: 'Inter', sans-serif;
}


h1, h2{
	font-family: 'Inter', sans-serif;
}



:root{
	--first-color:#E30822;
	--white-color:#fff;
	--black-color:#000;
	--text-color:#7C7C7C;
	--border-color:#CFCFCF;
	--light-gray:#ECF0F4;
	--very-light-green:#F2EDEB;
	--dark-blue:#162E40;
	--input-color:#EAEAEA;
	--light-color:#E9E9E9;
}

a:hover{
	text-decoration: none;
}
a{
	font-size: 15px;
	transition: 0.3s ease;
}

a:hover{
	color: var(--first-color)!important;
}


p{
	font-size: 15px;
}

ul li{
	list-style: none;
} 

.form-control{
	box-shadow: none!important;
}

section{
	padding: 90px 0px;
	position: relative;
	z-index: 11;
}
.container{
	max-width: 1260px!important;
}

ul{
	margin-bottom: 0px;
}


.first-color{
	color: var(--first-color);
}
.black-color{
	color: var(--black-color);
}

.btn:focus{
	box-shadow: none!important;
}
.text{
	color: var(--text-color);
}
.relative{
	position: relative;
}
.d-flex-common{
	display: flex;
	align-items: center;
	gap: 10px;
}
/*-----------Start-header-section-here--------*/
.header-section{
	background-color: var(--dark-blue);
	z-index: 99;
	position: relative;
	padding: 15px 0px;
}


.hamburger .line{
  width: 30px;
  margin-right: 10px;
  height: 2px;
  background-color: var(--first-color);
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}


#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}


.phone-box .items .box-phone i{
	width: 35px;
	height: 35px;
	background-color: var(--white-color);
	color: var(--first-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-media-icon a i{
	width: 35px;
	height: 35px;
	background-color: #565667a6;
	color: var(--white-color);
	border-radius: 100px;
	display: flex;
	transition: 0.3s ease;
	align-items: center;
	justify-content: center;
}

.social-media-icon a i:hover{
	background-color: var(--first-color);
	color: var(--white-color);
	transform: rotate(360deg);
}
.social-media-icon{
	display: flex;
	gap: 10px;
	justify-content: right;
}

.bottom-header-section{
	padding: 10px 15px;
	position: relative;
	overflow: hidden;
}
.fixed-header .bottom-header-section{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	background-color: var(--white-color);
	transition: 0.2s ease;
	border-bottom: 3px solid var(--first-color);
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	animation: header 1s 1 alternate;
	z-index: 999;
}

@keyframes header{
	0%{
		transform: translateY(-100%);
	}
	100%{
		transform: translateY(0%);
	}
}

.fixed-header .bottom-header-section .logo-header{
	margin-top: 0px;
	border-bottom: none;
}



.logo-box{
	padding-left: 14px;
	width: 80px;

}
.menu-list-top .items{
	position: relative;
}
.menu-list-top .items .link{
	color: var(--black-color);
	font-weight: 500;
	font-size: 14px;
}
.menu-list-top .items .link.active{
	color: var(--first-color);
}
.menu-list-top .items .link:before{
	content: '';
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transition: transform 0.5s;
  transform: scaleX(0);
  transform-origin: right;
  background-color: var(--first-color);

}
.menu-list-top .items .link.active:before,
.menu-list-top .items .link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-list-top {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
}
.common-btn .btn{
	background-color: var(--first-color);
	border-radius: 100px;
	padding: 12px 30px;
	font-size: 16px;
	color: var(--white-color);
}

.common-btn .btn:hover{
	background-color: var(--dark-blue);
	color: var(--white-color)!important;
}
.logo-bc-shape{
	position: absolute;
	left: -20px;
  top: -10px;
}
/*.logo-bc-shape img{
	height: 98px;
}*/
/*----------mega-menu-css---------*/


/*------------start-banner-section-here----------*/
.banner-section{
	overflow: hidden;
}
.common-bc-img{
	background-image: url(../img/banner-img/banner-bc.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.line-box-bottom{
	position: relative;
	display: inline-block;
}
.line-box-bottom:before{
	content: '';
	position: absolute;
	left: 0px;
	bottom: -9px;
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, #E30822 30.09%, rgba(217, 217, 217, 0.00) 102.35%);
}

.banner-heading{
	font-weight: 800;
	font-size: 60px;
	margin-top: 30px;
	margin-bottom: 20px;
}
.intro-section{
	background-image: url(../img/intro-bc-img.jpg);
	padding-bottom: 200px;
}


.owl-item.active .banner-content-box h4{
  animation: fadeInDownBig ease 1s;
}
.owl-item.active .banner-content-box .banner-heading{
  animation: fadeInLeftBig ease 2s;
}

.owl-item.active .banner-img-right{
  animation: fadeInUpBig ease 1s;
}

.owl-item.active .banner-content-box p,
.owl-item.active .banner-content-box .common-btn{
  animation: fadeInUpBig ease 3s;
}

.intro-box-wrapper{
	background-color: var(--white-color);
	padding: 9px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	min-height: 217px;
	transition: 0.3s ease;
	border: 3px solid transparent;
}
.intro-box-wrapper:hover{
	border-color: var(--first-color);
}
.intro-box-wrapper .icon-box{
	background-color: var(--light-gray);
	width: 120px;
	height: 100%;
	padding: 25px 10px;
	text-align: center;
	border-radius: 0px 10px 10px 0px;
}

.intro-box-wrapper{
	display: flex;
	align-items: center;
	gap: 20px;
}
.intro-box-wrapper .content-box h4{
	font-weight: 600;
}

.Skilled-wrapper-box{
	min-height: 200px;
	background-image: url(../img/Skilled-Visa-section-bc.jpg);
	border-radius: 200px;
	padding: 40px 30px;
	margin-top: -200px;
}

.Skilled-section .content-box h1{
 font-weight: 700;
 font-style: italic;
}
.white-btn .btn{
	background-color: var(--white-color);
	color: var(--black-color);
}

.mobile-menu .menu-innr-box .menu-list-top{
	flex-direction: column;
}
.bottom-header-section .mobile-menu .menu-innr-box{
	padding: 30px 0px;
}

/*--------------End-banner-section-here----------*/

/*----------Start-about-section-here----------*/
.main-heading{
	font-weight: 900;
	font-size: 47px;
}
.about-content .line-box-bottom:before{
	width: 50%;
}
.about-section .about-box-image .plane-box-img {
	position: absolute;
	top: -40px;
}
.about-section{
	overflow: hidden;
}
.about-box-image .Experience-box{
	width: 334px;
	height: 248px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	background-color: var(--white-color);
	padding: 20px;
	position: absolute;
	bottom: -20px;
	left: 0px;
}
.about-box-image .Experience-box .content-box{
	width: 100%;
	height: 100%;
	border: 13px solid var(--dark-blue);
	position: relative;
	padding: 30px 0px 0px 30px;
}
.about-box-image .Experience-box .content-box h1{
	font-weight: 900;
	font-size: 60px;
	font-style: italic;
}
.about-box-image .Experience-box .content-box img{
	position: absolute;
	right: 0px;
	bottom: 0px;
	height: 95%;
}
/*------------End-about-section-here-----------*/

/*-----------Start-service-section-here----------*/
.service-section{
	background-image: url(../img/services-img/visa-services-bc-img.jpg);
}
.service-box-wrapper{
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	padding-top: 40px;
}
.service-box-wrapper .service-inner-box{
	width: 100%;
	background-color: var(--white-color);
	transition: 0.3s ease;
	padding: 120px 20px 40px 20px;
	clip-path: polygon(0 14%, 100% 0, 100% 100%, 0% 100%);
	text-align: center;

}
.service-box-wrapper .service-inner-box:hover{
	box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
.service-box-wrapper .service-inner-box a h2{
	font-weight: 700;
	font-size: 25px;
	color: var(--black-color);
	transition: 0.3s ease;
}
.service-box-wrapper .service-inner-box .line{
	width: 100%;
	height: 4px;
	background-color: var(--light-gray);
	position: relative;
	transition: 0.3s ease;
	top: 10px;
}
.service-box-wrapper .service-inner-box .line:before{
  content: '';
  position: absolute;
  transform: translate(-50%,-50%);
  left: 50%;
  top: 14px;
  height: 22px;
  width: 23px;
  background-color: var(--light-gray);
  clip-path: polygon(100% 0, 0 0, 51% 47%);
  transition: 0.3s ease;
}
.cricle-btn a i{
	width: 40px;
	height: 40px;
	background-color: var(--dark-blue);
	color: var(--white-color);
	border-radius: 100px;
	display: flex;
	margin: 20px auto;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease;
}
.service-inner-box:hover a{
	display: inline-block;
}
.service-inner-box:hover a h2{
	color: var(--first-color);
}
.service-inner-box:hover .cricle-btn a i,
.service-inner-box:hover .line,
.service-inner-box:hover .line:before{
	background-color: var(--first-color);
}
.service-box-wrapper .bottom-box{
	position: absolute;
	left: 0px;
	bottom: -160px;
	z-index: 99;
	transition: 0.3s ease;
	width: 100%;
}
.service-box-wrapper:hover .bottom-box{
	bottom: 0px;
}
.service-box-wrapper .image-box-cricle{
	width: 120px;
	z-index: 99;
	height: 120px;
	position: absolute;
	left: 30px;
	top: 22px;
	transition: 0.3s ease;
	padding: 7px;
	border-radius: 100px;
	background-color: var(--dark-blue);
}
.service-box-wrapper .image-box-cricle img{
	border-radius: 100px;
	width: 100%;
}
.service-box-wrapper:hover .image-box-cricle{
	background-color: var(--first-color);
}

.just-call-us-text span h2{
	text-transform: capitalize;
	font-weight: 800;
	font-size: 20px;
	font-family: 'Inknut Antiqua', serif;
	margin-bottom: 0px;
}
.dark-btn .btn{
	background-color: var(--dark-blue);
}
.dark-btn .btn:hover{
	background-color: var(--first-color);
}
.just-call-us-text{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-top: 30px;
}
.bottom-img-passport{
	position: absolute;
	left: 20px;
	bottom: -30px;
}
.service-inner-section .service-box-wrapper .service-inner-box{
	background-color: #f7f7f7;
}


/*----------End-service-section-here----------*/

/*-------start-Our-Vision-section-here---------*/
.Our-Vision-section{
	background-image: url(../img/icons/world-map-dots.png);
	min-height: 600px;
	background-size: contain;
	overflow: hidden;
}
.mission-box{
	border-radius: 10px;
	height: 200px;
	margin-bottom: 30px;
	border: 1px solid var(--black-color);
	background-color: var(--white-color);
	padding: 30px 20px 20px 0px;
}
.mission-box .heading-box{
	background-color: var(--dark-blue);
	width: 60%;
	position: relative;
	padding: 15px 50px;
}
.mission-box .heading-box:before{
	content: '';
	position: absolute;
	width: 18px;
	left: -18px;
  top: -1px;
	background-color: var(--dark-blue);
	height: 20px;
	clip-path: polygon(100% 0, 0 73%, 100% 100%);
}
.mission-box .heading-box h3{
	font-size: 20px;
	font-weight: 700;
}
.mission-box .heading-box .icon-box{
  width: 55px;
  height: 55px;
  position: absolute;
  transform: translate(-50%,-50%);
  right: -50px;
  top: 50%;
  background-color: transparent;
  padding: 8px;
}
.mission-box .heading-box .icon-box:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: -1;
	transform: rotate(45deg);
	background-color: var(--first-color);
}
/*----------ENd-Our-Vision-section-here---------*/
/*--------Start-counter-wrapper-box-here---*/
.counter-wrapper-box{
	border-radius: 200px;
	height: 200px;
	background-image: url(../img/counter-bc.jpg);
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	padding: 30px 40px;
}
.counter-section .counter-box{
	position: relative;
	text-align: center;
}
.counter-section .counter-box h1{
	font-weight: 800;
	font-size: 55px;
}
.counter-section .counter-box i{
	width: 35px;
	height: 35px;
	line-height: 35px;
	position: absolute;
	right: -15px;
	top: 0px;
	border-radius: 100px;
	background-color: var(--first-color);
	color: var(--white-color);
}

.counter-section{
	z-index: 99;
}
/*-----------End-counter-wrapper-box-here-------*/
/*-----------Start-Countries-section-here------*/
.Countries-section{
	background-color: var(--dark-blue);
	padding-top: 200px;
	margin-top: -110px;
}
.Countries-box-wrapper{
	height: 330px;
	background-color: var(--white-color);
	position: relative;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}
.Countries-carousel .items{
	padding-bottom: 20px;
}
.Countries-box-wrapper .content-box{
  width: 160%;
  height: 170px;
  position: relative;
  transform: translate(-50%,-50%);
  top: 40px;
  border-radius: 200px 200px 0px 0px;
  left: 50%;
  padding: 50px 70px 0px 70px;
  z-index: 9;
  background-color: var(--white-color);
}
.Countries-box-wrapper .content-box .text-box a h3{
	font-weight: 600;
	font-size: 20px;
	color: var(--black-color);
}

.Countries-box-wrapper .logo-box{
	width: 70px;
	height: 70px;
	background-color: var(--light-gray);
	border-radius: 100px;
	position: absolute;
	transform: translate(-50%,-50%);
	left: 50%;
	top: 40%;
	padding: 5px;
	z-index: 99;
}
.Countries-section:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 34%;
	background-color: var(--white-color);
	left: 0px;
	bottom: 0px;
}
.bc-image-city{
	position: absolute;
	left: 0px;
	top: 276px;
}
/*--------------End-Countries-section-here----------*/

/*-------------Start-customer-first-section-here-here----------*/
.customer-first-section-here{
	background-color: var(--dark-blue);
	overflow: hidden;
}
.customer-first-section-here:before{
	content: '';
	position: absolute;
	width: 55%;
	height: 100%;
	background-color: var(--first-color);
	left: 0px;
	top: 0px;
	clip-path: polygon(63% 0, 100% 38%, 80% 100%, 0 100%, 0 0);
}
.hover-white .btn:hover{
	background-color: var(--white-color);
	color: var(--dark-blue)!important;
}
.logo-100{
	position: absolute;
	top: 25%;
	transform: translate(-50%,-50%);
	left: 50%;
	animation: animName 9s linear infinite;
}
@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}

.customer-first-section-here .right-image{
	position: absolute;
	right: -80px;
	top: 0px;
}
.customer-first-section-here .right-image img{
	width: 91%;
}

/*----------------End-customer-first-section-here-here-----------*/


/*----------------Start-testimonial-section-here-here-----------*/
.testimonial-section .testimonial-wrapper-box{
	background-color: var(--very-light-green);
	padding: 0px 30px 0px 30px;
	position: relative;
}
.testimonial-section .testimonial-wrapper-box:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 30px;
	background-color: var(--white-color);
	left: 0px;
	top: 0px;
}

.testimonial-wrapper-box .happy-customer-text{
	color: #e3082212;
	font-weight: 900;
	position: absolute;
	transform: translate(-50%,-50%);
	left: 36%;
	top: 27%;
	font-size: 70px;
}


.chetting-icon img{
	width: 40px!important;
}
.testimonial-content-box .text{
	line-height: 30px;
}
.testimonial-content-box .name-box h4{
	margin-left: 50px;
	position: relative;
	margin-top: 40px;
}
.testimonial-content-box .name-box h4:before{
	content: '';
	position: absolute;
	left: -57px;
  bottom: 14px;
	background-color: var(--first-color);
	height: 3px;
	width: 50px;
}

.testimonial-image-box img{
	width: 70%!important;
	margin-left: auto;
}
/*----------------End-testimonial-section-here--------------*/

/*----------Start-Blog-section-here-----------*/
.Blog-section{
	background-image: url(../img/blog-img/blog-bc-img.jpg);
}
.blog-wrapper-box{
	background-color: var(--white-color);
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	margin-top: 30px;
}
.blog-wrapper-box .blog-content{
	padding: 20px;
	min-height: 250px;
}
.blog-wrapper-box .blog-content h1{
	font-size: 17px;
  font-weight: 600;
}
.blog-wrapper-box .blog-content p{
	font-size: 14px;
}
.blog-wrapper-box .blog-content .date-text{
	font-size: 17px;
}

/*.blog-wrapper-box .blog-content .cricle-btn a i{
	margin: inherit;
	margin-left: auto;
	transform: rotate(-45deg);
}
.blog-wrapper-box .blog-content .cricle-btn a i:hover{
	background-color: var(--first-color);
}*/
/*------------End-Blog-section-here----------*/

/*---------Start-form-design-here-----------*/
.form-control{
	background-color: var(--input-color);
	margin-top: 30px;
	height: 50px;
	border-radius: 8px;
}
.form-control:focus{
	background-color: var(--input-color);
	border-color: var(--first-color);
}
.common-input textarea{
	height: 200px;
	resize: none;
}
.need-any-help-box{
	background-image: url(../img/get-in-touch-bc.jpg);
	min-height: 490px;
	border-radius: 20px;
	position: relative;
	padding: 30px;
	overflow: hidden;
}
.need-any-help-box .content-box h4{
	font-size: 41px;
}
.need-any-help-box .plane-img{
	position: absolute;
	right: 0px;
	bottom: 10px;
}
.main-box-wrapper {
    background-color: var(--white-color);
    border-radius: 100px;
    padding: 5px;
    margin-top: 30px;
    width: 85%;
}
.cricle-btn .button-cricle i {
    width: 48px;
    height: 48px;
    background-color: var(--first-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    border-radius: 100px;
    font-size: 22px;
    justify-content: center;
}

.main-box-wrapper .right-content h5 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0px;
}

/*-------------End-form-design-here------------*/

/*---------start-footer-section-here---------*/
.relative {
    position: relative;
}
.footer-section{
	padding: 50px 0px;
	overflow: hidden;
	position: relative;
	background-image: url(../img/footer-bc.jpg);
}
.footer-section .plane-dots{
	position: absolute;
  transform: translate(-50%,-50%);
  top: 10%;
  z-index: 99;
  left: 60%;
}
.footer-box{
	margin-top: 30px;
}
.footer-box p{
	font-size: 14px;
}
.footer-heading{
	margin-bottom: 30px;
	font-size: 19px;
}
.virtical-list .items{
	margin-bottom: 8px
}
.virtical-list .items .link i{
	color: var(--first-color);
}
.Newsletter-input .form-control {
    position: relative;
    background-color: transparent;
    height: 60px;
    margin-top: 40px;
    padding-left: 20px;
    border: 3px solid var(--white-color);
    border-radius: 100px;
    padding-right: 50px;
}
button{
	border: none;
	outline: none;
}

.Newsletter-input a .send-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 9px;
    right: 10px;
    color: var(--white-color);
    z-index: 99;
    border-radius: 100px;
    background-color: var(--first-color);
}
.Newsletter-input .form-control::placeholder{
	color: var(--white-color);
}
.Newsletter-input .form-control:focus{
	color: var(--white-color)!important;
}
.copy-right-box{
	padding: 30px 40px;
	background-color: #0E2333;
}
 
.back-to-top {
  width: 35px;
  height: 35px;
  display: none;
  line-height: 33px;
  text-align: center;
  background-color: var(--first-color);
  color: var(--white-color);
  box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
  position: fixed;
  border: 1px solid var(--white-color);
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: 0.3s ease;
  bottom: 20px;
}
.back-to-top:hover{
	background-color: var(--dark-blue);
}
/*----------End-footer-section-here-------------*/


/*----------Start-nav-button-here------*/
.nav-button .owl-nav{
	text-align: center;
}
.nav-button .owl-nav .owl-next,
.nav-button .owl-nav .owl-prev{
	width: 35px;
	height: 35px;
	background-color: var(--first-color)!important;
	color: var(--white-color)!important;
	margin: 5px 5px;
}
.nav-button .owl-nav .owl-next:hover,
.nav-button .owl-nav .owl-prev:hover{
	background-color: var(--dark-blue)!important;
}

.nav-button.testimonial-carousel .owl-nav{
	position: absolute;
	bottom: 30px;
}
.banner-carousel.nav-button .owl-nav .owl-prev{
	position: absolute;
	transform: translate(-50%,-50%);
	left: 12px;
	top: 50%;
}

.banner-carousel.nav-button .owl-nav .owl-next{
	position: absolute;
	transform: translate(-50%,-50%);
	right: -22px;
	top: 50%;
}

/*-----------End-nav-button-here-----------*/

/*-----------services-page-section-here---------*/
.services-page-section {
	background-image: none;
}



.services-page-section .service-inner-box{
	background-image: none;
	background-color: var(--very-light-green);
}
.services-page-section .service-inner-box .line:before,
.services-page-section .service-inner-box .line{
	background-color: var(--dark-blue);
}

.service-inner-box{
	height: 483px;
}

.services-page-section .service-inner-box:hover .line:before,
.services-page-section .service-inner-box:hover .line{
	background-color: var(--first-color);
}
.Visa-Requirements .service-inner-box{
	height: 400px;
}



.Employee-Over-Seas-worker{
	background-image: url(../img/banner-img/employee-over-bc-img.jpg);
}



.Employee-Over-Seas-worker:before{
	content: '';
	width: 100%;
	height: 40%;
	left: 0px;
	bottom: 0px;
	position: absolute;
	background-color: var(--white-color);
}

.Employee-middle-section{
	background-color: var(--white-color);
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
}
.Employee-box-content{
	height: 100%;
	background-image: url(../img/lines-bc.jpg);
	border-radius: 20px 0px 0px 20px;
	padding: 50px 20px 20px 30px;
}
.image-carousel .items .image{
	height: 400px;
}
.owl-carousel.image-carousel .owl-nav{
  text-align: center;
  margin-top: -70px;
  position: relative;
}
/*-------------End-services-page-section-here------*/

/*------start-contact-page-here-----*/
.form-box-wrapper {
    background-color: var(--dark-blue);
    padding: 30px 30px 30px 30px;
    border-radius: 15px;
}
.form-box-wrapper .common-input .form-control{
	margin-top: 0px;
	background-color: var(--white-color);
}
.form-box-wrapper .common-input {
	margin-bottom: 30px;
}
.conatct-section .airplane-img{
	position: absolute;
	top: 0px;
	right: 0px;
}
.need-help-box{
	background-color: var(--first-color);
	padding: 60px 20px 130px 20px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
.need-help-box h4{
	font-weight: 700;
}

.need-help-box .main-box-wrapper{
	width: 100%;
}

.need-help-box .main-box-wrapper .cricle-btn .button-cricle i{
	background-color: var(--dark-blue);
}
.iocn-righ-airplane{
	position: absolute;
	bottom: 0px;
	left: 0px;
}
.air-plane-2-img{
	position: absolute;
	left: 20px;
	bottom: 30px;
	animation: plane 2s linear infinite;
}

@keyframes plane {
 0%{
    transform: translateY(0);
   }
100%{
   transform: translateY(20px);
   }
}
/*-------------End-conatct-page-here------*/


/*-------------Start-Few-reasons-section-here---------*/
.Few-reasons-section{
	background-color: var(--dark-blue);
}
.reasons-box{
	border-radius: 10px;
	background-color: var(--white-color);
	padding: 15px 15px 15px 140px;
	height: 130px;
	position: relative;
	overflow: hidden;
	margin-top: 30px;
}
.reasons-box p{
	font-size: 13px;
	margin-top: 13px;
	font-weight: 500;
}
.reasons-box .image-box .red-box,
.reasons-box .image-box .icon-box {
  padding-bottom: 20px;
  width: 170px;
  height: 170px;
  border-radius: 200px;
  background-color: var(--light-color);
  position: absolute;
  left: -53px;
  top: -3px;
  display: flex;
  align-items: center;
  padding-left: 48px;
  justify-content: center;
  z-index: 11;
  transition: 0.3s ease;
}
.reasons-box .image-box .red-box{
	background-color: var(--first-color);
	left: -60px;
	top: 4px;
}

.reasons-box:hover .image-box .red-box{
	left: -48px;
	top: 3px;
	transition: 0.3s ease;
}

.reasons-box h4{
	font-size: 20px;
	font-weight: 600;
}

/*--------------End-Few-reasons-section-here----------*/
/*-----------Start-Most-Trusted-section-here-----------*/
.Most-Trusted-section{
	overflow: hidden;
}
.most-trusted-box-left{
	min-height: 800px;
	padding: 100px 50px 30px 50px;
	background-image: url(../img/most-trusted-image-bc.jpg);
}
 .most-trusted-box-left h1{
 	font-size: 60px;
 	margin-bottom: 30px;
 }
 .most-trusted-box-left .Trusted-icon-box{
 	width: 100px;
 	height: 100px;
 	border-radius: 100px;
 	background-color: var(--black-color);
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	padding: 25px;
 	position: relative;

 }
  .most-trusted-box-left .Trusted-icon-box img{
  	position: relative;
  	z-index: 99;
  }


 .most-trusted-box-left .Trusted-icon-box:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background-color: var(--black-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}
 
@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.Most-Trusted-section .faq-box{
	padding: 100px 200px 0px 30px;
	height: 100%;
} 
.Most-Trusted-section .faq-box .icon-plane{
	position: absolute;
	right: 0px;
}
.accordion .card {
	margin-bottom: 15px;
	border: none;
}
.accordion .card .card-header{
	padding: 5px 0px;
	border-radius: 5px;
	background-color: var(--dark-blue);
	border: none;
	position: relative;
}
.accordion .card .card-header h5 button{
	color: var(--white-color);
	width: 100%;
	text-align: left;
	text-decoration: none;
	padding-right: 34px;
}
.accordion .card .card-body{
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	border-radius: 10px;
	font-size: 14px;
	margin-top: 10px;
	border: 1px solid var(--border-color);
	border-bottom: 2px solid var(--dark-blue);
}
.accordion .card .card-header h5 button i{
	color: var(--white-color);
	position: absolute;
	right: 17px;
	transition: 0.3s ease;
	top: 14px;
}
.accordion .card .card-header-active h5 button i {
    transform: rotateX(190deg);
    transition: 0.3s ease;
}


/*
.accordion .card .card-header-active i{
	transform: rotateX(190deg);
	transition: 0.3s ease;
}*/
/*------------End-Most-Trusted-section-here-------------*/




/*----------------Start-Team-box-wrapper-here------*/
.Team-box-wrapper{
	background-color: var(--white-color);
	position: relative;
	transition: 0.4s ease;
	margin-bottom: 30px;
	overflow: hidden;
	margin-top: 30px;
	box-shadow: 0px 0px 10px rgb(0 0 0 /  20%);
}
.Team-box-wrapper:hover{
	border-radius: 200px 200px 0px 0px;
}
.image-box-banner:before,
.Team-box-wrapper:before{
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: linear-gradient(1deg, #000 1.04%, rgba(255, 255, 255, 0.00) 82.76%);
	transition: all 0.4s ease;
}
.Team-box-wrapper:hover::before{
	background: linear-gradient(0deg, #E30822 -9.61%, rgba(255, 255, 255, 0.00) 120.57%);
	transition: all 0.4s ease;
}
.member-info-box{
	padding: 10px 10px 10px 25px;
	border: 1px solid var(--white-color);
	height: 65px;
	transition: 0.3s ease;
	width: 90%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 999;
	margin: -93px auto 28px auto;
}
.member-info-box .info-text a{
	font-weight: 600;
	font-size: 17px;
} 
.member-info-box .info-text p{
	font-size: 13px;
}
.member-info-box .info-text a:hover{
	color: var(--dark-blue)!important;
}
 
.social-media-links .links-media-box{
	width: 30px;
	height: 30px;
	background-color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease;
	position: relative;
	cursor: pointer;
	font-size: 20px;
}
 
 .social-media-links .links-media-box:hover{
	box-shadow: 0px 0px 15px rgb(0 0 0 /  30%);
 }
.box-social-media{
  background-color: transparent;
  width: 39px;
  height: 238px;
  position: absolute;
  top: -235px;
  right: -6px;
  transition: 0.2s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999999999;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
}
.links-media-box:hover .box-social-media{
	opacity: 1;
	visibility: visible;
	-webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: scaleY(1) translateZ(100px);
  transform: scaleY(1) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
}
 .box-social-media .social-media-icon a i{
	position: relative;

}

 


.links-media-box .box-social-media .social-media-icon{
	flex-direction: column;
}
.links-media-box .box-social-media .social-media-icon a i{
	background-color: var(--dark-blue);
}
.links-media-box .box-social-media .social-media-icon a i:hover{
	background-color: var(--first-color);
}
.counter-about-section .counter-wrapper-box{
	background-image: none;
	border-radius: 0px;
	box-shadow: none;
}
.counter-about-section .counter-wrapper-box .counter-box h1,
.counter-about-section .counter-wrapper-box .counter-box h5{
	color: var(--white-color);
}
.counter-about-section .counter-wrapper-box .counter-box i{
	background-color: var(--white-color);
	color: var(--first-color);
}
/*--------------End-Team-box-wrapper-here----------*/



/*------------Start-service-Details-section-here---------*/
 

.left-side-box-details .image-box-banner{
	position: relative;
}


.left-side-box-details .image-box-banner img{
	border-radius: 20px;
}
.left-side-box-details .image-box-banner .banner-heading h1{
	position: absolute;
	bottom: 20px;
	left: 20px;
	border-radius: 5px;
	z-index: 99;
	font-weight: 900;
	font-size: 30px;
	text-transform: uppercase;
	padding: 4px 10px;
	color: var(--white-color);
	background-color: var(--first-color);
}
.image-box-banner:before{
	border-radius: 20px;
}
 
.common-content h1{
	text-transform: capitalize;
	font-weight: 800;
	font-size: 26px;
	margin-top: 20px;
}
.common-content p{
	margin-bottom: 5px;
}
.specification-is-mention-below{
	background-color: var(--very-light-green);
	border-radius: 15px;
	padding: 25px 20px;
	margin-top: 40px;
}

.specification-is-mention-below h5{
	text-transform: capitalize;
}
.specification-list .items{
	display: flex;
	align-items: start;
	gap: 10px;
}
.right-box-details{
	
	position: sticky;
	top: 100px;
}
.inner-box-details{
	background-color: var(--very-light-green);
	border-radius: 10px;
	padding: 20px 30px;
	margin-bottom: 30px;
}
.content-right-box h5{
	font-weight: 700;
}
.visa-list .items .link{
	background-color: var(--white-color);
	color: var(--black-color);
	padding: 13px 20px;
	font-weight: 600;
	display: block;
	transition: 0.3s ease;
	text-transform: capitalize;
	margin-top: 20px;
	border-left: 4px solid var(--border-color);
}
.visa-list .items .link.active,
.visa-list .items .link:hover{
	border-color: var(--first-color);
}
/*----------------End-service-Details-section-here--------*/

/*--------------start-blog-page-css-here---------*/

.Author-box{
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 20px;
	margin: 20px 15px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
.Author-box .Author-details h5{
 font-weight: 700;
 font-size: 15px;
}
.Author-box .Author-details h3{
	font-weight: 700;
	font-size: 20px;
	color: var(--first-color);
}
.red-social-media-icon a i{
	background-color: var(--first-color);
}
.red-social-media-icon a i:hover{
	background-color: var(--dark-blue);
}
.chat-section-list .items{
	margin-top: 40px;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 30px;
}
.chat-section-list .items:last-child{
	border-bottom: none;
}

.chat-section-list .items.relpy-box{
	padding-left: 100px;
}

.chat-section-list .items .right-box .image-box-user img{
	width: 100px;
	height: 100px;
	margin-right: 20px;
	border-radius: 100px;
}
.chat-section-list .items .user-info-details h4{
	font-size: 16px;
}
.chat-section-list .items .user-info-details .Reply-text{
	color: var(--first-color);
	margin-left: 50px;
	margin-top: 10px;
}
.chat-section-list .items .user-info-details .Reply-text:hover{
	color: var(--dark-blue);
}
.comments-box .form-box-wrapper{
	background-color: var(--light-gray);
}

.Search-input .form-control{
	background-color: var(--white-color);
	border-radius: 14px;
	border: none;
}
.Search-input button{
	position: absolute;
	right: 21px;
	top: 14px;
	color: var(--first-color);
	background-color: inherit;
}
.Recent-post-list .chat-section-list .items .right-box .image-box-user img{
	width: 80px;
	height: 80px;
	border-radius: 10px;
}
.Recent-post-list .chat-section-list .items{
	border-bottom: 0px;
	margin-top: 15px;
	padding-bottom: 0px;
}

.We-Are-Visa-Agency-banner {
	padding: 30px;
	text-align: center;
	margin-bottom: 30px;
	background-image: url(../img/Blog-details-img/we-are-visa-agency.jpg);
}

.We-Are-Visa-Agency-banner h1{
	font-weight: 800;
}

/*--------------End-blog-page-css-here---------*/

/*--------Start-popular-visa-here-------*/
.country-name-box{
	border-radius: 10px;
	padding: 30px 20px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	border: 1px solid var(--border-color);
	margin-bottom: 30px;
}
.name-country .logo .logo-box-inner {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	border-radius: 100px;
	border: 1px solid var(--first-color);
}

.visas-list .items a{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 5px;
}
.visas-list .items a span p:hover{
	color: var(--first-color)!important;
}

/*-----------End-popular-visa-here------*/
