.btn {
  display: inline-block;
  overflow: hidden;
  transform: perspective(0) translateZ(0);
  border-color: transparent;
  border-radius: 0;
  padding: 6px 10px;
  border: 0;
  border-style: solid;
  box-shadow: none;
  transition: all 0.5s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  font-family: "Lato";
  text-align: center;
  text-transform: capitalize;
}
.btn.primary {
  background-color: #2e3eff;
  color: #fff;
  border: 1px solid #2e3eff;
}
.btn.black {
  background-color: #fff;
  color: #0c0c0c;
  border: 1px solid #fff;
}
.btn.transparent {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/*----------------------------------------*/
/*        Header Top CSS
/*----------------------------------------*/
.header_top {
  padding: 5px 0;
  background: transparent;
  z-index: 99;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1176470588);
  overflow: hidden;
}
.header_top ul {
  display: flex;
  flex-wrap: wrap;
}
.header_top ul li {
  margin-right: 20px;
}
.header_top ul li a {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
}
.header_top ul li a span {
  margin-right: 5px;
}
.header_top ul li.left {
  margin-right: 30px;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
}
.header_top ul li.left span {
  margin-right: 5px;
}
.header_top .header-social {
  height: 100%;
}
.header_top .header-social ul {
  justify-content: end;
  height: 100%;
}
.header_top .header-social ul li {
  height: 100%;
}
.header_top .header-social ul li a {
  height: 100%;
  color: #fff;
}
.header_top .header-social ul li a:hover {
  filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(220deg);
  transform: rotate(360deg) scale(1.5);
}

.header-section {
  position: relative;
  left: 0;
  top: 0;
  background: transparent;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
}
.header-section.sticky .main_top {
  display: none;
}
.header-section.sticky .header-logo a img {
  width: 130px;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo a img {
  width: 150px;
}

.header-menu {
  margin-left: auto;
}
.header-menu .main_top {
  display: flex;
  justify-content: end;
  align-items: center;
}
.header-menu .main_top li {
  margin-right: 30px;
}
.header-menu .main_top li a {
  font-size: 18px;
  color: #ffffff;
  font-weight: 900;
}
.header-menu .main_top li a span {
  margin-right: 10px;
}
.header-menu .main_top li:last-child {
  margin-right: 20px;
}
.header-menu .main-menu {
  display: flex;
}
.header-menu .main-menu li {
  position: relative;
  padding: 20px 10px;
  padding-top: 15px;
}
.header-menu .main-menu li a {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  border: 1px solid transparent;
  padding: 5px 8px;
}
.header-menu .main-menu li .menu-icon::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #94a0b9;
  margin-left: 5px;
  transition: all 0.3s linear;
}
.header-menu .main-menu li:hover > .menu-icon::after {
  color: #2e3eff;
}
.header-menu .main-menu li:hover > a {
  color: #000;
  border: 1px solid #000;
  padding: 5px 8px;
}
.header-menu .main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-menu .main-menu li .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  width: 230px;
  background: #ffffff;
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  padding: 0 0;
  border-radius: 5px;
  border-top: 3px solid #086ad8;
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  transition: all 0.3s linear;
}
.header-menu .main-menu li .sub-menu li {
  padding: 0;
  border-bottom: 1px solid;
}
.header-menu .main-menu li .sub-menu li:last-child {
  border-bottom: 0;
}
.header-menu .main-menu li .sub-menu li a {
  padding: 5px 25px;
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  position: relative;
  z-index: 1;
}
.header-menu .main-menu li .sub-menu li:hover > a {
  color: #2e3eff;
}
.header-menu .main-menu li .sub-menu li.active > a {
  color: #2e3eff;
}
.header-menu .main-menu li.active-menu > a {
  color: #2e3eff;
}
.header-menu .main-menu li.active-menu > .menu-icon::after {
  color: #2e3eff;
}

.header-meta {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.header-search {
  margin-left: 25px;
  padding-left: 15px;
  position: relative;
}
.header-search::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ebebeb;
  width: 1px;
  height: 30px;
}
.header-search .search-btn {
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  color: #333333;
  transition: all 0.3s linear;
}
.header-search .search-btn:hover {
  color: #086ad8;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 121;
  background: rgba(0, 0, 0, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-inner .search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s linear;
}
.search-wrap .search-inner .search-close:hover {
  transform: rotate(90deg);
  color: #086ad8;
}
.search-wrap .search-inner .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-inner .search-cell .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: uppercase;
  background: transparent;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  border-bottom: 2px solid #898989;
  text-align: center;
  letter-spacing: 2px;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
}

.header-cart .cart-btn {
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  background: none;
  color: #333333;
  border: 0;
  position: relative;
  transition: all 0.3s linear;
}
.header-cart .cart-btn:hover {
  color: #086ad8;
}
.header-cart .cart-btn .count {
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background: #086ad8;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 400;
  display: inline-block;
  color: #ffffff;
  position: absolute;
  top: -4px;
  right: -12px;
}

.dropdown-cart {
  max-width: 370px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
  border: 0;
  transform: translateX(-50%) !important;
  left: 50% !important;
  top: 57px !important;
}
.dropdown-cart .cart-items {
  height: 280px;
  overflow-y: auto;
}
.dropdown-cart .cart-items .single-cart-item {
  display: flex;
  align-items: center;
  position: relative;
}
.dropdown-cart .cart-items .single-cart-item + .single-cart-item {
  margin-top: 30px;
}
.dropdown-cart .cart-items .single-cart-item .item-image img {
  border-radius: 50%;
}
.dropdown-cart .cart-items .single-cart-item .item-content {
  flex: 1;
  padding-right: 25px;
  padding-left: 20px;
}
.dropdown-cart .cart-items .single-cart-item .item-content .title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}
.dropdown-cart .cart-items .single-cart-item .item-content .quantity {
  font-size: 14px;
  color: #086ad8;
  line-height: 1.75;
  display: block;
}
.dropdown-cart .cart-items .single-cart-item .btn-close {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 0;
  right: 5px;
}
.dropdown-cart .cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.dropdown-cart .cart-total .label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  display: block;
  color: #000;
}
.dropdown-cart .cart-total .value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  display: block;
  color: #086ad8;
}
.dropdown-cart .cart-btns {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}
.dropdown-cart .cart-btns .btn {
  height: 50px;
  line-height: 46px;
  box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
  font-size: 16px;
  padding: 0 35px;
  width: 48%;
}
.dropdown-cart .cart-btns .btn.btn-2 {
  background: #000c29;
  transition: all 0.3s linear;
}
.dropdown-cart .cart-btns .btn.btn-2:hover {
  color: #0e0e0e;
}
.dropdown-cart .cart-btns .btn.btn-2:hover::before {
  background: #ffffff;
}
.dropdown-cart .cart-btns .btn.btn-2:hover::after {
  background: #ffffff;
}

