
  @font-face {
    font-family: "PP Eiko Medium";
    src: url(../fonts/PPEiko-Medium.otf);
  }

html {
    overflow-x: hidden;
  }
  
  .aboutpage-overflow {
    overflow-x: visible;
  }
  
  body {
    /* font-family: Gilroy; */
    font-family: "Inter", serif;
    overflow-x: hidden;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "PP Eiko Medium";
  }
  
  a {
    text-decoration: none !important;
  }
  
  p {
    color: #383d41;
    font-size: 15px;
    font-weight: 300;
  }
  
  .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  .heading {
    font-size: 52px;
    color: #000;
    margin-bottom: 10px;
    line-height: 55px;
    text-transform: capitalize;
  }
  
  .center-heading {
    text-align: center;
  }
  
  /* .sub-heading {
    margin: 8px 0px 0px;
  } */
  
  /* .sub-title {
    background-image: linear-gradient(to right, #ff6b00 0%, #E3AD28 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
  } */
  
  /* .header-gap {
    margin-top: 83px;
  } */
  
  /* .gradiant-color {
    background-image: linear-gradient(to right, #ff6b00 0%, #E3AD28 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  } */
  
  /*----------- button -------------*/
  
.default-btn {
    background-color: #E3AD28;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #E3AD28;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}
.default-btn:hover{
    background-color: transparent;
    color: #fff;
}
.trans-btn {
    background-color: transparent;
    display: inline-block;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #000;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.trans-btn:hover{
    background-color: #E3AD28;
    color: #000;
}


  /*--------------- header ---------------*/

.header-area {
    padding: 15px 0px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
  }
  .header-area.black-area {
    background-color: #000;
    padding-bottom: 30px;
    }
    .white-header {
        background-color: #fff;
        padding: 20px 5px;
        border-radius: 50px;
        margin-top: -50px;
        box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    }
  
  .logo a {
    display: inline-block;
  }
  
  .logo a img {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 150px;
  }
  
  .stick {
    padding: 10px 0px;
    background: #fff;
  }
  .header-area.white-area.stick{
    position: fixed;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  }
  .header-area.white-area.stick .white-header{
    margin-top: 0;
    box-shadow: none;
  }

  
  .stick .logo a img {
    width: 140px;
  }
  
  .main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
  }
  
  .main-menu ul {
    margin: 0;
  }
  
  .main-menu ul li {
    margin-left: 25px;
    display: inline-block;
  }
  
  .main-menu ul li a {
    color: #000;
    font-size: 15px;
    font-weight: 300;
    position: relative;
    transition: all 0.2s ease-In;
  }
  .white-header .main-menu ul li a, .menu-login {
    color: #060606 !important;
  }
  
  .main-menu ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
    transform-origin: 50% 50%;
    background: #E3AD28;
  }
  
  .main-menu ul li a:hover {
    color: #E3AD28;
  }
  
  .main-menu ul li a:hover::before {
    transform: scale3d(1, 1, 1);
  }
  
  .arrow-link img {
    width: 12px;
    opacity: 0.6;
    transform-origin: 0% 50%;
    transition: all 0.2s ease-In;
  }
  
  .arrow-link:hover img {
    opacity: 1;
    transform: rotate(-45deg);
  }
  
