







/* Mixins */
/*Main Css */
::-moz-selection {
  background: #0d3de5;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #0d3de5;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #0d3de5;
}

/* Tabbing CSS */
[class^=box-] {
  display: none;
}

[class^=box-].showfirst {
  display: block;
}

/* Accordion CSS */
.myaccordion li .faq-opt {
  display: none;
}

.myaccordion li.active .faq-opt {
  display: block;
}

.myaccordion li.active .faq-ang h4:before {
  content: "\f077";
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 1.8;
  color: #434343;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 48px;
}

p {
  margin-bottom: 25px;
}

.theme-btn {
  background: #0d3de5;
  padding: 14px 40px;
  display: inline-block;
  color: #fff;
  position: relative;
  text-decoration: none;
  border: 1px double transparent;
  font-weight: 500;
  border-radius: 7px;
  box-shadow: 0 12px 24px 0 rgba(13, 61, 229, 0.24);
}
.theme-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline;
  border: 2px solid transparent;
  transition: 0.25s ease-in-out;
  border-radius: 7px;
}
.theme-btn:hover {
  color: #0d3de5;
  background: #fff;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
}
.theme-btn:hover::before {
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-color: #0d3de5;
}

*:hover,
*:focus,
* {
  outline: none !important;
}

a,
input[type=submit] {
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  color: #434343;
}

textarea,
select,
input[type],
textarea,
select,
button {
  background: transparent;
  border: none;
  border-radius: 0px;
}

.select_arrow {
  position: relative;
  background: #ebebeb;
  margin-bottom: 26px;
  border-radius: 7px;
}
.select_arrow select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 1;
  background: transparent !important;
  margin: 0;
}
.select_arrow:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 110%;
  line-height: 70px;
}

::-webkit-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  opacity: 1;
}

/* Padding Classes */
.spad {
  padding: 4rem 0;
}

.pad-zero {
  padding: 0px;
}

.pad-l-zero {
  padding-left: 0px;
}

.pad-r-zero {
  padding-right: 0px;
}

.ovr-hiddn {
  overflow: hidden;
}

.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.overlay {
  display: none;
}

.overlay.active {
  display: block;
}

/* Custom Slick Css */
.slick-slide {
  margin: 0 15px;
}

.slick-list {
  margin: 0 -15px;
}

.slick-dots {
  padding: 50px 0 0;
  text-align: center;
}

.slick-dots li {
  margin: 0 20px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0px;
  border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}

.slick-dots li button {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  padding: 0px;
  background: #d6d6d6;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}

.slick-dots li.slick-active button {
  background: #0d3de5;
  width: 11px;
  height: 11px;
}

/* Hamburger Menu */
.menu-Bar {
  position: relative;
  cursor: pointer;
  width: 32px;
  height: 20px;
  z-index: 22;
  display: none;
}

.menu-Bar span {
  display: block;
  height: 3px;
  width: 32px;
  background: #2275bc;
  position: relative;
  transition: 0.6s all;
  border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
  top: 0;
}

.menu-Bar span:nth-child(2) {
  top: 5px;
  transform-origin: left;
}

.menu-Bar span:nth-child(3) {
  top: 10px;
}

.menu-Bar.open span {
  background: #0d3de5;
}

.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 5px;
  transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 0;
  transform-origin: right-center;
}

/* Menu Css */
.menuWrap {
  display: flex;
  justify-content: flex-end;
}

.menu {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

.menu li {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 600;
}

.menu > li {
  margin: 0 20px;
}

.menu > li > a {
  display: block;
  color: #434343;
  text-transform: uppercase;
  padding: 20px 10px;
  position: relative;
}

.menu > li.current_page_item > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0d3de5;
  height: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* Menu Dropdown CSS */
.menu li.dropdown-nav {
  position: relative;
  display: inline-flex;
}
.menu li.dropdown-nav > a:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 14px;
  padding-left: 10px;
}