.header-btn {
  margin-left: 25px;
}
.header-btn .btn {
  height: 45px;
  line-height: 45px;
  padding: 0 45px;
}

.header-toggle {
  margin-left: 30px;
}
.header-toggle button {
  background: none;
  border: 0;
  padding: 0;
}
.header-toggle button span {
  width: 25px;
  height: 2px;
  background: #000;
  margin: 5px 0;
  display: block;
}
.header-toggle button span:last-child {
  margin-bottom: 0;
}

.header-section-05 .header-social {
  position: relative;
  padding-right: 25px;
  margin-right: 20px;
}
.header-section-05 .header-social::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ebebeb;
  width: 1px;
  height: 30px;
}
.header-section-05 .header-social ul li {
  display: inline-block;
}
.header-section-05 .header-social ul li + li {
  margin-left: 10px;
}
.header-section-05 .header-social ul li a {
  font-size: 15px;
  display: block;
  color: #565656;
}
.header-section-05 .header-social ul li a:hover {
  color: #086ad8;
}
.header-section-05 .header-search {
  padding-left: 0;
}
.header-section-05 .header-search::before {
  display: none;
}

.header-top-section {
  background: #030213;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-top-wrapper .header-top-info ul li {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  position: relative;
}
.header-top-wrapper .header-top-info ul li i {
  font-size: 20px;
  color: #11ddf5;
  position: relative;
  top: 1px;
  margin-right: 7px;
}
.header-top-wrapper .header-top-info ul li + li {
  padding-left: 30px;
  margin-left: 25px;
}
.header-top-wrapper .header-top-info ul li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: #353542;
  width: 1px;
  height: 45px;
  transform: translateY(-46%);
}
.header-top-wrapper .header-social {
  display: flex;
  align-items: center;
}
.header-top-wrapper .header-social span {
  font-size: 14px;
  color: #11ddf5;
  display: inline-block;
  margin-right: 20px;
}
.header-top-wrapper .header-social ul li {
  display: inline-block;
}
.header-top-wrapper .header-social ul li + li {
  margin-left: 10px;
}
.header-top-wrapper .header-social ul li a {
  display: inline-block;
  font-size: 14px;
  color: #8c8c8c;
}
.header-top-wrapper .header-social ul li a:hover {
  color: #11ddf5;
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  animation: sticky 1s;
  background: #fff;
}

.offcanvas {
  background: #000c29;
  width: 320px;
  z-index: 999999;
}
.offcanvas .current-menu-item a {
  color: #086ad8 !important;
}

.offcanvas-header .close-btn {
  background: none;
  border: 0;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s linear;
}
.offcanvas-header .close-btn:hover {
  transform: rotate(90deg);
  color: #086ad8;
}

.offcanvas-logo a img {
  width: 130px;
}

.offcanvas-menu {
  padding: 30px 0;
}
.offcanvas-menu .main-menu li {
  position: relative;
}
.offcanvas-menu .main-menu li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  color: #ffffff;
  padding: 5px 0px;
  position: relative;
}
.offcanvas-menu .main-menu li .menu-expand {
  position: absolute;
  right: 20px;
  top: 14px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.offcanvas-menu .main-menu li .menu-expand::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
}
.offcanvas-menu .main-menu li .menu-expand::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 16px;
  left: 50%;
  top: 50%;
  bottom: 0;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
}
.offcanvas-menu .main-menu li:hover > a {
  color: #086ad8;
}
.offcanvas-menu .main-menu li ul {
  padding-left: 6%;
  display: none;
}
.offcanvas-menu .main-menu li.active > .menu-expand::after {
  height: 0;
}