.rightmenu-link {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  
  .rightmenu-link .default-btn {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .menu-login {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.2s ease-In;
    position: relative;
  }
  
  .menu-login:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
    transform-origin: 50% 50%;
    background: #E3AD28;
  }
  
  .menu-login:hover::before {
    transform: scale3d(1, 1, 1);
  }
  
  .menu-login:hover {
    color: #E3AD28;
  }
  
  .menu-login,
  .rightmenu-link .default-btn,
  .toogle-line {
    margin-left: 22px;
  }
  .right-contact {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.top-menu-social {
    padding: 0;
    display: flex;
    list-style: none;
}
.top-menu-social li{margin-right: 10px;}
.top-menu-social li a{color: #fff;}
.right-contact li a{color: #fff;font-weight: 300;}
.top-header .menu-social {
    margin: 0;
}
  /*------- menu line butn ------*/
  
  .toogle-line {
    display: flex;
    align-items: center;
  }
  
  .btn1 {
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    display: inline-block;
    width: 22px;
  }
  
  .btn1 .menu-line {
    transition: all 400ms cubic-bezier(0, 0, 0.58, 1);
    height: 1.3px;
    width: 100%;
    background: #fff;
    position: relative;
    float: right;
  }
  
  .btn1 .icon-center {
    margin-top: 6px;
    width: 80%;
  }
  
  .btn1 .icon-bottom {
    margin-top: 6px;
    width: 80%;
  }
  
  .btn1:hover .menu-line {
    background: #E3AD28;
    width: 100%;
  }
  
  .wrapper-menu {
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
  }
  
  .wrapper-menu.close-sign {
    transform: rotate(-45deg);
  }
  
  .line-menu {
    background-color: #fff;
    background-image: linear-gradient(to right, #ff6b00 0%, #E3AD28 90%);
    border-radius: 5px;
    width: 100%;
    height: 3px;
  }
  
  .line-menu.half {
    width: 50%;
  }
  
  .line-menu.start {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
  }
  
  .wrapper-menu.close-sign .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
  }
  
  .line-menu.end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
  }
  
  .wrapper-menu.close-sign .line-menu.end {
    transform: rotate(-90deg) translateX(-3px);
  }
  
  .wrapper-menu:hover .line-menu {
    background-image: linear-gradient(to right, #ff6b00 0%, #E3AD28 90%);
  }
  
  .menu-button {
    position: relative;
    margin: 0;
  }
  
  .menu-button span {
    background: #fff;
    border-radius: 10px;
    height: 2px;
    margin: 3px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }
  
  .menu-button:hover span {
    background: #ffa011;
  }
  
  .menu-button span:nth-of-type(1) {
    width: 50%;
  }
  
  .menu-button span:nth-of-type(2) {
    width: 100%;
  }
  
  .menu-button span:nth-of-type(3) {
    width: 75%;
  }
  
  .menu-button input[type="checkbox"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    cursor: pointer;
  }
  
  .menu-button input[type="checkbox"]:checked ~ span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(4px, 0px);
  }
  
  .menu-button input[type="checkbox"]:checked ~ span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
  }
  
  .menu-button input[type="checkbox"]:checked ~ span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(14px, -3px) rotatez(45deg);
  }

  /*-------------- big menu ------------*/

.nonoverflow {
    overflow-x: unset !important;
    overflow-y: hidden !important;
  }
  
  .menu-logobar {
    box-shadow: none !important;
    background: transparent !important;
  }
  
  .menu-logobar .main-menu ul,
  .menu-logobar .rightmenu-link .select-country,
  .menu-logobar .rightmenu-link .menu-login,
  .menu-logobar .rightmenu-link .default-btn {
    display: none;
  }
  
  .menu-close {
    color: #fff;
    text-align: right;
    margin-bottom: 5px;
    position: absolute;
    right: 10%;
    top: 0;
    cursor: pointer;
  }
  
  .menu.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
  
  .menu {
    transition: all 1s cubic-bezier(0.17, 0.04, 0.03, 0.94);
    overflow: hidden;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8;
    background: #131313;
  }
  
  .menu::-webkit-scrollbar {
    width: 4px;
    background: #131313;
  }
  
  .menu::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
  }
  
  .menu::-webkit-scrollbar-thumb {
    background-color: rgb(255 255 255 / 80%);
    outline: none;
    border-radius: 50px;
  }
  
  .bigmenu-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
  }
  
  .bigmenu-content-center {
    width: 40%;
  }
  
  .bigmenu-content-left,
  .bigmenu-content-right {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  
  .bigmenu-content-left {
    margin-right: 30px;
    border-right: 1px solid rgb(255 255 255 / 20%);
  }
  
  .bigmenu-content-right {
    padding-left: 30px;
    border-left: 1px solid rgb(255 255 255 / 20%);
  }
  
  .bigmenu-main-link {
    margin: 0;
    padding: 0;
    list-style: none;
    transition: all 500ms cubic-bezier(0, 0, 0.58, 1);
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 40px;
  }
  
  .bigmenu-main-link::-webkit-scrollbar {
    width: 4px;
    background: #131313;
  }
  
  .bigmenu-main-link::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
  }
  
  .bigmenu-main-link::-webkit-scrollbar-thumb {
    background-color: rgb(255 255 255 / 80%);
    outline: none;
    border-radius: 50px;
  }
  
  .bigmenu-main-link li {
    margin-bottom: 12px;
    opacity: 0;
    line-height: 1.3;
    transform: translateX(30px);
    transition: all 500ms cubic-bezier(0, 0, 0.58, 1);
  }
  
  .bigmenu-main-link li:last-child {
    margin-bottom: 0px;
  }
  
  .menu.open .bigmenu-main-link li {
    opacity: 1;
    transform: translateX(0px);
  }
  
  .menu.open .bigmenu-main-link li:nth-child(1) {
    transition-delay: 0.3s;
  }
  .menu.open .bigmenu-main-link li:nth-child(2) {
    transition-delay: 0.6s;
  }
  .menu.open .bigmenu-main-link li:nth-child(3) {
    transition-delay: 0.9s;
  }
  .menu.open .bigmenu-main-link li:nth-child(4) {
    transition-delay: 1.2s;
  }
  .menu.open .bigmenu-main-link li:nth-child(5) {
    transition-delay: 1.5s;
  }
  .menu.open .bigmenu-main-link li:nth-child(6) {
    transition-delay: 1.8s;
  }
  .menu.open .bigmenu-main-link li:nth-child(7) {
    transition-delay: 2.1s;
  }
  .menu.open .bigmenu-main-link li:nth-child(8) {
    transition-delay: 2.4s;
  }
  .menu.open .bigmenu-main-link li:nth-child(9) {
    transition-delay: 2.7s;
  }
  .menu.open .bigmenu-main-link li:nth-child(10) {
    transition-delay: 3s;
  }
  
  .bigmenu-main-link li a {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
    transition: all 500ms cubic-bezier(0, 0, 0.58, 1);
        font-family: "PP Eiko Medium";
  }
  
  .bigmenu-main-link:hover li a {
    opacity: 0.3;
  }
  
  .bigmenu-main-link li a:hover {
    background-image: linear-gradient(to right, #ff6b00 0%, #E3AD28 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 1;
    transform: translateX(10px);
  }
  
  .bigmenu-innerlinks {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s;
    margin-top: 6px;
    padding-right: 20px;
    position: relative;
    height: auto;
    color: rgb(255 255 255 / 30%);
    transition: all 1s ease-in-out;
  }
  
  .bigmenu-main-link li:hover .bigmenu-innerlinks {
    max-height: 20em;
    overflow: visible;
  }
  
  .bigmenu-innerlinks a {
    font-size: 15px !important;
    font-weight: 400 !important;
    margin: 4px;
    transition: all 0.3s ease-in-out;
  }
  
  .bigmenu-innerlinks a:hover {
    transform: translateX(0px) !important;
  }
  
  .menu-contactlink .fa-whatsapp,
  .menu-contactlink .fa-envelope,
  .menu-contactlink .fa-phone,
  .menu-contactlink .fa-location-dot {
    color: rgb(255 255 255 / 40%);
    font-size: 14px;
    margin-top: 6px;
    margin-right: 5px;
  }
  
  .menu-contactlink {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    padding-bottom: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s cubic-bezier(0, 0, 0.58, 1);
  }
  
  .menu.open .menu-contactlink {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.5s;
  }
  
  .menu-contactlink:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  
  .menu-contactlink p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1;
  }
  
  .menu-contactlink span {
    color: rgb(255 255 255 / 40%);
    font-size: 14px;
    display: block;
  }
  
  .menu-contactlink ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .menu-contactlink ul li {
    display: flex;
    align-items: start;
    margin-bottom: 6px;
  }
  
  .menu-contactlink ul li:last-child {
    margin-bottom: 0px;
  }
  
  .menu-contactlink ul li a {
    color: rgb(255 255 255 / 40%);
    font-size: 15px;
    position: relative;
  }
  
  .menu-contactlink ul li a:hover {
    background-image: linear-gradient(to right, #ff6b00 0%, #E3AD28 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  
  .menu-contactlink ul li a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1.3px;
    width: 0;
    transition: width 0s ease, background 0.25s ease;
  }
  
  .menu-contactlink ul li a:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -2px;
    height: 1.3px;
    width: 0;
    background: linear-gradient(to right, #ff6b00 0%, #E3AD28 90%);
    transition: width 0.5s ease;
  }
  
  .menu-contactlink ul li a:hover:before {
    width: 100%;
    background: linear-gradient(to right, #ff6b00 0%, #E3AD28 90%);
    transition: width 0.5s ease;
  }
  
  .menu-contactlink ul li a:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease;
  }
  
  .menu-copyright {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s cubic-bezier(0, 0, 0.58, 1);
  }
  
  .menu.open .menu-copyright {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.5s;
  }
  
  .menu-copyright h4 {
    font-size: 40px;
    color: #fff;
    line-height: 1;
    margin-bottom: 2px;
  }
  
  .menu-copyright p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 0;
  }
  
  .menu-social {
    margin: 30px 0px;
    list-style: none;
    padding: 0;
  }
  
  .menu-social li {
    display: inline-block;
    transition: all 800ms cubic-bezier(0, 0, 0.58, 1);
  }
  
  .menu-social li a {
    transition: all 0.2s ease-In;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background: #242424;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 2px;
    font-size: 14px;
    border: 1px solid rgb(255 255 255 / 12%);
  }
  
  .menu-social li:nth-child(1) a:hover {
    background: #3b579d;
    border-color: #3b579d;
  }
  
  .menu-social li:nth-child(2) a:hover {
    background: #d62976;
    border-color: #d62976;
  }
  
  .menu-social li:nth-child(3) a:hover {
    background: #0f1419;
    border-color: #0f1419;
  }
  
  .menu-social li:nth-child(4) a:hover {
    background: #006699;
    border-color: #006699;
  }
  
  
  
  /*-----*/