ul.dropdown {
  position: absolute;
  min-width: 100%;
  width: 200px;
  left: 0;
  background: #fff;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  top: 200%;
  transition: 0.5s top;
  z-index: 999;
}
ul.dropdown li {
  padding: 0;
}
ul.dropdown li a {
  color: #333333;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: block;
  text-transform: capitalize;
}
ul.dropdown li a:hover {
  color: #0d3de5;
}
ul.dropdown li:last-child a {
  border-bottom: 0;
}

ul.dropdown li {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

ul.dropdown li a {
  background: transparent;
}

ul.dropdown li.last a {
  margin-bottom: 0px;
}

ul.dropdown li a:hover {
  color: #000;
}

.dropdown-nav:hover ul.dropdown {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.main-header {
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  box-shadow: 0 5px 39px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

a.logo {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
}
a.logo span {
  color: #0d3de5;
}

.call_btn a {
  background: #f1f4ff;
  border: 1px solid #f1f4ff;
  padding: 12px 20px;
  border-radius: 7px;
  color: #0d3de5;
  display: flex;
  align-items: center;
  margin-right: 12px;
  margin-left: 50px;
  font-weight: bold;
}
.call_btn a i {
  margin-right: 12px;
  transform: scaleX(-1);
}

.lang_btn span {
  padding: 12px 20px;
  border: 1px solid #e4eaff;
  color: #2c2c2c;
  display: inline-block;
  border-radius: 7px;
}
.lang_btn span i {
  color: #0d3de5;
  font-size: 80%;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
}

.search_bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
  padding: 3rem 15px;
  visibility: hidden;
  opacity: 0;
  transition: 0.25s ease-in-out;
  transform: translateY(-100px);
}
.search_bar.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search_bar .searchbar_i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.search_bar .searchbar_i button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 12px 0 12px 20px;
}
.search_bar .searchbar_i button i {
  margin: 0;
}
.search_bar .input_group {
  border: 1px solid #333;
  display: flex;
  width: 100%;
}
.search_bar .input_group input {
  flex: 1;
  padding: 12px 20px;
}
.search_bar .input_group input[type=submit] {
  flex: 0 0 auto;
}

/* Main Banner CSS */
.mainBanner {
  position: relative;
  padding: 6% 0 4% 0;
  overflow: hidden;
}
.mainBanner h1 {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 66px;
}
.mainBanner p {
  margin-bottom: 35px;
}
.mainBanner p strong {
  display: block;
  color: #0d3de5;
  font-weight: normal;
  font-size: 24px;
}
.mainBanner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: #1b1a1a;
}
.mainBanner .mb_1_1 {
  background: #f0f0f0;
  display: inline-block;
  border-radius: 100px;
  font-size: 16px;
  padding: 8px 20px 8px 8px;
  margin-bottom: 30px;
}
.mainBanner .mb_1_1 span {
  background: #0d3de5;
  color: #fff;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-right: 10px;
}
.mainBanner .mb_2 {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.mainBanner .mb_2 img {
  max-height: 100%;
}

.s1 {
  border-radius: 5px;
  box-shadow: 0 31px 81px 0 rgba(0, 17, 77, 0.2);
  background-color: #fff;
}

.s1_1 {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
}
.s1_1 .form_group {
  margin: 0 20px;
  border-bottom: 1px solid #dedede;
  flex: 1;
}
.s1_1 .form_group:last-child {
  border-bottom: 0;
}
.s1_1 .form_group label {
  display: block;
  font-weight: bold;
  color: #000;
}
.s1_1 .form_group input {
  width: 100%;
  padding: 10px 0;
  font-size: 15px;
}
.s1_1 .form_group button {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: #0d3de5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
.s1_1 .form_group button i {
  font-size: 140%;
}

.section_head span {
  color: #0d3de5;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 9px;
  display: block;
  margin-bottom: 10px;
}
.section_head h2 {
  text-transform: capitalize;
}
.section_head p {
  width: 90%;
  margin: 0 auto 50px auto;
}

.s2 {
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
}

.s2_2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 41%;
  height: 100%;
}
.s2_2 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s2_2 .text_overlay {
  position: absolute;
  bottom: 25%;
  right: 0;
  background: #fff;
  padding: 15px 0;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  display: inline-flex;
  align-items: center;
}
.s2_2 .text_overlay a {
  margin-left: -80px;
}
.s2_2 .text_overlay span {
  margin: 0 20px;
}

.s3 .tab_links {
  display: inline-flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f0f0f0;
  border-radius: 100px;
  padding: 8px;
  margin-bottom: 80px;
}
.s3 .tab_links a {
  font-size: 16px;
  font-weight: 500;
  color: #747474;
  padding: 6px 20px;
}
.s3 .tab_links li.active a {
  background: #0d3de5;
  border-radius: 100px;
  color: #fff;
  border: 0;
}

.has_mt {
  margin-top: 60px;
}

.slick-initialized .s3_1 {
  display: block;
}

.s3_1 {
  display: none;
  text-align: center;
  color: inherit;
  line-height: 1.5;
  font-size: 15px;
}
.s3_1 .s3_img {
  height: 185px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 40px;
}
.s3_1 .s3_img img {
  transition: 0.35s;
}
.s3_1 .car_cat strong {
  color: #0d3de5;
  font-weight: 600;
}
.s3_1:hover img {
  transform: scale(1.05);
}

.s4_1 img {
  width: 100%;
  padding-right: 95px;
}

.s4_2 .section_head {
  padding-top: 30px;
}
.s4_2 p {
  width: 95%;
  margin-bottom: 40px;
}
.s4_2 .btn_group {
  display: flex;
  align-items: center;
}
.s4_2 .btn_group a {
  text-decoration: underline;
  color: inherit;
}
.s4_2 .btn_group a:first-child {
  width: 90px;
  height: 90px;
  background: #0d3de5;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 150%;
  border: 10px solid #fff;
  box-shadow: 0 0 0 1px rgba(13, 60, 229, 0.396);
  transition: 0.35s ease-in-out;
  margin-right: 30px;
  text-decoration: none;
}
.s4_2 .btn_group a:first-child:hover {
  box-shadow: 0 0 0 10px rgba(13, 60, 229, 0.396);
}
.s4_2 .btn_group a:first-child i {
  padding-left: 4px;
}

.s5_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}
.s5_1 li {
  padding: 0 30px;
}
.s5_1 li img {
  mix-blend-mode: luminosity;
}

