@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
body{
	padding: 0;
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	color: #000;
	background-color: #fff;
}
.container{
	max-width: 1380px;
}
*{
	box-sizing: border-box;
}
img{
	max-width: 100%;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
	padding: 0;
	margin: 0;
}
a{
	transition: .6s;
	-webkit-transition: .6s;
	display: inline-block;
	text-decoration: none;
	color: #363636;
}
a:hover{
	color: #FF8900;
}
h1 {
	font-weight: bold;
	font-size: 44px;
	line-height: 55px;
	color: #fff;
	margin-bottom: 25px;
}
h2 {
	font-weight: bold;
	font-size: 40px;
	line-height: 56px;
	color: #000;
	margin-bottom: 25px;
}
h3 {
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 20px;
}
h4 {
	font-weight: bold;
	font-size: 22px;
	line-height: 30px;
	color: #191717;
}
p:last-child{
	margin-bottom: 0;
}
.p-tb{
	padding-top: 70px;
	padding-bottom: 70px;
}
.pt{
	padding-top: 70px;
}
.pb{
	padding-bottom: 70px;
}
.btn {
	background-color: #F59C2B;
	border-radius: 10px;
	padding: 10px 25px;
	border: none;
	outline: none;
	box-shadow: none;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	transition: .6s;
	-webkit-transition: .6s;
}

.btn:hover {
	background-color: #009ACE !important;
	color: #fff;
}
.btn-white{
	background-color: #fff;
	color: #000;
}
.btn-white:hover{
	background-color: #009ACE;
	color: #fff;
}
.textYellow{
	color: #F59C2B;
}
.bgYellow{
	background-color: #F59C2B;
}
.textBlue{
	color: #009ACE;
}
.bgBlue{
	background-color: #009ACE;
}
.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
}
figure{
	margin: 0;
}
.f18{
	font-size: 18px;
}
.f13{
	font-size: 13px;
	line-height: 18px;
}
p, li {
	color: #4d4d4d;
}