@media only screen and (max-width: 991px) {
  .header-section {
    padding: 15px 0;
  }
  .search-wrap .search-inner .search-cell .search-field-holder {
    width: 60%;
  }
  .dropdown-cart {
    top: 56px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo a img {
    width: 130px;
  }
  .header-menu .main-menu li {
    padding: 20px 10px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
    padding: 0 35px;
    font-size: 20px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
    font-size: 20px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
    font-size: 20px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
    font-size: 20px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .search-wrap .search-inner .search-cell .search-field-holder {
    width: 80%;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
    font-size: 14px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
    font-size: 14px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
    font-size: 14px;
  }
  .offcanvas {
    width: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
    font-size: 16px;
    padding: 0 15px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
    font-size: 16px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
    font-size: 16px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1399px) {
  .dropdown-cart {
    left: 0 !important;
    transform: translateX(-85%) !important;
  }
}
@media only screen and (max-width: 449px) {
  .dropdown-cart {
    left: 0 !important;
    transform: translateX(-72%) !important;
  }
}
/*----------------------------------------*/
/*               Hero CSS
/*----------------------------------------*/
.hero {
  margin-top: -195px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  bottom: -50px;
}
.hero .swiper-pagination .swiper-pagination-bullet {
  margin-right: 15px;
  width: 13px;
  height: 13px;
}
.hero .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.hero .swiper-pagination .swiper-pagination-bullet::after {
  display: none;
}
.hero .head_box {
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 550px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 200px;
}
.hero .head_box h1 {
  font-size: 60px;
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  padding-bottom: 10px;
  text-shadow: 0px 0px 6px rgba(3, 0, 0, 0.46);
}
.hero .head_box .bnnr_desc {
  background-color: rgba(0, 0, 0, 0.4941176471);
  padding: 5px 10px;
  margin-bottom: 0;
  display: inline-block;
}
.hero .head_box .bnnr_desc p {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato";
  text-align: center;
  margin-bottom: 0;
}
.hero .head_box a {
  padding: 6px 10px !important;
  display: block;
  margin: auto;
  margin-top: 20px;
}

/*----------------------------------------*/
/*           Hero CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           About CSS
/*----------------------------------------*/
.about {
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 160px;
  padding-bottom: 50px;
  position: relative;
  margin-top: 0px;
  z-index: 19;
}
.about .img_box {
  position: relative;
}
.about .img_box::after {
  position: absolute;
  content: "";
  width: 78%;
  height: 100%;
  background-color: #000435;
  top: -62px;
  right: 40px;
  z-index: -1;
}
.about .content_box h4 {
  font-size: 20px;
  color: #2e3eff;
  font-weight: 900;
}
.about .content_box h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
}
.about .content_box p {
  font-size: 18px;
  color: #575757;
  font-weight: 400;
  font-family: "Lato";
}

/*----------------------------------------*/
/*           About CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Flight CSS
/*----------------------------------------*/
.flight {
  padding-block: 40px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 18;
}
.flight .video_box {
  position: relative;
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 40px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  background-repeat: no-repeat, repeat;
  background-size: cover;
  cursor: pointer;
  background-blend-mode: normal;
  background-color: #fff;
}
.flight .video_box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  top: 0;
  left: 0;
  z-index: 1;
}
.flight .video_box:hover {
  transform: scale(1.2);
  z-index: 10;
  background-color: #2634df;
  background-blend-mode: multiply;
}
.flight .video_box:hover::before {
  display: none;
}
.flight .video_box:hover::after {
  position: absolute;
  content: "";
  background-image: url(../images/ytbutton.png);
  width: 68px;
  height: 68px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}
.flight .video_box:hover h4 {
  color: #fff;
}
.flight .video_box:hover p {
  color: #fff;
}
.flight .video_box .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.flight .video_box h4 {
  z-index: 2;
  position: relative;
  font-size: 20px;
  color: #262626;
  font-weight: 900;
}
.flight .video_box p {
  z-index: 2;
  position: relative;
  font-size: 16px;
  color: #262626;
  font-weight: 400;
}

/*----------------------------------------*/
/*           Flight CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Counter CSS
/*----------------------------------------*/
.counter_sec {
  position: relative;
  margin-top: 0;
  padding-top: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 17;
}
.counter_sec .counter {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding-top: 200px;
  z-index: 0;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-size: cover;
}
.counter_sec .conter_box {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.counter_sec .conter_box h4 {
  font-size: 36px;
  line-height: 32px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  margin-top: 20px;
}
.counter_sec .conter_box h6 {
  font-size: 22px;
  color: #252525;
  font-weight: 900;
  text-align: center;
  margin-top: 26px;
}
.counter_sec .conter_box p {
  font-size: 16px;
  line-height: 22px;
  color: #0c0c0c;
  text-align: center;
  font-weight: 700;
}

/*----------------------------------------*/
/*           Counter CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           course_sec CSS
/*----------------------------------------*/
.course_sec {
  background-color: #ededed;
  z-index: 16;
  position: relative;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 220px;
}
.course_sec .bg_blue {
  background-color: #2e3eff !important;
}
.course_sec .bg_blue h4,
.course_sec .bg_blue h5,
.course_sec .bg_blue p {
  color: #fff !important;
}
.course_sec h4 {
  font-size: 20px;
  color: #2e3eff;
  font-weight: 900;
  text-align: center;
}
.course_sec h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
}
.course_sec p {
  font-size: 18px;
  color: #575757;
  font-weight: 400;
  font-family: "Lato";
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 25px;
}
.course_sec .content_box {
  position: relative;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.course_sec .content_box .img_box {
  height: 300px;
  overflow: hidden;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.course_sec .content_box .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.course_sec .content_box .data_box {
  position: absolute;
  background-color: #fff;
  padding: 30px;
  max-width: 290px;
  width: 100%;
  top: 170px;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  cursor: pointer;
}
.course_sec .content_box .data_box .logo_box {
  margin: auto;
  width: 69px;
}
.course_sec .content_box .data_box .logo_box img {
  filter: invert(61%) sepia(78%) saturate(5932%) hue-rotate(228deg) brightness(93%) contrast(101%);
}
.course_sec .content_box .data_box h4 {
  font-size: 20px;
  color: #5b5b5b;
  font-weight: 900;
  text-align: center;
}
.course_sec .content_box .data_box h5 {
  font-size: 16px;
  color: #2e3eff;
  font-weight: 400;
  text-align: center;
}
.course_sec .content_box .data_box p {
  font-size: 16px;
  color: #5b5b5b;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.course_sec .content_box .data_box a {
  font-size: 16px;
  color: #5b5b5b;
  font-weight: 700;
  text-align: center;
  transition: 0.3s all;
  width: 100%;
}

/*----------------------------------------*/
/*           course_sec CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           training CSS
/*----------------------------------------*/
.training {
  position: relative;
  padding-bottom: 70px;
  overflow: hidden;
  z-index: 15;
}
.training .traning_bg {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.training .content_box {
  position: relative;
  z-index: 10;
  padding-top: 160px;
}
.training .content_box h4 {
  font-size: 26px;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0px 0px 6px rgba(3, 0, 0, 0.46);
}
.training .content_box h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  color: #fff !important;
  text-shadow: 0px 0px 6px rgba(3, 0, 0, 0.46);
}
.training .content_box p {
  font-size: 18px;
  color: #575757;
  font-weight: 400;
  font-family: "Lato";
  color: #000;
  font-size: 16px;
}
.training .content_box .accordion {
  max-width: 500px;
  width: 100%;
  margin-top: 25px;
}
.training .content_box .accordion-item {
  border: none;
  margin-bottom: 10px;
}
.training .content_box .accordion-header {
  padding: 10px;
  cursor: pointer;
  background-color: #2e3eff;
  font-size: 17px;
  color: #ffffff;
  font-weight: 700;
}
.training .content_box .accordion-content {
  padding: 10px;
  display: none;
}
.training .content_box .accordion-item.active .accordion-content {
  display: block;
}
.training .frame {
  position: relative;
  z-index: 10;
  margin-top: 120px;
}
.training .frame .big_frame {
  border: 10px solid #fff;
}
.training .frame .big_frame img {
  width: 100%;
}
.training .frame .small_frame {
  border: 10px solid #fff;
  max-width: 270px;
  width: 100%;
  position: absolute;
  bottom: -50px;
  left: -20px;
}

/*----------------------------------------*/
/*           training CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           safety CSS
/*----------------------------------------*/
.safety {
  padding-top: 50px;
  z-index: 14;
  background-color: #fff;
  position: relative;
  padding-bottom: 50px;
}
.safety .cus_row {
  display: flex;
}
.safety h4 {
  font-size: 20px;
  color: #2e3eff;
  font-weight: 900;
  text-align: center;
}
.safety h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  font-size: 36px !important;
  margin-bottom: 20px;
}
.safety p {
  font-size: 18px;
  color: #575757;
  font-weight: 400;
  font-family: "Lato";
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 50px;
}
.safety .col-md-8 {
  flex: 0 0 auto;
  width: 61%;
}
.safety .col-md-4 {
  flex: 0 0 auto;
  width: 39%;
}
.safety .nav-pills {
  padding-left: 30px;
  height: 100%;
  justify-content: space-evenly;
  padding-top: 35px;
}
.safety .nav-link {
  background-color: transparent !important;
}
.safety .nav-link.active .image_box {
  border: 5px solid #fff;
}
.safety .nav-link .tab_btn_box {
  margin-bottom: 20px;
}
.safety .nav-link .tab_btn_box .image_box {
  width: 120px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
  margin-right: 20px;
}
.safety .nav-link .tab_btn_box .image_box img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.safety .nav-link .tab_btn_box .cont {
  padding-left: 30px;
}
.safety .nav-link .tab_btn_box .cont h4 {
  font-size: 17px;
  color: #ffffff;
  font-weight: 900;
  text-align: start;
  margin-bottom: 0;
}
.safety .nav-link .tab_btn_box .cont p {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  text-align: start;
  margin-bottom: 0;
}
.safety .tab-content {
  height: 100%;
}
.safety .tab-content .tab-pane {
  height: 100%;
}
.safety .tab-content .tab_image {
  height: 100%;
  aspect-ratio: 1;
}
.safety .tab-content .tab_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.safety .bg {
  background-color: #000435;
}

/*----------------------------------------*/
/*           safety CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           career CSS
/*----------------------------------------*/
.career {
  position: relative;
  margin-top: -160px;
  z-index: 13;
  padding-bottom: 30px;
}
.career .bx {
  padding-top: 200px;
}
.career .career_bg {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.career h4 {
  font-size: 20px;
  color: #2e3eff;
  font-weight: 900;
  text-align: center;
  z-index: 1;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(3, 0, 0, 0.46);
}
.career h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  z-index: 1;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(3, 0, 0, 0.46);
}
.career p {
  font-size: 18px;
  color: #575757;
  font-weight: 400;
  font-family: "Lato";
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
  z-index: 1;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(3, 0, 0, 0.46);
}
.career button {
  margin: auto;
  z-index: 1;
  display: inherit;
}

/*----------------------------------------*/
/*           career CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           blog CSS
/*----------------------------------------*/
.blog {
  padding-top: 50px;
  padding-bottom: 50px;
}
.blog h4 {
  font-size: 20px;
  color: #2e3eff;
  font-weight: 900;
  text-align: center;
}
.blog h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  font-size: 36px !important;
  margin-bottom: 20px;
}
.blog p {
  font-size: 18px;
  color: #575757;
  font-weight: 400;
  font-family: "Lato";
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 50px;
}
.blog .card {
  flex-direction: row;
  border: none;
  margin-bottom: 30px;
}
.blog .card .img_box img {
  max-width: 280px;
}
.blog .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.blog .card .card-body h4 {
  font-size: 14px;
  color: #2e3eff;
  font-weight: 900;
}
.blog .card .card-body h5 {
  font-size: 19px;
  color: #343434;
  font-weight: 900;
}
.blog .card .card-body .card-text {
  font-size: 14px;
  color: #6d6d6d;
  font-weight: 400;
  margin-bottom: 5px;
}
.blog .card .card-body .card-text_2 {
  font-size: 16px;
  color: #575757;
  font-weight: 400;
  margin: 0;
  text-align: start;
}

/*----------------------------------------*/
/*           blog CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           contact CSS
/*----------------------------------------*/
.contact {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.contact .contact_bg {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.contact h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  color: #fff;
  font-size: 36px;
  text-shadow: 0px 0px 6px rgba(3, 0, 0, 0.46);
}
.contact p {
  font-size: 18px;
  color: #575757;
  font-weight: 400;
  font-family: "Lato";
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(3, 0, 0, 0.46);
}
.contact input {
  border-radius: 0 !important;
  margin-bottom: 20px !important;
}
.contact .cont_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 0px;
}

/*----------------------------------------*/
/*           contact CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           course CSS
/*----------------------------------------*/
.course {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 12;
  background-color: #fff;
}
.course h4 {
  font-size: 20px;
  color: #2e3eff;
  font-weight: 900;
  text-align: center;
}
.course h2 {
  font-size: 38px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}
.course h5 {
  font-size: 26px;
  color: #2e3eff;
  font-weight: 900;
  text-align: center;
}
.course p {
  font-size: 17px;
  color: #5b5b5b;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}
.course .course_swiper {
  position: relative;
  overflow: hidden;
}
.course .prev-btn {
  top: 50%;
  transform: translateY(-50%);
  left: -65px;
  z-index: 1;
  position: absolute;
}
.course .next-btn {
  top: 50%;
  transform: translateY(-50%);
  right: -65px;
  z-index: 1;
  position: absolute;
}
.course .slider_box .head_box {
  background-color: #000435;
}
.course .slider_box .head_box p {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
  font-weight: 900;
  padding: 8px 0;
  text-align: center;
}
.course .slider_box img {
  width: 100%;
}
.course .logo_box {
  width: 259px;
  margin: 80px auto 20px auto;
}

/*----------------------------------------*/
/*           course CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*            Footer CSS
/*----------------------------------------*/
.top_footer {
  padding-top: 85px;
}
.top_footer .logo_box {
  text-align: center;
  margin-bottom: 70px;
}

.footer {
  position: relative;
  z-index: 10;
  margin-top: 0;
  background-color: #fff;
}
.footer .footer_bg {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.footer .links {
  border-top: 1px solid #5c5c5c;
  border-bottom: 1px solid #5c5c5c;
  padding-bottom: 20px;
  padding-top: 30px;
}
.footer .links .logo_box {
  width: 150px;
  margin-bottom: 20px;
}
.footer .copyright .copyright_box {
  padding: 10px 0;
}
.footer .copyright .copyright_box h6 {
  font-size: 21px;
  color: #000;
  font-weight: 300;
  text-align: center;
}
.footer .copyright .copyright_box p {
  font-size: 14px;
  color: #000;
  font-weight: 300;
  text-align: center;
  margin: 0;
}
.footer .footer_box {
  z-index: 11;
  position: relative;
  padding-top: 0;
}
.footer .footer_box h6 {
  font-size: 20px;
  color: #000;
  font-weight: 900;
}
.footer .footer_box a {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
}
.footer .footer_box a:hover {
  color: #2e3eff;
}
.footer .footer_box p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.footer .footer_box h5 {
  font-size: 20px;
  color: #000;
  font-weight: 900;
  line-height: 30px;
  margin-bottom: 25px;
}
.footer .footer_box .social {
  display: flex;
  justify-content: start;
  align-items: center;
}
.footer .footer_box .social li {
  margin-right: 20px;
}
.footer .footer_box .social li a {
  filter: invert(100);
}
.footer .footer_box .social li a:hover {
  filter: invert(50%) sepia(100%) saturate(5000%) hue-rotate(220deg);
  transform: scale(1.5);
}
.footer .footer_box .q_link li a {
  margin-bottom: 3px !important;
}
.footer .footer_box .news_box {
  position: relative;
}
.footer .footer_box .news_box input {
  border-radius: 0 !important;
  padding: 8px 15px !important;
}
.footer .footer_box .news_box button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 11px 25px !important;
}

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(8, 105, 216, 0.4235294118);
  opacity: 0;
  visibility: hidden;
  transform: translateX(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  color: #2e3eff;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #2e3eff;
  stroke-width: 4;
  box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media only screen and (max-width: 1399px) {
  .footer-widget-about p {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .copyright-text {
    text-align: center;
  }
}
.contact-info-section {
  padding: 100px 0;
}
.contact-info-section .contact-info-wrap {
  margin-top: -30px;
}
.contact-info-section .contact-info-wrap .single-contact-info {
  background: #f8f8f8;
  padding: 20px;
  margin-top: 30px;
}
.contact-info-section .contact-info-wrap .single-contact-info .info-content .title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
}
.contact-info-section .contact-info-wrap .single-contact-info .info-content p {
  font-size: 18px;
  line-height: 30px;
}

@media only screen and (max-width: 1199px) {
  .contact-info-section .contact-info-wrap .single-contact-info {
    padding: 50px 40px 60px;
  }
  .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-info-section .contact-info-wrap .single-contact-info {
    padding: 50px 30px 60px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
    font-size: 18px;
  }
}
.wpcf7-form p {
  margin-bottom: 0;
}

.wpcf7-form input {
  height: 50px;
  line-height: 0;
}

.wpcf7-submit {
  padding: 0 !important;
}

.header-menu .main-menu .current-menu-item a {
  color: #000;
  border: 1px solid #000;
  padding: 5px 8px;
}

.hero .head_box a {
  width: 190px;
  background-color: #fff;
}

/*--
/*  19 - Contact CSS
/*----------------------------------------*/
.techwix-contact-section .contact-wrap {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 60% 100%;
}
.techwix-contact-section .contact-wrap .contact-info .section-title .title {
  position: relative;
  padding-left: 45px;
}
.techwix-contact-section .contact-wrap .contact-info .section-title .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: #ff5538;
  height: 150px;
  width: 4px;
  transform: translateY(-50%);
}
.techwix-contact-section .contact-wrap .contact-info ul {
  padding-top: 15px;
}
.techwix-contact-section .contact-wrap .contact-info ul li {
  margin-top: 15px;
  padding-right: 65px;
}
.techwix-contact-section .contact-wrap .contact-info ul li:first-child {
  border-top: 0;
}
.techwix-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
  font-size: 50px;
  color: #ff5538;
}
.techwix-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text {
  margin-left: 20px;
}
.techwix-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text .title {
  font-size: 24px;
  line-height: 30px;
  color: #0e0e0e;
}
.techwix-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-text p {
  font-size: 16px;
  line-height: 30px;
  color: #0e0e0e;
}
.techwix-contact-section .contact-wrap .contact-form {
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 110px;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap {
  padding: 55px 40px;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap {
  margin-bottom: 30px;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .sub-title {
  font-size: 14px;
  line-height: 30px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff5538;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
  font-size: 42px;
  line-height: 54px;
  font-weight: 600;
  color: #0e0e0e;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form {
  margin-top: 25px;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]) {
  height: 55px;
  line-height: 55px;
  border: 1px solid #ebebeb;
  padding-left: 15px;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #0e0e0e;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #0e0e0e;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #0e0e0e;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):-ms-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #0e0e0e;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea {
  height: 135px;
  border: 1px solid #ebebeb;
  padding-left: 15px;
  resize: none;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #0e0e0e;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea:-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #0e0e0e;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea::-moz-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #0e0e0e;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .single-form textarea:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 14px;
  color: #0e0e0e;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn {
  margin-top: 25px;
}
.techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
  font-size: 16px;
  width: 100%;
  height: 55px;
  line-height: 50px;
  margin-bottom: 10px;
}

.techwix-contact-section-02 .contact-wrap .contact-info .section-title .title::before {
  background: #086ad8;
}
.techwix-contact-section-02 .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
  color: #0e0e0e;
}
.techwix-contact-section-02 .contact-wrap .contact-form {
  background: #ffffff;
  box-shadow: 0px 0px 139px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  margin: auto;
  bottom: -100px;
}
.techwix-contact-section-02 .contact-wrap .contact-form .contact-form-wrap .heading-wrap .sub-title {
  color: #0e0e0e;
}

@media only screen and (max-width: 575px) {
  .techwix-contact-section .contact-wrap .contact-info ul li .contact-info-item .contact-info-icon i {
    font-size: 42px;
  }
  .techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
    font-size: 28px;
    line-height: 40px;
  }
  .techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .form-btn .btn {
    padding: 0 45px;
  }
}
@media only screen and (max-width: 1399px) {
  .techwix-contact-section .contact-wrap .contact-form {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .techwix-contact-section .contact-wrap .contact-form {
    margin-left: 15px;
  }
  .techwix-contact-section .contact-wrap .contact-form .contact-form-wrap {
    padding: 40px;
  }
  .techwix-contact-section .contact-wrap .contact-form .contact-form-wrap .heading-wrap .title {
    font-size: 32px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .techwix-contact-section .contact-wrap .contact-form {
    margin-left: 0;
    margin-top: 60px;
  }
}
.contact-map-section .contact-map-wrap {
  margin-bottom: -8px;
}
.contact-map-section .contact-map-wrap iframe {
  height: 550px;
  width: 100%;
}

.cntct_sec .video_box:after {
  display: none;
}

.reserve_sec h2,
.cntct_sec h2 {
  font-weight: 900;
  font-size: 47px;
}
.reserve_sec p,
.cntct_sec p {
  margin-bottom: 0;
  font-size: 16px;
}

.cntct_sec h2 {
  margin: 50px 0;
}

.page-id-203 .contact,
.page-id-237 .contact {
  margin-top: 0;
}
.page-id-203 .counter_sec,
.page-id-237 .counter_sec {
  position: relative;
}
.page-id-203 .counter_sec .container,
.page-id-237 .counter_sec .container {
  position: relative;
  z-index: 10;
}
.page-id-203 .counter_sec:after,
.page-id-237 .counter_sec:after {
  background-color: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
}
.page-id-203 .counter,
.page-id-237 .counter {
  opacity: unset;
}

/** 
  *
  * About Us Page Css
  */
.page-id-237 .reserve_sec {
  margin-top: -32rem;
  padding-top: 20rem;
}
.page-id-237 .reserve_sec .img_box {
  height: 100%;
}
.page-id-237 .reserve_sec .img_box img {
  height: 100%;
}
.page-id-237 .count-nw-sec {
  z-index: 1;
}
.page-id-237 .career_sec p {
  font-size: 1.2rem;
  line-height: 1.5;
}
.page-id-237 .card-body span {
  font-weight: 800;
}
.page-id-237 .card-body h5 span {
  color: #8d97a0;
}

/** 
  *
  * Aircraft Management Page
  */
.page-id-283 .blog ul {
  list-style: disc;
}
.page-id-283 .blog ul li {
  font-size: 18px;
  margin-bottom: 10px;
  color: #8d97a0;
}
.page-id-283 .count-nw-sec {
  z-index: 1;
  padding-top: 40px;
}
.page-id-283 .count-nw-sec .conter_box {
  padding: 20px 20px 20px 0;
  align-items: flex-start;
}
.page-id-283 .count-nw-sec .conter_box h4 {
  text-align: left;
}
.page-id-283 .count-nw-sec .conter_box p {
  text-align: left;
}
.page-id-283 .career_sec p {
  font-size: 1.2rem;
  line-height: 1.5;
}
.page-id-283 .card-body span {
  font-weight: 800;
}
.page-id-283 .card-body h5 span {
  color: #8d97a0;
}
.page-id-283 .single-counter-02 ul li {
  font-weight: 700;
  font-size: 16px;
  position: relative;
  padding-left: 20px;
}
.page-id-283 .single-counter-02 ul li:after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #000;
  position: absolute;
  top: 13px;
  left: 5px;
  border-radius: 100%;
}

/** 
  *
  * Air-Charters Page
  */
.page-id-323 .card-body span {
  font-weight: 800;
}
.page-id-323 .card-body h5 span {
  color: #8d97a0;
}
.page-id-323 .counter_sec {
  margin-top: -340px;
  padding: 250px 20px;
  padding-bottom: 130px;
  overflow: hidden;
  position: relative;
}
.page-id-323 .counter_sec h2 {
  position: relative;
  z-index: 10;
}
.page-id-323 .counter_sec .counter {
  opacity: 1;
}
.page-id-323 .counter_sec {
  position: relative;
}
.page-id-323 .counter_sec .container {
  position: relative;
  z-index: 10;
}
.page-id-323 .counter_sec:after {
  background-color: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
}
.page-id-323 .counter {
  opacity: unset;
}
.page-id-323 .career_sec h2 span {
  color: #2e3eff;
}

.page-id-349 .image_bxx img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-id-349 h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  margin-bottom: 25px;
}
.page-id-349 .counter_sec {
  padding-block: 100px;
}
.page-id-349 .our_fleet {
  padding-top: 75px;
}
.page-id-349 .our_fleet h3 {
  padding-top: 25px;
}
.page-id-349 .our_fleet p {
  font-size: 16px;
}

