/*================================================
Default CSS
=================================================*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
  --fontFamily: "Rubik", sans-serif;
  --headingFontFamily: "Rubik", sans-serif;
  --mainColor: #10b981;
  --optionalColor: #ff621f;
  --bodyColor: #555555;
  --whiteColor: #ffffff;
  --blackColor: #111827;
  --transition: .5s;
  --fontSize: 16px;
}

body {
  margin: 0;
  padding: 0;
  color: var(--bodyColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: var(--secondaryColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.9;
}
p:last-child {
  margin-bottom: 0;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.bg-f3f4f6 {
  background-color: #f3f4f6;
}

.default-btn {
  border: 0;
  position: relative;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--mainColor);
  padding: 16.5px 60.55px 16.5px 30.55px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.default-btn i {
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  position: absolute;
  border-radius: 50%;
  color: var(--mainColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.default-btn.two {
  background-color: var(--optionalColor);
}
.default-btn.two i {
  color: var(--optionalColor);
}
.default-btn.two:hover {
  background-color: var(--mainColor);
}
.default-btn.two:hover i {
  color: var(--mainColor);
}
.default-btn.style-2 i {
  right: 50px;
  width: 0;
  height: 0;
  line-height: 0;
  border-radius: unset;
  background-color: unset;
  color: var(--whiteColor);
}
.default-btn.style-2:hover i {
  color: var(--whiteColor);
}
.default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--optionalColor);
}
.default-btn:hover i {
  color: var(--optionalColor);
}

.section-title {
  max-width: 660px;
  margin-bottom: 45px;
}
.section-title .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.section-title h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 0;
}
.section-title.style-2 .sub-title {
  text-transform: uppercase;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader-area {
  z-index: 9999;
  background-color: var(--whiteColor);
}
.preloader-area .preloader {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
.preloader-area .preloader .waviy {
  margin-top: 20px;
  font-size: 60px;
  font-family: var(--headingFontFamily);
}
.preloader-area .preloader .waviy span {
  animation-delay: 0.1s;
  color: var(--blackColor);
  animation: waviy 1s infinite;
}
.preloader-area .preloader .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader-area .preloader .waviy span:nth-child(3) {
  animation-delay: 0.3s;
}
.preloader-area .preloader .waviy span:nth-child(4) {
  animation-delay: 0.4s;
}
.preloader-area .preloader .waviy span:nth-child(5) {
  animation-delay: 0.5s;
}
.preloader-area.deactivate {
  display: none;
}

@keyframes waviy {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
}
/* Max width 767px */
@media only screen and (max-width: 767px) {
  .preloader-area .preloader .waviy {
    font-size: 30px;
  }
}
/* Min width 576px to Max width 767px */
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .preloader-area .preloader .waviy {
    font-size: 45px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .preloader-area .preloader .waviy {
    font-size: 55px;
  }
}
/* Min width 1200px to Max width 1399px */
/* Min width 1600px */
/*================================================
Header Area CSS
=================================================*/
.navbar-area {
  background-color: var(--whiteColor);
}
.navbar-area.is-sticky {
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  position: sticky;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-area.is-sticky .nofa-nav .navbar {
  border-bottom: 0;
}
.navbar-area.style-2 {
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  position: absolute;
  background-color: transparent;
}
.navbar-area.style-2.is-sticky {
  position: fixed;
  background-color: var(--blackColor);
}
.navbar-area.page-title {
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/page-title-bg2.jpg);
}
.navbar-area.page-title.is-sticky {
  background-image: none;
  background-color: var(--whiteColor) !important;
}

.nofa-responsive-nav {
  display: none;
}