/*PAGE CSS START*/
.hero {
	min-height: 94vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 150px 0;
}
.hero-country {
	background-image: url('../img/shape-img.png');
	background-position: center center;
	background-repeat: no-repeat;
}
.hero-info-img {
	background-color: #007BA6;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	flex-shrink: 0;
	padding: 5px;
}
.hero-info {
	margin-top: -110px;
}
.hero-info-img img{
	animation: scale-ani 5s infinite linear;
}
@keyframes scale-ani {
	0% {
		transform: scale(.7);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(.7);
	}
}
.check-icon:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 9px;
	height: 15px;
	border: 3px solid #f59c2b;
	border-left: 0;
	border-top: 0;
	transform: rotate(35deg);
}
.about-mg {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.about-img1 {
	height: 600px;
	object-fit: cover;
}
.about-img2 {
	height: 200px;
	object-fit: cover;
}
.about-img3 {
	height: 384px;
	object-fit: cover;
}
.step-box span {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #009ACE;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px auto 40px;
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	transition: .6s;
	-webkit-transition: .6s;
}
.step-wrap:before, .step-wrap:after {
	content: '';
	position: absolute;
	top: 34%;
	bottom: 0;
	margin: auto;
	background-image: url('../img/dot-img.png');
	width: 363px;
	height: 8px;
	background-repeat: no-repeat;
	animation-name: animate;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.step-wrap:before {
	left: 20%;
}
.step-wrap:after {
	left: 54%;
	animation-delay: 1000ms;
}
@keyframes animate {
	0% {
		width: 0;
	}
	90% {
		width: 90%;
	}
	100% {
		opacity: 0;
		width: 100%;
	}
}
.custom-shadow{
	box-shadow: 0px 1px 15px 0px #00000026;
	background-color: #fff;

}
.step-box figure {
	clip-path: polygon( 50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25% );
	background-color: #009ACE;
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	transition: .6s;
	-webkit-transition: .6s;
}
.step-box:hover figure, .step-box:hover span{
	background-color: #F59C2B;
}
.why-choose-box figure {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #00a9e4, #f59c2b);
	padding: 10px;
	margin-bottom: 30px;
	transition: .6s;
	-webkit-transition: .6s;
}
.step-box figure img {
	width: 90px;
}
.why-choose-box{
	transition: .6s;
	-webkit-transition: .6s;
	height: 255px !important;
}
.why-choose-box:hover {
	transform: translateY(-10px);
}
.WhyChooseUs .slick-list{
	margin-left: -23px;
}
.WhyChooseUs .why-choose-box {
	margin: 23px 0 23px 26px;
}
.why-choose-wrap{
	background-position: right top;
	background-repeat: no-repeat;
}
.why-choose-box.last{
	background: linear-gradient(90deg, #00a9e4, #f59c2b);
}
.why-choose-box.last figure{
	background: #fff;
}
.counter-circle {
	background: #fff;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.counter-num {
	font-size: 22px;
	font-weight: bold;
}
.prog1, .prog2, .prog3 {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prog1, .prog2 {
	background-image: conic-gradient(
		#eee 0deg 288deg, 
		#eee 288deg 360deg
	);
}
.apply-visa-user {
	position: absolute;
	left: 0;
	right: 0;
	align-items: center;
	max-width: 1000px;
	margin: auto;
	top: 0;
	bottom: 0;
}
.testimonial-slider {
	margin-left: -250px;
}
.testimonial-item {
	margin: 10px 5px 10px 25px;
}
.destinations-icon {
	width: 115px;
	height: 115px;
	border-radius: 50%;
	background-color: #1AC5FF;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border: 3px solid #fff;
	margin: -130px auto 15px;
	position: relative;
	transition: .6s;
	-webkit-transition: .6s;
}
.destinations-img img {
	height: 300px;
	object-fit: cover;
}
.destinations-slider .slick-list {
	margin: 0 -15px;
}
.destinations-item {
	margin: 0 15px;
}
.know-more-btn {
	background-color: #07B9F5;
	display: flex;
	color: #fff;
	font-weight: 700;
	padding: 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.destinations-img:after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	background-image: url('../img/img-shape.png');
	background-repeat: no-repeat;
	background-position: bottom;
	width: 100%;
	height: 72px;
}
.destinations-item.slick-current + .destinations-item .know-more-btn, .destinations-item.slick-current + .destinations-item .destinations-icon {
	background-color: #F59C2B;
}
.destinations-item.slick-current + .destinations-item .know-more-btn:before {
	background-color: #E0810882;
}
.destinations-item.slick-current + .destinations-item .know-more-btn:after {
	background-color: #E88303CF;
}
.know-more-btn:after, .know-more-btn:before {
	content: '';
	position: absolute;
	top: 10px;
	width: 160px;
	height: 120px;
	margin: auto;
	border-radius: 50%;
	z-index: -1;
	transition: .6s;
	-webkit-transition: .6s;
}
.know-more-btn:after {
	background-color: #009CD2AB;
	left: -20%;
	right: 0;
}
.know-more-btn:before {
	background-color: #02A3DA7D;
	right: -20%;
	left: 0;
}
.destinations-item:hover .destinations-icon, .destinations-item:hover .know-more-btn {
	background-color: #F59C2B;
}
.destinations-item:hover .know-more-btn:after{
	background-color: #E88303CF;
}
.destinations-item:hover .know-more-btn:before{
	background-color: #E0810882;
}
.hover-eff{
	transition: .6s;
	-webkit-transition: .6s;
}
.hover-eff:hover{
	transform: scale(1.05);
}
.destinations-img img{
	transition: .6s;
	-webkit-transition: .6s;
}
.destinations-item:hover .destinations-img img{
	transform: scale(1.05);
}
.travel-service {
	background: linear-gradient(181.58deg, #E4EAFF 1.24%, #F9FAFF 98.55%);
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-left: -120px;
	margin-top: 30px;
}
.travel-img2 {
	margin-top: -40%;
}
.footer-form {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}
.form-control {
	outline: none;
	box-shadow: none !important;
	border: none;
	border-radius: 10px;
	padding: 10px 20px;
}
.ani-y{
	animation: move-y 10s infinite linear ;
}
.ani-x{
	animation: move-x 10s infinite linear ;
}
@keyframes move-y{
	0%{
		transform: translateY(0);
	}
	50%{
		transform: translateY(20px);
	}
	100%{
		transform: translateY(0);
	}
}
@keyframes move-x{
	0%{
		transform: translateY(0);
	}
	50%{
		transform: translateX(20px);
	}
	100%{
		transform: translateY(0);
	}
}
.marquee-left {
	transform: rotate(-45deg);
}
.marquee-right {
	top: 100px;
}
.hero-inner {
	padding: 200px 0 150px;
}
.accordion-item {
	margin: 30px 0;
	overflow: hidden;
	border-radius: 10px !important;
	box-shadow: 0px 1px 15px 0px #00000026;
	background-color: #fff;
}
.accordion-header {
	margin-bottom: 0;
	background: linear-gradient(45deg, #00a9e4, #f59c2b);
	padding: 20px 50px 20px 20px;
	color: #fff;
	cursor: pointer;
	border-radius: 0 !important;
	position: relative;
}
.accordion-header:after {
	content: '';
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right center;
	filter: invert(1) opacity(1) brightness(9);
	width: 20px;
	transition: transform .2s ease-in-out;
}
.accordion-header:not(.collapsed)::after {
	transform: rotate(-180deg);
}
.contact-form {
	background: linear-gradient(181.58deg, #E4EAFF 1.24%, #F9FAFF 98.55%);
}
.contact-img figure {
	margin: auto;
	border-radius: 0 0 480px 485px;
	overflow: hidden;
	text-align: center;
	width: 68%;
}
.contact-img{
	animation: move-y 10s infinite linear;
}
.contact-img::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 6px;
	right: 0;
	height: 500px;
	width: 500px;
	background: linear-gradient(45deg, #00a9e4, #f59c2b);
	z-index: -1;
	border-radius: 50%;
	margin: auto;
	animation: rotate 5s infinite linear;
}
@keyframes rotate{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(380deg);
	}
}
.blink{
	animation: blink 1.5s linear infinite;
}
@keyframes blink {
	0% {

	}
	50% {
		background-color: #009ACE;
	}
	100% {

	}
}
.about-svisa figure img {
	filter: invert(1);
	width: 100px;
}
.tourist-plan img {
	height: 22px;
}
.documents img {
	height: 35px;
}
.spotlight {
	height: 100%;
	width: 100%;
	z-index: 1;
	position: absolute;
}
.moving_spotlight {
	bottom: -10px;
	z-index: -1;
	width: 200px;
	height: 1800px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-color: rgba(255, 255, 255, 0.08);
	transform-origin: center bottom;
	animation: an-spotlight-moving-right 20s cubic-bezier(0.6, 0, 0.55, 0.8)
	infinite;
	clip-path: polygon(0 0, 100% 0, 60% 100%, 40% 100%);
	position: absolute;
}
.moving_spotlight-right {
	right: -20px;
}
.moving_spotlight-left {
	left: -20px;
	animation-name: an-spotlight-moving-left;
}
@keyframes an-spotlight-moving-right {
	0%,
	100% {
		transform: rotate(-10deg);
	}
	50% {
		transform: rotate(-50deg);
	}
}
@keyframes an-spotlight-moving-left {
	0%,
	100% {
		transform: rotate(10deg);
	}
	50% {
		transform: rotate(50deg);
	}
}
.calendar {
	width: 100%;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #dddbdb;
}
.ui-datepicker-header {
	height: 50px;
	line-height: 50px;
	color: #000;
	margin-bottom: 10px;
}
.ui-datepicker-prev,
.ui-datepicker-next {
	width: 20px;
	height: 20px;
	text-indent: 9999px;
	border-radius: 100%;
	cursor: pointer;
	overflow: hidden;
	margin-top: 12px;
}
.ui-datepicker-prev {
	float: left;
	margin-left: 12px;
}
.ui-datepicker-prev:after {
	transform: rotate(45deg);
	margin: -43px 0px 0px 8px;
}
.ui-datepicker-next {
	float: right;
	margin-right: 12px;
}
.ui-datepicker-next:after {
	transform: rotate(-135deg);
	margin: -43px 0px 0px 6px;
}
.ui-datepicker-prev:after,
.ui-datepicker-next:after {
	content: '';
	position: absolute;
	display: block;
	width: 8px;
	height: 8px;
	border-left: 2px solid #b0aead;
	border-bottom: 2px solid #b0aead;
}
.ui-datepicker-title {
	text-align: center;
}
.ui-datepicker-calendar {
	width: 100%;
	text-align: center;
}
.ui-datepicker-calendar thead tr th span {
	display: block;
	width: 40px;
	color: #000;
	margin-bottom: 5px;
	font-size: 13px;
	text-transform: uppercase;
}
.ui-state-default {
	display: flex;
	text-decoration: none;
	color: #000;
	font-size: 12px;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.ui-state-default:hover {
	background: #f59c2b;
	color: #fff;
}
.ui-state-highlight {
	color: #f59c2b;
	font-weight: bold;
}
.ui-state-active {
	background: #f59c2b;
	color: #fff;
	border-radius: 20px;
}
.ui-datepicker-unselectable .ui-state-default {
	color: #eee;
	border: 2px solid #808080;
}
#date-picker .modal-dialog {
	max-width: 400px;
}
.sign-in-wrap label{
	font-size: 12px;
	line-height: 18px;
}
.sign-in-wrap {
	max-width: 500px;
	margin: 0 auto;
}
.line-break p{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.visa-slider .slick-list{
	margin: 0 -10px;
}
.visa-slider-item {  
	margin: 10px 10px;
	border: 1px solid transparent;
	cursor: pointer;
}
.visa-slider-item.active {
	border-color: #f59c2b;
}
.slick-arrow {
	width: 30px !important;
	height: 30px !important;
	background-color: #009dd3 !important;
	border-radius: 50% !important;
	z-index: 1;
}
.slick-prev:before, .slick-next:before{
	font-size: 15px !important;
}
.slick-next {
	right: -5px !important;
}
.slick-prev {
	left: -5px !important;
}
.slick-dots li {
	margin: 0 !important;
	padding: 0 !important;
}
.slick-dots {
	position: unset !important;
}
.slick-dots li button:before {
	font-size: 30px !important;
	color: #f59c2b !important;
}
.slick-dots li.slick-active button:before {
	color: #f59c2b !important;
}
.card-details{
	display: none;
}
.card-details.active{
	display: block;
}
.cart-number {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
}
.cart-number input {
	border: none;
	text-align: center;
	width: 50px;
	font-size: 18px;
	font-weight: 500;
	outline: none;
	box-shadow: none;
}
.cart-number span {
	font-size: 26px;
	cursor: pointer;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f59c2b;
	color: #fff;
	padding-left: 2px;
	padding-bottom: 2px;
}
.cursor{
	cursor: pointer;
}
.cart-number .minus {
	padding-bottom: 3px;
}
.editAdult-form {
	display: none;
}
.editAdult-form.active {
	display: block;
}
.AddNewApplicantForm {
	display: none;
}
.AddNewApplicant.active {
	display: none;
}
.AddNewApplicantForm.active {
	display: block;
}
.AddNewApplicantBtn.active {
	display: none;
}
.visaCardType img {
	filter: invert(1);
	height: 25px;
}
.visaCardCoun figure {
	width: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.visaCardCoun figure img {
	width: 35px;
	height: 35px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}
.visaCardCoun {
	border-bottom: 1px #71cceb dashed;
}
.visaCardCoun figure:before {
	content: '';
	position: absolute;
	top: 16px;
	width: 120px;
	border-bottom: 1px #71cceb dashed;
	display: flex;
	justify-content: center;
	z-index: -1;
}
.visaCardWrap:before, .visaCardWrap:after {
	content: '';
	position: absolute;
	top: 38%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
}
.visaCardWrap:before {
	left: -10px;
}
.visaCardWrap:after {
	right: -10px;
}


/*RESPONSIVE CSS START*/

@media(max-width: 1199px){
	.travel-service {
		margin-top: 50px;
	}
	.step-wrap:before, .step-wrap:after {
		top: 34%;
		background-size: 70%;
		background-position: center;
	}
	.step-wrap:after {
		right: 15.5%;
	}
	.step-wrap:before {
		left: 15.5%;
	}
	.why-choose-wrap {
		background-size: 50%;
	}
	.apply-visa-user {
		max-width: 800px;
	}
	.step-wrap:before, .step-wrap:after{
		display: none;
	}
	.WhyChooseUs .why-choose-box {
		box-shadow: none;
		border: 1px solid #eee;
	}
	.WhyChooseUs .why-choose-box {
		margin: 0px 0 0px 26px;
	}
	.why-choose-box {
		height: 285px !important;
	}
}


@media(max-width: 767px){
	body {
		font-size: 14px;
		line-height: 22px;
	}
	.p-tb {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.pt {
		padding-top: 50px;
	}
	.pb {
		padding-bottom: 50px;
	}
	h1, h2 {
		font-size: 24px;
		line-height: 34px;
	}
	h3 {
		font-size: 20px;
		line-height: 28px;
	}
	h4 {
		font-size: 18px;
		line-height: 26px;
	}
	h5 {
		font-size: 16px;
	}
	h6 {
		font-size: 14px;
	}
	.why-choose-wrap {
		background-image: none !important;
	}
	.travel-service{
		margin-left: 0;
	}
	.testimonial-slider {
		margin-left: 0;
	}
	.hero-info .d-flex {
		border: 1px solid #7acde9;
		padding: 20px;
		margin: 5px 0;
	}
	.step-box {
		border: 1px solid #7acde9;
		padding: 25px;
	}
	br{
		display: none;
	}
	.step-box figure {
		width: 120px;
		height: 120px;
		padding: 30px;
	}
	.step-box span{
		margin: 20px auto 25px;
	}
	.hero-inner {
		padding: 130px 0 70px;
	}
	.editAdult-icon {
		width: 20px;
	}
}

@media(max-width: 575px){
	.hero-country img {
		width: 80px;
	}
	.footer-form, .travel-service {
		grid-template-columns: auto;
	}
	.testimonial-item {
		margin: 10px;
	}
	.header-btn .btn {
		font-size: 14px;
		padding: 8px 10px;
		width: 90px;
	}
	.header-logo img {
		width: 150px;
	}
	.hero-info {
		margin-top: -80px;
	}
	.travel-service .p-4.border-end {
		border-right: 0 !important;
		border-bottom: 1px solid #e1dada;
	}
}