.page-id-349 .table_sec .aircraft_spec,
.page-id-461 .table_sec .aircraft_spec {
  padding-bottom: 42px;
  padding-top: 65px;
}
.page-id-349 .table_sec .aircraft_spec h3,
.page-id-461 .table_sec .aircraft_spec h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
}
.page-id-349 .table_sec .aircraft_spec table,
.page-id-461 .table_sec .aircraft_spec table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid black;
  border-color: black;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid black;
}
.page-id-349 .table_sec .aircraft_spec tr,
.page-id-461 .table_sec .aircraft_spec tr {
  border: 1px solid black;
}
.page-id-349 .table_sec .aircraft_spec th,
.page-id-461 .table_sec .aircraft_spec th {
  padding-left: 15px;
  border: 1px solid black;
  padding-right: 15px;
  background-color: #999999;
  color: #fff;
  text-transform: none;
}
.page-id-349 .table_sec .aircraft_spec td,
.page-id-461 .table_sec .aircraft_spec td {
  padding-left: 15px;
  border: 1px solid black;
}
.page-id-349 .table_sec .dark_grey_bg,
.page-id-461 .table_sec .dark_grey_bg {
  background-color: #999999;
  color: #fff;
}
.page-id-349 .table_sec .white_bg,
.page-id-461 .table_sec .white_bg {
  background-color: #fff !important;
  color: #051b30 !important;
}
.page-id-349 .table_sec .grey_bg,
.page-id-461 .table_sec .grey_bg {
  background-color: #c0c0c0;
  color: #fff;
}
.page-id-349 .table_sec .lite_grey_bg,
.page-id-461 .table_sec .lite_grey_bg {
  color: #051b30 !important;
}