.s6 {
  background: #0d3de5;
  position: relative;
  margin-top: 6rem;
  padding: 5rem 0;
}
.s6 h2 {
  color: #fff;
  margin-bottom: 40px;
}
.s6 .btn_group a:first-child {
  background: #fff;
  color: #0d3de5;
  font-weight: bold;
}
.s6 .btn_group a:first-child i {
  transform: scaleX(-1);
  margin-right: 12px;
}
.s6 .btn_group a:last-child {
  border-color: #fff;
  margin-left: 12px;
}

.s6_1 {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 55%;
}

.site-footer {
  padding: 6rem 0 3rem 0;
  font-size: 16px;
  color: #575757;
}
.site-footer a {
  color: #464646;
}
.site-footer a:hover {
  color: #0d3de5;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 12px;
}
.site-footer .sf_1 {
  padding-right: 15%;
}
.site-footer .sf_2 p:first-child {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}
.site-footer .ftr_btm {
  text-align: center;
  margin-top: 4rem;
  color: #595959;
}
.site-footer .ftr_btm p {
  margin-bottom: 0;
}

.sf_3 li {
  display: flex;
  align-items: center;
  background: #e4eaff;
  border-radius: 10px;
  line-height: 1.25;
  color: #595959;
  padding: 8px 0;
  margin-bottom: 20px;
}
.sf_3 li p {
  margin-bottom: 0;
  padding-right: 30px;
}
.sf_3 li i {
  background: #0d3de5;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -25px;
  margin-right: 12px;
  flex: 0 0 auto;
}

