 
/*------------------------------------------------------------------
[TABLE OF CONTENTS]

1. BASE

  1.1. Typography
  1.2. Buttons
  1.3. Common Styles

    1.3.1. Preloader
    1.3.2. Section
    1.3.3. Background Image
    1.3.4. Overlay
    1.3.5. Common Class
    1.3.6. Icon Animation
    1.3.7. Breadcrumb
    1.3.8. Google Map
    1.3.9. Form Control
    1.3.10. Social Icon
    1.3.11. Slick Slider

2. NAVBAR

3. BANNER SLIDER

4. HOMEPAGE

  4.1. Banner Feature / Service Item
  4.2. About Section
  4.3. Funfacts Section
  4.4. Feature Section
  4.5. Service Section
  4.6. Team Section
  4.7. Project Section
  4.8. Testimonial Section

5. CLIENTS LOGO

6. CALL TO ACTION

7. PRICING

8. BLOG

9. FOOTER STYLES

-------------------------------------------------------------------*/
/*  typography */

@import url("https://fonts.googleapis.com/css?family=Barlow+Condensed:300,400,500,600,700|Open+Sans:300,400,600,700");
.ellipsis-1 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis
}

.ellipsis-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis
}
 

.ellipsis-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis
}
 

.ellipsis-4 {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis
}
.ellipsis-5 {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis
}

.ellipsis-6 {
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis
}

body {
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  overflow-x: hidden;
  color: #818385;
}

p, .paragraph {
  font-weight: 400;
  color: #818385;
  font-size: 15px;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #172231;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  transition: 0.2s ease;
}

h1, .h1 {
  font-size: 70px;
}

h2, .h2 {
  font-size: 48px;
}

h3, .h3 {
  font-size: 44px;
}

h4, .h4, .subtitle {
  font-size: 22px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

/* /typography */
/* Button style */
.btn {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  padding: 15.5px 28px;
  border-radius: 35px;
  font-weight: 700;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in;
  white-space: nowrap;
}
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}
.btn:active {
  box-shadow: none;
}

.btn-lg {
  font-size: 20px;
  padding: 19px 35px;
}

.btn-md {
  font-size: 18px;
  padding: 17px 30px;
}

.btn-sm {
  font-size: 12px;
  padding: 5px 20px;
}

.btn-primary {
  background: #86c33a;
  color: #fff;
  border-color: #86c33a;
}
.btn-primary:active {
  background: #6b9c2e !important;
  border-color: #6b9c2e;
}
.btn-primary:hover {
  background: #6b9c2e;
  border-color: #6b9c2e;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #6b9c2e;
  border-color: #6b9c2e;
}

.btn-gray {
  background: #f5f6fa;
  color: #172231;
  border-color: #f5f6fa;
}
.btn-gray:active {
  background: #86c33a !important;
  border-color: #86c33a;
  color: #fff;
}
.btn-gray:hover {
  background: #86c33a;
  border-color: #86c33a;
  color: #fff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #6b9c2e;
  border-color: #6b9c2e;
}

.btn-secondary {
  background: transparent;
  color: #172231;
  padding-left: 0;
  border: 0;
}
.btn-secondary:active {
  background: transparent !important;
  color: #86c33a;
}
.btn-secondary:hover {
  background: transparent;
  color: #86c33a;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #86c33a;
  background-color: transparent;
  border: 0;
}

.btn-primary-outline {
  background: transparent;
  color: #172231;
  border: 2px solid #172231;
}
.btn-primary-outline:active {
  background: #86c33a !important;
  border-color: #86c33a;
  color: #fff;
}
.btn-primary-outline:hover {
  background: #86c33a;
  border-color: #86c33a;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #172231;
  border-color: #e7e7e7;
}
.btn-light:active {
  background: transparent !important;
  border-color: #fff;
  color: #fff;
}
.btn-light:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-light-alt:active {
  background: #86c33a !important;
  border-color: #86c33a;
  color: #fff;
}
.btn-light-alt:hover {
  background: #86c33a;
  border-color: #86c33a;
  color: #fff;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-light-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-light-outline:active {
  background: #6b9c2e !important;
  border-color: #6b9c2e;
  color: #fff;
}
.btn-light-outline:hover {
  background: #6b9c2e;
  border-color: #6b9c2e;
  color: #fff;
}

.btn-arrow {
  transition: 0.2s ease;
}
.btn-arrow::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: transparent;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  left: calc(85% + 5px);
  transition: 0.2s ease;
}
.btn-arrow::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  transition: 0.2s ease;
  left: 85%;
}
.btn-arrow:hover::before {
  left: calc(85% + 10px);
  border-color: #86c33a;
}
.btn-arrow:hover::after {
  width: 20px;
  background: #86c33a;
}

/* hover effect */
.hover-ripple {
  transition: 0.2s ease-in;
}
.hover-ripple:hover {
  transform: scale(0.97);
}
.hover-ripple:hover::after {
  -webkit-animation: sonarEffect 1s ease-out 50ms;
          animation: sonarEffect 1s ease-out 50ms;
}
.hover-ripple::after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.9);
  border-radius: inherit;
}

.hover-ripple.ripple-white:hover::after {
  -webkit-animation: sonarEffectWhite 1s ease-out 50ms;
          animation: sonarEffectWhite 1s ease-out 50ms;
}

