@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");
@import url("../css/default.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
/* @import url(../css/aos.css); */
@import url(..//css/header.css);
html {
    scroll-behavior: smooth;
}

:root {
    /* background Colors: */
    --bg-color-ffffff: #ffffff;
    --bg-color-000000: #000000;
    --bg-color-164123: #164123;
    --bg-color-e7931c: #e7931c;
    
    /* Colors: */
    --color-e7931c: #e7931c;
    --color-000000: #000000;
    --color-ffffff: #ffffff;
    /* Font/text values */
    --font-family-poppin: "Poppins", sans-serif;
    --font-size-12: 12px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-22: 22px;
    --font-size-24: 24px;
    --font-size-65:65px;
    --font-size-150:150px;

    --line-height-inherit: inherit;
    
}
.form-control{
    color:#fff !important
}
.form-control:focus{
    color:#fff;
}

* {
    outline: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-poppin);
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-22);
    color: var(--color-000000);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.clr {
    width: 100%;
    float: left;
}

.img {
    width: 100%;
}

a,
.btn,
button {
    color: var(--color-000000);
    outline: none;
    border: none;
    cursor: pointer;
    outline: 0;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
select:focus,
.custom-select:focus,
.form-control:focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.btn:hover,
a:hover,
button:hover {
    color: var(--bg-color-brown);
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
a:hover{
    color: var(--color-e7931c);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-400);
    text-transform: normal;
    margin-bottom: 15px;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

header,
footer,
section {
    overflow: hidden;
    width: 100%;
    float: left;
}
.navbar-expand-xl {
  justify-content: end;
}
.roundimg {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

hr {
    border-bottom: 1px solid var(--color-636363) !important;
    border-top: 0 none;
    margin: 20px 0 20px;
    padding: 0;
    opacity: 1;
}

p {
    font-size: var(--font-size-18);
    color: var(--color-000000);
    margin-bottom: 12px;
    line-height: 25px;
    text-align: justify;
}

.shadow {
    -webkit-box-shadow: 0 15px 20px 0 rgb(0 10 70/10%) !important;
    box-shadow: 0 15px 20px 0 rgb(0 10 70/10%) !important;
}

.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}

.rounded-box{
  border-radius: 65px;
}

.section-space {
    padding: 100px 0;
}

.section-title {
    font-size: var(--font-size-65);
    color: var(--color-e7931c);
    font-weight: 800;
    text-transform: capitalize;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    margin: 10px 0px;
  
}




/* link button */

.getintouch-btn {
    display: inline-block;
}

.getintouch-btn a{
    font-size: var(--font-size-16);
    line-height: var(--line-height-inherit);
    color: var(--color-ffffff) !important;
    background-color: var(--bg-color-e7931c);
    font-weight: 800;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    padding:10px 25px !important;

}


.getintouch-btn a:hover {
    color: var(--bg-color-brown);
    letter-spacing: 0.2em;
}


.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transform: scale(1);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.img-zoom img:hover {
    transform: scale(1.1);
    border-radius: 0px 0px 20px 0px;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-green {
    color: var(--color-dark-green);
}


/* headerstart */

.main-header {
    background-color: var(--bg-color-164123);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 9;
        /* background: rgb(32, 88, 126);
    background: linear-gradient( 77deg, rgba(32, 88, 126, 1) 0%, rgba(80, 146, 179, 1) 100%); */
}



.header-content {
    padding-top: 130px;
    padding-bottom: 55px;
}

.header-content h1 {
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-42);
    line-height: var(--line-height-54);
    letter-spacing: -0.02em;
    color: var(--color-dark-green);
}



.main-header .shrink-header {
    display: block;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.main-header.shrink .shrink-header {
    position: fixed;
    background:var(--bg-color-164123);
    background-size: contain;
    background-repeat: repeat-x;
    display: inline-block;
    top: 0;
    z-index: 9;
    width: 100%;
    display: block;
    animation: smoothScroll 1.5s forwards;
    background-position: bottom;
}

.main-header.shrink .header-content {
    padding-top: 250px;
}

.main-header.shrink .fix-logo-none {
    display: none;
}

@keyframes smoothScroll {
    0% {
        /* transform: translateY(-60px); */
        opacity: 0;
    }
    100% {
        /* transform: translateY(0px); */
        opacity: 1;
    }
}

.shrink-header i {
    font-size: 1.5rem;
    color: var(--color-white);
    line-height: 0;
}

.login {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    margin-left: 15px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.login i {
    margin-right: 10px;
}

.burger {
    cursor: pointer;
    padding: 15px;
}

#header {
    width: 100%;
    background: var(--bg-color-112b25);
    color: #323537;
    z-index: 9999;
}

#header:hover {
    background-color: #000000;
}

#header .header_inner {
    position: relative;
    margin: 0 auto;
    width: 1300px;
    text-align: center;
}

#header nav {
    position: relative;
    width: 100%;
    height: 100px;
    font-size: 1em;
}

#header nav>ul {
    position: relative;
    text-align: right;
}

#header nav>ul>li {
    display: inline-block;
    vertical-align: top;
}


.mobile-menu{
  display: none;
}