.nofa-nav .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.nofa-nav .navbar {
  padding: 0;
  border-bottom: 1px solid #d9d9d9;
}
.nofa-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}
.nofa-nav .navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.nofa-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.nofa-nav .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
.nofa-nav .navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
  padding-left: 0;
  padding-right: 0;
  padding-top: 36px;
  padding-bottom: 36px;
}
@media screen and (max-width: 992px) {
 .nofa-nav .navbar .navbar-nav .nav-item .nav-link {
  font-size: 14px !important;
}      
}
.nofa-nav .navbar .navbar-nav .nav-item .nav-link:hover, .nofa-nav .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 17px;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  position: absolute;
  content: "\e9fe";
  line-height: 1;
  right: -2px;
  top: 42px;
  font-family: "Phosphor-Bold";
  font-size: 15px;
}
.nofa-nav .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.nofa-nav .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.nofa-nav .navbar .navbar-nav .nav-item:hover .nav-link, .nofa-nav .navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 99px;
  opacity: 0;
  z-index: 99;
  border: none;
  width: 250px;
  margin-top: 0;
  display: block;
  padding: 12px 0;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  background: var(--whiteColor);
  transition: all 0.2s ease-in-out;
  box-shadow: rgba(4, 4, 5, 0.2) 0px 7px 36px -8px;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  display: block;
  font-size: 17px;
  padding: 8px 25px;
  color: var(--blackColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active, .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-toggle::before {
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  visibility: hidden;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -100%;
  visibility: hidden;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  visibility: hidden;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav .navbar .others-option {
  top: 2px;
}
.nofa-nav .navbar .others-option .option-item {
  margin-left: 20px;
}
.nofa-nav .navbar .others-option .option-item .user-btn {
  font-size: 22px;
}
.nofa-nav .navbar .others-option .option-item .cart-btn {
  top: 1px;
  font-size: 22px;
  padding-right: 8px;
}
.nofa-nav .navbar .others-option .option-item .cart-btn span {
  color: var(--whiteColor);
  background-color: red;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  line-height: 12px;
  font-size: 10px;
  height: 12px;
  width: 12px;
  top: -2px;
  right: 0;
}
.nofa-nav .navbar .others-option .option-item .search-btn {
  cursor: pointer;
  font-size: 22px;
  transition: var(--transition);
}
.nofa-nav .navbar .others-option .option-item .search-btn:hover {
  color: var(--mainColor);
}
.nofa-nav .navbar .others-option .option-item:first-child {
  margin-left: 0;
}
.nofa-nav.style-2 .navbar {
  border-color: rgba(255, 255, 255, 0.1);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .nav-link {
  color: var(--whiteColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .nav-link:hover, .nofa-nav.style-2 .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item:hover .nav-link, .nofa-nav.style-2 .navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active, .nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  visibility: hidden;
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  visibility: hidden;
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  visibility: hidden;
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--blackColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2 .navbar .others-option .option-item .user-btn {
  color: var(--whiteColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .user-btn:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .cart-btn {
  color: var(--whiteColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .cart-btn:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .search-btn {
  color: var(--whiteColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .search-btn:hover {
  color: var(--mainColor);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.search-overlay {
  opacity: 0;
  z-index: 991;
  transition: 0.3s;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}
.search-overlay .search-overlay-close {
  top: 40px;
  right: 40px;
  line-height: 1;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
}
.search-overlay .search-overlay-close:hover {
  color: red;
}
.search-overlay .search-overlay-form {
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  max-width: 600px;
  width: 600px;
  left: 50%;
  top: 50%;
}
.search-overlay .search-overlay-form form {
  position: relative;
}
.search-overlay .search-overlay-form form .input-search {
  border: 0;
  height: 70px;
  color: var(--whiteColor);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.search-overlay .search-overlay-form form .input-search::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-overlay-form form .input-search::placeholder {
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-overlay-form form .input-search:focus {
  border-color: var(--whiteColor);
}
.search-overlay .search-overlay-form form .input-search:focus::-moz-placeholder {
  color: transparent;
}
.search-overlay .search-overlay-form form .input-search:focus::placeholder {
  color: transparent;
}
.search-overlay .search-overlay-form form button {
  right: 0;
  top: 20px;
  font-size: 20px;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
}
.search-overlay .search-overlay-form form button:hover {
  color: var(--mainColor);
}
.search-overlay.search-overlay-active {
  opacity: 1;
  visibility: visible;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .navbar-area {
    border-bottom: 1px solid #eeeeee;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-area.is-sticky {
    border-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .nofa-responsive-nav {
    display: block;
  }
  .nofa-responsive-nav .nofa-responsive-menu {
    position: relative;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav {
    margin-top: 93px;
    background-color: var(--whiteColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul {
    border: none !important;
    font-size: 16px;
    font-family: var(--headingFontFamily);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a {
    border-top-color: #eeeeee;
    color: var(--blackColor);
    text-transform: unset;
    font-weight: 600;
    transition: all ease 0.2s;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a:hover {
    background-color: #FFB629;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 50%;
    height: 28px;
    text-align: end;
    background: transparent;
    padding: 10px !important;
    font-size: 22px !important;
    font-weight: normal;
    border-left: none !important;
    border-bottom: none !important;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a.active {
    color: var(--mainColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 15px;
    color: var(--blackColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .navbar-nav {
    max-height: 500px;
    background-color: var(--whiteColor);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .nofa-responsive-nav .mean-container a.meanmenu-reveal {
    top: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    padding-top: 0;
    margin-top: 17px;
    color: var(--blackColor);
  }
  .nofa-responsive-nav .mean-container a.meanmenu-reveal span {
    top: 8px;
    height: 3px;
    margin-top: -9px;
    border-radius: 3px;
    position: relative;
    background: var(--blackColor);
  }
  .nofa-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 99;
    padding: 0;
  }
  .nofa-responsive-nav .dropdown-toggle::after {
    display: none !important;
  }
  .nofa-responsive-nav .others-option {
    position: absolute !important;
    right: 43px;
    top: 17px;
  }
  .nofa-responsive-nav .others-option .option-item {
    margin-left: 13px;
  }
  .nofa-responsive-nav .others-option .option-item .user-btn {
    font-size: 18px;
  }
  .nofa-responsive-nav .others-option .option-item .cart-btn {
    top: 1px;
    font-size: 18px;
    padding-right: 8px;
  }
  .nofa-responsive-nav .others-option .option-item .cart-btn span {
    color: var(--whiteColor);
    background-color: red;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    text-align: center;
    line-height: 12px;
    font-size: 10px;
    height: 12px;
    width: 12px;
    top: -2px;
    right: 0;
  }
  .nofa-responsive-nav .others-option .option-item .search-btn {
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
  }
  .nofa-responsive-nav .others-option .option-item .search-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav .others-option .option-item:first-child {
    margin-left: 0;
  }
  .nofa-responsive-nav .logo {
    width: 50%;
    z-index: 99;
    position: relative;
  }
  .nofa-responsive-nav.style-2 .mean-container a.meanmenu-reveal {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .mean-container a.meanmenu-reveal span {
    background: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .user-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .user-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .cart-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .cart-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .search-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .search-btn:hover {
    color: var(--mainColor);
  }
  .nofa-nav {
    display: none;
  }
  .search-overlay .search-overlay-close {
    top: 20px;
    right: 20px;
    font-size: 25px;
  }
  .search-overlay .search-overlay-form {
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .search-overlay .search-overlay-form form .input-search {
    height: 50px;
  }
  .search-overlay .search-overlay-form form button {
    top: 11px;
    font-size: 18px;
  }
}
/* Min width 576px to Max width 767px */
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area {
    border-bottom: 1px solid #eeeeee;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-area.is-sticky {
    border-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .nofa-responsive-nav {
    display: block;
  }
  .nofa-responsive-nav .nofa-responsive-menu {
    position: relative;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav {
    margin-top: 65px;
    background-color: var(--whiteColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul {
    border: none !important;
    font-size: 16px;
    font-family: var(--headingFontFamily);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a {
    border-top-color: #eeeeee;
    color: var(--blackColor);
    text-transform: unset;
    font-weight: 600;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 50%;
    height: 28px;
    text-align: end;
    background: transparent;
    padding: 10px !important;
    font-size: 22px !important;
    font-weight: normal;
    border-left: none !important;
    border-bottom: none !important;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a.active {
    color: var(--mainColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 15px;
    color: var(--blackColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .navbar-nav {
    max-height: 500px;
    background-color: var(--whiteColor);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .nofa-responsive-nav .mean-container a.meanmenu-reveal {
    top: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    padding-top: 0;
    margin-top: 17px;
    color: var(--blackColor);
  }
  .nofa-responsive-nav .mean-container a.meanmenu-reveal span {
    top: 8px;
    height: 3px;
    margin-top: -9px;
    border-radius: 3px;
    position: relative;
    background: var(--blackColor);
  }
  .nofa-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 99;
    padding: 0;
  }
  .nofa-responsive-nav .dropdown-toggle::after {
    display: none !important;
  }
  .nofa-responsive-nav .others-option {
    position: absolute !important;
    right: 47px;
    top: 15px;
  }
  .nofa-responsive-nav .others-option .option-item {
    margin-left: 15px;
  }
  .nofa-responsive-nav .others-option .option-item .user-btn {
    font-size: 20px;
  }
  .nofa-responsive-nav .others-option .option-item .cart-btn {
    top: 1px;
    font-size: 20px;
    padding-right: 8px;
  }
  .nofa-responsive-nav .others-option .option-item .cart-btn span {
    color: var(--whiteColor);
    background-color: red;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    text-align: center;
    line-height: 12px;
    font-size: 10px;
    height: 12px;
    width: 12px;
    top: -2px;
    right: 0;
  }
  .nofa-responsive-nav .others-option .option-item .search-btn {
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
  }
  .nofa-responsive-nav .others-option .option-item .search-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav .others-option .option-item:first-child {
    margin-left: 0;
  }
  .nofa-responsive-nav .logo {
    width: 50%;
    z-index: 99;
    position: relative;
  }
  .nofa-responsive-nav.style-2 .mean-container a.meanmenu-reveal {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .mean-container a.meanmenu-reveal span {
    background: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .user-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .user-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .cart-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .cart-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .search-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .search-btn:hover {
    color: var(--mainColor);
  }
  .nofa-nav {
    display: none;
  }
  .search-overlay .search-overlay-form form .input-search {
    height: 60px;
  }
  .search-overlay .search-overlay-form form button {
    top: 15px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nofa-nav .container-fluid {
    max-width: 960px;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .nofa-nav .navbar .navbar-nav .nav-item {
    margin-left: 11px;
    margin-right: 11px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
    top: 36.2px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    font-size: 16px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
    left: -100%;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    left: 100%;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    left: -100%;
  }
  .nofa-nav .navbar .others-option .option-item {
    margin-left: 18px;
  }
  .nofa-nav .navbar .others-option .option-item .user-btn {
    font-size: 20px;
  }
  .nofa-nav .navbar .others-option .option-item .cart-btn {
    font-size: 20px;
  }
  .nofa-nav .navbar .others-option .option-item .search-btn {
    font-size: 20px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .nofa-nav .navbar .navbar-nav .nav-item {
    margin-left: 15px;
    margin-right: 15px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .nav-link {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
    top: 38px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
    left: -100%;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    left: 100%;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
    left: -100%;
  }
}
/* Min width 1600px */
@media only screen and (min-width: 1600px) {
  .nofa-nav .container-fluid {
    max-width: 1920px;
    padding-left: 100px;
    padding-right: 100px;
  }
  .nofa-nav.style-2 .container-fluid {
    max-width: 1760px;
    padding-left: 100px;
    padding-right: 100px;
  }
}
/*================================================
Banner Area CSS
=================================================*/
.banner-area { 
  position: relative;
 background-image: url(../images/main_banner.webp?var=123), linear-gradient(#002D67, #005ACD);
background-repeat: no-repeat;
padding: 100px 0;
background-size: cover;
background-position: right top;
}
@media screen and (max-width: 768px) {
   .banner-area { 
    position: relative;
   background-image: url(../images/home_plane3.webp?var=65), linear-gradient(#002D67, #005ACD);
  background-repeat: no-repeat;
  padding: 100px 0;
  background-size: cover;
  background-position: center top;
  }
}
.banner-area:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(91.67deg, rgba(0, 45, 103, 0.39) -1.3%, rgba(0, 90, 205, 0.39) 99.12%);

}
.banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.banner-content {
}
.banner-content h1 {
  font-size: 51px;
    line-height: 66.44px;
    color: #FFF;
    font-weight: 700;
}
.banner-content p {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFF;
  padding: 15px;
  font-size: 18px;
}

.banner-image {
  z-index: 2;
  margin-bottom: -200px;
}

.banner-description {
  border-radius: 50px 50px 20px 50px;
  background-color: #eefaf6;
  padding: 300px 0 0 30px;
}
.banner-description .description {
  max-width: 492px;
}
.banner-description .description .default-btn {
  margin-top: 5px;
}
.banner-description .boxes-list {
  padding: 20px;
  margin-left: -122px;
  border-radius: 20px 0 20px 0;
  background-color: var(--whiteColor);
}
.banner-description .boxes-list .box {
  padding: 30px;
  border-radius: 20px;
  background-color: #fff7ed;
}
.banner-description .boxes-list .box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.banner-description .boxes-list .col-lg-4:nth-child(2) .box {
  background-color: #eefaf6;
}

.shape7 {
  right: 0;
  top: 50px;
  z-index: -1;
  position: absolute;
}

.shape8 {
  left: 0;
  top: 115px;
  z-index: -1;
  position: absolute;
}

.shape9 {
  top: 5%;
  right: 2%;
  z-index: -1;
  position: absolute;
}

.shape10 {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}

.banner-wrapper-area {
  padding-top: 316px;
  padding-bottom: 90px;
  background-image: url(../images/banners/banner-bg-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-wrapper-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.banner-wrapper-area .banner-icon-shape {
  right: 168px;
  bottom: 197px;
  z-index: -1;
}
.banner-wrapper-area::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0.8;
  position: absolute;
  background-color: #111827;
}

.banner-wrapper-content {
  max-width: 500px;
  margin-left: 115px;
  margin-right: auto;
}
.banner-wrapper-content h1 {
  line-height: 80px;
  margin-bottom: 30px;
  color: var(--whiteColor);
  font-size: 75px;
  font-weight: 400;
}
.banner-wrapper-content h1 span {
  font-weight: 700;
  text-transform: uppercase;
}
.banner-wrapper-content .button {
  border-radius: 30px;
  color: var(--whiteColor);
  background-color: transparent;
  transition: var(--transition);
  display: inline-block;
  font-family: var(--headingFontFamily);
  padding: 15.5px 60.55px 15.5px 32.55px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-weight: 600;
}
.banner-wrapper-content .button i {
  top: 50%;
  right: 30px;
  font-size: 20px;
  position: absolute;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: transparent;
}
.banner-wrapper-content .button:hover {
  border-color: var(--whiteColor);
}

.banner-wrapper-video {
  right: 300px;
  bottom: 330px;
  position: absolute;
}
.banner-wrapper-video .icon h3 {
  font-size: 22px;
  margin-bottom: 0;
  margin-right: 7px;
  letter-spacing: 13.86px;
  color: var(--whiteColor);
  text-transform: uppercase;
}
.banner-wrapper-video .icon a {
  z-index: 1;
  width: 73px;
  height: 73px;
  line-height: 73px;
  border-radius: 100%;
  text-align: center;
  color: var(--mainColor);
  border: 2px solid var(--whiteColor);
}
.banner-wrapper-video .icon a::before {
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  z-index: -1;
  width: 42px;
  height: 42px;
  margin: auto;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
}
.banner-wrapper-video .icon a::after {
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  z-index: -1;
  width: 58px;
  height: 58px;
  margin: auto;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  transition: var(--transition);
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
}
.banner-wrapper-video .icon a:hover::after {
  width: 72px;
  height: 72px;
}

.banner-wrapper-awards {
  max-width: 733px;
  margin-top: 211px;
  margin-left: auto;
  margin-right: 0;
}
.banner-wrapper-awards h3 {
  font-size: 18px;
  padding-right: 93px;
  margin-right: 43px;
  color: var(--whiteColor);
  text-transform: uppercase;
}
.banner-wrapper-awards h3::before {
  top: 50%;
  right: 0;
  width: 49px;
  height: 2px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
}
.banner-wrapper-awards ul li {
  max-width: 54px;
  margin-right: 37px;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--headingFontFamily);
  font-size: 16px;
  font-weight: 600;
}
.banner-wrapper-awards ul li:last-child {
  margin-right: 0;
}

.banner-widget-area {
  padding-top: 90px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/banners/banner-bg-4.jpg);
}
.banner-widget-area::before {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: var(--blackColor);
}

.banner-widget-content .content {
  right: 0;
  left: 15px;
  margin: auto;
  bottom: 75px;
  position: absolute;
  text-align: center;
}
.banner-widget-content .content h1 {
  font-size: 100px;
  line-height: 1.3;
  color: var(--whiteColor);
}
.banner-widget-content .content h1 span {
  margin-right: 170px;
}
.banner-widget-content .content .background-text {
  z-index: -1;
  position: relative;
}
.banner-widget-content .content .show-text {
  margin-bottom: 50px;
}
.banner-widget-content .content .default-btn {
  background-color: var(--optionalColor);
}
.banner-widget-content .content .default-btn:hover {
  background-color: var(--mainColor);
}
.shape13 {
  left: 0;
  bottom: 0;
  position: absolute;
}

.shape15 {
  right: 500px;
  bottom: 140px;
  position: absolute;
}

/*================================================
About Area CSS
=================================================*/
.about-image .image {
  border-radius: 20px;
}
.about-image .image img {
  border-radius: 20px;
}
.about-image .image .experience {
  top: 50px;
  left: -16px;
  position: absolute;
}
.about-image .image .experience img {
  border-radius: 0;
}
.about-image .image .experience span {
  left: 0;
  right: 0;
  top: 18px;
  line-height: 1.3;
  padding-left: 25px;
  position: absolute;
  color: var(--whiteColor);
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.about-image .col-lg-6:nth-child(1) .image {
  margin-top: 50px;
}
.about-image.style-3 .image {
  border-radius: 0;
}
.about-image.style-3 .image img {
  border-radius: 0;
}
.about-image.style-3 .image .user-image {
  padding: 10px;
  max-width: 448px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.07);
}
.about-image.style-3 .image .user-image-2 {
  padding: 10px;
  max-width: 335px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.07);
  margin-left: auto;
  margin-top: -260px;
}
.about-image.style-3 .image .experience {
  top: 37px;
  right: 40px;
  left: auto;
}
.about-image.style-3 .image .experience span {
  top: 15px;
  padding-left: 30px;
  font-size: 16px;
  font-family: var(--fontFamily);
}
.about-image.style-3 .image .experience span strong {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}

.about-content {
  padding-left: 45px;
}
.about-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.about-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.about-content .features-list {
  margin-top: 20px;
  margin-bottom: 35px;
}
.about-content .features-list li {
  color: var(--blackColor);
  margin-bottom: 12px;
  padding-left: 32px;
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.about-content .features-list li i {
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  color: var(--optionalColor);
}
.about-content .features-list li:last-child {
  margin-bottom: 0;
}
.about-content .call-info {
  margin-left: 40px;
}
.about-content .call-info .icon {
  width: 60px;
  height: 60px;
  font-size: 25px;
  line-height: 62px;
  border-radius: 50%;
  margin-right: 15px;
  text-align: center;
  border: 1px solid #eeeeee;
  color: var(--optionalColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  filter: drop-shadow(0px 0px 30px rgba(17, 24, 39, 0.1));
}
.about-content .call-info .info span {
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--bodyColor);
}
.about-content .call-info .info a {
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.about-content .call-info:hover .icon {
  background-color: var(--optionalColor);
  border-color: var(--optionalColor);
  color: var(--whiteColor);
}
.about-content.style-2 {
  width: 100%;
  padding-left: 0;
  margin-right: 0;
  margin-left: auto;
}
.about-content.style-2 .sub-title {
  text-transform: uppercase;
}

.shape1 {
  left: 0;
  top: 50%;
  z-index: -1;
  position: absolute;
  transform: translateY(-50%);
}

.shape11 {
  left: 0;
  top: -793px;
  z-index: -1;
}

/*================================================
Request Quote Area CSS
=================================================*/
.request-quote-area.bg-image {
  background-color: var(--blackColor);
  background-image: url(../images/request-quote-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.request-quote-content {
  max-width: 925px;
}
.request-quote-content h2 {
  font-size: 48px;
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--whiteColor);
}
.request-quote-content p {
  color: rgba(255, 255, 255, 0.6);
}
.request-quote-content .default-btn {
  margin-top: 15px;
}

/*================================================
Performance Specifications Area CSS
=================================================*/
.performance-specifications-area .section-title {
  margin-bottom: 133px;
}
.performance-specifications-area::before {
  left: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 72.7%;
  height: 74.9%;
  position: absolute;
  background: #fff7ed;
}
.performance-specifications-area.style-2 {
  background-color: #fff7ed;
}
.performance-specifications-area.style-2 .section-title {
  margin-bottom: 45px;
}
.performance-specifications-area.style-2::before {
  display: none;
}
.performance-specifications-area.style-3 {
  background-color: var(--whiteColor);
}
.performance-specifications-area.style-3::before {
  display: none;
}

.performance-specifications-content {
  margin-right: -25px;
}
.performance-specifications-content .btn-box {
  margin-top: 25px;
}

.performance-specifications-box {
  padding: 40px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 20px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  margin-top: 40px;
  margin-bottom: 25px;
}
.performance-specifications-box .icon {
  top: -40px;
  right: 40px;
  width: 80px;
  height: 80px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  background-color: var(--whiteColor);
}
.performance-specifications-box .icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  margin: 10px;
  border-radius: 50%;
  position: absolute;
  border: 2px solid var(--mainColor);
}
.performance-specifications-box .icon img {
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
  margin-top: -2px;
  position: absolute;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.performance-specifications-box .icon::after {
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 40px;
  position: absolute;
  background-color: var(--whiteColor);
}
.performance-specifications-box h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 15px;
}
.performance-specifications-box:hover {
  transform: translateY(-10px);
}

.performance-specifications-image {
  padding-left: 50px;
}
.performance-specifications-image .performance-specifications-image-slides .item img {
  border-radius: 20px;
}
.performance-specifications-image .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}
.performance-specifications-image .owl-theme .owl-dots {
  left: 0;
  right: 0;
  bottom: 40px;
  position: absolute;
}
.performance-specifications-image .owl-theme .owl-dots .owl-dot span {
  margin: 0 5px;
  border-radius: 50%;
  background: var(--whiteColor);
  transition: var(--transition);
}
.performance-specifications-image .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--mainColor);
}
.performance-specifications-image .owl-theme .owl-dots .owl-dot.active span {
  transform: scale(1.5);
  background: var(--mainColor);
}

.single-performance-specifications-info {
  padding: 40px;
  border-radius: 5px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-performance-specifications-info .icon {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  text-align: center;
  margin-right: 20px;
  line-height: 100px;
  border-radius: 100%;
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.1);
}
.single-performance-specifications-info .content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.single-performance-specifications-info .content .link-btn {
  color: var(--mainColor);
  padding-right: 22px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-performance-specifications-info .content .link-btn i {
  top: 50%;
  right: -3px;
  line-height: 1;
  margin-top: 1px;
  position: absolute;
  transform: translateY(-50%);
}
.single-performance-specifications-info .content .link-btn:hover {
  color: var(--optionalColor);
}
.single-performance-specifications-info .image {
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -2;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-performance-specifications-info::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  border-radius: 5px;
  transition: var(--transition);
  border: 1px solid var(--mainColor);
}
.single-performance-specifications-info:hover .image {
  opacity: 1;
  visibility: visible;
}
.single-performance-specifications-info:hover::before {
  opacity: 1;
  visibility: visible;
}
.single-performance-specifications-info.style-3 {
  padding: 40px 55px;
  border: 2px dashed rgba(17, 24, 39, 0.06);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.06);
}
.single-performance-specifications-info.style-3 .icon {
  width: 75px;
  height: 75px;
  margin-right: 30px;
  line-height: 75px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-performance-specifications-info.style-3 .icon span {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.single-performance-specifications-info.style-3 .image {
  opacity: 1;
  visibility: visible;
}
.single-performance-specifications-info.style-3::before {
  display: none;
}
.single-performance-specifications-info.style-3:hover {
  border-color: var(--mainColor);
}

.shape2 {
  top: -10px;
  z-index: -1;
  right: -45px;
  position: absolute;
}

.shape14 {
  right: 0;
  top: 125px;
  z-index: -1;
  position: absolute;
}

/*================================================
Destinations Area CSS
=================================================*/
.destinations-content {
  padding-right: 121px;
  margin-bottom: 25px;
}
.destinations-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.destinations-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.destinations-content .default-btn {
  margin-top: 12px;
}

.destinations-items {
  margin-left: -78px;
}

.destinations-item {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 20px;
}
.destinations-item .image {
  border-radius: 20px;
}
.destinations-item .image img {
  border-radius: 20px;
  transition: var(--transition);
}
.destinations-item .content {
  left: 0;
  right: 0;
  bottom: 30px;
  padding: 30px;
  position: absolute;
  border-radius: 20px;
  background-color: var(--whiteColor);
  margin-left: 30px;
  margin-right: 30px;
}
.destinations-item .content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.destinations-item:hover .image img {
  transform: scale(1.08);
}
.destinations-item.style-2 {
  border-radius: 5px;
}
.destinations-item.style-2 .image {
  border-radius: 5px;
}
.destinations-item.style-2 .image img {
  border-radius: 5px;
}
.destinations-item.style-2 .content {
  z-index: 1;
  border-radius: 5px;
}
.destinations-item.style-2 .content .shape-image {
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  position: absolute;
  visibility: hidden;
  transition: var(--transition);
}
.destinations-item.style-2:hover .content .shape-image {
  opacity: 1;
  visibility: visible;
}

.shape3 {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}
.shape3.style-2 {
  top: -215px;
}

/*================================================
Flight Booking Area CSS
=================================================*/
.flight-booking-area::before {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  height: 70px;
  width: 56.7%;
  position: absolute;
  background: var(--whiteColor);
}
.flight-booking-area.style-2::before {
  display: none;
}

.flight-booking-form {
  padding: 50px;
  border-radius: 20px;
  margin-right: -43px;
  background-color: var(--blackColor);
  background-image: url(../images/flight-booking/flight-booking-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.flight-booking-form .step {
  top: 50px;
  right: 50px;
  position: absolute;
  color: var(--whiteColor);
  font-family: var(--headingFontFamily);
}
.flight-booking-form .step span {
  font-weight: 700;
}
.flight-booking-form .nav-tabs {
  margin-bottom: 27px;
  display: block;
  border: 0;
}
.flight-booking-form .nav-tabs .nav-item {
  display: inline-block;
  margin-right: 25px;
}
.flight-booking-form .nav-tabs .nav-item .nav-link {
  border: 0;
  line-height: 1;
  position: relative;
  padding: 0 0 0 25px;
  color: var(--whiteColor);
  background-color: transparent;
  transition: var(--transition);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.flight-booking-form .nav-tabs .nav-item .nav-link::before {
  top: 50%;
  left: 4px;
  width: 8px;
  content: "";
  height: 8px;
  position: absolute;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--mainColor);
  transition: var(--transition);
}
.flight-booking-form .nav-tabs .nav-item .nav-link::after {
  left: 0;
  top: 50%;
  opacity: 0;
  content: "";
  width: 16px;
  height: 16px;
  visibility: hidden;
  position: absolute;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  border: 1px solid var(--mainColor);
}
.flight-booking-form .nav-tabs .nav-item .nav-link:hover::after {
  opacity: 1;
  visibility: visible;
}
.flight-booking-form .nav-tabs .nav-item .nav-link.active::before {
  background: var(--optionalColor);
}
.flight-booking-form .nav-tabs .nav-item .nav-link.active::after {
  opacity: 1;
  visibility: visible;
  border-color: var(--optionalColor);
}
.flight-booking-form .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.flight-booking-form .tab-content {
  margin-bottom: 30px;
}
.flight-booking-form .tab-content .tab-pane form .form-group {
  margin-bottom: 25px;
}
.flight-booking-form .tab-content .tab-pane form .form-group label {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--whiteColor);
}
.flight-booking-form .tab-content .tab-pane form .form-group .form-control {
  border: 0;
  height: 60px;
  font-size: 14px;
  box-shadow: unset;
  border-radius: 10px;
  color: var(--blackColor);
  padding-left: 20px;
  padding-right: 20px;
}
.flight-booking-form .tab-content .tab-pane form .form-group .form-control::-moz-placeholder {
  color: var(--bodyColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.flight-booking-form .tab-content .tab-pane form .form-group .form-control::placeholder {
  color: var(--bodyColor);
  transition: var(--transition);
}
.flight-booking-form .tab-content .tab-pane form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.flight-booking-form .tab-content .tab-pane form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.flight-booking-form .tab-content .tab-pane form .form-group .form-select {
  border: 0;
  height: 60px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: unset;
  border-radius: 10px;
  background-color: var(--whiteColor);
  padding-left: 20px;
  padding-right: 20px;
}
.flight-booking-form p {
  font-size: 14px;
  color: var(--whiteColor);
}
.flight-booking-form.style-2 {
  padding: 0;
  background-image: unset;
  background-color: transparent;
}
.flight-booking-form.style-2 .step {
  top: auto;
  color: var(--bodyColor);
}
.flight-booking-form.style-2 .step span {
  color: var(--blackColor);
}
.flight-booking-form.style-2 .nav-tabs {
  border-radius: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.flight-booking-form.style-2 .nav-tabs .nav-item {
  margin-right: 10px;
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link {
  padding: 22px 22px;
  border-radius: 0;
  color: #1C1F35;
  background-color: #F4F4F4;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--bodyColor);
  margin-bottom: 20px;
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link::before {
  display: none;
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link::after {
  display: none;
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link:hover {
  color: #FFF;
  background-color: #FFB82B;
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link.active {
  color: #FFF;
  background-color: #FFB82B;
}
.flight-booking-form.style-2 .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.flight-booking-form.style-2 .tab-content .tab-pane form .form-group label {
  color: var(--bodyColor);
}
.flight-booking-form.style-2 .tab-content .tab-pane form .form-group .form-control {
  color: var(--bodyColor);
  background-color: transparent;
  border: 1px solid rgba(17, 24, 39, 0.1);
}
.flight-booking-form.style-2 .tab-content .tab-pane form .form-group .form-select {
  background-color: transparent;
  border: 1px solid rgba(17, 24, 39, 0.1);
}
.flight-booking-form.style-2 p {
  color: var(--bodyColor);
      overflow-wrap: anywhere;
      font-size: 16px;
}

.flight-booking-content {
  padding-left: 85px;
  margin-top: 100px;
}
.flight-booking-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.flight-booking-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.flight-booking-content .features-list {
  margin-top: 45px;
}
.flight-booking-content .features-list li {
  margin-bottom: 35px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 35px;
  padding-left: 80px;
}
.flight-booking-content .features-list li i {
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  font-size: 30px;
  line-height: 58px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--optionalColor);
}
.flight-booking-content .features-list li h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.flight-booking-content .features-list li:hover i {
  background-color: var(--mainColor);
}
.flight-booking-content .features-list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.flight-booking-image {
  margin-left: -100px;
  margin-right: -30px;
}

/*================================================
CTA Area CSS
=================================================*/
.cta-area::after {
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 50%;
  content: "";
  position: absolute;
  background: #f3f4f6;
}
.cta-area.style-2::after {
  top: auto;
  bottom: 0;
}
.cta-area.style-3::after {
  top: 0;
  background-color: var(--blackColor);
}

.cta-inner-area {
  padding: 60px 85px;
  border-radius: 20px;
  background-color: var(--whiteColor);
  box-shadow: 0px 35px 50px 0px rgba(17, 24, 39, 0.05);
}
.cta-inner-area .icon {
  z-index: 1;
  width: 80px;
  height: 80px;
  font-size: 25px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  margin-right: -25px;
  color: var(--whiteColor);
  background: rgba(16, 185, 129, 0.2);
}
.cta-inner-area .icon i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.cta-inner-area .icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  margin: 10px;
  border-radius: 50%;
  position: absolute;
  background: var(--mainColor);
}
.cta-inner-area .user {
  z-index: 1;
  position: relative;
}
.cta-inner-area .user img {
  width: 60px;
  border-radius: 50%;
}
.cta-inner-area .number {
  line-height: 1;
  font-family: var(--headingFontFamily);
  font-weight: 600;
  font-size: 48px;
}
.cta-inner-area p {
  max-width: 240px;
  margin-left: 115px;
  margin-bottom: 0;
}
.cta-inner-area.style-2 {
  padding: 65px 85px;
  border-radius: 5px;
  box-shadow: 0px -10px 50px 0px rgba(17, 24, 39, 0.05);
}
.cta-inner-area.style-2 .background-color-shape {
  top: 0;
  right: 0;
  z-index: -1;
  position: absolute;
}

.cta-content h1 {
  font-size: 48px;
  margin-bottom: 12px;
}
.cta-content p {
  max-width: 100%;
}

.cta-contact-info {
  margin-left: 185px;
}
.cta-contact-info .icon {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  display: block;
  font-size: 35px;
  margin-right: 20px;
  line-height: 100px;
  text-align: center;
  color: var(--mainColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.cta-contact-info .icon::before {
  display: none;
}
.cta-contact-info .icon:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.cta-contact-info .content span {
  color: #eeeeee;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.cta-contact-info .content a {
  line-height: 1;
  color: var(--whiteColor);
  font-size: 35px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.cta-contact-info .content a:hover {
  color: var(--mainColor);
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-area.style-3 {
  background-color: rgb(255, 247, 237);
}

.faq-accordion.accordion .accordion-item {
  border: 0;
  border-radius: 15px;
  margin-bottom: 25px;
  color: var(--blackColor);
  background-color: #FFB629;
}
.faq-accordion.accordion .accordion-item .accordion-button {
  border: 0;
  display: block;
  border-radius: 0;
  box-shadow: unset;
  color: var(--blackColor);
  background-color: transparent;
  padding: 23.5px 60px 23.5px 30px;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.faq-accordion.accordion .accordion-item .accordion-button::before {
  top: 50%;
  right: 30px;
  content: "\ebf8";
  position: absolute;
  color: var(--mainColor);
  transform: translateY(-50%);
  font-family: "Phosphor";
  font-size: 20px;
}
.faq-accordion.accordion .accordion-item .accordion-button::after {
  display: none;
}
.faq-accordion.accordion .accordion-item .accordion-button.collapsed::before {
  content: "\ec86";
}
.faq-accordion.accordion .accordion-item .accordion-body {
  padding: 0 30px 30px;
}
.faq-accordion.style-3 .accordion-item {
  border-radius: 0;
  border: 2px dashed #eeeeee;
  background-color: var(--whiteColor);
}

.faq-user-item {
  margin-bottom: 40px;
}
.faq-user-item span {
  margin-bottom: 14px;
}
.faq-user-item .user li {
  margin-right: -20px;
}
.faq-user-item .user li img {
  z-index: 1;
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 100%;
  border: 5px solid var(--whiteColor);
}
.faq-user-item .user li i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--mainColor);
  background-color: var(--whiteColor);
}

/*================================================
Funfacts Area CSS
=================================================*/
.funfacts-inner-area {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.funfacts-inner-area.style-3 {
  border-top: 2px dashed #eeeeee;
  border-bottom: 2px dashed #eeeeee;
}

.funfact-item {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}
.funfact-item h2 {
  font-size: 64px;
  color: var(--mainColor);
  margin-bottom: 9px;
  margin-top: -11px;
}
.funfact-item span {
  color: var(--blackColor);
  margin-bottom: -5px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.funfact-item::before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  content: "";
  position: absolute;
  background: #eeeeee;
  margin-top: 55px;
  margin-bottom: 55px;
}
.funfact-item::after {
  left: 0;
  right: 0;
  opacity: 0;
  height: 1px;
  content: "";
  bottom: -1px;
  visibility: hidden;
  position: absolute;
  background: var(--mainColor);
  transition: var(--transition);
  margin-left: 55px;
  margin-right: 55px;
}
.funfact-item:hover::after {
  opacity: 1;
  visibility: visible;
}
.funfact-item.style-3 h2 {
  color: var(--optionalColor);
}
.funfact-item.style-3:before {
  height: 100%;
  width: 0;
  background: transparent;
  border-right: 2px dashed #eeeeee;
  margin-top: 0;
  margin-bottom: 0;
}
.funfact-item.style-3::after {
  width: 100%;
  height: 2px;
  background-color: var(--optionalColor);
  margin-left: 0;
  margin-right: 0;
}

.col-lg-3:nth-child(1) .funfact-item.style-3 {
  border-left: 2px dashed #eeeeee;
}

/*================================================
Private Flight Area CSS
=================================================*/
.private-flight-area::before {
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
  height: 340px;
  position: absolute;
  background-color: var(--blackColor);
}
.private-flight-area.style-3::before {
  display: none;
}

.private-flight-content {
  height: 100%;
  display: flex;
  margin-bottom: 25px;
  flex-direction: column;
  justify-content: space-between;
}
.private-flight-content .content {
  padding-top: 35px;
}
.private-flight-content .content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.private-flight-content .content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.private-flight-content .content .default-btn {
  margin-top: 12px;
}
.private-flight-content .partners {
  margin-right: -65px;
  padding-bottom: 35px;
}
.private-flight-content .partners span {
  margin-bottom: 30px;
}
.private-flight-content .partners img {
  opacity: 0.5;
  cursor: pointer;
  transition: var(--transition);
}
.private-flight-content .partners img:hover {
  opacity: 1;
}

.private-flight-list {
  padding-left: 48px;
}

.single-flight-box {
  z-index: 1;
  padding: 45px 30px;
  position: relative;
  border-radius: 20px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.1);
}
.single-flight-box img {
  width: 250px;
}
.single-flight-box .from-to {
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.single-flight-box .from-to h3 {
  line-height: 1;
  font-size: 40px;
  margin-bottom: 5px;
}
.single-flight-box .from-to span {
  line-height: 1;
  color: var(--mainColor);
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.single-flight-box .from-to i {
  top: 5px;
  line-height: 1;
  font-size: 35px;
  position: relative;
  color: var(--mainColor);
}
.single-flight-box ul {
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.single-flight-box ul li {
  border-bottom: 1px solid #eeeeee;
  padding-top: 14px;
  padding-bottom: 14px;
}
.single-flight-box .default-btn {
  margin-top: 25px;
}
.single-flight-box::before {
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  content: "";
  height: 770px;
  position: absolute;
  border-radius: 20px 20px 0 0;
  background-image: url(../images/private-flight/bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*================================================
Feedback Area CSS
=================================================*/
.feedback-area {
  background-color: #f3f4f6;
}
.feedback-area.style-2 {
  background-color: var(--whiteColor);
}
.feedback-area.style-2::before {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  content: "";
  position: absolute;
  background-color: #f3f4f6;
}
.feedback-area .line-shape {
  left: 0;
  right: 0;
  bottom: 118px;
  margin: auto;
  z-index: -1;
  text-align: center;
  position: absolute;
}

.feedback-content {
  margin-bottom: 60px;
}
.feedback-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.feedback-content h2 {
  font-size: 48px;
  line-height: 1.3;
  max-width: 947px;
  margin-bottom: 15px;
}
.feedback-content .number {
  letter-spacing: 25px;
  color: var(--mainColor);
  font-size: 150px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
  margin-top: -30px;
  margin-bottom: 20px;
}

.single-feedback-box {
  padding: 78px;
  margin-top: 30px;
  border-radius: 20px;
  background-color: var(--whiteColor);
}
.single-feedback-box .image {
  margin-left: 3px;
  margin-top: -108px;
  margin-bottom: 44px;
}
.single-feedback-box .image img {
  width: 110.5px !important;
  display: inline-block !important;
}
.single-feedback-box h3 {
  font-size: 24px;
  margin-bottom: 7px;
}
.single-feedback-box p {
  margin-top: 25px;
}
.single-feedback-box .info {
  margin-top: 35px;
}
.single-feedback-box .info h6 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
.single-feedback-box .info .ratings i {
  line-height: 1;
  font-size: 20px;
  color: #fdd836;
  margin-right: 5px;
}
.single-feedback-box .info .ratings i:last-child {
  margin-right: 0;
}
.single-feedback-box .info span {
  font-size: 14px;
}
.single-feedback-box .quote {
  top: -20px;
  left: 75px;
  width: 38px;
  height: 38px;
  font-size: 18px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
  background-color: var(--optionalColor);
}
.single-feedback-box::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  margin: 28px;
  position: absolute;
  border: 1px solid #eeeeee;
}
.single-feedback-box.style-2 {
  border-radius: 5px;
  box-shadow: 0px 10px 50px 0px rgba(17, 24, 39, 0.05);
}

.feedback-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 45px;
}
.feedback-slides.owl-theme .owl-dots .owl-dot span {
  margin: 0 5px;
  border-radius: 50%;
  transition: var(--transition);
  background: rgba(17, 24, 39, 0.2);
}
.feedback-slides.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--blackColor);
}
.feedback-slides.owl-theme .owl-dots .owl-dot.active span {
  transform: scale(1.5);
  background: var(--blackColor);
}
.feedback-slides.owl-theme .owl-nav {
  margin-top: 50px;
}
.feedback-slides.owl-theme .owl-nav .owl-prev, .feedback-slides.owl-theme .owl-nav .owl-next {
  margin: 0;
  width: 60px;
  height: 60px;
  font-size: 20px;
  line-height: 65px;
  margin-right: 20px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  border: 1px solid #eee;
  color: var(--mainColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px 3px rgba(17, 24, 39, 0.1);
}
.feedback-slides.owl-theme .owl-nav .owl-prev:hover, .feedback-slides.owl-theme .owl-nav .owl-next:hover {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}
.feedback-slides.owl-theme .owl-nav .owl-next {
  margin-right: 0;
}

.shape4 {
  top: 6%;
  right: 12%;
  z-index: -1;
  position: absolute;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area.style-2 {
  background-color: #fff7ed;
}

.single-blog-post {
  margin-bottom: 25px;
  border-radius: 20px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 30px 0px rgba(17, 24, 39, 0.08);
}
.single-blog-post .image {
  border-radius: 20px 20px 0 0;
}
.single-blog-post .image a {
  border-radius: 20px 20px 0 0;
}
.single-blog-post .image a img {
  border-radius: 20px 20px 0 0;
  transition: var(--transition);
}
.single-blog-post .image .date {
  bottom: 0;
  left: 40px;
  width: 78px;
  height: 78px;
  padding-top: 3px;
  position: absolute;
  text-align: center;
  color: var(--whiteColor);
  background-color: var(--optionalColor);
  border-top: 8px solid var(--whiteColor);
  border-left: 8px solid var(--whiteColor);
  border-right: 8px solid var(--whiteColor);
}
.single-blog-post .image .date span strong {
  display: block;
  font-size: 24px;
}
.single-blog-post .content {
  padding: 30px 40px;
}
.single-blog-post .content .meta {
  margin-bottom: 20px;
}
.single-blog-post .content .meta li {
  margin-right: 20px;
  padding-left: 25px;
}
.single-blog-post .content .meta li a {
  color: var(--bodyColor);
}
.single-blog-post .content .meta li a:hover {
  color: var(--mainColor);
}
.single-blog-post .content .meta li i {
  left: 0;
  top: 50%;
  font-size: 18px;
  position: absolute;
  color: var(--mainColor);
  transform: translateY(-50%);
}
.single-blog-post .content .meta li:last-child {
  margin-right: 0;
}
.single-blog-post .content h3 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
}
.single-blog-post .content .link-btn {
  color: var(--mainColor);
  padding-right: 22px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-blog-post .content .link-btn i {
  top: 50%;
  right: -3px;
  line-height: 1;
  margin-top: 1px;
  position: absolute;
  transform: translateY(-50%);
}
.single-blog-post .content .link-btn:hover {
  color: var(--optionalColor);
}
.single-blog-post:hover .image a img {
  transform: scale(1.08);
}
.single-blog-post.style-2 {
  border-radius: 5px;
}
.single-blog-post.style-2 .image {
  border-radius: 5px 5px 0 0;
}
.single-blog-post.style-2 .image a {
  border-radius: 5px 5px 0 0;
}
.single-blog-post.style-2 .image a img {
  border-radius: 5px 5px 0 0;
}
.single-blog-post.style-2 .content .meta li {
  padding-left: 20px;
  margin-right: 25px;
  text-transform: uppercase;
}
.single-blog-post.style-2 .content .meta li::before {
  left: 0;
  top: 50%;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--mainColor);
}
.single-blog-post.style-2 .content .meta li:first-child {
  padding-left: 0;
}
.single-blog-post.style-2 .content .meta li:first-child::before {
  display: none;
}
.single-blog-post.style-2 .content .meta li:last-child {
  margin-right: 0;
}
.single-blog-post.style-2 .content h3 {
  border: unset;
  padding-bottom: 0;
}
.single-blog-post.style-2 .content .link-btn {
  padding: 16px 34px;
  border-radius: 60px;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.single-blog-post.style-2 .content .link-btn i {
  top: 2px;
  right: 0;
  margin-top: 0;
  margin-left: 5px;
  position: relative;
  transform: unset;
}
.single-blog-post.style-2 .content .link-btn:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-blog-post.style-2 .shape-image {
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-blog-post.style-2:hover .content .link-btn {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-blog-post.style-2:hover .shape-image {
  opacity: 1;
  visibility: visible;
}
.single-blog-post.blog-style {
  box-shadow: unset;
  margin-bottom: 40px;
}
.single-blog-post.blog-style .image {
  margin-bottom: 25px;
  border-radius: 20px;
}
.single-blog-post.blog-style .image a {
  border-radius: 20px;
}
.single-blog-post.blog-style .image a img {
  border-radius: 20px;
}
.single-blog-post.blog-style .content {
  padding: 0;
}
.single-blog-post.blog-style .content h3 {
  padding-bottom: 0;
  margin-bottom: 10px;
  border-bottom: unset;
}
.single-blog-post.blog-style .content p {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
}
.single-blog-post.details-style {
  margin-bottom: 25px;
}
.single-blog-post.details-style .content p {
  padding-bottom: 0;
  margin-bottom: 12px;
  border-bottom: unset;
}

.single-blog-image {
  margin-bottom: 25px;
}
.single-blog-image .image {
  margin-bottom: 25px;
}
.single-blog-image ul {
  margin-bottom: 15px;
}
.single-blog-image ul li {
  font-size: 14px;
  padding-left: 20px;
  margin-right: 20px;
}
.single-blog-image ul li i {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-blog-image ul li:last-child {
  margin-right: 0;
}
.single-blog-image ul li:nth-child(1) i {
  color: var(--optionalColor);
}
.single-blog-image ul li:nth-child(2) {
  padding-left: 25px;
}
.single-blog-image ul li:nth-child(2) i {
  color: var(--mainColor);
}
.single-blog-image h1 {
  font-size: 48px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.single-blog-image h1 a {
  text-decoration-line: underline;
}

.single-blog-content {
  padding-left: 70px;
  border-left: 2px dashed #eeeeee;
  margin-left: 50px;
  margin-bottom: 25px;
}
.single-blog-content .item {
  margin-bottom: 73px;
}
.single-blog-content .item ul {
  margin-bottom: 15px;
}
.single-blog-content .item ul li {
  font-size: 14px;
  padding-left: 20px;
  margin-right: 20px;
}
.single-blog-content .item ul li i {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-blog-content .item ul li:last-child {
  margin-right: 0;
}
.single-blog-content .item ul li:nth-child(1) i {
  color: var(--optionalColor);
}
.single-blog-content .item ul li:nth-child(2) {
  padding-left: 25px;
}
.single-blog-content .item ul li:nth-child(2) i {
  color: var(--mainColor);
}
.single-blog-content .item h3 {
  font-size: 24px;
  max-width: 320px;
  margin-bottom: 15px;
}
.single-blog-content .item:last-child {
  margin-bottom: 0;
}

/*================================================
Special Offer Area CSS
=================================================*/
.special-offer-area {
  background-color: #fff7ed;
}

.special-offer-content {
  margin-left: auto;
  max-width: 806px;
}
.special-offer-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.special-offer-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.special-offer-content .default-btn {
  margin-top: 12px;
}

.special-offer-image {
  margin-left: 60px;
}

.shape5 {
  left: 40%;
  z-index: -1;
  bottom: 80px;
  position: absolute;
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  background-color: var(--blackColor);
}
.subscribe-area .border-bottom {
  padding-top: 100px;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.subscribe-content h2 {
  font-size: 30px;
  max-width: 384px;
  line-height: 1.5;
}

.subscribe-form .form-control {
  border: 0;
  height: 60px;
  box-shadow: unset;
  border-radius: 60px;
  color: var(--whiteColor);
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 28px;
  padding-right: 28px;
}
.subscribe-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.subscribe-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-form .form-control:focus::placeholder {
  color: transparent;
}
.subscribe-form .default-btn {
  top: 0;
  right: 0;
  position: absolute;
}
.subscribe-form .form-check {
  padding-left: 30px;
  position: relative;
  min-height: auto;
  margin-bottom: 0;
  margin-top: 20px;
}
.subscribe-form .form-check .form-check-input {
  left: 0;
  top: 50%;
  float: unset;
  width: 20px;
  height: 20px;
  cursor: pointer;
  box-shadow: unset;
  border-radius: 5px;
  position: absolute;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  margin-top: -1px;
  margin-left: 0;
}
.subscribe-form .form-check .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.subscribe-form .form-check .form-check-label {
  cursor: pointer;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.4);
}

.shape12 {
  left: 0;
  top: 0;
  z-index: -1;
  position: absolute;
}

/*================================================
Features Area CSS
=================================================*/
.features-area.style-3 {
  background-color: rgb(255, 247, 237);
}

.single-features-card {
  padding: 80px;
  border-radius: 5px;
  margin-bottom: 25px;
  border: 1px solid #e7e8e9;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-features-card .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 100%;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 1px solid rgb(238, 238, 238);
}
.single-features-card span {
  font-size: 12px;
  margin-bottom: 10px;
}
.single-features-card h3 {
  font-size: 24px;
}
.single-features-card h3 a {
  color: var(--blackColor);
}
.single-features-card h3 a:hover {
  color: var(--optionalColor);
}
.single-features-card .link-btn {
  color: var(--mainColor);
  padding-right: 22px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-features-card .link-btn i {
  top: 50%;
  right: -3px;
  line-height: 1;
  margin-top: 1px;
  position: absolute;
  transform: translateY(-50%);
}
.single-features-card .link-btn:hover {
  color: var(--optionalColor);
}
.single-features-card .number {
  left: 40px;
  bottom: 30px;
  color: #eee;
  margin-bottom: 0;
  position: absolute;
  transition: var(--transition);
  font-size: 35px;
  font-weight: 600;
}
.single-features-card .hover-image {
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.single-features-card:hover .hover-image {
  opacity: 1;
  visibility: visible;
}
.single-features-card:hover .number {
  color: var(--mainColor);
}
.single-features-card.style-3 {
  border: 2px dashed #e7e8e9;
}
.single-features-card.style-3:hover .icon {
  background-color: var(--mainColor);
}
.single-features-card.style-3:hover .icon img {
  filter: brightness(11111);
}

.col-lg-4:nth-child(1) .single-features-card.style-3 {
  border-right: unset;
}
.col-lg-4:nth-child(2) .single-features-card.style-3 {
  border-right: unset;
}

/*================================================
Active Airplanes Area CSS
=================================================*/
.single-airplanes-card {
  padding: 40px;
  border-radius: 5px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.06);
}
.single-airplanes-card .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 15px;
  border-radius: 100%;
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.1);
}
.single-airplanes-card h1 {
  line-height: 1;
  font-size: 64px;
  margin-bottom: 12px;
  color: var(--mainColor);
}
.single-airplanes-card h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.single-airplanes-card .shape-image {
  top: 0;
  right: 0;
  z-index: -1;
}

.single-airplanes-video {
  padding-top: 110px;
  padding-bottom: 110px;
  background-image: url(../images/airplanes/airplanes-card-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.single-airplanes-video a {
  border: 0;
  position: relative;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--mainColor);
  padding: 16.5px 30.55px 16.5px 60.55px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.single-airplanes-video a i {
  top: 50%;
  left: 30px;
  font-size: 20px;
  position: absolute;
  transform: translateY(-50%);
}
.single-airplanes-video a:hover {
  color: var(--whiteColor);
  background-color: var(--optionalColor);
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area .section-title h2 {
  color: var(--whiteColor);
}
.pricing-area .background-color {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}
.pricing-area::before {
  top: 0;
  right: 0;
  content: "";
  z-index: -1;
  width: 170px;
  height: 285px;
  position: absolute;
  background-color: #f3f4f6;
}
.pricing-area.style-3 .section-title h2 {
  color: var(--blackColor);
}
.pricing-area.style-3::before {
  display: none;
}

.single-pricing-card {
  border-radius: 5px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.1);
}
.single-pricing-card .content {
  padding: 30px 40px;
  padding-top: 80px;
  border-radius: 5px 5px 0 0;
  background-color: rgba(16, 185, 129, 0.15);
}
.single-pricing-card .content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.single-pricing-card .content p {
  margin-bottom: 0;
}
.single-pricing-card .content .icon {
  top: 0;
  right: 0;
  width: 85px;
  height: 85px;
  font-size: 30px;
  line-height: 85px;
  text-align: center;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
  border-radius: 0px 5px 60px 60px;
  background-color: var(--optionalColor);
  border-left: 2px solid var(--whiteColor);
  border-bottom: 2px solid var(--whiteColor);
}
.single-pricing-card .list {
  padding: 30px 40px;
  border-radius: 0 0 5px 5px;
  background-color: var(--whiteColor);
}
.single-pricing-card .list ul li {
  position: relative;
  margin-bottom: 15px;
  color: var(--bodyColor);
  padding-left: 35px;
  padding-bottom: 15px;
}
.single-pricing-card .list ul li strong {
  font-weight: 700;
}
.single-pricing-card .list ul li i {
  top: 0;
  left: 0;
  font-size: 20px;
  position: absolute;
  color: var(--optionalColor);
}
.single-pricing-card .list ul li::before {
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(238, 238, 238);
}
.single-pricing-card .list ul li:last-child {
  padding-bottom: 0;
}
.single-pricing-card .list ul li:last-child::before {
  display: none;
}
.single-pricing-card .list a {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  border-radius: 60px;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-pricing-card .list a i {
  top: 2px;
  right: -5px;
  position: relative;
}
.single-pricing-card .list a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-pricing-card:hover .content .icon {
  background-color: var(--mainColor);
}
.single-pricing-card:hover .list a {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-pricing-card.style-3 {
  border-radius: 0;
  box-shadow: unset;
  border: 2px dashed #eeeeee;
}
.single-pricing-card.style-3 .content {
  padding: 30px 40px;
}

.col-lg-4:nth-child(1) .single-pricing-card {
  border-right: unset;
}
.col-lg-4:nth-child(2) .single-pricing-card {
  border-right: unset;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-section-title p {
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--blackColor);
}

.single-partner-info {
  padding: 35px 60px;
  border-radius: 5px;
  position: relative;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid #eee;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.05);
}
.single-partner-info .image {
  transition: var(--transition);
}
.single-partner-info .image img {
  width: 69.53px;
  height: 79.93px;
}
.single-partner-info .image .image-one {
  transition: var(--transition);
}
.single-partner-info .image .image-two {
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  margin: auto;
  text-align: center;
  display: inline-block;
  position: absolute;
  transition: var(--transition);
}
.single-partner-info .shape-image {
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-partner-info:hover .image .image-one {
  opacity: 0;
  visibility: hidden;
}
.single-partner-info:hover .image .image-two {
  opacity: 1;
  visibility: visible;
}
.single-partner-info:hover .shape-image {
  opacity: 1;
  visibility: visible;
}
.single-partner-info.style-3 {
  border: 2px dashed #eee;
}

/*================================================
Newsletter Area CSS
=================================================*/
.newsletter-area::before {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: var(--blackColor);
}

.newsletter-info {
  padding: 55px 70px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.06);
}
.newsletter-info .newsletter-bg-shape {
  top: 0;
  right: 0;
  z-index: -1;
  position: absolute;
}

.newsletter-content .section-title {
  margin-bottom: 30px;
}
.newsletter-content form .form-group {
  position: relative;
  max-width: 589px;
}
.newsletter-content form .form-group .form-control {
  height: 60px;
  border: unset;
  border-radius: 0;
  max-width: 480px;
  box-shadow: unset;
  padding-left: 25px;
  background-color: rgb(243, 244, 246);
}
.newsletter-content form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.newsletter-content form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.newsletter-content form .form-group button {
  top: 0;
  right: 0;
  position: absolute;
}

/*================================================
Checkout Area CSS
=================================================*/
.checkout-area {
  background-color: rgb(243, 244, 246);
}

.single-checkout-info {
  margin-bottom: 25px;
}
.single-checkout-info .image img {
  border: 7px solid var(--whiteColor);
}
.single-checkout-info .content {
  z-index: 1;
  left: 40px;
  bottom: 30px;
  position: absolute;
}
.single-checkout-info .content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.single-checkout-info .content h3 a {
  color: var(--whiteColor);
}
.single-checkout-info .content h3 a:hover {
  color: var(--mainColor);
}
.single-checkout-info .content p {
  color: var(--whiteColor);
}
.single-checkout-info .bg-shape {
  left: 7px;
  right: 7px;
  bottom: 7px;
  position: absolute;
}
.single-checkout-info .bg-shape.style-2 img {
  height: 183px;
  width: 100%;
}
.single-checkout-info.play {
  border-radius: 100%;
}
.single-checkout-info.play .image img {
  border-radius: 100%;
}
.single-checkout-info.play .bg-shape {
  display: none;
}
.single-checkout-info.play .play-button {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.single-checkout-info.play .play-button a {
  font-size: 55px;
  line-height: 1;
  color: var(--whiteColor);
}
.single-checkout-info.play .play-button a:hover {
  color: var(--optionalColor);
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  background-color: var(--blackColor);
}
.services-area .section-title h2 {
  color: var(--whiteColor);
}

.single-services-info {
  padding: 50px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/services/services2.jpg);
}
.single-services-info .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  margin-bottom: 20px;
  display: inline-block;
  background-color: var(--optionalColor);
}
.single-services-info span {
  font-weight: 700;
  color: var(--whiteColor);
}
.single-services-info p {
  margin-top: 100px;
  margin-bottom: 100px;
  color: var(--whiteColor);
}
.single-services-info h4 {
  font-size: 24px;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.single-services-info::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: rgba(17, 24, 39, 0.85);
}
.single-services-info .bg-shape {
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-services-info:hover .bg-shape {
  opacity: 1;
  visibility: visible;
}

.col-lg-4:nth-child(2) .single-services-info {
  background-image: url(../images/services/services3.jpg);
}
.col-lg-4:nth-child(3) .single-services-info {
  background-image: url(../images/services/services4.jpg);
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  padding-top: 112px;
  padding-bottom: 112px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/page-title-bg.jpg);
}

.page-title-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.page-title-content h6 {
  max-width: 571px;
  color: var(--bodyColor);
  font-size: 30px;
  font-weight: 400;
}

.pagination {
  margin-top: 20px;
  margin-bottom: 25px;
}
.pagination .page-item {
  margin-right: 10px;
}
.pagination .page-item .page-link {
  height: 50px;
  width: 50px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
  color: var(--blackColor);
  border: 1px solid #eee;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(17, 24, 39, 0.06);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.pagination .page-item .page-link i {
  left: 0;
  top: 0;
  line-height: 39px;
  position: relative;
  color: var(--mainColor);
  transition: var(--transition);
}
.pagination .page-item .page-link:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.pagination .page-item .page-link:hover i {
  color: var(--whiteColor);
}
.pagination .page-item .page-link.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.single-testimonial-info {
  padding: 30px;
  padding-bottom: 0;
  margin-bottom: 25px;
  border-radius: 0px 0px 0px 0px;
}
.single-testimonial-info .icon {
  margin-bottom: 20px;
}
.single-testimonial-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.single-testimonial-info p {
  margin-bottom: 25px;
}
.single-testimonial-info .star {
  margin-top: 25px;
  margin-bottom: 25px;
}
.single-testimonial-info .star li i {
  color: rgb(253, 216, 54);
}
.single-testimonial-info .star li:last-child i {
  color: rgb(216, 216, 216);
}
.single-testimonial-info .user img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 5px solid var(--whiteColor);
}
.single-testimonial-info .bg-shape {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}

.destination-details-left-sidebar {
  margin-right: 40px;
  margin-bottom: 25px;
}
.destination-details-left-sidebar .image {
  margin-bottom: 25px;
}
.destination-details-left-sidebar .image img {
  border-radius: 20px;
}
.destination-details-left-sidebar .content h3 {
  font-size: 40px;
  margin-bottom: 12px;
}
.destination-details-left-sidebar .content .list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.destination-details-left-sidebar .content .list li {
  color: var(--blackColor);
  margin-bottom: 12px;
  padding-left: 32px;
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.destination-details-left-sidebar .content .list li i {
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  color: var(--optionalColor);
}
.destination-details-left-sidebar .content .list li:last-child {
  margin-bottom: 0;
}
.destination-details-left-sidebar .previous-next {
  margin-bottom: 25px;
  border-top: 1px solid rgb(238, 238, 238);
  border-bottom: 1px solid rgb(238, 238, 238);
  padding-top: 40px;
  padding-bottom: 40px;
}
.destination-details-left-sidebar .previous-next .previous .icon {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 65px;
  margin-right: 20px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--mainColor);
  transition: var(--transition);
  background-color: rgb(238, 238, 238);
}
.destination-details-left-sidebar .previous-next .previous .icon:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.destination-details-left-sidebar .previous-next .previous h3 {
  font-size: 16px;
  margin-bottom: 0;
}
.destination-details-left-sidebar .previous-next .previous.next .icon {
  margin-left: 20px;
  margin-right: 0;
}

.destination-details-right-sidebar {
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 25px;
  background-color: rgb(243, 244, 246);
}
.destination-details-right-sidebar .date-info {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}
.destination-details-right-sidebar .date-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.destination-details-right-sidebar .date-info:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}

.single-gallery-info {
  border-radius: 20px;
  margin-bottom: 25px;
  transition: var(--transition);
}
.single-gallery-info img {
  border-radius: 20px;
}
.single-gallery-info .icon {
  top: 50%;
  left: 0;
  right: 0;
  width: 80px;
  height: 80px;
  margin: auto;
  opacity: 0;
  font-size: 20px;
  position: absolute;
  line-height: 84px;
  visibility: hidden;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--mainColor);
}
.single-gallery-info .icon:hover {
  color: var(--mainColor);
  background-color: var(--whiteColor);
}
.single-gallery-info .icon.style-2 {
  width: 60px;
  height: 60px;
  line-height: 65px;
}
.single-gallery-info::before {
  left: 0;
  top: 0;
  opacity: 0;
  content: "";
  width: 100%;
  height: 100%;
  visibility: hidden;
  position: absolute;
  border-radius: 20px;
  transition: var(--transition);
  background-color: rgba(17, 24, 39, 0.7);
}
.single-gallery-info:hover .icon {
  opacity: 1;
  visibility: visible;
}
.single-gallery-info:hover::before {
  opacity: 1;
  visibility: visible;
}

.contact-content {
  margin-bottom: 25px;
  margin-right: 45px;
}
.contact-content .image {
  margin-bottom: 30px;
}
.contact-content .image img {
  border-radius: 20px;
}
.contact-content .content {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgb(238, 238, 238);
}
.contact-content .content span {
  margin-bottom: 10px;
}
.contact-content .content h3 {
  max-width: 228px;
  font-size: 24px;
  margin-bottom: 0;
}
.contact-content .content ul {
  margin-bottom: 0;
}
.contact-content .content ul li {
  margin-bottom: 4px;
}
.contact-content .content ul li a {
  font-size: 16px;
  font-weight: 700;
}
.contact-content .content ul li:last-child {
  margin-bottom: 0;
}

.contact-form {
  padding: 60px;
  margin-bottom: 25px;
  border-radius: 20px;
  background-color: rgb(243, 244, 246);
}
.contact-form .title {
  margin-bottom: 20px;
}
.contact-form .title h2 {
  font-size: 48px;
  margin-bottom: 12px;
}
.contact-form form .form-group {
  margin-bottom: 20px;
}
.contact-form form .form-group label {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--blackColor);
}
.contact-form form .form-group .form-control {
  height: 60px;
  border: unset;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: 20px;
}
.contact-form form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.contact-form form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.contact-form form .form-group .form-control.textarea {
  height: 170px;
  padding-top: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 626px;
  margin-bottom: -5px;
}

.login-image {
  margin-bottom: 25px;
}

.login-content {
  padding: 40px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
}
.login-content .title {
  margin-bottom: 30px;
}
.login-content .title h2 {
  font-size: 48px;
  margin-bottom: 12px;
}
.login-content .list li {
  margin-right: 15px;
}
.login-content .list li a {
  font-weight: 700;
  position: relative;
  border-radius: 20px;
  display: inline-block;
  padding: 15px 25px 15px 65px;
  border: 1px solid rgba(17, 24, 39, 0.1);
}
.login-content .list li a img {
  top: 50%;
  left: 30px;
  position: absolute;
  transform: translateY(-50%);
}
.login-content .list li:last-child {
  margin-right: 0;
}
.login-content .or {
  z-index: 1;
  display: block;
  position: relative;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.login-content .or span {
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--whiteColor);
}
.login-content .or::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  z-index: -1;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background-color: rgba(17, 24, 39, 0.1);
}
.login-content form .form-group {
  margin-bottom: 20px;
}
.login-content form .form-group label {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blackColor);
}
.login-content form .form-group .form-control {
  border: 0;
  height: 60px;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: 30px;
  background-color: rgb(243, 244, 246);
}
.login-content form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.login-content form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.login-content form .form-check {
  padding-left: 30px;
  position: relative;
  min-height: auto;
  margin-bottom: 0;
  margin-top: 20px;
}
.login-content form .form-check .form-check-input {
  left: 0;
  top: 50%;
  float: unset;
  width: 20px;
  height: 20px;
  cursor: pointer;
  box-shadow: unset;
  border-radius: 5px;
  position: absolute;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid var(--blackColor);
  margin-top: -1px;
  margin-left: 0;
}
.login-content form .form-check .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.login-content form .form-check .form-check-label {
  cursor: pointer;
  font-weight: normal;
}
.login-content form .form-check .form-check-label a {
  font-weight: 700;
}
.login-content form .default-btn {
  width: 100%;
  padding: 16.5px 0;
  margin-top: 40px;
}

.single-pages-widget {
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
  background-color: rgb(243, 244, 246);
}
.single-pages-widget h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.single-pages-widget.form .form-group {
  position: relative;
}
.single-pages-widget.form .form-group .form-control {
  height: 60px;
  border: unset;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: 10px;
}
.single-pages-widget.form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.single-pages-widget.form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.single-pages-widget.form .form-group button {
  top: 50%;
  right: 5px;
  border: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--mainColor);
}
.single-pages-widget.form .form-group button:hover {
  background-color: var(--blackColor);
}
.single-pages-widget.recent-post .post-card {
  margin-bottom: 20px;
}
.single-pages-widget.recent-post .post-card .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 20px;
}
.single-pages-widget.recent-post .post-card .image img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.single-pages-widget.recent-post .post-card .content span {
  margin-bottom: 5px;
}
.single-pages-widget.recent-post .post-card .content h6 {
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--fontFamily);
}
.single-pages-widget.recent-post .post-card:last-child {
  margin-bottom: 0;
}
.single-pages-widget.categories ul li {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}
.single-pages-widget.categories ul li a {
  color: var(--bodyColor);
}
.single-pages-widget.categories ul li a:hover {
  color: var(--mainColor);
}
.single-pages-widget.categories ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: unset;
}
.single-pages-widget.tag ul li {
  margin-right: 10px;
  margin-bottom: 15px;
}
.single-pages-widget.tag ul li a {
  padding: 8px 13px;
  border-radius: 5px;
  display: inline-block;
  color: rgba(85, 85, 85, 0.7);
  background-color: var(--whiteColor);
}
.single-pages-widget.tag ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-pages-widget.tag ul li:last-child {
  margin-bottom: 0;
}

.blog-left-sidebar {
  margin-right: 40px;
  margin-bottom: 25px;
}

.blog-right-sidebar {
  margin-bottom: 25px;
}

.categories-tags-info {
  margin-top: 20px;
  margin-bottom: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgb(238, 238, 238);
  border-bottom: 1px solid rgb(238, 238, 238);
}
.categories-tags-info .categories ul li {
  margin-left: 15px;
}
.categories-tags-info .categories ul li span {
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.categories-tags-info .categories ul li a {
  color: var(--bodyColor);
}
.categories-tags-info .categories ul li a:hover {
  color: var(--mainColor);
}
.categories-tags-info .categories ul li:first-child {
  margin-left: 0;
}
.categories-tags-info .tag {
  text-align: end;
}
.categories-tags-info .tag ul li {
  margin-left: 15px;
}
.categories-tags-info .tag ul li span {
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.categories-tags-info .tag ul li a {
  padding: 8px 13px;
  border-radius: 5px;
  display: inline-block;
  color: rgba(85, 85, 85, 0.7);
  background-color: rgb(243, 244, 246);
}
.categories-tags-info .tag ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.categories-tags-info .tag ul li:first-child {
  margin-left: 0;
}

.blog-comments-info h2 {
  font-size: 36px;
  margin-bottom: 25px;
}
.blog-comments-info .comments-card {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgb(238, 238, 238);
}
.blog-comments-info .comments-card .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 25px;
}
.blog-comments-info .comments-card .image img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.blog-comments-info .comments-card .content h3 {
  font-size: 24px;
}
.blog-comments-info .comments-card .content span {
  margin-bottom: 10px;
  color: rgba(85, 85, 85, 0.7);
}
.blog-comments-info .comments-card .reply {
  top: 5px;
  right: 0;
  position: absolute;
}
.blog-comments-info .comments-card .reply a {
  padding-left: 30px;
  position: relative;
  display: inline-block;
}
.blog-comments-info .comments-card .reply a i {
  left: 0;
  top: 50%;
  font-size: 20px;
  position: absolute;
  transform: translateY(-50%);
}
.blog-comments-info .comments-card.style-2 {
  margin-left: 130px;
}

.blog-form-info .title {
  margin-bottom: 25px;
}
.blog-form-info .title h2 {
  font-size: 36px;
  margin-bottom: 12px;
}
.blog-form-info form .form-group {
  margin-bottom: 20px;
}
.blog-form-info form .form-group .form-control {
  border: 0;
  height: 60px;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: 20px;
  background-color: rgb(243, 244, 246);
}
.blog-form-info form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.blog-form-info form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.blog-form-info form .form-group .form-control.textarea {
  height: 200px;
  padding-top: 20px;
}
.blog-form-info form .form-group .form-check {
  padding-left: 30px;
  position: relative;
  min-height: auto;
  margin-bottom: 0;
  margin-top: 20px;
}
.blog-form-info form .form-group .form-check .form-check-input {
  left: 0;
  top: 50%;
  float: unset;
  width: 20px;
  height: 20px;
  cursor: pointer;
  box-shadow: unset;
  border-radius: 5px;
  position: absolute;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid var(--blackColor);
  margin-top: -1px;
  margin-left: 0;
}
.blog-form-info form .form-group .form-check .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.blog-form-info form .form-group .form-check .form-check-label {
  cursor: pointer;
  font-weight: normal;
}
.blog-form-info form .form-group .form-check .form-check-label a {
  font-weight: 700;
}
.blog-form-info form .default-btn {
  margin-top: 10px;
}

.terms-conditions-content {
  margin-bottom: 25px;
}
.terms-conditions-content .title {
  margin-bottom: 25px;
}
.terms-conditions-content .title h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.terms-conditions-content .title p a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content .title p a:hover {
  color: var(--blackColor);
}
.terms-conditions-content .title ul li {
  margin-bottom: 10px;
}
.terms-conditions-content .title ul li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content .title ul.general li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.terms-conditions-content .title ul.general li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content .title ul.general li strong {
  left: 0;
  position: absolute;
}
.terms-conditions-content .title ul.confidential li {
  padding-left: 20px;
  position: relative;
}
.terms-conditions-content .title ul.confidential li a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content .title ul.confidential li a:hover {
  color: var(--blackColor);
}
.terms-conditions-content .title ul.confidential li::before {
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: var(--blackColor);
}
.terms-conditions-content .title strong {
  color: var(--blackColor);
}
.terms-conditions-content .title:last-child {
  margin-bottom: 0;
}

.error-area {
  background-color: #e9fcff;
}

.error-content {
  margin-bottom: 25px;
}
.error-content h1 {
  margin-top: 15px;
  margin-bottom: 0;
  line-height: 1;
  font-size: 200px;
  font-weight: 700;
  color: #92210f;
}
.error-content h1 span {
  color: var(--blackColor);
}
.error-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.error-content a {
  margin-top: 10px;
}

/*================================================
Team Area CSS
=================================================*/
.single-team-card {
  padding: 20px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: rgba(217, 217, 217, 0.6392156863);
}
.single-team-card .image {
  margin-bottom: 30px;
}
.single-team-card .image img {
  border-radius: 20px;
}
.single-team-card .content {
  padding-left: 30px;
  padding-bottom: 20px;
}
.single-team-card .content .icon {
  width: 60px;
  height: 60px;
  display: block;
  flex: 0 0 auto;
  line-height: 60px;
  border-radius: 100%;
  text-align: center;
  margin-right: 25px;
  color: var(--mainColor);
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(17, 24, 39, 0.05);
}
.single-team-card .content .text h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.single-team-card .bg-shape-1 {
  left: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
  transition: var(--transition);
}
.single-team-card .bg-shape-2 {
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-team-card:hover .bg-shape-2 {
  opacity: 1;
  visibility: visible;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: #091242;
  padding-top: 100px;
}

.single-footer-widget {
  margin-bottom: 25px;
}
.single-footer-widget .logo {
  margin-bottom: 22px;
}
.single-footer-widget p {
  color: var(--whiteColor);
  color: rgba(255, 255, 255, 0.6);
}
.single-footer-widget .socials-link {
  margin-top: 22px;
}
.single-footer-widget .socials-link a {
  line-height: 1;
  font-size: 20px;
  margin-right: 12px;
  color: var(--whiteColor);
}
.single-footer-widget .socials-link a:hover {
  color: var(--optionalColor);
}
.single-footer-widget h3 {
  color: var(--whiteColor);
  margin-bottom: 25px;
  font-size: 24px;
}
.single-footer-widget .custom-links li {
  margin-bottom: 18px;
}
.single-footer-widget .custom-links li a {
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
}
.single-footer-widget .custom-links li a:hover {
  color: var(--optionalColor);
}
.single-footer-widget .custom-links li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .footer-contact-info li {
  color: var(--whiteColor);
  margin-bottom: 18px;
  padding-left: 30px;
}
.single-footer-widget .footer-contact-info li i {
  left: 0;
  top: 50%;
  font-size: 20px;
  position: absolute;
  color: var(--optionalColor);
  transform: translateY(-50%);
}
.single-footer-widget .footer-contact-info li a {
  color: rgba(255, 255, 255, 0.6);
}
.single-footer-widget .footer-contact-info li a:hover {
  color: var(--optionalColor);
}
.single-footer-widget .footer-contact-info li span {
  color: rgba(255, 255, 255, 0.6);
}
.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.col-lg-3:nth-child(1) .single-footer-widget {
  margin-right: 0px;
}
.col-lg-3:nth-child(2) .single-footer-widget {
  padding-left: 0px;
  margin-right: 0px;
}
.col-lg-3:nth-child(3) .single-footer-widget {
  padding-left: 0px;
}

/*================================================
Copyright Area CSS
=================================================*/
.copyright-area {
  border-top: 2px solid #4E5683;
  background-color: #091242;
  padding-top: 10px;
  padding-bottom: 10px;
}
.copyright-area p a {
  color: var(--mainColor);
  font-weight: 700;
}
.copyright-area p a:hover {
  color: var(--optionalColor);
}
.copyright-area ul {
  text-align: end;
}
.copyright-area ul li {
  margin-left: 20px;
  margin-right: 20px;
}
.copyright-area ul li a {
  color: var(--whiteColor);
}
.copyright-area ul li a:hover {
  color: var(--optionalColor);
}
.copyright-area ul li:first-child {
  margin-left: 0;
}
.copyright-area ul li:last-child {
  margin-right: 0;
}

.shape6 {
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  text-align: center;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  z-index: 4;
  opacity: 0;
  right: 20px;
  width: 43px;
  height: 45px;
  bottom: 20px;
  font-size: 28px;
  cursor: pointer;
  visibility: hidden;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: #FFB629;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.go-top i {
  left: 0;
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.go-top.active {
  opacity: 1;
  bottom: 20px;
  visibility: visible;
}
.go-top:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}/*# sourceMappingURL=style.css.map */