@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 0.3;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes sonarEffect {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 0.3;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #86c33a, 0 0 0 10px rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@-webkit-keyframes sonarEffectWhite {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 0.3;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes sonarEffectWhite {
  0% {
    opacity: 0.1;
  }
  40% {
    opacity: 0.3;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
/* /button style */

body {
  background-color: #fff;
  overflow-x: hidden;
  min-height: auto !important;
  top: 0 !important;
}

::-moz-selection {
  background: #9ed060;
  color: #fff;
}

::selection {
  background: #9ed060;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spin {
  height: 50px;
  width: 50px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(134, 195, 58, 0.75) rgba(134, 195, 58, 0.75) rgba(134, 195, 58, 0.25) rgba(134, 195, 58, 0.25);
  border-radius: 100%;
  -webkit-animation: clockwise 1s linear infinite;
          animation: clockwise 1s linear infinite;
}

@-webkit-keyframes clockwise {
  to {
    transform: rotate(360deg) translatez(0);
  }
}

@keyframes clockwise {
  to {
    transform: rotate(360deg) translatez(0);
  }
}
/* /preloader */
ol,
ul {
  list-style-type: none;
  margin: 0px;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #86c33a;
}

a.text-white:hover,
a.text-light:hover,
a.text-dark:hover {
  color: #86c33a !important;
}

/* step form css  */
.track_transaction_details {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 30px #00000038;
  border: 1px solid #f1f1f1;
}
.track_transaction_details .trans_id {
  font-size: 20px;
  color: #252d39;
}
.track_transaction_details h3 {
  font-size: 32px;
  text-transform: capitalize;
  margin: 9px 0 15px;
  color: #252d39;
}
.track_transaction_details p {
  color: #252d39;
  font-weight: 500;
}
.transaction_companydetails .companydetails_fieldds {
  box-shadow: inset 0 0 20px #86c33a75;
  border: 1px dashed #86c33a;
  background: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 6px;
}
.transaction_companydetails .fields_heads {
  display: block;
  width: 100%;
  color: #252d39;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 3px;
}
.transaction_main_box {
    border: 1px dashed #86c33a;
    border-radius: 6px;
    padding: 16px 25px;
    box-shadow: inset 0 0 20px #86c33a75;
    background: #fff;
    margin-top: 30px;
}
.transaction_companydetails h3 {
  font-size: 26px;
  color: #252d39;
  display: inline-block;
  text-transform: uppercase;
}
.track_transaction_details span {
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}
.status_transaction span {
  background: #f20;
  text-transform: uppercase;
  padding: 7px 0;
  border-radius: 5px;
}
.track_transaction_details .Date_show {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 10px 40px;
  margin: 10px 0;
  font-weight: 700;
  display: inline-block !important;
  color: #000;
  box-shadow: inset 0 0 20px #86c33a75;
  border: 1px dashed #86c33a;
}
.transaction_main_box h4 {
  color: #86c33a;
  font-size: 32px;
}
.transaction_main_box h5 {
  text-transform: capitalize;
  font-size: 23px;
}
.track_transaction_process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.transaction_process_box {
  width: 100%;
  position: relative;
  max-width: 24%;
}
.transaction_process_box .circle_transaction {
  height: 55px;
  width: 55px;
  border-radius: 50px;
  margin: 0 auto 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8abb0;
  font-size: 16px;
  border: 10px solid #a8abb0;
  position: relative;
  transition: 0.5s all;
  z-index: 2;
}
.transaction_process_box::after {
  position: absolute;
  content: '';
  top: 25px;
  border-top: 7px solid #a8abb0;
  width: 100%; 
  z-index: 0;
  transition: 0.5s all;
}

.transaction_process_box.active .circle_transaction {
  border-color: #86c33a;
  box-shadow: 0 0 70px #86c33a;
  color: #86c33a;
  transform: scale(1.1);
}
.transaction_process_box.active::after {
  border-color: #86c33a;
}
.track_transaction_process .transaction_process_box:last-child::after{
  display: none;
}
.transaction_details {
  background-color: #fff;
  padding: 10px 0px;
  border-radius: 10px;
  box-shadow: inset 0 0 20px #86c33a75;
  border: 1px dashed #86c33a;
  position: relative;
  height: 90px;
}
.transaction_details::before {
  content: " ";
  position: absolute;
  right: 0;
  top: -15px;
  margin: 0 auto;
  left: 0;
  width: 20px;
  border-top: none;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 15px solid #e7f3d8;
  z-index: 0;
}
.transaction_details strong {
  color: #252d39;
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}
.track_transaction_details .transaction_details span {
  color: #252d39;
  font-size: 13px;
  font-weight: 600;
}
/* step form css  */


/* visa Process  */
.visa_process_services {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: flex-start;
}
.visa_process_box {
  width: 100%;
  max-width: 20%;
  position: relative;
}
.visa_process_box::after {
  position: absolute;
  content: '';
  top: 45px;
  border-top: 7px solid #86c33a;
  width: 100%;
  z-index: 0;
  transition: 0.5s all;
}
.process_circle {
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 16px;
  border-radius: 50px;
  border: 10px solid #86c33a;
  position: relative;
  background-color: #fff;
  z-index: 1;
  box-shadow: 0 0 54px #86c33ae6;
}
.process_circle span {
  display: flex;
  background-color: #fff;
  height: 30px;
  width: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #86c33a;
  font-size: 15px;
  font-weight: 700;
  position: absolute;
  top: -5px;
  left: -11px;
  border: 3px solid #86c33a;
}
.process_circle i {
  color: #86c33a;
  font-size: 28px;
}
.visa_process_box strong {
  color: #86c33a;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  display: block;
}
.visa_process_services .visa_process_box:last-child::after {
  border: 0;
}
.visa_accordion {
  background-color: #fff;
  margin: 0;
  padding: 30px 14px;
  margin-top: 70px;
  border: 4px solid #f1f1f1;
  border-radius: 6px;
}
.visa_accordion .card-header {
  padding: 0;
  border: 0 !important;
  background-color: transparent;
}
.visa_accordion .card-header button {
  border-radius: 0;
  border: 0;
  color: #252d39;
  padding: 16px 30px;
  background-color: #f2f2f2;
  text-transform: capitalize;
  font-size: 15px;
  text-decoration: none;
}
.visa_accordion .card-body {
  padding: 18px 30px;
  font-weight: 600;
}
.visa_accordion .accordion>.card {
  overflow: hidden;
  border: 1px solid #f1f1f1;
  box-shadow: 12px 12px 0px #86c33ac7;
}
.visa_accordion .card-header button::after {
  position: absolute;
  content: '\f068';
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  right: 20px;
  color: #252d39;
  top: 50%;
  transform: translateY(-50%);
}
.visa_accordion .card-header button.collapsed::after{
  content: '\f067';
}
/* visa Process  */

/* visa css  */
.visa_page_banner {
  height: 300px;
  padding: 0 !important;
  display: flex;
  align-items: center;
}
.visa_bannerbox {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px dashed #252d39;
}
.visa_banner_details strong {
  color: #252d39;
  font-weight: 600;
  font-size: 14px;
  display: block;
  text-transform: capitalize;
}
.visa_banner_details span {
  color: #252d39;
  font-weight: 700;
  display: block;
  margin-top: 0px;
  font-size: 18px;
}
.visa_type_inner {
  border: 1px solid #f2f2;
}
.visa_type_box .card-img-top {
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.visa_type_box h4 {
  background: #252d39;
  color: #fff;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 500;
  padding: 14px 20px;
  margin: 0;
}
.visa_type_inner .col-12 .type_inner_box:nth-child(even) {
  background-color: #f1f1f1;
}
.type_inner_box span {
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  display: block;
  color: #252d39;
  text-transform: capitalize;
}
.visa_type_box {
  box-shadow: 14px 14px 4px #00000026;
  border-radius: 8px; 
  border: 1px solid #f1f1f1;
  cursor: pointer;
  transition: 0.5s all;
  position: relative;
}
 
.visa_type_box:hover{
  transform: translateY(-5px);
}
.type_inner_box strong {
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  display: block;
  color: #252d39;
  text-transform: capitalize;
}
.type_inner_box {
  padding: 8px 10px;
  border-bottom: 1px solid #f1f1f1;
}
.visa_type_hover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visa_type_hover .btn {
  padding: 10px 26px;
  font-size: 14px;
  position: absolute;
  transition: 0.5s all;
  transform: scale(0);
}
.visa_type_box:hover .visa_type_hover .btn{
  transform: scale(1.1);
}
.visa_type_hover::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  transition: 0.5s all;
  border-radius: 8px 8px 0 0;
}
.visa_type_box:hover .visa_type_hover::before{
  opacity: 0.6;
}

 
.dis-ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}
.dis-ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #79a70a;
  background: linear-gradient(#9bc90d 0%, #79a70a 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px;
  right: -21px;
}
.dis-ribbon span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #79a70a;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #79a70a;
}
.dis-ribbon span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #79a70a;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #79a70a;
}

/* visa css  */

/* new css navbar-brand */