#header nav>ul>li>.navMenu,
#header nav>ul>li>.navMenuAll {
    position: relative;
    display: block;
    height: 100%;
    padding: 0 20px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    line-height: 100px;
    cursor: pointer;
    z-index: 999999;
}

#header nav>ul>li>.navMenu a {
    color: var(--color-ffffff);
}

#header nav>ul>li> .navMenu a:hover {
    color: var(--color-ffa200);
}

#header nav .navSub {
    position: fixed;
    display: none;
    right: 0;
    top: 100px;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    background: var(--bg-color-111a23);
    transition: 0.3s;
    z-index: 999999;
    left: 0;
    /* margin-left: 0px; */
}

#header nav .navSub .sub_contents .subMenu {
    position: relative;
    margin: 10px;
    padding: 10px;
    width: 95vw;
    height: 100%;
    vertical-align: top;
    box-sizing: border-box;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    /* left: -15%; */
}

#header nav .navSub .sub_contents .subMenu li {
    display: block;
    float: left;
    width: 25%;
    margin: 20px 0;
    cursor: pointer;
    font-size: 1.05em;
    letter-spacing: -0.02em;
    text-align: center;
    text-transform: capitalize;
}

#header nav .navSub .sub_contents .subMenu li a {
    padding: 10px 0 10px;
    color: var(--color-000000);
}

#header nav .navSub .sub_contents .subMenu li a:hover {
    color: var(--bg-color-ffa200);
}


/* 
#header nav .navSub .sub_contents .subMenu li:hover:before {
    content: "+";
    color: #fff;
    font-weight: 400;
} */

#header nav>ul>li:hover>.navMenu+.navSub {
    display: block;
    height: 200px;
}

#header nav .navSub::after {
    color: var(--color-ffffff);
    position: absolute;
    content: "+";
    padding-left: 2px;
}

#header.sticky nav>ul>li>.navMenu:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

#header nav>ul>li>.navMenu:hover,
#header nav>ul>li>.navMenu:active {
    color: rgba(255, 255, 255, 1);
}

#header nav>ul>li>.navMenu.over {
    color: rgba(255, 255, 255, 1);
    border-bottom: 5px solid #fff;
    z-index: 999999999;
}

#header nav .navSub.navSub_h {
    display: block;
    height: 200px;
}

#header nav>ul>li>.navMenu {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

#header nav>ul>li>.navMenu::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.05em;
    bottom: 0;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

#header nav>ul>li>.navMenu:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* STICKY */

.sticky,
.sticky nav {
    height: 50px;
}

.sticky nav .logo {
    height: 24px;
    width: 100px;
    margin: 12px 0px;
    cursor: pointer;
}

.contents {
    background: #aaa;
}


/* 
for mobile */

.menu {
    color: var(--color-white);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}


.menu-wrapper li a {
  color: var(--color-ffffff);
  text-transform: uppercase;
  margin-left: 30px;
}
.menu-wrapper li a:hover {
    color: var(--color-e7931c);
}

.menu-wrapper>ul>li>a:after,
.menu-wrapper>ul>li>a:before {
    position: absolute;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.menu-wrapper>ul>li>a:before {
    bottom: 8px;
    display: block;
    height: 3px;
    width: 0%;
    content: "";
    background-color: #0092ff;
    left: 50%;
    transform: translate(-50%, 0);
}

.menu-wrapper>ul>li:not(.nav_contact)>a:hover {
    color: #0092ff;
}

.menu-wrapper>ul>li>a.current:after,
.menu-wrapper>ul>li>a:hover:before {
    width: calc(100% - 50px);
}

.menu-wrapper>ul>li a.current:after,
.menu-wrapper>ul>li a.current:before,
.menu-wrapper>ul>li>a:hover:after,
.menu-wrapper>ul>li>a:hover:before {
    opacity: 1;
}

.menu i {
    font-size: 2.2rem;
    color: var(--color-white);
}

.menu i:hover {
    color: var(--color-dark-green);
}


/* headerstart */


/* //main section// */


/* Swiper arrows */

.swiper-pagination-bullet-active {
    background-color: #fff;
}

.swiper-button-next {
    background-color: var(--bg-color-ffffff);
    border-radius: 100%;
    padding: 3px;
    width: 40px;
    height: 40px;
}

.swiper-button-prev {
    background-color: var(--bg-color-ffffff);
    border-radius: 100%;
    padding: 3px;
    width: 40px;
    height: 40px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: none;
}

.swiper-button-prev {
    background-image: none;
}


/* Swiper pagination */

.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 50px;
}

.swiper-button-prev i {
    color: var(--color-000000);
    font-size: var(--font-size-35);
    line-height: 0;
}

.swiper-button-next i {
    color: var(--color-000000);
    font-size: var(--font-size-35);
    line-height: 0;
}

.main-slider {
    background: var(--bg-color-000000);
}

.main-slider img:nth-child(0) {
    object-fit: cover;
    height: 100vh;
    filter: brightness(0);
}

.main-slider img {
    object-fit: cover;
    height: 100vh;
    filter: brightness(0.8);
}

.main-slider::after {
    background: rgb(0, 0, 0);
    background: linear-gradient( 180deg, rgb(0 0 0 / 72%) 0%, rgba(0, 212, 255, 0) 100%);
    height: 100%;
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    top: 0;
    z-index: 0;
}