.blg_dtl {
  padding-block: 40px;
}

.page-id-376 .blog {
  padding-top: 40px;
}

.page-id-381 .mn_bdy {
  padding-bottom: 30px;
  padding-top: 30px;
}

.page-id-388 .career_bdy {
  position: relative;
  z-index: 2;
  padding-block: 40px;
}
.page-id-388 .career_bdy h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  margin-bottom: 25px;
  color: #000 !important;
}
.page-id-388 .career_bdy h3 {
  font-size: 25px;
  font-weight: 700;
  padding-top: 15px;
}
.page-id-388 .career_bdy .card.card-body.each_job_box {
  margin-bottom: 25px;
}
.page-id-388 .career_bdy .img-box {
  width: 100%;
  height: 300px;
  aspect-ratio: 1;
}
.page-id-388 .career_bdy .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-id-391 .faq_bdy {
  padding-bottom: 30px;
}
.page-id-391 .faq_bdy h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  margin-bottom: 25px;
  color: #000 !important;
}
.page-id-391 .faq_bdy .accordion {
  max-width: 100%;
}
.page-id-391 .faq_bdy .content_box {
  padding-top: 0;
}
.page-id-391 .faq_bdy .accordion-item {
  padding: 15px 10px;
  background-color: #2e3eff;
}
.page-id-391 .faq_bdy .accordion-content {
  background-color: #fff;
}