.social {
  display: flex;
}
.social li:first-child a {
  padding-left: 0;
}
.social a {
  padding: 10px;
  color: #a5b1df;
  font-size: 18px;
}
.social a:hover {
  color: #0d3de5;
}

/* Inner Pages */
.innerBanner {
  background-size: cover !important;
  padding: 6% 0;
}
.innerBanner::before {
  display: none;
}
.innerBanner .mb_1 {
  text-align: center;
  color: #fff;
}
.innerBanner .mb_1 h1 {
  color: #fff;
}
.innerBanner .mb_1 p {
  width: 850px;
  max-width: 100%;
  margin: 0 auto 40px auto;
}

.abt_1 {
  position: relative;
  margin-top: 5rem;
  overflow: hidden;
}

.abt_2 {
  padding-right: 11%;
}
.abt_2 p {
  margin-bottom: 40px;
}
.abt_2 .btn_group {
  display: flex;
  align-items: center;
}
.abt_2 .btn_group span {
  margin-left: 25px;
}

.abt_3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
}
.abt_3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.ds_1 {
  text-align: center;
}

.ds_img {
  height: 398px;
  position: relative;
  margin-bottom: 30px;
}
.ds_img::before {
  position: absolute;
  content: "";
  background: #0d3de5;
  border-radius: 15px;
  width: 100%;
  height: 80%;
  left: 0;
  bottom: 0;
}
.ds_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  position: relative;
}

.ds_txt h3 {
  font-size: 27px;
}

.driver_sec {
  overflow: hidden;
}
.driver_sec .gx-5 {
  --bs-gutter-x: 4rem;
}

.booking_sec {
  overflow: hidden;
}
.booking_sec .section_head h2 {
  margin-bottom: 0;
}
.booking_sec .section_head p {
  width: 100%;
  font-weight: 600;
}