.main-slider .swiper-navigation {
    position: relative;
    bottom: 54px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    left: -16px;
}

.main-slider .swiper-navigation .swiper-button-prev {
    position: absolute;
    right: 60px;
    left: auto;
}

.main-slider .slider-slide {
    position: relative;
}

.main-slider .slider-content {
    position: absolute;
    top: 40%;
    color: var(--color-ffffff);
    z-index: 9;
    width: 100%;
}

.main-slider h3 {
    font-size: var(--font-size-88);
    font-weight: var(--font-weight-700);
    margin-bottom: 0px;
    text-align: left;
    width: 55%;
}

.main-slider h4 {
    font-size: var(--font-size-22);
    line-height: var(--line-height-33);
    font-weight: var(--font-weight-300);
    margin-bottom: 50px;
}


/* center-section */

.center-section {
    border: 1px solid var(--color-d0d0d0);
    border-radius: 0px 0px 20px 0px;
    position: absolute;
    top: 35%;
    color: var(--bg-color-ffffff);
    left: 10%;
}

.center-section-img img {
    height: 100vh;
    object-fit: cover;
}

.center-content {
    padding: 32px;
}

.center-section .section-heading {
    margin-bottom: 0;
    padding: 20px 0;
}

.feature-slider .img-cover img {
    object-fit: cover;
    object-position: left center;
}


/* //footer// */

.main-footer {
    background-color: var(--bg-color-111a23);
    padding: 80px 0;
    color: var(--color-ffffff);
    font-size: var(--font-size-16);
    font-weight: 800;
}

.main-footer .main-title {
    text-transform: uppercase;
}

.copyright {
    background-color: var(--bg-color-brown);
    padding: 19px 0;
    color: var(--color-white);
    font-size: var(--font-size-16);
}

.social-media ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.social-media li {
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background-color: var(--bg-color-white);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 2px;
    margin-right: 14px;
    text-transform: capitalize;
}

.social-media li i {
    color: var(--color-dark-green);
    width: 17px;
}

.social-media .title {
    letter-spacing: 0.15em;
    font-size: var(--font-size-16);
    margin-bottom: 20px;
    font-weight: var(--font-weight-500);
}

.footer-left p {
    margin-right: 92px;
    margin-bottom: 40px;
    color: var(--bg-color-white);
}

.links li {
    margin-bottom: 10px;
    text-transform: capitalize;
}

.links li a,
.main-footer .category a {
    color: var(--color-white);
    font-weight: var(--font-weight-500);
}

.links li a:hover,
.main-footer .category a:hover {
    color: var(--color-ffa200);
}


/* .quick-links .col-lg-2 {
    flex: 0 0 auto;
    width: 20%;
} */

.quick-links .main-title {
    margin-bottom: 50px;
    font-size: var(--font-size-16);
    line-height: var(--line-height-33);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.quick-links .col-6 {
    margin-bottom: 30px;
}

.quick-links .main-title::after {
    width: 70%;
    background-color: var(--bg-color-white);
    height: 1px;
    content: "";
    position: relative;
}

.main-footer .category {
    padding-left: 30px;
}

.main-footer .category .title {
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-29);
    line-height: var(--line-height-38);
    /* identical to box height */
    letter-spacing: -0.02em;
}

.main-footer .category li {
    margin-bottom: 30px;
}
.footer-copyright{
  font-weight: 300;
}
.footer-copyright a {
  color: #8f8f8f;
}

/* //footer// */


/* The side navigation menu */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    right: 0;
    box-shadow: -4px 0px 15px #00000040;
    opacity: 0;
    z-index: 9999;
}

.sidenav .closebtn {
    float: right;
}

.sidenav .closebtn i {
    line-height: 0;
    left: 17px;
    position: relative;
    top: -9px;
    font-size: 48px;
    color: darkgray;
}

.menu-box {
    padding: 20px 45px 0px 45px;
}


.menu-box .category-list ul {
    padding: 0;
    margin: 0;
}

.menu-box .category-list li {
    font-size: var(--font-size-22);
    line-height: var(--line-height-28);
    color: var(--color-dark-grey);
    font-weight: var(--font-weight-500);
    letter-spacing: -0.02em;
    padding: 15px 0;
    border-top: 1px solid var(--color-c5c5c5);
    font-family: var(--font-family-ibm-san);
}

.menu-box .category-list li:last-child {
    border-bottom: 1px solid var(--color-c5c5c5);
}

.social-media-menu h6 {
    letter-spacing: -0.02em;
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-12);
    line-height: var(--line-height-18);
    color: var(--color-dark-grey);
    font-family: var(--font-family-ibm-san);
    margin-bottom: 25px;
}

.whatsapp-bg {
    background: var(--bg-color-48b749);
}