.single-jobs label {
  font-size: 20px;
  font-weight: 700;
  width: 110px;
}
.single-jobs .modal-dialog .wpcf7-response-output {
  color: #000;
}
.single-jobs input,
.single-jobs textarea {
  margin-bottom: 15px !important;
  line-height: inherit !important;
}
.single-jobs .career_dtls_bdy {
  padding-block: 40px;
}
.single-jobs .wpcf7-form.init label {
  font-size: 20px;
  font-weight: 700;
  width: 110px;
}
.single-jobs .wpcf7-form.init input[type=file] {
  margin-bottom: 0 !important;
}
.single-jobs .modal-header {
  position: relative;
  padding: 40px 30px;
}
.single-jobs .modal-header h3 {
  display: inline;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.not-found {
  padding-top: 100px;
}
.not-found .lft_sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.not-found .lft_sec h2 {
  width: 100%;
  text-align: center;
}
.not-found .lft_sec h5 {
  width: 100%;
  text-align: center;
}
.not-found .lft_sec .btn {
  margin: 10px auto 0 auto;
}
.not-found .lft_sec .search-form {
  width: 100%;
}
.not-found .lft_sec .search-submit {
  background-color: #2e3eff !important;
  color: #fff !important;
  border-radius: 100px !important;
  border: none !important;
  width: 150px;
  height: 45px;
}
.not-found .lft_sec .search-submit:hover {
  background-color: #0c0c0c !important;
}

.error404 .header_top,
.error404 #header,
.error404 .top_footer,
.error404 .footer,
.error404 .progress-wrap {
  display: none;
}

.wpcf7-response-output {
  color: #fff;
}

.page-id-381 .mn_bdy ul {
  list-style: disc;
  padding-left: 30px;
}

.top_footer .logo_box img {
  width: 260px !important;
}

.bnnr_desc {
  background-color: rgba(0, 0, 0, 0.4941176471);
  padding: 5px 10px;
  margin-bottom: 0;
  display: inline-block;
}
.bnnr_desc p {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato";
  text-align: center;
  margin-bottom: 0;
}

.service {
  padding: 20px 10px;
  position: relative;
}
.service h2 {
  font-size: 47px;
  color: #0c0c0c;
  font-weight: 900;
  text-align: center;
  font-size: 36px !important;
  margin-bottom: 20px;
}
.service h2 span {
  color: #2e3eff;
}
.service p {
  font-size: 18px;
  color: #575757;
  font-weight: 400;
  font-family: "Lato";
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 50px;
}
.service img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-id-203 .counter_sec {
  position: relative;
  margin-top: 0;
}

.job_mdl_ttl {
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.job_mdl_ttl img {
  width: 100% !important;
}

/** Booking Form Page SCSS */
.booking_frm {
  margin-bottom: 40px;
}
.booking_frm h2 {
  color: #000;
  text-shadow: none;
  border-bottom: 2px solid #0e0e0e;
  margin-bottom: 30px;
}
.booking_frm p {
  text-align: start;
  color: #000;
  text-shadow: none;
}
.booking_frm .rdio-btn .wpcf7-form-control-wrap {
  border: 1px solid #e6e6e6;
  padding: 14px 0;
  padding-right: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.booking_frm .rdio-btn .wpcf7-list-item input {
  height: auto;
  cursor: pointer;
}
.booking_frm .select_sec p {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 10px;
}
.booking_frm .select_sec p select {
  border: 1px solid #ebebeb;
  box-shadow: none;
  color: #415674;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 0;
  padding: 10px 25px;
  max-width: 100%;
  width: 100%;
  font-size: 13px;
  line-height: 30px;
  font-weight: 600;
  transition: all 0.3s linear;
  margin-left: 10px;
}
.booking_frm .time select {
  border: 1px solid #ebebeb;
  box-shadow: none;
  color: #415674;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 0;
  padding: 15px 25px;
  max-width: 100%;
  width: 100%;
  font-size: 13px;
  line-height: 30px;
  font-weight: 600;
  transition: all 0.3s linear;
}
.booking_frm .comment textarea {
  height: 120px;
  resize: none;
}
.booking_frm .btn.primary {
  padding: 0 20px !important;
  float: right;
}
.booking_frm .ref_bx label {
  margin-top: 30px;
}
.booking_frm .ref_bx select {
  border: 1px solid #ebebeb;
  box-shadow: none;
  color: #415674;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 25px;
  padding: 15px 25px;
  max-width: 100%;
  width: 100%;
  font-size: 13px;
  line-height: 30px;
  font-weight: 600;
  transition: all 0.3s linear;
}
.booking_frm p br {
  display: none;
}

.aircraft {
  padding: 100px 0;
}
.aircraft .gallery-image {
  position: relative;
  overflow: hidden;
  border: 15px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 100%;
  aspect-ratio: 3/2;
}
.aircraft .gallery-image a {
  height: 100%;
  width: 100%;
}
.aircraft .gallery-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.aircraft .gallery-image:hover img {
  transform: scale(1.1);
}
.aircraft .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}
.aircraft .gallery-overlay h4 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.aircraft .gallery-image:hover .gallery-overlay {
  opacity: 1;
}

.contct_btm {
  margin: 40px 0px;
}
.contct_btm .col-md-6 {
  margin: 20px 0;
}
.contct_btm .col-md-6 .card_nw {
  padding: 30px;
  box-shadow: 1px 0px 17px 7px rgba(207, 195, 207, 0.34);
  text-align: center;
}

.welcome_charter h2 {
  font-size: 38px;
  text-align: center;
  font-family: "times_newer_romanbold";
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
}
.welcome_charter h4 {
  text-align: center;
  margin-bottom: 20px;
}
.welcome_charter p {
  font-size: 18px;
  font-family: "INITIAL";
  line-height: 25px;
  margin-bottom: 20px;
}
.welcome_charter a {
  max-width: 200px;
  margin: auto;
  margin-bottom: 50px;
}

.cont_box.in {
  background-color: #f6f4f2;
}
.cont_box.in .title {
  color: #333;
  text-shadow: none;
  font-size: 18px !important;
  text-align: start !important;
}

.new_contact input {
  border: 0 !important;
  border-bottom: 1px solid #cbcbcb !important;
  margin-bottom: 0 !important;
  background-color: transparent !important;
}
.new_contact input::-moz-placeholder {
  font-style: italic;
}
.new_contact input::placeholder {
  font-style: italic;
}
.new_contact select {
  box-shadow: none;
  color: #898c94;
  border-radius: 0;
  background-color: transparent !important;
  margin-bottom: 0;
  padding: 10px 25px;
  max-width: 100%;
  width: 100%;
  font-size: 13px;
  line-height: 30px;
  font-weight: 600;
  transition: all 0.3s linear;
  border: 0;
  border-bottom: 1px solid #cbcbcb;
  font-style: italic;
  margin-bottom: 0 !important;
  height: 50px;
}
.new_contact select:focus {
  outline: 0;
}
.new_contact .wpcf7-submit {
  color: #898c94;
  width: 150px !important;
  border: 1px solid #898c94 !important;
  margin-top: 20px;
  margin-bottom: 20px !important;
}
.new_contact .wpcf7-submit:hover {
  color: #fff;
  background-color: #000 !important;
}
.new_contact .wpcf7-spinner {
  display: none !important;
}

.company-details {
  padding: 20px;
  background-color: #f6f4f2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.company-details iframe {
  width: 100%;
  aspect-ratio: 3/2;
  height: auto;
  margin-top: 5px;
}

.company-title {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.company-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-info li {
  margin-bottom: 10px;
}

.company-info a {
  color: #898c94;
  text-decoration: none;
  font-weight: 500;
}

.company-info a:hover {
  text-decoration: underline;
}

.page-id-203 .contact {
  background-color: skyblue;
}

.page-id-461 .gallery-image {
  margin-bottom: 40px;
}
.page-id-461 .aircraft {
  padding-bottom: 0;
}
.page-id-461 .aircraft .gallery-overlay h4 {
  font-size: 25px;
  padding-inline: 5%;
}

.page-banner h1 {
  font-family: "calgarydemoregular";
  font-size: 65px;
  font-weight: 500 !important;
}

.page-banner {
  position: relative;
  z-index: 2;
}

.page-banner-section {
  position: relative;
}
.page-banner-section:after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 36, 53, 0.502);
  position: absolute;
}

.hero {
  margin-top: -295px;
}
.hero .head_box {
  padding-top: 315px;
}

.hero_new {
  margin-top: -315px;
  position: relative;
}
.hero_new .swiper-button-next {
  right: -200px;
}
.hero_new .swiper-button-prev {
  left: -200px;
}
.hero_new .head_box {
  height: unset;
  padding-block: 400px 140px;
  position: relative;
}
.hero_new .head_box:after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 36, 53, 0.502);
  position: absolute;
}
.hero_new .ban_slogan {
  width: 100%;
  max-width: 48%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 9999;
}
.hero_new .ban_slogan h1 {
  font-family: "calgarydemoregular";
  font-size: 65px;
  font-weight: 500;
  white-space: nowrap;
}
.hero_new .ban_slogan h2 {
  font-family: "tomatoesregular";
  font-size: 36px;
  color: #fff;
  margin-block: 30px 25px;
}
.hero_new .ban_slogan .btn {
  min-width: 217px;
  min-height: 60px;
  font-size: 18px;
  background-color: #4d56c0;
  color: #fff;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero_new .ban_slogan .btn:hover {
  color: #0c0c0c;
}
.hero_new .ban_slogan .btn:after {
  background-color: rgb(255, 255, 255);
}
.hero_new .ban_slogan .btn:before {
  background-color: rgb(255, 255, 255);
}