.ul_circles {
  list-style: circle;
  font-size: 16px;
  padding-left: 26px;
}
.header_main .navbar-nav li{
  position: static;
}
.header_main .navbar-nav .nav-item::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: -1;
}
.header_main .navbar-nav li .dropdown-menu {
  background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.8)) !important;
  backdrop-filter: blur(15px) saturate(0.5);
  transition: visibility 0.1s, margin-top 0.1s, transform 0.1s, opacity 0.1s linear, -webkit-transform 0.1s;
  transform: scale(0.9);
  transform-origin: top;
  display: block;
  height: 0px;
  border-radius: 6px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 98px;
  min-width: 100% !important;
  max-width: 100%; 
  overflow: hidden;
}
.header-fixed .navbar-nav li .dropdown-menu{
  top: 75px;
}
.header_main .navbar-nav li:hover .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.5s, transform 0.5s, opacity 0.3s linear, -webkit-transform 0.5s;
  border: 0;
  background-color: #fff;
  height: auto;
  transform: scale(1);
}
.header_main .navbar-nav li .dropdown-menu.single_drop_down {
  min-width: 250px !important;
}
.testimonial-slider p {
  line-height: 31px;
}
.client_logo_box img {
  width: 100%;
  max-width: 100%; 
}
.client_logo_box {
  margin: 0 16px;
}
.addres_part a {
  font-size: 17px;
  border: 1px dashed;
  padding: 6px 20px; 
  border-radius: 6px;
}
.navbar-brand img {
  max-width: 180px;
  height: auto;
}
.hero_slider_heading {
  font-size: 56px;
}
.business_setup_inner strong {
  font-size: 22px;
  color: #86c33a;
}
.maga_drop__menus {
  padding: 40px 10px;
}
.single_drop_down .maga_drop__menus {
  padding: 20px 10px;
}
.maga_drop__menus .dropdown_heading {
  color: #ffff;
  font-size: 20px;
  display: block;
  margin-bottom: 14px;
  border-left: 4px solid #86c33a;
  padding: 3px 0 3px 12px;
}
.maga_drop__menus ul {
  padding: 0 0 0 36px;
  list-style: circle;
}
.maga_drop__menus ul li a {
  color: #fff;
  font-size: 14px;
  display: block;
  transition: 0.5s all;
}
.maga_drop__menus ul li a:hover{
  transform: translateX(5px);
}
.maga_drop__menus ul li {
  color: #fff;
  margin-bottom: 4px;
}
.megamenus_content {
  display: flex;
  height: 100%;
  background: #86c33a;
  align-items: center;
  border-radius: 4px 0 0 4px;
  padding: 0 40px;
  color: #fff;
}
.megamenus_content span {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 7px;
  display: block;
}
.megamenus_content h2 {
  color: #fff;
  font-size: 54px;
  line-height: 62px;
}
.best_business_box {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best_business_box_inner {
  background-color: #000000c4;
  padding: 40px 40px;
  border-radius: 10px;
  backdrop-filter: blur(1px);
}
.best_business_box_inner h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}
.best_business_box_inner ul li {
  color: #fff;
  font-weight: 500;
  margin: 0 0 5px;
  display: block;
  font-size: 15px;
  position: relative;
}
.best_business_box_inner ul li::after {
  position: absolute;
  content: '';
  top: 8px;
  left: -17px;
  height: 8px;
  width: 8px;
  border-radius: 50px;
  background-color: #86c33a;
}
.map_canvas iframe {
    height: 400px;
}
.cost-calculator .nav-tabs {
  justify-content: center;
  border: 0;
  position: relative;
}
.cost-calculator .nav-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    position: relative;
    background-color: transparent;
}
.cost-calculator .nav-tabs .nav-link .cost-calculator-btn span {
  display: flex;
  text-align: center;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  background: #252d39;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  transition: 0.5s all;
}
.cost-calculator .nav-tabs .nav-item {
  width: 100%;
  max-width: 14%;
  text-align: center;
}
.cost-calculator .nav-tabs .nav-link .cost-calculator-btn label {
  font-weight: 600;
  text-transform: capitalize;
  color: #252d39;
  margin: 0;
  font-size: 15px;
}
.cost-calculator .nav-tabs .nav-link.active .cost-calculator-btn span{
  background-color: #86c33a;
  transform: scale(1.1);
}
.cost-calculator .nav-tabs .nav-link.active .cost-calculator-btn label{
  color: #86c33a;
}
.cost-calculator .nav-tabs .nav-link::after {
  position: absolute;
  content: '';
  top: 25px;
  border: 1px dashed #252d39;
  width: 100%;
  left: 50%;
  z-index: -1;
  transition: 0.5s all;
}
.cost-calculator .nav-tabs .nav-link.active::after{
  border: 1px dashed #86c33a;
} 
.cost-calculator .nav-tabs .nav-item:last-child .nav-link::after{
  display: none;
}
.caculator-form {
  box-shadow: 0 0 10px #0000001f;
  border-radius: 6px;
  padding: 30px;
  border-top: 4px solid #86c33a;
  border-bottom: 4px solid #86c33a;
}
.caculator-form .from-group .form-lable {
  display: block;
  font-weight: 600;
  font-size: 17px;
  color: #252d39;
  margin: 0;
}
.caculator-form .from-group .form-select {
  height: 52px;
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
  padding: 5px 14px;
  font-weight: 600;
  border: 1px solid #252d3940;
  background: #f2f2f2;
  color: #252d39;
}
.caculator-form .from-group .form-select:focus{
  box-shadow: 0px 15px 39px 0px #08126d1a;
  border-color: #86c33a !important;
}
.caculator-form .from-group .form-control {
  height: 52px;
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
  padding: 13px 14px;
  font-weight: 600;
  border: 1px solid #252d3940;
  background: #f2f2f2;
  color: #252d39;
}
.caculator-form .from-group textarea.form-control{
  height: 120px;
  resize: none;
}
.custom_checkbox input{
  display: none;
}
.custom_checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  font-weight: 600;
  color: #252d39;
  font-size: 14px;
  margin: 0;
}
.custom_checkbox label::after {
  position: absolute;
  content: '';
  top: -4px;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid;
}
.custom_checkbox label::before {
  position: absolute;
  content: '';
  top: 3px;
  left: 7px;
  height: 16px;
  width: 16px;
  background-color: #252d39;
  border-radius: 50px;
  z-index: 1;
  opacity: 0;
  transition: 0.5s all;
}
.custom_checkbox input:checked ~ label::before{
  opacity: 1;
}
.cost-calculator .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  min-width: 120px;
}
.flex-show {
  display: flex;
  justify-content: space-between;
}
.setting_box {
  background: #f1f1f1;
  padding: 25px 40px;
  border-radius: 12px;
  position: relative;
  border: 1px dashed #86c33a;
}
.setting_box span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 5px;
  top: 26px;
  font-weight: bold;
  border: 1px dashed #86c33a;
  font-size: 20px;
  color: #252d39;
  position: absolute;
  left: -22px;
}
.setting_box h3 {
  font-size: 24px;
  text-transform: capitalize;
}
.setting_box p {
  color: #172231;
  font-weight: 500;
  margin: 0;
}
.free_zone_box img {
  height: 230px;
  object-fit: cover;
}
.locations_zone .btn {
  font-size: 14px;
  padding: 13px 25px;
}
.locations_zone .card-img-top {
  width: 150px;
  height: 150px;
  margin: -60px auto 0;
  border-radius: 50%;
  object-fit: cover;
}
.locations_zone h4 {
  text-transform: capitalize;
  font-weight: 500;
}
.visa_section_content {
  width: 100%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 12px 12px 3px #0000001f;
  border: 1px solid #ffffff0d;
  transition: 0.5s all;
  break-inside: avoid;
}
 