.instagram-bg {
    background: radial-gradient( 130.55% 130.54% at 13.29% 100.47%, #fa8f21 9%, #d82d7e 78%);
}

.facebook-bg {
    background: var(--bg-color-3b5998);
}

.twitter-bg {
    background: var(--bg-color-0094FF);
}

.youtube-bg {
    background: var(--bg-color-FF0000);
}

.linkedin-bg {
    background: var(--bg-color-0A66C2);
}

.social-media-menu {
    margin-top: 0px;
}

.social-media-menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.social-media-menu li {
    border-radius: 100%;
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

.social-media-menu li i {
    color: var(--color-white);
    border-radius: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    color: var(--color-ffffff);
}

.menu-button-other {
    border: 1px solid var(--color-c5c5c5);
    padding: 15px 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-family: var(--font-family-ibm-san);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.menu-button-other .icon {
    width: 10%;
}

.menu-button-other .content {
    width: 90%;
}

.menu-button-other i {
    padding: 15px;
    color: var(--bg-color-48b749);
}


/* The side navigation menu end*/


.banner-text .main-heading,
.banner-text .sub-section-heading,
.banner-text .side-bar-title {
    color: var(--color-dark-green);
}

.banner-text-black .main-heading,
.banner-text-black .sub-section-heading,
.banner-text-black .side-bar-title {
    color: var(--color-000000);
}

.banner-text-black .sub-section-heading {
    font-weight: var(--font-weight-500);
}

.banner-text-black .side-bar-title {
    font-weight: var(--font-weight-400);
}

.sidenav1 {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 90px;
}

.sidenav1 .closebtn {
    float: right;
    float: right;
    text-align: right;
    margin-bottom: 40px;
}

.sidenav1 .closebtn i {
    font-size: 50px;
    line-height: 0;
}

.sidenav1 {
    top: 0;
    box-shadow: -4px 0px 15px #00000040;
}

.mobile-editor-pick-carousel .swiper-button-next,
.mobile-editor-pick-carousel .swiper-button-prev {
    display: none;
}


/* backtotop */

#backtotop {
    display: inline-block;
    background-color: var(--bg-color-000000);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border-radius: 50%;
}

#backtotop::after {
    content: "\F145";
    font-family: bootstrap-icons !important;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 50px;
    color: #fff;
}

#backtotop:hover {
    cursor: pointer;
    background-color: #333;
}

#backtotop:active {
    background-color: #555;
}

#backtotop.show {
    opacity: 1;
    visibility: visible;
}

/* about section  */

.about-section{
  position: relative;
  overflow: visible;
}
.about-bg-path-img{
  position: absolute;
  top: -5%;
  left: -3%;
}
.section-content-left{
  padding-top: 250px;
}

.about-img2{
  margin-top: 150px;
}
.section-content-right{
  padding-top: 150px;
}
.section-content-center{
  position: relative;
}
.section-content-center .plus-sign {
  position: relative;
  top: 32px;
  right: -93%;
  width: 100%;
  z-index: 9;
}

.section-content-left{
  position: relative;
}
.section-title-replica {
  text-transform: uppercase;
  font-size: var(--font-size-150);
  color: var(--color-e7931c);
  opacity: 0.2;
  font-weight: 800;
  position: absolute;
  top: -97%;
}
.about-section .section-content-left{
    padding-right: 30px;
}
.about-section .about-bg-path-img2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 8;
}
.section-content-right .about-path-img {
    position: absolute;
    top: 109%;
    right: 8%;
    z-index: 9;
    overflow: visible;
}

.about-bg-path-img1 {
  position: absolute;
  bottom: -1%;
  transform: rotate(303deg);
  left: 26%;
  z-index: 8;
}
.section-content-center .rounded-box {
    overflow: hidden;
}
.section-content-center .rounded-box img{
    width: 100%;
}
.section-content-right .rounded-box img{
    width: 100%;
}
.section-content-center .img-hover img{
  position: absolute;
  z-index: 999;
  bottom: -22px;
  left: -43px;
}

.section-content-right .img-hover img{
  position: absolute;
  z-index: 999;
  bottom: 10%;
  right: -39px;
      width: 150px;
}

/* corporate travel */

.corporate-travel-section{
  background-image: url(../images/corporate-banner.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding: 300px 0;
  position: relative;
  overflow: visible;
}

.corporate-travel-section .section-title-replica {
    text-transform: uppercase;
    font-size: var(--font-size-150);
    color: var(--color-e7931c);
    opacity: 0.2;
    font-weight: 800;
    position: absolute;
    top: 35%;
    margin-top: -82px;
    left: 14%;
}

/* partner section */
.partners-box {
    padding: 80px 0;
    border-bottom: 1px solid #ccc;
    }
    .partners-box:last-child {
        border-bottom: transparent;
        }
        .partners-section .section-content-left {
            padding-top: 150px;
        }
.partners-box .partners-logo{
margin-bottom: 30px;
}
.partners-box .partners-logo img{
    filter: drop-shadow(1px 5px 8px lightgrey);
    }
.partner-content{margin-right: 10px;}
partners-section
.partners-container .swiper-slide:nth-child(odd) .img-hover img {
    position: absolute;
    display: flex;
    height: 66%;
    left: -9%;
    margin-top: 25px;
    width: 185px;
    z-index: 9;
    top: -33%;
    transform: rotate(182deg);
}

.partners-container .swiper-slide:nth-child(even) .img-hover img {
    position: absolute;
    display: flex;
    height: 66%;
    right: -9%;
    margin-top: 25px;
    width: 185px;
    z-index: 9;
    bottom: -33%;
}
.partners-section {
    position: relative;
}
.partners-section .about-bg-path-img {
    left: 46%;
    position: absolute;
    top: 0%;
    width: 79%;
    /* right: 27%; */
    transform: rotate(322deg);
}
.partner-content-right {
    margin-right: 0px;
    margin-left: 10px;
}
.swiper-container  {
    padding-bottom: 85px !important;
}
.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
  }

  .swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
  }