/* Banner Section */
.home-banner-section {
    margin-top: -52px;
}
.home-banner-section .btn-wrapper {
  margin-top: 20px;
}
.home-banner-section .btn-wrapper a {
  margin-right: 10px;
}
.home-banner-section .trans-btn{
    border: 1px solid #E3AD28;
    color: #fff;
}
  .home-banner-section h2 {
    margin-bottom: 50px;
  }
  
  .home-banner-section .hero {
    position: relative;
  }
  
  .home-banner-section .hero .hero-slide a:hover span {
    color: #000000;
  }
  .hero .arrow-left {
      left: 10%;
  }
  .hero .arrow-right {
    right: 10%;
  }
  .hero .arrow{
    border: 1px solid #fff;
    color: #fff;
  }
  .hero .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  
  .hero .hero-slide .header-content {
    top: 20%;
    max-width: 550px;
    width: 100%;
    padding: 2rem;
  }
  .hero .hero-slide .header-content .heading, .hero .hero-slide .header-content p{
    color: #fff;
  }
  
  .slide-content {
    padding: 10px 20px 10px 0;
  }
  .slick-dots {
    position: absolute;
    bottom: 30px;
  }
  .slick-dots li button:before{display: none;}
  .slick-dots li button{width: 15px;height: 15px;background-color: transparent;border: 1px solid #fff;border-radius: 100%;}
  .slick-active button{background-color: #E3AD28 !important;border: 1px solid #fff;border-radius: 100%;}
/*   
  .slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  
  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
  }
  
  .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    border-radius: 50%;
    border: 0;
    outline: none;
  }
  
  .slick-dots li button::before {
    font-size: 18px;
    color: transparent;
    opacity: 1;
    border: 1px solid #fff;
    border-radius: 100%;
  }
  .slick-dots li.slick-active button:before{
    color: #E3AD28;
    display: none;
  }
  .slick-dots li button{
    background-color: transparent;
  }
  .slick-active {
    background-color: #E3AD28;
    border-radius: 100%;
    border: 1px solid #fff;
} */

.arrow{
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    color: #000;
    border-radius: 10px;
    cursor: pointer;
}
.arrow:hover{
  background-color: #E3AD28;
  color: #fff;
  border: 1px solid #E3AD28;
}
.arrow-left{
  left: -50px;
  transform: skew(10deg);
}
.arrow-right{
  right: -50px;
  transform: skew(-10deg);
}
  
  /** Text Animation **/
  
  @-webkit-keyframes fadeInUpSD {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100px);
      transform: translateY(100px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInUpSD {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100px);
      transform: translateY(100px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInUpSD {
    -webkit-animation-name: fadeInUpSD;
    animation-name: fadeInUpSD;
  }
  
  .slick-active .slide-content {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
    width: 100%;
    padding: 10px 20px 30px 0;
  }
  
  /* Media Queries */
  
  @media (max-width: 768px) {
  
    .home-banner-section .hero .hero-slide a span {
      font-size: 20px;
      margin-top: 0.5rem;
    }
  
    /* .hero .hero-slide .header-content {
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      margin: 0 auto;
    } */
  }
  @-webkit-keyframes fadeInUpSD {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100px);
      transform: translateY(100px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInUpSD {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100px);
      transform: translateY(100px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  .fadeInUpSD {
    -webkit-animation-name: fadeInUpSD;
    animation-name: fadeInUpSD;
  }
  
  .slick-active .slide-content {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
    width: 100%;
    padding: 10px 20px 30px 0;
  }
  .about-section{
    position: relative;
    padding: 100px 0;
  }
  .about-section .about-content-wrapper {
    width: 50%;
    margin-left: 8rem;
}
.about-section .about-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 1000px;
    height: 600px;
    z-index: -1;
}
.side-content {
    position: absolute;
    rotate: 270deg;
    top: 50%;
    left: 10%;
}
.side-content h3{
    color: #383d4147;
    font-size: 40px;
}
.side-content h3::after {
    display: inline-block;
    content: "";
    border-top: .1rem solid #E3AD28;
    width: 4rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}


.slick-slide {
  height: auto !important;
}

/* Rental Section */
.rental-section{
  position: relative;
  padding: 80px 0;
}
.rental-section .rental-slider{
  margin-top: 30px;
}
.rental-section .slider-box {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    margin: 0px 15px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rental-section .slider-box:hover{
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.rental-section .slider-box .img-responsive {
    transition: transform 0.4s ease-in-out 0s;
  }
  
  .rental-section .slider-box:hover .img-responsive {
    transform: scale(1.05);
  }
.rental-detail{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.rental-detail .rental-title {
    color: #fff;
    font-family: "PP Eiko Medium";
    text-transform: capitalize;
    font-size: 36px;
    margin: 0;
    text-align: center;
}
.rental-detail .bottom-explore {
    padding: 10px;
    width: 100%;
    background: rgb(46, 46, 46);
    background: linear-gradient(90deg, rgba(46, 46, 46, 1) 0%, rgba(77, 77, 77, 1) 46%, rgba(46, 46, 46, 1) 99%);
}
.rental-detail .bottom-explore p {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}
.rental-section .slider-box svg{
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.rental-section .slider-box:hover svg{
    rotate: -30deg;
    color: #E3AD28;
}

.comfort-section{
  position: relative;
  background-image: url(../images/comfort-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px 100px 240px;
}
.comfort-section p{
  text-align: center;
  width: 40%;
  margin: 0 auto;
  opacity: 50%;
}
.comfort-section h3{
  font-size: 65px;
  text-transform: capitalize;
  text-align: center;
  margin: 0 auto;
  width: 50%;
}
.comfort-section h3 span{
  color: #E3AD28;
}
.dark-section{
  background: rgb(38 37 37);
    background: linear-gradient(90deg, rgb(30 30 30) 0%, rgb(50 49 49) 46%, rgb(30 30 30) 99%);
    height: 700px;
}
.dark-box-section img {
  margin-top: -200px;
}
.dark-section .usp-wrap {
  margin-top: 40px;
  align-items: center;
}
.dark-section .usp-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.dark-section .usp-box .box img{
  width: 50px;
  height: 50px;
  margin: 0 auto;
}
.dark-section .usp-box .box p{
  text-align: center;
  color: #fff;
}
.dark-section .usp-box .box {
  margin: 10px;
}
.dark-section .usp-box .box:nth-child(1), 
.dark-section .usp-box .box:nth-child(2){
  border-right: 1px dotted #fff;
}
.dark-section .usp-wrap .usp-box-section h3 {
  text-align: center;
  color: #fff;
  font-size: 36px;
}

.corporate-area {
  padding: 160px 0px 80px;
  position: relative;
  overflow: hidden;
}

.corporate-area .sub-heading {
  width: 50%;
  margin: 8px auto 0px;
}

.corporate-area .service-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.corporate-area .service-slider .service-slider-wrap {
  width: 23%;
}
.corporate-box {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 12px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.corporate-box:hover {
  border-color: #fff;
  /* box-shadow: 0 -2px 16px 4px rgb(255 255 255 / 30%); */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.corporate-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30%;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent, #000000 90%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.corporate-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  backdrop-filter: blur(7px);
  background: rgb(0 0 0 / 60%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.corporate-box:hover:after {
  opacity: 1;
}

.corporate-box .img-responsive {
  width: 100%;
  object-fit: cover;
  height: 350px;
  border-radius: 12px;
}

.corporatebox-inner {
  position: absolute;
  bottom: -145px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  padding: 0px 20px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.corporatebox-inner h4,
.corporatebox-inner .service-title {
  color: #fff;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-family: "PP Eiko Medium";
}
.corporatebox-inner p{
  color: #fff;
}
.corporatebox-inner a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease-In;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: start;
}

.corporatebox-inner a span {
  background: linear-gradient(to right, #E3AD28 0%, #ffa800 90%);
  width: 20px;
  height: 20px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  border-radius: 2px;
  transition: all 0.2s ease-In;
}

.corporatebox-inner a:hover {
  color: #ffa800;
}

.corporatebox-inner a:hover span {
  transform: translateX(2px);
  color: #fff;
}

.corporate-box:hover .corporatebox-inner {
  bottom: 0px;
}

.corporate-blur {
  position: absolute;
  top: -20%;
  left: 0;
  width: 1000px;
  filter: blur(180px);
  z-index: -1;
  transform: rotateY(180deg);
  opacity: 0.9;
}

.active-country{
  background-image: url(../images/country-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 200px 0;
}
.active-country .heading{
  color: #fff;
}
.active-country .country-wrap {
  margin-top: 40px;
  padding: 0;
  margin: 30px 0px 0px;
  list-style: none;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}
.active-country span {
  cursor: pointer;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  background: rgb(0 0 0 / 60%);
  border: 1px solid rgb(255 255 255 / 50%);
  transition: all 0.2s ease-In;
  display: inline-block;
}
.active-country span:hover {
  color: #E3AD28;
  box-shadow: 0 -1px 12px 2px rgb(255 255 255 / 30%);
  border-color: #fff;
}
.discover-section{
  background-image: url(../images/discover-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0;
}
.discover-section .discover-content .heading {
  color: #fff;
  font-size: 40px;
}
.discover-section .discover-content .heading span{
  color: #E3AD28;
}
.discover-section .discover-content p {
  color: #fff;
}
.serve-content .star {
  margin: 20px auto;
  height: 20px;
  width: 300px;
}
.serve-section{
  background-image: url(../images/building.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 210px 0 0;
}
.serve-content {
  text-align: center;
}
.serve-content p{
  width: 65%;
  margin: 0 auto;
}
.serve-section .serve-car{
  margin-top: 50px;
}
section.contact-form-section{
  position: relative;
  padding: 80px 0;
}
.contact-form-section .form-section .flex-box {
  display: flex;
  justify-content: space-between;
}
.contact-form-section .form-section .form-group{width: 48%;cursor: pointer;}
.contact-form-section .form-section .form-group.select {
  width: 100%;cursor: pointer;
}
.form-control:focus{
  box-shadow: none;
  outline: none;
  border-color: #fff;
}
input:focus::-webkit-input-placeholder { color:transparent !important; }
.contact-form-section .form-section .form-control{position: relative;}
input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.contact-form-section .form-section .date-box{position: relative;}
.contact-form-section .form-section .date-box svg{
  position: absolute;
  color: #fff;
  z-index: 1;
  right: 10px;
  bottom: 10px;
}
.contact-form-section .form-section{
  position: relative;
  background-image: url(../images/form-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px;
  border-radius: 20px;
    overflow: hidden;
    width: 88%;
    margin: 0 auto;
}
.contact-form-section .form-section p{
  color: #fff;
  text-align: center;
}
.contact-form-section .form-section .form-title {
  font-family: "PP Eiko Medium";
  color: #fff;
  text-align: center;
  font-size: 40px;
}
.contact-form-section .form-section label{
  color: #fff;
  font-weight: 300;
}

.contact-form-section .form-section .default-btn{width: 100%;}

.contact-form-section .form-section .form-control {
  background-color: #ffffff3b;
  color: #fff;
  font-weight: 300;
}
::-webkit-input-placeholder { 
  color: #fff;
}
#name::placeholder,
#phoneno::placeholder,
#email::placeholder,
#pick_loc::placeholder,
#drop_loc::placeholder {
  color: #fff;
}
.contact-form-section .form-content h3 {
  font-size: 52px;
}
.contact-form-section .whatsapp-sec p{
  font-family: "PP Eiko Medium";
  font-size: 26px;
  color: #000;
  margin-bottom: 0;
}
.contact-form-section a{
  font-family: "PP Eiko Medium";
  font-size: 46px;
  color: #E3AD28;
}
.contact-form-section .contact-car {
  position: absolute;
  bottom: 0;
  width: 464px;
  z-index: -1;
}
.contact-form-section .whatsapp-sec {
  display: flex;
  align-items: center;
  justify-content: start;
}
.contact-form-section .whatsapp-sec svg{
  color: #E3AD28;
  font-size: 40px;
  margin-right: 20px;
}


.testimonial-section{
  position: relative;
  background-image: url(../images/testimonial-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0;
  margin-top: 80px;
}
.testimonial-section .testimonial-box .testi-title {
  color: #000;
  font-size: 52px;
  font-weight: 600;
  line-height: 55px;
}
.testimonial-section .arrow-left{
  left: 12%;
  z-index: 1;
}
.testimonial-section .arrow-right{
  right: 12%;
  z-index: 1;
}
.testi-detailbox {
  position: relative;
}
.testi-detailbox::before{
  content: '';
  background-image: url(../images/quote.png);
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.client-logo-section {
  position: relative;
  padding: 80px 0 30px;
}
.client-logo-section .slick-slider {
  margin-bottom: 30px;
}
.logo-slider-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px 0px;
  padding-bottom: 25px;
}

.logo-slider-img img {
  width: 120px;
  margin: 0 auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.press-section{
  padding-top: 80px;
}
.press-section .press-title {
  font-size: 52px;
  color: #000;
  font-weight: 500;
}
.press-section .press-detail-box .press-img{
  min-height: 70px;
  margin-bottom: 20px;
  width: 290px;
}
.press-section .press-slider .press-detail-box p {
  width: 86%;
}
.press-section .press-detail-box .readmore {
  color: #999;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.press-section .press-detail-box .readmore:hover{
  color: #E3AD28;
}
.press-section .press-slider {
  margin-top: 30px;
}
.press-section .slick-dots {
  position: relative;
  bottom: 0px;
}
.press-section .press-slider .slick-list{
  margin-bottom: 40px;
}
.press-section .press-slider .slick-dots li button{
  border: 1px solid #999;
}
.press-section .press-slider .press-detail-box {
  margin: 0 30px;
}





.moment-section{
  /* background-image: url(../images/moment-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 210px 0; */
  position: relative;
}
.moment-section .moment-content {
  position: absolute;
  bottom: 100px;
}
.moment-section h4 {
  color: #fff;
}
.moment-section p {
  color: #fff;
  text-align: center;
  font-family: "PP Eiko Medium";
  font-size: 22px;
}
.fleet-section {
  position: relative;
  padding: 100px 0;
  text-align: right;
}
.fleet-section .fleet-bg {
  /* position: absolute;
  right: 0;
  top: 0;
  width: 700px; */
  width: 50%;
}
.fleet-section .container-box{
  position: absolute;
  margin: 0 auto;
  text-align: left;
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  right: 0;
}
.blog-section{
  padding: 0 0px 80px;
}
.blog-section .blog-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border-radius: 10px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.blog-section .blog-box:nth-child(even){
  margin-top: 30px;
}
.blog-section .blog-wrap:hover .blog-image{
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  /* transform: scale(1.05); */
}
.blog-section .blog-wrap .blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-section .blog-image .blog-date {
  position: absolute;
    bottom: 0;
    padding: 8px 18px;
    font-size: 14px;
    color: #E3AD28;
    text-transform: uppercase;
    background: rgb(0 0 0 / 60%);
    /* border: 1px solid rgb(255 255 255 / 50%); */
    transition: all 0.2s ease-In;
    display: inline-block;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.blog-section .blog-detail{padding: 10px 0px;}
.blog-section .blog-detail .blog-title {
  color: #000;
  font-size: 26px;
  line-height: 30px;
  font-family: "PP Eiko Medium";
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.blog-section .blog-detail .readmore {
  color: #999;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-section .blog-wrap:hover .readmore{
  color: #E3AD28;
}
.blog-section .blog-btn-wrap {
  margin-top: 40px;
  text-align: center;
}

.contact-section{
  background-image: url(../images/contact-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 200px 0;
  text-align: center;
}
.contact-section h4, .contact-section h4, .contact-section a{
  color: #fff;
}
.contact-section p{
  color: #fff;
  text-align: center;
}
.contact-section .subheading{
  color: #fff;
  font-family: "PP Eiko Medium";
  font-size: 36px;
  text-align: center;
  display: block;
}
.contact-section span{
  margin: 20px 0;
  color: #fff;
  font-family: "PP Eiko Medium";
  font-size: 22px;
  text-transform: uppercase;
  display: block;
}
.contact-section span::after {
  display: inline-block;
  content: "";
  border-top: .1rem solid #E3AD28;
  width: 4rem;
  margin: 0 1rem;
  transform: translateY(-1rem);
}
.contact-section span::before {
  display: inline-block;
  content: "";
  border-top: .1rem solid #E3AD28;
  width: 4rem;
  margin: 0 1rem;
  transform: translateY(-1rem);
}



.faq-area {
  position: relative;
  margin: 80px 0px;
}

.faq-accord {
  margin-top: 30px;
  border-top: 1px solid #E3AD28;
}

.faq-accord .card {
  border: 0px;
  border-radius: 0px;
  background: none;
  border-bottom: 1px solid #ccc;
}

.faq-accord .card-header {
  padding: 0px;
  margin-bottom: 0;
  background-color: transparent;
  border: 0px;
}

.faq-accord .card-header button {
  outline: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-shadow: none;
  padding: 18px 0px;
  border: 0px;
  border-radius: 0px;
}

.faq-accord .card-header button span {
  color: #000;
  font-size: 20px;
      font-family: "PP Eiko Medium";
  text-align: left;
  text-transform: capitalize;
}

.faq-accord .card-header .fa-angle-up,
.faq-accord .card-header .fa-angle-down {
  color: #000;
  font-size: 18px;
  margin-left: 8px;
}

.faq-accord .card-body {
  padding: 0px 0px 15px;
}

.faq-accord .card-body p {
  /* color: rgb(255 255 255 / 70%); */
  width: 90%;
  margin: 0px;
}

.faq-accord .card-body p a {
  color: #383d41;
  /* color: rgb(255 255 255 / 70%); */
  transition: all 0.2s ease-In;
}

.faq-accord .card-body p a:hover {
  color: #E3AD28;
}

.faq-blur {
  position: absolute;
  bottom: -200px;
  right: 0;
  width: 1000px;
  filter: blur(180px);
  z-index: -2;
  opacity: 0.9;
}
.request-section {
  position: relative;
  padding: 20px 0 40px;
}

.request-section .request-content .request-text {
  font-size: 20px;
  font-family: "PP Eiko Medium";
  text-align: center;
  color: #000;
  margin-top: 20px;
}
.request-section .request-content .request-btn {
  text-align: center;
  margin-top: 40px;
}

/* Blog css */
.banner-section{
  position: relative;
  margin-top: -51px;
  margin-bottom: 80px;
}
.banner-section .banner-content{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner-section .banner-content .heading{
  color: #fff;
}
.banner-section .banner-content .small-title{
  color: #E3AD28;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
}
.blog-detail-box .blog-title{
  font-size: 30px;
  line-height: 35px;
}

.blog-detail-box .blog-content h2,
.blog-detail-box .blog-content h3,
.blog-detail-box .blog-content h4,
.blog-detail-box .blog-content h5,
.blog-detail-box .blog-content h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.author-social-share {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #E0E0E0;
  padding: 20px 0;
  margin-top: 20px;
}
.author-details {
  display: flex;
  align-items: center;
}
.author-social-share .author-details p{
  margin-bottom: 0;
}
.author-social-share .author-details img{
  margin-right: 10px;
}
.author-social-share .menu-social li a{
  background: #E0E0E0;
  color: #000;
}
.author-social-share .menu-social li a:hover{
  color: #fff;
}
.blog-detail-box {
  padding: 20px 0 80px;
  position: relative;
}
.blog-detail-box .blog-content .blog-img {
  border-radius: 10px;
  margin-bottom: 30px;
}
.blog-detail-box .blog-content ul{
  padding: 0 20px;
  list-style: numeric;
}
.blog-detail-box .nxt-prv-blog-box .blog-sec .blog-img {
  width: 240px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 10px;
}
.nxt-prv-blog-box .blog-sec {
  display: flex;
  align-items: center;
  width: 46%;
}
.nxt-prv-blog-box .blog-sec p {
  margin-bottom: 5px;
}
.nxt-prv-blog-box .blog-sec .next-blog-title{
  font-family: "PP Eiko Medium";
  font-size: 20px;
  color: #000;
  line-height: 23px;
}
.nxt-prv-blog-box .blog-sec a{
  color: #999;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nxt-prv-blog-box .blog-sec a:hover{
  color: #E3AD28;
}
.nxt-prv-blog-box {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}





.footer-section{
  position: relative;
}
.footer-section .footer-img {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.footer-section .footer-logo .footer-logo {
  width: 160px;
}
.footer-section .bootom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-section .copyright-content {
  border-bottom: 1px solid #ccc;
}
.footer-section .copyright-content p {
  color: #000;
  text-transform: uppercase;
}
.footer-menu.main-menu ul li a {
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
}