.bn_1 {
  padding-right: 100px;
}
.bn_1 input,
.bn_1 select {
  width: 100%;
  border-radius: 7px;
  background-color: #ebebeb;
  height: 69px;
  margin-bottom: 20px;
  padding: 15px 30px;
}
.bn_1 input::-moz-placeholder, .bn_1 select::-moz-placeholder {
  color: #575757;
}
.bn_1 input:-ms-input-placeholder, .bn_1 select:-ms-input-placeholder {
  color: #575757;
}
.bn_1 input::placeholder,
.bn_1 select::placeholder {
  color: #575757;
}
.bn_1 select {
  margin-bottom: 0;
}
.bn_1 .search_group {
  position: relative;
}
.bn_1 .search_group input {
  padding-right: 60px;
}
.bn_1 .search_group i {
  position: absolute;
  top: 25px;
  right: 25px;
}
.bn_1 button {
  background: #0d3de5;
  width: 100%;
  height: 69px;
  border-radius: 7px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bn_1 button i {
  font-size: 125%;
  margin-left: 15px;
}

.custom_checkbox {
  position: relative;
  display: flex;
  align-items: center;
  margin: 40px 0;
}
.custom_checkbox input {
  width: 0;
  height: 0;
  position: absolute;
}
.custom_checkbox span {
  display: inline-block;
  margin-right: 30px;
}
.custom_checkbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.custom_checkbox ul li label {
  border-radius: 7px;
  border: solid 1px #c5d1ff;
  padding: 12px 30px;
  font-weight: 600;
  color: #0d3de5;
  margin-left: 15px;
  cursor: pointer;
}
.custom_checkbox ul li input:checked + label {
  background: #f1f4ff;
}

.bn_3 {
  text-align: center;
  color: #000;
  font-size: 20px;
}
.bn_3 p {
  margin-bottom: 15px;
}

.bn_4 {
  background: #0d3de5;
  border-radius: 15px;
  padding: 10px 30px 0 30px;
  margin-bottom: 20px;
  height: 250px;
}
.bn_4 img {
  max-height: 100%;
}

.location_sec .section_head {
  margin-bottom: 120px;
}

.ls_2 {
  text-align: center;
}
.ls_2 > span {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  box-shadow: 0 32px 76px 0 rgba(0, 0, 0, 0.11);
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ls_2 > span i {
  font-size: 80px;
  background: linear-gradient(148deg, #0d3de5, #0de5cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ls_1 .row > div:nth-child(3n-1) {
  margin-top: 80px;
}

.ls_txt {
  background: #0d3de5;
  width: 364px;
  max-width: 100%;
  border-radius: 20px;
  padding: 80px 40px;
  color: #fff;
  text-align: left;
  margin: 0 auto;
  margin-top: -30px;
}
.ls_txt h3 {
  color: #fff;
  font-size: 36px;
}
.ls_txt h3 span {
  display: block;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: normal;
}
.ls_txt p {
  line-height: 1.5;
  margin: 40px 0;
}
.ls_txt .theme-btn {
  background: #fff;
  color: #0d3de5;
  font-weight: 600;
}
.ls_txt .theme-btn i {
  transform: scaleX(-1);
  margin-right: 15px;
}

.cont_1 > span {
  width: 164px;
  height: 164px;
  border-radius: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d3de5;
  box-shadow: 0 29px 58px 0 rgba(13, 61, 229, 0.24);
  margin-bottom: 50px;
}
.cont_1 > span i {
  color: #fff;
  font-size: 80px;
}
.cont_1 .sf_3 ul {
  display: flex;
  flex-wrap: wrap;
}
.cont_1 .sf_3 ul a {
  color: inherit;
}
.cont_1 .sf_3 ul li {
  margin-right: 60px;
}

.cont_2 {
  border-radius: 16px;
  box-shadow: 0 26px 40px 0 rgba(38, 58, 126, 0.14);
  background-color: #fff;
  padding: 70px 60px;
}
.cont_2 label {
  display: block;
  margin-bottom: 10px;
}
.cont_2 input,
.cont_2 textarea {
  height: 60px;
  padding: 15px;
  background: #ebebeb;
  width: 100%;
  border-radius: 7px;
}
.cont_2 textarea {
  height: 190px;
}
.cont_2 .checkbox {
  display: flex;
  align-items: center;
}
.cont_2 .checkbox label {
  margin: 0;
  cursor: pointer;
}
.cont_2 .checkbox label strong {
  font-weight: 600;
  color: #0d3de5;
}
.cont_2 .checkbox input {
  width: 20px;
  margin-right: 20px;
}
.cont_2 input[type=submit] {
  background: #0d3de5;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .dropdown-nav:hover ul.dropdown {
    top: 100%;
    opacity: 1;
    visibility: visible;
    display: block !important;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}
@media (max-width: 1599px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 40px;
  }
  .mainBanner h1 {
    font-size: 36px;
    line-height: 46px;
  }
  .menu > li {
    margin: 0 10px;
  }
  .call_btn a {
    margin-left: 20px;
  }
  .main-header {
    padding: 15px 0;
  }
  .mainBanner p strong {
    font-size: 20px;
  }
  .innerBanner .mb_1 p {
    width: 750px;
  }
  .s4_1 img {
    padding-right: 20px;
  }
  .s6 {
    margin-top: 4rem;
    padding: 3rem 0;
  }
  .ds_txt h3 {
    font-size: 24px;
  }
  .ds_img {
    height: 315px;
  }
  .ds_img::before {
    height: 75%;
  }
  .bn_4 {
    padding: 10px 10px 0 10px;
    height: 200px;
  }
  .bn_3 {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .menu-Bar {
    display: inline-block;
    top: 0px;
  }
  .menu-Bar.open {
    position: fixed;
    top: 30px;
    right: 20px;
  }
  .menu {
    display: block;
    padding: 40px 30px;
    width: 320px;
    max-width: 100%;
    margin: auto;
  }
  .menu-header-menu-container {
    margin: auto;
  }
  .menuWrap.open {
    left: 0px;
  }
  .menuWrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    margin: auto;
    background: #0f4c97;
    overflow-y: auto;
    transition: 0.5s all ease-out;
  }
  ul.dropdown {
    position: relative;
    display: none;
    opacity: 1;
    visibility: visible;
    top: 0;
  }
  ul.menu li {
    display: block;
  }
  ul.menu li a {
    padding: 10px;
    display: block;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  ul.menu li:first-child a {
    border: 0;
  }
  header .main-header ul.menu > li {
    display: block;
    margin: 0px;
    padding: 0;
  }
  header .main-header ul.menu > li a {
    color: #fff;
  }
  header .main-header ul.menu > li a:before {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */





@media (max-width: 824px) {
    .lang_btn {
    display: none;
}

a.logo img {
    width: 101px;
}

.call_btn a {
    padding: 6px;
    font-size: 12px;
}

.main-header {
    padding: 1px 0;
}

.mainBanner .mb_2 {
    position: relative;
    width: 60%;
    margin: 0 auto;
}

.mainBanner::before {display: none;}

.mainBanner h1 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 9px;
}

.mainBanner {
    text-align: center;
}

.mainBanner .mb_1_1 {
    font-size: 11px;
    margin-bottom: 22px;
}

.s1_1 .form_group {
    margin-bottom: 27px;
}

.s1_1 {
    display: block;
    width: 100%;
}

section.s1.spad {
    padding: 2em 0;
}
.s2_2 {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.s2_2 .text_overlay {
    position: relative;
    margin: 0 auto;
    bottom: auto;
    display: block;
    width: 100%;
    text-align: center;
}

.s2_2 .text_overlay a {
    margin: 0;
    padding: 12px 16px;
    font-size: 13px;
}

.s2 {
    padding-top: 3em;
    padding-bottom: 0 !important;
}

h2 {
    font-size: 30px;
}

.s3 .tab_links {
    display: block;
    border-radius: 31px;
}

.s3 .tab_links li {
    width: 100%;
    display: block;
}

.s3 .tab_links a {
    width: 89%;
}

.spad {
    padding: 3em 0;
}

.site-footer ul li {
    margin-bottom: 2px;
}

.s5_1 {
    display: block;
    text-align: center;
    width: 100%;
}

.s5_1 li img {
    width: 80%;
}

.s6 {
    margin-top: 0;
}

section.s6.spad {
    text-align: center;
}

.s6 .btn_group a:first-child {
    width: 90%;
}

.s6 .btn_group a:last-child {
    width: 90%;
    margin: 19px 0;
}


.lost_sec {
  background-image: url("../images/world.png");
  background-size: contain;
  background-position: top center;
}

.site-footer {
    padding: 2rem 0;
}

.site-footer ul {
    width: 80%;
    margin: 0 auto;
}

.site-footer .ftr_btm {margin-top: 2rem;}
.bn_1 {
    padding: 0;
}

.bn_2 {
    margin-top: 40px;
}

ul.s5_1 {}

.s5_1 li {
    display: inline-block;
    width: 49%;
}

.site-footer .sf_2 p:first-child {
    margin-bottom: 1px;
}
.abt_3 {
    position: relative;
    width: 93%;
    margin: 20px auto 0;
}
.cont_2 {
    padding: 23px;
}

.menu > li > a {
    color: #fff;
}
.menu-Bar.open span {
    background: #ffffff;
}
.menuWrap {
    z-index: 9;
}

}




/*  */
.lost_sec{
  background-image: url("../images/world.png");
  background-size: contain;
  background-position: top center;
}