.swiper-navigation {
    position: absolute;
    display: flex;
    height: 100px;
    left: 0;
    margin-top: 0;
    bottom: 0;
}
.swiper-pagination {
    position: absolute;
    display: flex;
    height: 100px;
    left: 0;
    margin-top: 0;
    bottom: 0;
}
.swiper-navigation .swiper-button-next{
    padding: 10px;
    background-image: none;
    background-color: var(--bg-color-e7931c);
    width: 50px;
    height:50px;
}
.swiper-navigation .swiper-button-next {
    position: relative;
    left: 70px;
}
.swiper-navigation .swiper-button-prev{
    padding: 10px;
    background-image: none;

    background-color: var(--bg-color-e7931c);
    width: 50px;
    height: 50px;
}
.swiper-button-prev i {
    color: #ffffff;
    font-size: var(--font-size-35);
    line-height: 0;
    font-size: 30px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    height: 100%;
}
.swiper-button-next i {
    color: #ffffff;
    font-size: var(--font-size-35);
    line-height: 0;
    font-size: 30px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    height: 100%;
}
/* vision-mission-section */
.vision-mission-section{
    background: rgb(231,147,28);
    background: linear-gradient(90deg, rgba(231,147,28,1) 53%, rgba(0,0,0,1) 53%);
    overflow: hidden;
}
.vision-section .section-title{
   color: var(--color-ffffff);

  }
  .vision-section p{
    color: var(--color-ffffff);
 
   }

  .vision-section {
    padding: 100px 0;
    padding-right: 50px;
    height: 100%;
    /* align-items: center; */
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.mission-section{
    background-image: url(../images/mission-bg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
    height: 100%;
    padding: 100px 0;

  }

  /* .founder-section */
  .founder-section{
 
    position: relative;
    height: 100%;
    padding: 100px 0;
    overflow: hidden;

  }
  .founder-img-box{
    display: flex;
    justify-content: center;
}
.founder-img-box::after {
    height: 200px;
    background-color: var(--bg-color-e7931c);
    width: 51%;
    position: absolute;
    content: '';
    bottom: 22%;
    right: -11%;
    z-index: -1;
}
  .founder-img {right: -55%;position: relative;width: 42%;z-index: 999;margin-top: 6rem;top: -10rem;}
.founder-section .section-title{
    color: var(--color-e7931c);
 
   }
   .founder-section p{
     color: var(--color-000000);
  
    }

.vision-section .section-title-replica {
   
    left: 31%;
}
  /* .getintouch-section */

  .getintouch-section{
    background-image: url(../images/contact-bg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
    height: 100%;
    padding: 100px 0;
  }
  .getintouch-section .section-title {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

  
.form-wrap{
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	
}
.form-wrap:before{
	content: "";
	width: 90%;
	height: calc(100% + 60px);
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
	top: -30px;
	z-index: -1;
	opacity: 0.8;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.form-group{
	margin-bottom: 25px;
}
.form-group > label{
	display: block;
	font-size: 18px;	
	color: #000;
}
.custom-control-label{
	color: #000;
	font-size: 16px;
}
.form-control {
    height: 75px;
    border: 2px solid #fff;
    padding: 0px 30px;
    font-size: 16px;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}
.form-control:focus{
	border-color: #ff8500;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
    background-color: transparent;
    color: #fff !important;
filter: blur(1);
}
textarea.form-control{
	height: 160px;
	padding-top: 15px;
	resize: none;
}
.form-control::placeholder{
    color: #fff !important;

}

.btn {
    padding: 20px;
    font-size: 18px;
    letter-spacing: 0.050em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    border-radius: 15px;
}

.btn-primary {
  color: #fff;
  background-color: #ff8500;
  border-color: #ff8500;
}

.btn-primary:hover {
  color: #00bcd9;
  border-color: #00bcd9;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.btn-primary:focus, .btn-primary.focus {
  border-color: #ff8500;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

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

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.contactus-section{
    background-image: url(../images/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
    height: 100%;
    padding-top: 100px;
}

.address-box .icon {
    border: 3px solid #fa8f21;
    padding: 5px;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}
.address-box p{font-size: 15px;font-weight: 600;}
.address-box .icon img {
    width: 34px;
}
.copyright-section{
    padding: 30px;
    font-size: var(--font-size-18);
    background-color: var(--bg-color-164123);
    color: var(--color-ffffff);
    text-align: center;
    position: relative;
}

.swiper-container {
    width: 100%;
    height: 100%;
  }
  .swiper-slide {
    text-align: center;
    font-size: var(--font-size-18);
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    counter-increment: swiper-slide;
    
  }
.swiper-slide img {
width: 100%;
height: 100%;
border-radius: 30px;
max-height: 100%;
object-fit: cover;
}
.swiper-pagination-bullet-active {
background-color: var(--bg-color-ffffff);
}

.navbar-expand-xl .navbar-nav .nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    color: #fff;
}
.navbar-expand-xl .navbar-nav .nav-link:hover{
    color: var(--bg-color-e7931c);
}
.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
}
.footer-bottom a{
    color: var(--color-e7931c);
}


.box {
    background: url(../images/banner/bYSnuNE.jpg);
    background-size: cover;
    /* border: 2px solid #000; */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: movimiento 5s linear 0s infinite;
    box-shadow: 0 0 25px RGBA(255,255,255, 0.10), 0px 0px 0px #000 inset, 2px 2px 25px #000 inset, -54px -60px 7px RGBA(0,0,0, 0.2) inset, 25px 25px 45px RGBA(0,0,0, 0.15) inset;
    transform: rotateX(6deg) rotateY(6deg) rotateZ(6deg);
    position: absolute;
    filter: brightness(2);
}
  
  @keyframes movimiento {
    0% { background-position:0 0 }
    100% { background-position:355px 0 }
  }

  .lg-tree {
    margin-left: -15px;
    animation: sway2 8s ease-in-out reverse forwards infinite;
    transform-origin: 40% bottom;
}

@keyframes sway2 {
    0%, 100%{ transform: rotate(1deg);}
    50%{ transform: rotate(-2deg); }
}
  .banner-section {
  background-image: url(../images/banner/banner-bg.jpg);
background-size: cover; 
padding: 200px 0;
overflow: hidden;
position: relative;
height: 100vh;
}
.banner-section .title {
    font-size: 60px;
    font-weight: 800;
    color: var(--color-e7931c);
    line-height: 74px;
    position: absolute;
    left: 0;
    bottom: 141px;
    width: 350px;
}

  .aeroplane {
    position: absolute;
    content: '';
    top: 23%;
    z-index: 0;
    left: 7%;
}


.banner-content {
    width: 369px !important;
    /* justify-content: revert; */
    display: flex;
    float: right;
    position: relative;
    top: -37px;
    left: -10%;
}

.orange-path {
    
    justify-content: revert;
    display: flex;
    float: right;
    position: absolute;
    top: 20%;
    left: 41%;
}


/* right-side-social */

.right-side-social-midea {
    position: fixed;
    content: "";
    bottom: 76px;
    right: 14px;
    z-index: 9999;
}

ul.footer-social-media {
    padding: 0;
    margin: 0;
}

ul.footer-social-media li {
    list-style: none;
    margin-top: 0;
}

ul.footer-social-media li a i {
    width: 50px;
    padding: 10px 15px;
    height: 50px;
    background: #fff;
    border-radius: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    transition: 0.6s;
}

a.blantershow-chat:hover {
    box-shadow: 1px 1px 8px #222222ad;
    transition: 0.6s;
}

ul.footer-social-media li a i:hover {
    box-shadow: 1px 1px 8px #222222ad;
    transition: 0.6s;
}

ul.footer-social-media li a {
    text-decoration: none;
}

ul.footer-social-media li a i.fa.fa-linkedin {
    color: #fff;
    background: #0a66c2;
}

ul.footer-social-media li a i.fa.fa-facebook {
    color: #fff;
    background: #3e5895;
}

ul.footer-social-media li a i.fa.fa-whatsapp {
    background: #349d3b;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
}



/* backt to top */

#button {
    display: inline-block;
    background-color: #e7931c;
    width: 47px;
    height: 47px;
    text-align: center;
    border-radius: 0;
    position: fixed;
    bottom: 23px;
    right: 15px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#button::after {
    content: "\F148";
    font-family: 'bootstrap-icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 46px;
    color: #fff;
    text-decoration: none;
    border: 0;
}

#button:hover {
    cursor: pointer;
    background-color: #040404;
}

#button:active {
    background-color: #164123;
}

#button.show {
    opacity: 1;
    visibility: visible;
    border: 0;
    text-decoration: none;
    border-radius: 50%;
}


.section-content-right .img-hover img {
    position: absolute;
    z-index: 999;
    bottom: -82px;
    right: -39px;
    width: 150px;
}
.section-content-right .img-hover img{
    overflow: hidden;
}
.section-content-center .img-hover img {
    position: absolute;
    z-index: 999;
    bottom: -22px;
    left: -43px;
    width: 34%;
}


p.float-end.Scan-Me {
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 10px;
}

.hide-sm {
    display: block;
}

.hide-lg {
    display: none;
}


@media screen and (min-device-width: 992px) and (max-device-width: 1199px) {
    .getintouch-btn a {
        font-size: var(--font-size-16);
        line-height: var(--line-height-inherit);
        color: var(--color-ffffff) !important;
        background-color: var(--bg-color-e7931c);
        font-weight: 600;        
        letter-spacing: 2px;
        border-radius: 100px;
        padding: 10px 10px !important;
    }
    .aeroplane {
        position: absolute;
        content: '';
        top: 16%;
        z-index: 0;
        width: 46%;
        left: 40%;
    }
    .banner-content {
        width: 36%;
        top: 47%;
        left: 45%;
    }

    .about-bg-path-img {
        position: absolute;
        top: -5%;
        left: -3%;
        width: 50%;
    }
    .about-section .about-bg-path-img2 {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 8;
        width: 35%;
    }
    .section-title {
        font-size: 50px;
    }
    .section-title-replica {        
        font-size: 83px;
    }

    .corporate-travel-section .section-title-replica{
        font-size: 87px;
        line-height: 80px;
        position: relative;
    }

    .about-bg-path-img1 {
        position: absolute;
        bottom: -1%;
        transform: rotate(303deg);
        left: 28%;
        z-index: 8;
        width: 50%;
    }

    section#corporate .offset-lg-6 {
        margin-left: 45%;
    }
    .mission-section .offset-md-7 {
        margin-left: 70px;
        width: 90%;
    }
}