.swip_common_arrow:after {
  display: none;
}

.swip_common_arrow {
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 100%;
  font-size: 38px;
  color: #064561;
  top: -16rem;
  transform: translateY(-50%);
}

.ban_swip_arrow {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-section.sticky .header-logo a img {
  width: 130px !important;
  filter: none;
}
.header-section.sticky .main-menu li {
  margin-right: 10px;
}
.header-section.sticky .main-menu li:last-child {
  margin-right: 0;
}
.header-section.sticky .main-menu li a {
  font-size: 16px;
  color: #000;
  border: 1px solid transparent;
}
.header-section.sticky .main-menu li a:hover {
  color: #000;
  border: 1px solid #000;
}
.header-section.sticky .main-menu .current-menu-item a {
  color: #000;
  border: 1px solid #000;
}

.header_top {
  padding-top: 30px;
  border-bottom: none;
}

.header-logo {
  margin-right: 35px;
}
.header-logo img {
  width: 310px !important;
  filter: brightness(0) invert(1);
}

.header-menu .main-menu {
  display: flex;
}
.header-menu .main-menu .current-menu-item a {
  border: none;
  color: #fff;
  padding: 0 17px;
  border: 1px solid #ffffff;
}
.header-menu .main-menu li {
  padding: 0;
}
.header-menu .main-menu li:hover a {
  opacity: 0.6;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 17px;
  border: 1px solid transparent;
}
.header-menu .main-menu li a {
  font-size: 17px;
  padding: 0 17px;
  color: #fff;
  font-family: "Lato", sans-serif;
  text-transform: capitalize;
  border: none;
  border: 1px solid transparent;
}

.hero_new_welcome_sec {
  padding-block: 130px 80px;
}
.hero_new_welcome_sec_txt h2 {
  font-size: 36px;
  color: #0c0c0c;
  font-weight: 900;
  font-family: "Lato";
  text-align: center;
  margin-bottom: 20px;
}
.hero_new_welcome_sec_txt p {
  font-size: 17px;
  line-height: 26px;
  color: #575757;
  font-weight: 400;
  font-family: "Lato";
  text-align: center;
}

.approved_sec {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 659px;
  padding-top: 60px;
}
.approved_sec_txt h2 {
  font-size: 43px;
  line-height: 49px;
  padding-top: 120px;
  color: #000000;
  font-family: "conthraxsemibold";
  text-align: center;
}
.approved_sec_txt h3 {
  font-family: "Lato";
  font-size: 36px;
  color: #000000;
  font-weight: 700;
}

.service_new_sec {
  background-color: #add9e6;
  padding-top: 140px;
  padding-bottom: 50px;
}
.service_new_sec .bg_blue {
  background-color: #fff !important;
}
.service_new_sec .bg_blue h4 {
  color: #3f3f3f !important;
}
.service_new_sec .bg_blue p {
  color: #5b5b5b !important;
}
.service_new_sec .content_box .img_box {
  border-radius: 100%;
  width: 100%;
  height: unset;
  aspect-ratio: 1/1;
  position: relative;
  overflow: unset;
}
.service_new_sec .content_box .img_box img {
  border-radius: 100%;
}
.service_new_sec .content_box .img_box:after {
  content: "";
  background-color: transparent;
  border: 1px solid #6b79c1;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service_new_sec .content_box .img_box img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.service_new_sec .content_box .data_box {
  height: auto;
  top: auto;
  bottom: 0;
  border-radius: 90px 90px 0 0;
  position: relative;
  min-height: 270px;
  padding: 40px 35px;
  margin-top: -5px;
}
.service_new_sec .content_box .data_box h4 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #3f3f3f;
  font-weight: 900;
  font-family: "Lato";
  text-align: center;
}
.service_new_sec .content_box .data_box p {
  font-size: 18px !important;
}