.visa_section_content h3 {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 500;
}
.list_circle {
  list-style: decimal-leading-zero;
  font-size: 15px;
  padding-left: 30px;
}
.list_circle li p {
  margin: 0;
}
.list_circle li {
  margin-bottom: 5px;
}
.visa_section_main {
  column-count: 2;
  display: block;
  column-gap: 25px;
}
.header_main .container , .top-header .container {
  max-width: 95%;
}
.header_main .navbar-nav li:hover .dropdown-menu .container{
  max-width: 100%;
}
.header-fixed {
  position: fixed !important;
  width: 100%;
  top: 0;
  left: 0; 
  right: 0;
  z-index: 999 !important;
  background-color: #fff;
}
.whats_app {
  color: #fff !important;
  background: #86c33a;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  font-size: 32px;
  border-radius: 50px;
  position: fixed;
  z-index: 9;
  bottom: 10px;
  left: 10px;
}
.mmap iframe {
  height: 180px;
  border-radius: 0px 20px 0px 20px;
}
.hover_part ul {
  text-align: left;
  list-style-type: circle !important;
  color: #fff;
}
.track_btn .btn {
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  padding: 5px 17px;
  border-radius: 35px;
  font-weight: 600;
  border: 0;
}
.flag_img {
  max-width: 30px;
}
.skiptranslate {
  display: none;
}
.promotions_content strong {
  font-size: 20px;
  color: #86c33a;
  display: block;
  margin-bottom: 10px;
}
.other-offers-box {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
}
.other-offers-box h3 {
  font-size: 26px;
  text-transform: capitalize;
  text-align: center;
  line-height: 35px;
  margin-bottom: 12px;
}
.licence_include .other-offers-box h3 {
  font-size: 22px; 
  line-height: 30px;
  margin-bottom: 12px;
}
.residance_visa_box {
  border: 1px dashed #86c33a;
  border-radius: 6px;
  padding: 20px 35px;
  box-shadow: inset 0 0 20px #86c33a75;
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
}
.residance_visa_box span {
  font-size: 14px;
  font-weight: 600;
  color: #252d39;
}
.residance_visa_box label {
  margin: 0;
  position: absolute;
  color: #86c33a;
  font-size: 20px;
  background-color: #f8fbf3;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 20px #86c33a75;
  border: 1px dashed #86c33a;
}
.other-offers .btn {
  font-size: 14px;
  padding: 14px 24px;
}
.benifits_left {
  padding: 20px 30px;
  border-radius: 10px;
}
.benifits-sticky{
  position: sticky;
  top: 100px;
}
.benifits_left h2 {
  font-size: 21px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  line-height: 29px;
  color: #86c33a;
}
.benifits_left ul {
  padding-left: 20px;
  list-style: circle;
  font-size: 16px;
  margin: 0;
}
.benifits_left ul li a {
  font-size: 15px;
  font-weight: 600;
  color: #252d39;
  display: block;
  transition: 0.5s all;
}
.benifits_left ul li a:hover{
  transform: translateX(-5px);
}
.benifits_left ul li {
  margin-bottom: 5px;
}
.benifits_mainland {
  overflow: unset !important;
}
.benifits-content-main h3 {
  text-transform: capitalize;
  font-size: 28px;
  margin-bottom: 12px;
  color: #252d39;
}
.activities_tables .table thead th {
  background: #86c33a;
  color: #fff;
  border: 0;
  padding: 17px 30px;
  font-weight: 600;
  font-size: 16px;
  border-right: 1px solid;
}
.activities_tables .table td {
  padding: 15px 26px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  border-right: 1px solid #f1f1f1;
}
.activities_tables .table tr:nth-child(even) td {
  background-color: #f1f1f1;
  border-right: 1px solid #ffffff;
}
.activities_tables {
  border-radius: 6px;
  overflow: hidden;
}
/* new css navbar-brand */


/* language css  */

.translate_wrapper {
  position: relative;
}
.current_lang {
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  background: transparent;
}
.lang {
  padding: 10px 15px;
  display: flex;
  align-items: center;
}
.circle_language {
  height: 30px;
  width: 30px;
  background: transparent !important;
  justify-content: center;
  padding: 0;
  border: 0 !important;
}
 
.lang.selected{
  display:none;
}

.lang img, 
.lang span.lang-txt{
  display:inline-block;
  margin-left:5px;
  vertical-align:middle;
}

.lang span.lang-txt {
  position: relative;
  top: -1px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.lang img{
  width:21px;
  margin-left:0;
}

.circle_language img {
  width: 28px;
}


.lang span span{
  color:#999;
  font-weight:400;
}

.lang span.fa{
  font-size:12px;
  position:relative;
  top:-1px;
  margin-left:3px;
}


/*more lang*/
.more_lang{
  transform:translateY(-20px);
  opacity:0;
  cursor:pointer;
  display:none;
  position: absolute;
  z-index: 9;
  background: #fff;
  right: 0;
  border-radius: 4px;
  top: 38px;
  transition: all .3s cubic-bezier(.25, 1.15, .35, 1.15);
  overflow: hidden;
}

.translate_wrapper.active .more_lang{
  display:block; 
}

.more_lang.active{
  opacity:1;
   transform:translateY(-0px);
}

.more_lang .lang:hover {
  background: #86c33a;
  color: #fff;
}

.more_lang .lang:hover span{
  color:#fff;
}

.translate_wrapper:hover,
.translate_wrapper.active,
.content a:hover{
  box-shadow:rgba(0,0,0,0.2) 0 5px 15px;  
  -webkit-transition: all 0.3s cubic-bezier(0,.99,.44,.99);
	-moz-transition:    all 0.3s cubic-bezier(0,.99,.44,.99);
	-o-transition:      all 0.3s cubic-bezier(0,.99,.44,.99);
	-ms-transition:     all 0.3s cubic-bezier(0,.99,.44,.99);
	transition:         all 0.3s cubic-bezier(0,.99,.44,.99);
  
}

.translate_wrapper.active .lang{
  border-bottom:0;
}
/* language css  */

/* section */
.section {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.section-sm {
  padding-top: 70px;
  padding-bottom: 70px;
}
.section-title {
  margin-bottom: 20px;
  font-size: 38px;
}
.section-title-border {
  position: relative;
  height: 5px;
  width: 30px;
  background: #86c33a;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
  margin-right: auto;
}
.section-title-border::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  background: #86c33a;
  border-radius: 10px;
  right: -60%;
  top: 0;
}
.section-title-border::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 25%;
  background: #86c33a;
  border-radius: 10px;
  right: -100%;
  top: 0;
}
.section-title-border.border-center {
  margin: 0 auto 20px;
}
.section-title-border.border-white {
  background: #fff;
}
.section-title-border.border-white::before {
  background: #fff;
}
.section-title-border.border-white::after {
  background: #fff;
}
.section-title-border.border-inline {
  display: inline-block;
  margin-bottom: 5px;
}
.subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #818385;
}

.section-bottom-lg {
  padding-bottom: 240px;
}

/* /section */
/* background image */
.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-contain {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

/* /background image */
/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
}

.overlay-secondary {
  position: relative;
}
.overlay-secondary::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #252d39;
  opacity: 0.85;
}

/* /overlay */
/* common class */
.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #86c33a !important;
}

.bg-secondary {
  background: #252d39 !important;
}

.bg-secondary-darken {
  background: #1f2630 !important;
}

.bg-gray {
  background: #f5f6fa !important;
}