/* tab */

@media all and (max-width: 991px) {

    .width-100{
        width: 100%;
        flex: 100%;
    }

    .hide-sm {
        display: none;
    }

    .hide-lg {
        display: block;
    }

    .width-50{
        width: 50%;
        flex: 50%;
    }

    .mission-section .offset-md-7 {
        margin-left: 15px;
        width: 100%;
    }

    
    .banner-content {
    
        top: 0;
        left: 0;
    }

    .box {
        
        width: 47px;
        height: 47px;
        margin-top: 8px;       
        margin-left: 12px;
        
    }

 
    .aeroplane {
        position: absolute;
        content: '';
        top: 17%;
        z-index: 9;
        width: 64%;
        left: 22%;
    }

    .lg-tree {
        margin-left: 0px;
        animation: sway2 8s ease-in-out reverse forwards infinite;
        transform-origin: 40% bottom;
        width: 75%;
    }
    .banner-section {
        background-image: url(../images/banner/banner-bg.jpg);
        background-size: cover;
        padding: 0;
        overflow: hidden;
    }

    

    .section-title-replica{
        font-size: 58px;
        line-height: 67px;
        margin-top: -18px;
    }

    /* about  */
    .about-img img {
        width: 100%;
        object-fit: cover;
    }
    .section-content-left {
        padding-top: 400px;
    }
    .about-section {
        position: relative;
        overflow: hidden;
    }
    .section-content-center .plus-sign {
        position: relative;
        top: 32px;
        right: inherit;
        left: 10%;
    }
    .section-title {
        font-size: 50px;
        line-height: 57px;
    }
    .about-section .about-bg-path-img2 {
        position: absolute;
        top: 8%;
        right: 0;
        width: 49%;
    }
    .about-bg-path-img {
        top: 7%;
        left: 0;
        width: 42%;
    }
    .plus-sign img {
        width: 11%;
        position: relative;
        right: 4%;
    }
    .section-content-right {
        padding-top: 55px;
    }

    .section-content-right .about-path-img {
       top: 0%;
       right: 53%;
       width: 63%;
    }
    .about-bg-path-img1 {
        bottom: 5%;
        transform: rotate(324deg);
        left: 63%;
        width: 44%;
    }

    /* corporate */




    .corporate-travel-section .section-title-replica {
        text-transform: uppercase;
        font-size: 58px;
        line-height: 67px;
        top: -97%;
        margin-top: -82px;
        left: 2%;
    }


    /* partners */
    .partners-box {
        padding: 80px 0;
        border-bottom: 1px solid #ccc;
        padding-top: 30px;
    }
    .partner-content {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .swiper-slide img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        max-height: 100%;
        object-fit: cover;
    }

    .partner-content-right {
        margin-right: 0px;
        margin-left: 0;
        padding-top: 40px;
        margin-bottom: 0;
    }

    .partners-box {
        padding: 30px 0px;
        border-bottom: 1px solid #ccc;
        padding-top: 34px;
    }

    /* mission-vision */

    .vision-mission-section {
        background: rgb(231,147,28) !important;
    }

    .mission-section {
        background-image: url(../images/mission-bg.jpg);
        background-repeat: no-repeat;
        background-position-x: center;
        background-size: cover;
        position: relative;
        height: 400px;
        width: 100%;
        background-position-y: bottom;
        padding: 100px 0;
        padding-top: 82px;
    }
    .mision-section:before {
        position: absolute;
        content: "";
        background: #000;
        left: 0;
        height: 400px;
        width: 100%;
    }

    /* founder */
    .founder-img img {
        width: 79%;
        height: fit-content;
        position: relative;
        top: 66rem;
    }

    .founder-img {
        right: 0;
        position: relative;
        z-index: 999;
        margin-top: 0;
    }

    .founder-img-box {
        display: flex;
        justify-content: center;
        height: 400px;
    }

    /* form */

    .form-control {
        height: 75px;
        border: 2px solid #fff;
        padding: 0px 10px;
    }

    .form-control {
        height: 48px;
        border: 2px solid #fff;
        padding: 0px 10px;
        font-size: 16px;
        border-radius: 3px;
    }

    /* footer */

    .float-end {
        float: left !important;
        width: 100% !important;
        margin-top: 10px;
    }
    .form-wrap {       
        padding-bottom: 0;  
    }

    .copyright-box {
        justify-content: center !important;
    }


    .address-box {
        margin-bottom: 20px;
    }

    .address-box p {
        font-size: 16px;
        font-weight: 600;
    }

}