.footer_new {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 5;
  background-color: transparent;
  padding-top: 22rem;
}
.footer_new a:hover {
  opacity: 0.6;
}
.footer_new .footer_box .social li a {
  filter: unset;
}
.footer_new .footer_box .social li a:hover {
  color: #fff !important;
  opacity: 0.6;
  filter: unset;
}
.footer_new .footer_box .social li a:hover img {
  transform: rotate(360deg);
}
.footer_new .links {
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer_new .links .logo_box {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
}
.footer_new .links .logo_box a:hover {
  opacity: 1;
}
.footer_new .footer_box h6 {
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 400;
}
.footer_new .footer_box a {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato";
}
.footer_new .footer_box a:hover {
  color: #fff;
}
.footer_new .footer_box p, .footer_new .footer_box h5, .footer_new .footer_box h6 {
  color: #fff;
}
.footer_new .copyright .copyright_box {
  padding: 60px 0 40px 0;
}
.footer_new .copyright .copyright_box p {
  color: #fff;
}
.footer_new .copyright .copyright_box h6 {
  color: #fff;
}

.page-id-9 .footer_new {
  background-color: #add9e6;
}

.page-id-203 .footer_new {
  background-color: skyblue;
  z-index: 1;
}/*# sourceMappingURL=style.css.map */