.bg-gray-white {
  background-image: linear-gradient(to right, #f5f6fa 45%, #fff 0%);
}

.bg-white-gray {
  background-image: linear-gradient(to right, #fff 45%, #f5f6fa 0%);
}

.bg-white2-gray {
  background-image: linear-gradient(to right, #fff 70%, #f5f6fa 0%);
}

.text-primary {
  color: #86c33a !important;
}

.text-color {
  color: #818385;
}

.text-light {
  color: #ddd !important;
}

.text-dark {
  color: #172231;
}

.hilighted {
  background: #252d39;
  padding: 0 5px;
  border-radius: 2px;
  color: #fff;
}

.letter-spacing {
  letter-spacing: 2px;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.zindex-1 {
  z-index: 1;
}

.zindex-0 {
  z-index: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.min-height-400 {
  min-height: 400px;
}

.border-color {
  border-color: #e7e7e7 !important;
}

.border-muted {
  border-color: #404751 !important;
}

.rounded-top-0 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.flex-basis-33 {
  flex-basis: 33.333333%;
}

.icon {
  font-size: 40px;
}

.icon-sm {
  font-size: 34px;
}

.icon-xs {
  font-size: 22px;
}

.icon-lg {
  font-size: 56px;
}

.box-shadow {
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
}

.translate-top {
  transform: translateY(-100px);
}

.transition {
  transition: 0.2s ease;
}

.font-size-30 {
  font-size: 30px;
}

.font-weight-semebold {
  font-weight: 600 !important;
}

.font-secondary {
  font-family: "Barlow Condensed", sans-serif !important;
}

.text-decoration-none {
  text-decoration: none !important;
}
.text-decoration-none:hover {
  text-decoration: none !important;
}

.border-md-right {
  border-right: 1px solid;
}
@media (max-width: 767px) {
  .border-md-right {
    border: 0;
  }
}

/* /common class */
/* icon animation */
.icon-bg {
  position: relative;
  background-color: rgba(134, 195, 58, 0.2);
  display: inline-block;
  height: 100px;
  width: 100px;
  border-radius: 120px 135px 110px 90px;
}
.icon-bg::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 5px;
  background: rgba(134, 195, 58, 0.05);
  border: 2px solid #86c33a;
  border-radius: 130px 120px 160px 130px;
}
.icon-bg .icon {
  line-height: 100px;
}

.water-wave {
  position: relative;
  -webkit-animation-name: water-wave;
          animation-name: water-wave;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.water-wave::before {
  -webkit-animation-name: water-wave;
          animation-name: water-wave;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes water-wave {
  0% {
    border-radius: 120px 135px 110px 90px;
  }
  25% {
    border-radius: 130px 140px 100px 110px;
  }
  50% {
    border-radius: 110px 97px 150px 100px;
  }
  75% {
    border-radius: 80px 107px 120px 90px;
  }
  100% {
    border-radius: 120px 135px 110px 90px;
  }
}

@keyframes water-wave {
  0% {
    border-radius: 120px 135px 110px 90px;
  }
  25% {
    border-radius: 130px 140px 100px 110px;
  }
  50% {
    border-radius: 110px 97px 150px 100px;
  }
  75% {
    border-radius: 80px 107px 120px 90px;
  }
  100% {
    border-radius: 120px 135px 110px 90px;
  }
}

.circle_design_change {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
}
.circle_design_change .icon {
  line-height: normal;
  font-size: 20px;
  font-weight: 700;
  color: #86c33a;
}
/* /icon animation */
/* breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* google map */
#map_canvas {
  height: 500px;
}

/* form control */
.form-control {
  height: 52px;
  padding: 0 22px;
  font-size: 15px;
  background: #f2f2f2;
  border-radius: 4px;
}

.form-control-sm {
  height: 45px;
}
.form-control:focus {
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
  border-color: #86c33a !important;
  background-color: #fff !important;
}

.focus-shadow-none {
  box-shadow: none !important;
}

textarea.form-control {
  height: 150px;
}

textarea.form-control-sm {
  height: 100px;
}

/* /form control */
/* social icon */
.social-icon li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  line-height: 45px;
  text-align: center;
}
.social-icon li a:hover {
  color: #86c33a;
  background: #fff;
}

.social-icon-alt li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  line-height: 45px;
  text-align: center;
}
.social-icon-alt li a:hover {
  color: #fff;
  background: #86c33a;
  border-color: #86c33a;
}

/* /social icon */
/* slick style */
.slick-slide {
  outline: 0;
}

/* slick arrows */
.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: rgba(134, 195, 58, 0.5);
  color: #fff;
  border: 0;
  line-height: 70px;
  font-size: 35px;
}
.slick-arrow::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background: transparent;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.2s ease;
}
.slick-arrow::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  transition: 0.2s ease;
}
@media (max-width: 575px) {
  .slick-arrow {
    display: none;
  }
}
.slick-arrow:focus {
  outline: 0;
}
.slick-arrow:hover {
  background: #86c33a;
}

.prevArrow {
  left: 0px;
}
.prevArrow::before {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  right: 35px;
}
.prevArrow::after {
  right: 20px;
}

.nextArrow {
  right: 0px;
}
.nextArrow::before {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  left: 35px;
}
.nextArrow::after {
  left: 20px;
}

/* /slick arrows */
/* slick dots */
.slick-dots {
  padding-left: 0;
  text-align: center;
  position: absolute;
  bottom: -185px;
  left: 0;
  right: 0;
  z-index: 9;
}
.slick-dots li {
  display: inline-block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 20px;
  transition: 0.2s ease;
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
}
.slick-dots li img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}
.slick-dots li.slick-active {
  transform: scale(1.2);
}

/* /slick dots */
/* Navbar */
/* top header */
.top-header {
  font-size: 14px;
}

/* /top header */
/* navigation */
.navigation {
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.09);
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .navigation { 
    display: flex;
    align-items: center;
  }
}

.navbar {
  padding: 0;
}
.navbar-collapse {
  padding-bottom: 10px;
  transition: 0.2s ease;
}
.navbar .nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}
.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleX(1);
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 15px;
  border: 0;
  top: 100px;
  left: -25px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  background: #fff;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transform-origin: unset;
  }
}
.navbar .dropdown-menu.show {
  visibility: hidden;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}
.navbar .dropdown-item {
  position: relative;
  color: #172231;
  transition: 0.2s ease;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}
.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}
.navbar .dropdown-item:hover {
  color: #86c33a;
  background: transparent;
}

.navbar-light .navbar-nav .nav-link {
  color: #172231;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #86c33a;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 15px;
}
.header-fixed .navbar-nav .nav-link {
  padding: 26px 15px;
}
@media (max-width: 1200px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 10px;
  }
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px;
  }
}

/* search */
.search-btn {
  border: 0;
  font-size: 18px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50px !important;
  padding: 0;
}
.search-wrapper {
  position: absolute; 
  top: 50%;
  transform: translateY(-50%); 
  left: 0;
  right: 0;
  height: auto;
  z-index: 2;
  visibility: hidden;
  transition: 0.2s ease;
  opacity: 0;
}
.search-wrapper.open {
  visibility: visible;
  opacity: 1;
}

.search-box {
  height: 85px;
  width: 100%;
  border: 0;
  background: #fff;
  font-size: 20px;
  padding: 30px;
}
.header-fixed .search-box {
  height: 65px;
}
@media (min-width: 992px) {
  .search-box {
    margin-top: -3px;
  }
}
.search-box:focus {
  box-shadow: none !important;
}

.search-close {
  position: absolute;
  right: 5px;
  top: 50%;
  border: 0;
  background: transparent;
  font-size: 20px;
  transform: translateY(-50%);
}

/* /navigation */
/* hero slider */

.hero-section {
  padding: 120px 0;
  position: relative;
}
.hero-section::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #00000070;
  z-index: 0;
}
 .hero-slider-item .container{
  z-index: 1;
  position: relative;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 160px 0 170px;
  }
}

.hero-slider {
  overflow-x: hidden;
}
.hero-slider .prevArrow {
  left: -100px;
}
.hero-slider .nextArrow {
  right: -100px;
}
.hero-slider:hover .prevArrow {
  left: 35px;
}
.hero-slider:hover .nextArrow {
  right: 35px;
}

/* /hero slider */
/* banner feature */
.banner-feature-wrapper {
  transform: translateY(-100px);
}