/* responsive-Mobile */


@media all and (max-width:767px) {
.box {

    filter: brightness(2.8);
}
    .banner-section .title {
        font-size: 34px;
        line-height: 43px;
    }

    .box {
        width: 56px;
        height: 56px;
        margin-top: 2px;
        margin-left: 6px;
    }

    .banner-content {
        width: 78%;
        display: flex;
        float: right;
        position: relative;
        top: 37%;
        left: 13%;
    }
    .aeroplane {
        position: absolute;
        content: '';
        top: 32%;
        z-index: 9;
    }

    .orange-path {
        width: 85%;
        height: auto;
        justify-content: revert;
        display: flex;
        float: right;
        position: absolute;
        top: 22%;
        left: 4%;
    }

    .aeroplane {
        position: absolute;
        content: '';
        top: 17%;
        z-index: 8;
    }


    .banner-section {
        background-image: url(../images/banner/banner-bg.jpg);
        background-size: cover;
        padding: 0;
        overflow: visible;
    }

    

    .section-title-replica{
        font-size: 58px;
        line-height: 67px;
        margin-top: 26px;
    }

    /* about  */
    .about-img img {
        width: 100%;
        object-fit: cover;
    }
    .section-content-left {
        padding-top: 186px;
    }
    .about-section {
        position: relative;
        overflow: visible;
    }
    .section-content-center .plus-sign {
        position: relative;
        top: 32px;
        right: inherit;
        left: 10%;
    }
    .section-title {
        font-size: 50px;
        line-height: 57px;
    }
    .about-section .about-bg-path-img2 {
        position: absolute;
        top: 1%;
        right: 0;
        width: 60%;
    }
    .about-bg-path-img {
        top: 1%;
        left: 0;
        width: 80%;
    }
    .plus-sign img {
        width: 11%;
        position: relative;
        right: 4%;
    }
    .section-content-right {
        padding-top: 55px;
    }

    .section-content-right .about-path-img {
       top: 12%;
       right: 36%;
       width: 60%;
    }
    .about-bg-path-img1 {        
        bottom: 1%;
        transform: rotate(324deg);
        left: 13%;       
    }

    /* corporate */

    .corporate-travel-section {
        background-position-x: 22%;
        background-size: cover;
        padding: 0px 15px;
        padding-top: 0;
        position: relative;
    }

 

    .corporate-travel-section .section-title-replica {
        text-transform: uppercase;
        font-size: 58px;
        line-height: 67px;
        top: -97%;
        margin-top: -82px;
        left: 2%;
    }

 

    /* partners */
    .partners-box {
        padding: 80px 0;
        border-bottom: 1px solid #ccc;
        padding-top: 30px;
    }
    .partner-content {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .swiper-slide img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        max-height: 100%;
        object-fit: cover;
    }

    .partner-content-right {
        margin-right: 0px;
        margin-left: 0;
        padding-top: 40px;
        margin-bottom: 0;
    }

    .partners-box {
        padding: 30px 0px;
        border-bottom: 1px solid #ccc;
        padding-top: 34px;
    }

    /* mission-vision */

    .vision-mission-section {
        background: rgb(231,147,28) !important;
    }

    .mission-section {
        background-image: url(../images/mission-bg.jpg);
        background-repeat: no-repeat;
        background-position-x: center;
        background-size: cover;
        position: relative;
        height: 400px;
        width: 100%;
        background-position-y: bottom;
        padding: 100px 0px;
        padding-top: 82px;
        padding-right: 15px;
    }
    .mision-section:before {
        position: absolute;
        content: "";
        background: #000;
        left: 0;
        height: 400px;
        width: 100%;
    }

    /* founder */
    .founder-img img {
        width: 100%;
        height: fit-content;
        position: relative;
        top: 84rem;
    }

    .founder-img {
        right: 0;
        position: relative;
        z-index: 999;
    }

    .founder-img-box {
        display: flex;
        justify-content: center;
        height: 400px;
        position: relative;
    }

    /* form */

    .form-control {
        height: 75px;
        border: 2px solid #fff;
        padding: 0px 10px;
    }

    .form-control {
        height: 48px;
        border: 2px solid #fff;
        padding: 0px 10px;
        font-size: 16px;
        border-radius: 3px;
    }

    /* footer */

    .float-end {
        float: left !important;
        width: 100% !important;
        margin-top: 10px;
    }
    .form-wrap {       
        padding-bottom: 0;  
    }

    .copyright-box {
        justify-content: start !important;
    }


    .address-box {
        margin-bottom: 20px;
    }

    .address-box p {
        font-size: var(--font-size-24);
        font-weight: 600;
    }

    p.float-end.Scan-Me {
        text-align: left;
    }

}

@media screen and (min-device-width: 600px) and (max-device-width: 767px) {

    .banner-content {
        width: 83%;
        display: flex;
        float: right;
        position: absolute;
        top: 59%;
        left: 13%;
    }
    .about-section .about-bg-path-img2 {
        position: absolute;
        top: 6%;
        right: 0;
        width: 34%;
    }
    .about-bg-path-img {
        top: 6%;
        left: 0;
        width: 62%;
    }
    .section-content-right .about-path-img {
        position: absolute;
        top: 31%;
        right: 66%;
        z-index: 8;
    }


}