.hover-bg-dark:hover, .hover-bg-dark.active {
  background: #252d39 !important;
}
.hover-bg-dark:hover *, .hover-bg-dark.active * {
  color: #fff !important;
}

/* /banner feature */
/* about */
.image-bg {
  position: absolute;
  top: 20%;
  right: 0;
  z-index: -1;
}

.about-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
}

.philosophy-bg-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}

/* /about */
/* funfacts */
.funfacts {
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .funfacts {
    background: #252d39;
  }
}
.funfacts .container {
  position: relative;
}
.funfacts{
  background: #252d39;
}
@media (max-width: 991px) {
  .funfacts .container {
    transform: translate(0);
  }
  .funfacts .container::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .funfacts h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .funfacts h3 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .funfacts .icon-lg {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .funfacts .icon-lg {
    font-size: 50px;
  }
}

/* /funfacts */
/* feature */
.feature-img-bg {
  position: relative;
}
.feature-img-bg::before {
  position: absolute;
  content: "";
  background: url(../images/backgrounds/feature-bg.png);
  top: -100px;
  right: -120px;
  height: 150%;
  width: 120%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 991px) {
  .feature-img-bg::before {
    display: none;
  }
}

.play-video {
  position: absolute;
  left: 0;
  bottom: 20%;
}

.play-icon {
  display: flex;
  min-width: 90px;
  height: 90px;
  text-align: center;
  line-height: 90px;
  border-radius: 50%;
  box-shadow: 0px 15px 39px 0px #08126d1a;
  font-size: 30px;
  background: #fff;
  align-items: center;
  justify-content: center;
}

/* /feature */
/* service */
.service-wrapper {
  transform: translateY(-200px);
}

.card-icon {
  position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #86c33a;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 32px;
  left: 15px;
  top: -90px;
}

.service-bg-dots {
  position: relative;
}
.service-bg-dots::before {
  position: absolute;
  content: "";
  background: url(../images/backgrounds/service-page-2.png);
  top: 0px;
  right: 0px;
  height: 100%;
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

/* /service */
/* team */
.team-member-img img {
  position: relative;
  z-index: 2;
}
.team-member-img::before {
  position: absolute;
  content: "";
  background: url(../images/backgrounds/team-member-bg.png);
  top: 0px;
  right: 0px;
  height: 60%;
  width: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transition: 0.2s ease;
}
.team-member-img::after {
  position: absolute;
  content: "";
  background: url(../images/backgrounds/team-member-bg.png);
  bottom: -36px;
  left: 0px;
  height: 60%;
  width: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transition: 0.2s ease;
}
.team-member:hover .team-member-img::before {
  top: -20px;
  right: -20px;
}
.team-member:hover .team-member-img::after {
  bottom: -60px;
  left: -20px;
}
.team-member:hover .hover-icon {
  transform: scale(1);
  opacity: 1;
}
.team-member:hover .hover-icon .social-icon a {
  transform: scale(1);
}

.hover-icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(134, 195, 58, 0.9);
  transition: 0.2s ease;
  transform: scale(0.8);
  z-index: 3;
  opacity: 0;
}
.hover-icon .social-icon a {
  transform: scale(0);
}

/* /team */
/* project */
.project-item img {
  transition: 0.4s ease-in;
}
@media (max-width: 767px) {
  .project-item img {
    margin-bottom: -60px;
  }
}
.project-item:hover img {
  transform: scale(1.05);
}
.project-item:hover .hover-overlay {
  opacity: 1;
}
.project-item:hover .hover-overlay a {
  transform: translateY(-50%) scale(1);
}

.hover-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(134, 195, 58, 0.9);
  transition: 0.4s ease;
  opacity: 0;
}
.hover-overlay a {
  position: relative;
  font-size: 46px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: 0.4s ease;
  display: inline-block;
}

.uni-plus {
  position: relative;
  padding: 0 20px;
}
.uni-plus::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 2px;
  background: #fff;
}
.uni-plus::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 40px;
  background: #fff;
}

.filter-controls li {
  cursor: pointer;
}
.filter-controls li.active {
  color: #86c33a !important;
}

/* /project */
/* testimonial */
.bg-dots {
  position: relative;
}
.bg-dots::before {
  position: absolute;
  content: "";
  background: url(../images/backgrounds/testimonial-bg-1.png);
  top: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.bg-dots .container {
  position: relative;
  z-index: 2;
}

.testimonial-slider .nextArrow,
.testimonial-slider .prevArrow {
  opacity: 0;
  transition-delay: 1s;
}
.testimonial-slider:hover .nextArrow {
  opacity: 1;
  right: -100px;
  transition-delay: 0s;
}
.testimonial-slider:hover .prevArrow {
  opacity: 1;
  left: -100px;
  transition-delay: 0s;
}

.bg-quote {
  position: relative;
}
.bg-quote::before {
  position: absolute;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 150px;
  color: rgba(134, 195, 58, 0.3);
  top: -10px;
  line-height: 1;
  left: 50%;
  transform: translateX(-50%);
}

/* /testimonial */
/* clients logo */
.clients-logo {
  text-align: center;
  position: relative;
  height: 120px;
  width: 180px;
}
.clients-logo:hover .white {
  opacity: 0;
}
.clients-logo:hover .primary {
  opacity: 1;
}
.clients-logo .white {
  opacity: 1;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 10px;
}
.clients-logo .primary {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 10px;
}

.customer-bg-shape {
  position: absolute;
  top: 0;
  right: 50%;
}

/* /clients logo */
/* cta sm */
.cta-sm-bg {
  position: relative;
}
.cta-sm-bg::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 90%;
  top: 0;
  background: url(../images/backgrounds/cta-sm-right.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.cta-sm-bg::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: url(../images/backgrounds/cta-sm-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

/* /cta sm */
/* pricing */
.pricing-table {
  transition: 0.2s ease;
  position: relative;
}
.pricing-table::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url(../images/backgrounds/pricing-table-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.pricing-table.active {
  background: #86c33a;
  color: #fff;
}
.pricing-table.active h2,
.pricing-table.active h3,
.pricing-table.active h4,
.pricing-table.active h5,
.pricing-table.active h6,
.pricing-table.active .subtitle {
  color: #fff;
}

.pricing-duration {
  transition: 0.2s linear;
}
.pricing-duration.active {
  font-weight: 600;
  color: #172231;
}

.pricing-switcher {
  text-align: center;
}
.pricing-switcher .fieldset {
  display: inline-block;
  position: relative;
  padding: 2px;
  border-radius: 50em;
  background: #86c33a;
  height: 40px;
  width: 100px;
}
.pricing-switcher input[type=radio] {
  position: absolute;
  opacity: 0;
}
.pricing-switcher label {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  color: #818385;
  top: 50%;
  transform: translateY(-50%);
  text-transform: uppercase;
  font-size: 16px;
}
.pricing-switcher label.monthly {
  right: 130px;
}
.pricing-switcher label.monthly::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 50px;
  border-radius: 50px;
  top: 50%;
  transform: translateY(-50%);
  right: -85px;
}
.pricing-switcher label.yearly {
  left: 130px;
}
.pricing-switcher label.yearly::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 50px;
  border-radius: 50px;
  top: 50%;
  transform: translateY(-50%);
  left: -85px;
}
.pricing-switcher .switch {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 50em;
  transition: transform 0.3s;
}
.pricing-switcher input[type=radio]:checked + label + .switch,
.pricing-switcher input[type=radio]:checked + label:nth-of-type(n) + .switch {
  transform: translateX(60px);
}

.pricing-list li {
  position: relative;
  padding: 0 !important;
}

@media only screen and (min-width: 768px) {
  .pricing-list {
    margin: 3em 0 0;
  }

  .pricing-list:after {
    content: "";
    display: table;
    clear: both;
  }

  .pricing-list > li {
    width: 33.3333333333%;
    float: left;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.pricing-wrapper {
  position: relative;
}

.touch .pricing-wrapper {
  perspective: 2000px;
}

.pricing-wrapper.is-switched .is-visible {
  transform: rotateY(180deg);
  -webkit-animation: rotate 0.5s;
          animation: rotate 0.5s;
}

.pricing-wrapper.is-switched .is-hidden {
  transform: rotateY(0);
  -webkit-animation: rotate-inverse 0.5s;
          animation: rotate-inverse 0.5s;
  opacity: 0;
}

.pricing-wrapper.is-switched .is-selected {
  opacity: 1;
}

.pricing-wrapper.is-switched.reverse-animation .is-visible {
  transform: rotateY(-180deg);
  -webkit-animation: rotate-back 0.5s;
          animation: rotate-back 0.5s;
}

.pricing-wrapper.is-switched.reverse-animation .is-hidden {
  transform: rotateY(0);
  -webkit-animation: rotate-inverse-back 0.5s;
          animation: rotate-inverse-back 0.5s;
  opacity: 0;
}

.pricing-wrapper.is-switched.reverse-animation .is-selected {
  opacity: 1;
}

.pricing-wrapper > li {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.pricing-wrapper .is-visible {
  position: relative;
  z-index: 5;
}

.pricing-wrapper .is-hidden {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  transform: rotateY(180deg);
}

.pricing-wrapper .is-selected {
  z-index: 3 !important;
}

@-webkit-keyframes rotate {
  0% {
    transform: perspective(2000px) rotateY(0);
  }
  70% {
    transform: perspective(2000px) rotateY(200deg);
  }
  100% {
    transform: perspective(2000px) rotateY(180deg);
  }
}

@keyframes rotate {
  0% {
    transform: perspective(2000px) rotateY(0);
  }
  70% {
    transform: perspective(2000px) rotateY(200deg);
  }
  100% {
    transform: perspective(2000px) rotateY(180deg);
  }
}
@-webkit-keyframes rotate-inverse {
  0% {
    transform: perspective(2000px) rotateY(-180deg);
  }
  70% {
    transform: perspective(2000px) rotateY(20deg);
  }
  100% {
    transform: perspective(2000px) rotateY(0);
  }
}
@keyframes rotate-inverse {
  0% {
    transform: perspective(2000px) rotateY(-180deg);
  }
  70% {
    transform: perspective(2000px) rotateY(20deg);
  }
  100% {
    transform: perspective(2000px) rotateY(0);
  }
}
@-webkit-keyframes rotate-back {
  0% {
    transform: perspective(2000px) rotateY(0);
  }
  70% {
    transform: perspective(2000px) rotateY(-200deg);
  }
  100% {
    transform: perspective(2000px) rotateY(-180deg);
  }
}
@keyframes rotate-back {
  0% {
    transform: perspective(2000px) rotateY(0);
  }
  70% {
    transform: perspective(2000px) rotateY(-200deg);
  }
  100% {
    transform: perspective(2000px) rotateY(-180deg);
  }
}
@-webkit-keyframes rotate-inverse-back {
  0% {
    transform: perspective(2000px) rotateY(180deg);
  }
  70% {
    transform: perspective(2000px) rotateY(-20deg);
  }
  100% {
    transform: perspective(2000px) rotateY(0);
  }
}
@keyframes rotate-inverse-back {
  0% {
    transform: perspective(2000px) rotateY(180deg);
  }
  70% {
    transform: perspective(2000px) rotateY(-20deg);
  }
  100% {
    transform: perspective(2000px) rotateY(0);
  }
}
/* /pricing */
/* blog */
.card-type {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 3px 10px;
  color: #fff;
  background: #86c33a;
  z-index: 1;
}

.card-meta {
  font-size: 14px;
}

.blog-shape-left {
  position: absolute;
  left: 0;
  bottom: 0;
}

.blog-shape-right {
  position: absolute;
  right: 0;
  top: 50%;
}

.clip-half-cycle {
  -webkit-clip-path: circle(157% at 50% -100%);
          clip-path: circle(157% at 50% -100%);
}

.title-border-left {
  position: relative;
  padding-left: 30px;
}
.title-border-left::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 5px;
  border-radius: 30px;
  background: #86c33a;
}

.post-search {
  border: 0;
  background: transparent;
  position: absolute;
  bottom: 15px;
  right: 0;
}

.tag-list a {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(51, 77, 128, 0.12);
  border-radius: 35px;
  margin-bottom: 15px;
  color: #818385;
}
.tag-list a:hover {
  background: #86c33a;
  color: #fff;
  box-shadow: 0;
}

blockquote {
  padding: 30px 40px;
  font-style: italic;
  color: #172231;
  border-left: 2px solid #86c33a;
  box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
  position: relative;
  margin-bottom: 40px;
}
blockquote::before {
  position: absolute;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 100px;
  color: rgba(134, 195, 58, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-style: normal;
}
blockquote p {
  font-style: normal;
  margin-top: 10px;
}

/* /blog */
/* footer */
.list-styled {
  padding-left: 0;
}
.list-styled li {
  position: relative;
  padding-left: 20px;
}
.list-styled li::before {
  position: absolute;
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 14px;
  left: 0;
  top: 1px;
  color: #86c33a;
  transition: 0.3s ease;
}
.list-styled li:hover::before {
  color: #86c33a !important;
}
.list-styled li:hover a {
  text-decoration: underline;
}
.list-styled li.text-light::before {
  color: #ddd;
}
.list-styled.style-circle li::before {
  content: "\f10c";
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 35px;
}
.newsletter-form:focus {
  background: rgba(255, 255, 255, 0.1);
}
.newsletter-form::-moz-placeholder {
  color: #fff;
}
.newsletter-form:-ms-input-placeholder {
  color: #fff;
}
.newsletter-form::placeholder {
  color: #fff;
}

.btn-subscribe {
  position: absolute;
  top: 0;
  right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* /footer */
/*# sourceMappingURL=maps/style.css.map */




@media(max-width:1199px){
  .megamenus_content h2 { 
      font-size: 44px;
      line-height: 55px;
  }
  .hero_slider_heading {
      font-size: 46px;
  }
  .header_main .container, .top-header .container {
      max-width: 100%;
  }
  .navbar .nav-item .nav-link {  
      font-size: 14px;
  }
}

@media(max-width:1023px){
  .head_allpages {
      font-size: 34px;
  }
  .hero_slider_heading {
      font-size: 38px;
  }
  .hero-section {
      padding: 80px 0;
  }
  .section {
      padding: 70px 0; 
  }
  .section-title {
      margin-bottom: 14px;
      font-size: 30px;
  }
  .btn {
    font-size: 14px;
  }
  .best_business_box_inner h3 {
      font-size: 30px;
      margin-bottom: 10px;
  }
  .best_business_box_inner ul li {
      font-size: 14px;
  }
  .best_business_box { 
    height: 440px;
  }
  .testimonial-slider p {
      line-height: 26px;
      font-size: 15px;
  }
  .cost-calculator .nav-tabs .nav-link .cost-calculator-btn span {
      height: 40px;
      width: 40px; 
      margin: 0 auto 7px;  
      font-size: 14px; 
  }
  .cost-calculator .nav-tabs .nav-link .cost-calculator-btn label {
      font-size: 14px;
      display: block;
      line-height: 18px;
  }
  .setting_box h3 {
    font-size: 20px;
  }
  .paperless_story_bg {
      height: 500px;
      background-attachment: fixed;
      background-size: cover;
      background-repeat: no-repeat;
  }
  .visa_section_content { 
      padding: 20px;
  }
  .visa_section_content h3 { 
      font-size: 22px; 
  }
  .locations_zone .card-img-top {
      width: 100px;
      height: 100px;
      margin: -40px auto 0; 
  }
  .benifits-sticky {
      position: relative;
      top: 0;
  }
}
@media(max-width:767px){
  .visa_section_main {
      column-count: 1; 
      column-gap: 10px;
  }
  .navbar-brand img {
      max-width: 130px;
      height: auto;
  }
  .header_main {
      padding: 5px 0;
  }
  .hero_slider_heading {
      font-size: 30px;
  }
  p, .paragraph {
    font-size: 14px;
  }
  .btn {
      font-size: 13px;
      padding: 12px 26px;
      font-weight: 600;
  }
  .font-size-30 {
      font-size: 25px;
  }
  .section-title {
      margin-bottom: 14px;
      font-size: 24px;
  }
  .hero-section {
      padding: 50px 0;
  }
  .section {
      padding: 50px 0;
  }
  .similer_header h4  {
      font-size: 18px;
      margin-bottom: 4px;
  }
  .business_setup_inner strong {
    font-size: 17px;
  }
  .testimonial-slider p {
      line-height: 25px;
      font-size: 14px;
  }
  h4, .h4, .subtitle {
      font-size: 18px;
  }
  .addres_part a {
      font-size: 15px;
      border-radius: 4px;
  }
  .best_business_box_inner h3 {
      font-size: 24px;
      margin-bottom: 10px;
  }
  .best_business_box_inner {
      padding: 30px 39px;
      margin: 0 10px;
  }
  .head_allpages {
      font-size: 26px;
  }
  .cost-calculator .nav-tabs .nav-item {
      width: 100%;
      max-width: 33.33%;
      text-align: center;
      margin-bottom: 20px;
  }
  .cost-calculator .nav-tabs .nav-link .cost-calculator-btn label {
    font-size: 13px;
  }
  .cost-calculator .nav-tabs .nav-link::after{
    display: none;
  }
  .cost-calculator-heading .section-title {
    margin-bottom: 0;
  }
  .caculator-form {
    padding: 18px;
  }
  .caculator-form .from-group .form-lable {
      font-size: 14px;
      line-height: 21px;
  }
  .caculator-form .from-group .form-select {
    height: 44px;
    width: 100%;
    border-radius: 6px;
    font-size: 13px;
    padding: 5px 12px;
  }
  .cost-calculator .btn {
      font-size: 12px; 
      padding: 12px 20px;
      border-radius: 50px;
      min-width: 100px;
  }
  .caculator-form .from-group textarea.form-control {
      height: 90px; 
  }
  .custom_checkbox label::before { 
      top: 4px;
      left: 5px;
      height: 14px;
      width: 14px;  
  }
  .custom_checkbox label::after { 
      top: -1px;
      left: 0;
      height: 24px;
      width: 24px; 
  }
  .custom_checkbox label {
      padding-left: 33px; 
      font-size: 13px; 
  }
  .caculator-form .from-group .form-control{
    height: 44px;
    width: 100%;
    border-radius: 6px;
    font-size: 13px;
    padding: 5px 12px;
  }
  .paperless_story_bg {
    height: 300px;
  }
  .play-icon {
      min-width: 40px;
      height: 40px;
      font-size: 13px;
  }
  .setting_box h3 {
      font-size: 18px;
  }
  .setting_box {
      padding: 20px 30px;
  }
  .setting_box span { 
      height: 40px;
      width: 40px; 
      border-radius: 5px;
      top: 18px; 
      font-size: 16px;   
      left: -19px;
  }
  .form-control {
      height: 45px;
      padding: 0 18px;
      font-size: 13px;
  }
  textarea.form-control {
      height: 90px;
  }
  .locations_zone .card-img-top {
      width: 80px;
      height: 80px;
      margin: -25px auto 0;
  }
  .locations_zone .btn {
      font-size: 13px;
      padding: 8px 16px;
  }
  .section-title-border {
      margin-bottom: 8px;
  }
  .whats_app {
      height: 40px;
      width: 40px;
      font-size: 22px;
  }
  .other-offers-box {
      padding: 20px;
      border-radius: 10px;
  }
  .other-offers-box h3 {
      font-size: 20px;
      text-transform: capitalize;
      text-align: center;
      line-height: 26px;
      margin-bottom: 12px;
  }
  .licence_include .other-offers-box h3 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 12px;
  }
  .other-offers .btn {
      font-size: 13px;
      padding: 9px 16px;
  }
  .flag_img {
      max-width: 24px;
  }

  .track_btn .btn {
    font-size: 12px;
  }
  .residance_visa_box {
      height: auto;
      justify-content: center;
  }
  .residance_visa_box label {
      font-size: 17px; 
      height: 32px;
      width: 32px; 
      border-radius: 50px;
      left: 0;
      right: 0;
      top: -15px;
      margin: 0 auto;
      transform: unset; 
      text-align: center;
  }
  .residance_visa_box span { 
      text-align: center;
  }
  .track_transaction_details{
    padding: 20px;
  }
  .track_transaction_details .trans_id {
    font-size: 16px;
  }
  .track_transaction_details h3 {
    font-size: 22px;
    margin: 6px 0 14px;
  }
  .track_transaction_details .Date_show { 
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 13px;
  }
  .transaction_main_box {
      padding: 15px;
      margin-top: 20px;
  }
  .transaction_main_box h4 { 
      font-size: 24px;
  }
  .transaction_main_box h5 {
      font-size: 18px;
      margin: 0;
  }
  .track_transaction_process {
      flex-wrap: wrap;
  }
  .transaction_process_box {
      width: 100%;
      position: relative;
      max-width: 100%;
      margin-bottom: 40px;
  }
  .transaction_process_box::after {
      top: auto;
      bottom: 0;
      width: 100%;
      left: 0;
      z-index: 0;
      transform: rotate(90deg);
  }
  .transaction_details {
      height: auto;
      z-index: 1;
  }
  .transaction_process_box .circle_transaction {
      margin: 0 auto 40px;
  }
  .visa_accordion { 
    padding: 10px 0;
    margin-top: 40px;
  }
  .visa_accordion .card-header button { 
    padding: 14px 20px; 
    font-size: 14px;
  }
  .visa_accordion .card-body {
    padding: 15px 18px;
  }
  .visa_process_services{
    flex-wrap: wrap;
    justify-content: center;
  }
  .visa_process_box {
      width: 100%;
      max-width: 50%; 
      margin-bottom: 40px;
  }
  .process_circle {
    height: 70px;
    width: 70px;
    margin: 0 auto 8px;
    border-radius: 50px;
    border: 6px solid #86c33a;
  }
  .process_circle i {
      font-size: 25px;
  }
  .visa_process_box strong {
    font-size: 14px;
  }
  .process_circle span {
      height: 24px;
      width: 24px;
      font-size: 12px;
      top: 0px;
      left: -9px;
      border: 2px solid #86c33a;
  }
  .visa_process_box::after {
      top: 150px;
      border-top: 5px solid #86c33a;
      z-index: 0;
      display: block;
      transform: rotate(90deg);
  }
  .visa_process_box strong {  
      font-size: 13px; 
      display: inline-block;
      position: relative;
      z-index: 1;
      background-color: #fff;
      padding: 6px 20px;
      margin-top: 18px;
  }
  .visa_process_services .visa_process_box::after {
      display: none;
  }
 
}