@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

body {
    background: white;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    font-size: 14px;
}

a,
a:hover,
a:active {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

button,
button:hover,
button:focus {
    outline: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.page-wrapper {
    overflow: hidden;
}

.d-none {
    display: none !important;
}

.d-flex {
    -webkit-display: flex;
    -moz-display: flex;
    -o-display: flex;
    -ms-display: flex;
    display: -webkit-box;
    display: flex;
}

.justify-content-center {
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-items-center {
    -moz-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}


/* Start Top bar */
.top-bar {
    background: #fff;
}

.top-bar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar .content .left {
    display: flex;
    align-items: center;
}

.top-bar .icon {
    background: #f0f0f0;
    padding: 10px;
}

.top-bar .select-input {
    cursor: pointer;
    position: relative;
    margin-right: 25px;
    padding-left: 10px;
}

.top-bar .select-input::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 25px;
    background: #b1b1b1;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.top-bar .select-input:last-of-type::before {
    display: none;
}

.top-bar .select-input select {
    border: none;
    padding: 0 30px 0 10px;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: #474746;
    font-weight: 500;
    position: relative;
}

.top-bar .select-input select:focus {
    outline: none;
    box-shadow: none;
}

.top-bar .select-input i {
    font-size: 11px;
    color: #9c9b9b;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.top-bar .select-input:last-of-type select {
    padding: 0 20px 0 10px;
}

.top-bar .right {
    display: flex;
    align-items: center;
}

.top-bar .right a {
    display: inline-block;
    color: #dfa432;
    transition: all .5s ease-in-out;
    padding-right: 20px;
    font-weight: 500;
}

.top-bar .right a:hover {
    color: #131313;
}

.top-bar .right .lang {
    position: relative;
}

.top-bar .right .lang::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 25px;
    background: #b1b1b1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.top-bar .right .lang .select-input {
    margin-right: 0;
}

.top-bar .right .lang .select-input img {
    position: relative;
    top: 3px;
    right: -9px;
    z-index: 5;
}

/* End Top bar */

/* Start Main Header */
.main-header {
    background: #222323;
    color: white;
    position: relative;
}

.main-header::before {
    content: '';
    position: absolute;
    right: 0;
    width: 16.7%;
    background-image: linear-gradient(to right, #a27015, #dda130);
    height: 100%;
    z-index: 1;
}

.main-header .mobo-icon {
    cursor: pointer;
    display: none;
}

.main-header .mobo-icon span {
    display: block;
    width: 30px;
    height: 2px;
    margin-bottom: 6px;
    background: white;
    transition: all .3s ease-in-out;
}

.main-header .mobo-icon span:nth-of-type(2) {
    width: 20px;
}

.main-header .mobo-icon span:last-of-type {
    width: 10px;
}

.main-header .mobo-icon span:last-of-type {
    margin-bottom: 0;
}

.main-header .mobo-icon:hover span {
    background: #ca9127;
    width: 30px !important;
}

.main-header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .menu {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 4;
}

.main-header .menu ul {
    display: flex;
    align-items: center;
}

.main-header .menu ul li {
    position: relative;
}

.main-header .menu ul li::after {
    content: '';
    position: absolute;
    height: 33px;
    width: 1px;
    border-radius: 50px;
    background: #ca9127;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.main-header .menu ul li:last-of-type::after {
    display: none;
}

.main-header .menu ul li a {
    color: white;
    transition: all .4s ease-in-out;
    padding: 30px 20px;
    display: inline-block;
    text-transform: capitalize;
    font-size: 15px;
}


.main-header .menu ul li a:hover {
    color: #ca9127;
}

.main-header .menu ul li.active a {
    font-weight: 600;
    color: #ca9127;
}

.main-header .menu .big-button {
    margin-left: 20px;
}

.main-header .menu .big-button a {
    color: white;
}

.mobile-side {
    position: fixed;
    width: 280px;
    background: #222323;
    height: 100%;
    left: -280px;
    z-index: 888;
    top: 0;
    bottom: 0;
    padding: 90px 40px 40px;
    overflow-y: auto;
    transition: all .5s ease-in-out;
}

.mobile-side ul li {
    padding: 20px 0;
    border-bottom: 1px solid #ca9127;
}

.mobile-side ul li:last-of-type {
    border-bottom: 0;
}

.mobile-side ul li a {
    color: white;
    transition: all .4s ease-in-out;
    text-transform: capitalize;
    font-size: 14px;
}

.mobile-side ul li a:hover {
    color: #ca9127;
}

.mobile-side ul li.active a {
    font-weight: 600;
    color: #ca9127;
}

.mobile-side .cross {
    position: absolute;
    top: 40px;
    right: 35px;
    cursor: pointer;
    font-size: 20px;
    color: white;
    transition: all .3s ease-in-out;
}

.mobile-side .cross:hover {
    color: #ca9127;
}

.open {
    left: 0;
}

/* End Main Header */

/* Start Main Slider */
.main-slider {
    position: relative;
}

.main-slider .slide {
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.main-slider .slide .cover {
    height: 100%;
    /*    background-image: url(../images/Slider/cover.png);*/
    background-position: center;
    background-size: cover;
}

.main-slider .slide .cover .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-slider .slide .cover .content {
    color: white;
}

.main-slider .slide .cover .content h2 {
    font-size: 65px;
    font-weight: 500;
    line-height: 1.1;
    color: #222323;
}

.main-slider .slide .cover .content.two h2 {
    position: relative;
    top: -70px;
}

.main-slider .owl-item.active .slide .cover .content h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 70px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.main-slider .slide .cover .content h2 span {
    font-size: 57px;
    font-weight: 700;
}

.main-slider .slide .cover .content h2 span.color {
    font-weight: 500;
    color: #ca9127;

}

.main-slider .owl-carousel .owl-nav {
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
    width: 100%;
}

.main-slider .owl-carousel .owl-nav button.owl-next {
    color: white;
    position: absolute;
    right: 0;
    font-size: 40px;
}

.main-slider .owl-carousel .owl-nav button.owl-prev {
    color: white;
    position: absolute;
    left: 0;
    font-size: 40px;
}

.main-slider .owl-carousel .owl-dots {
    position: absolute;
    left: 7%;
    right: 0;
    width: 100%;
    bottom: 60px;
}

.main-slider .owl-carousel button.owl-dot span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
}

.main-slider .owl-carousel button.owl-dot:first-of-type span {
    margin-left: 0;
}

.main-slider .owl-carousel button.owl-dot.active span {
    background: #d4992b;
}

/* End Main Slider */

/* Start Tabs Section */
.tabs-section {
    padding-bottom: 40px;
}

.tabs-section ul {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to right, #a27015, #dda130);
}

.tabs-section ul li {
    flex-grow: 1;
    text-align: center;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: white;
    padding: 20px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.tabs-section ul li:hover,
.tabs-section ul li.current {
    background: #90671a;
}

.tabs-section ul li img {
    margin-right: 10px;
}

.tabs-section ul li::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    left: 0;
    background: #8f6619;
}

.tabs-section ul li:first-of-type::before {
    display: none;
}

.tabs-section .inner-con {
    background: #f5f5f5;
    padding: 40px 45px 25px;
    position: relative;
    display: none;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards
}

.tabs-section .inner-con.current {
    display: inherit;
    opacity: 1;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none
    }

}


.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 66666666666 !important;

}

.popup .popup__content {
    width: 650px;
    padding: 45px 55px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    color: #fff;
    transition: all .3s ease-in-out;

}

.popup .popup__content p {
    font-weight: 500;
    font-size: 16.5px;
    line-height: 1.8;
}

.popup .popup__content p strong {
    font-size: 16.5px;
}

.popup .popup__content .close {
    position: absolute;
    right: -9px;
    top: -9px;
    width: 33px;
    display: block;
    height: 33px;
    display: flex;
    align-items: center;
    background: #fff;
    justify-content: space-evenly;
    border-radius: 50%;
    cursor: pointer;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 16px;
    height: 2px;
    background: #dfa432;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}


.tabs-section .inner-con .hide {
    font-size: 14px;
    cursor: pointer;
}

.tabs-section .inner-con .hide i {
    background: #575756;
    color: white;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    text-align: center;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    display: inline-block;
}

.tabs-section .inner-con select {
    height: 43px;
    width: 100%;
    background: white;
    border-radius: 4px;
    border: 1px solid #ececec;
    padding: 0 8px;
    color: #c4c4c4;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

.tabs-section .inner-con select:focus {
    outline: none;
    box-shadow: none;
    border-color: #222323;
}

.tabs-section .inner-con .form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tabs-section .inner-con .form-group2 {
    position: relative;
    z-index: 3;
}

.tabs-section .inner-con .form-group .icon {
    position: absolute;
    right: 13px;
    font-size: 10.5px;
    color: #c4c4c4;
    z-index: 1;
}

.tabs-section .inner-con .form-group2 .icon {
    position: absolute;
    right: 12px;
    font-size: 10.5px;
    color: #c4c4c4;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.tabs-section .inner-con .form-group label {}

.tabs-section .inner-con select.two {
    width: auto;
    margin-right: 5px;
    padding-right: 40px;
}

.tabs-section .inner-con select.two.th {
    padding-right: 37px;
}

.tabs-section .inner-con input {
    height: 43px;
    background: white;
    border-radius: 4px;
    border: 1px solid #ececec;
    padding: 0 10px;
    color: #c4c4c4;
    cursor: pointer;
    transition: all .3s ease-in-out;
    width: 150px;
}

.tabs-section .inner-con input:focus {
    outline: none;
    border-color: #222323;
}

.tabs-section .inner-con input::placeholder {
    color: #c4c4c4;
}

.tabs-section .inner-con .form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-right: 10px;
    color: #c4c4c4;
}

.tabs-section .inner-con .rad {
    display: flex;
    align-items: center;
    margin-right: 40px;
    margin-bottom: 20px;
    position: relative;
    top: 9px;
}

.tabs-section .inner-con .rad input {
    height: 25px;
    border: none;
    width: 25px;
    margin-right: 10px;
}

.tabs-section .inner-con .rad label {
    color: #222323;
}

.tabs-section .inner-con button {
    height: 43px;
    width: 100%;
    background: #dfa432;
    border-radius: 4px;
    border: 1px solid #dfa432;
    padding: 0 6px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    transition: all .3s ease-in-out;
}

.tabs-section .inner-con button.b {
    width: 48%;
    margin-right: 2%;
}

.tabs-section .inner-con button.b:last-of-type {
    margin-right: 0;
}

.tabs-section .inner-con button:hover {
    background: #222323;
    border-color: #222323;
}

/* End Tabs Section */


/* Start About Section */
.about-section .top-about {
    background-image: url(../images/About/back1.png);
    background-size: cover;
    min-height: 760px;
    padding-top: 330px;
    color: white;
}

.about-section .top-about .text h3 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 52px;
}

.about-section .top-about .image {
    text-align: center;
}

.about-section .top-about .text p {
    margin-top: 30px;
    font-weight: 500;
    line-height: 1.7;
    font-size: 15px;
    text-align: justify;
    text-align-last: left;
}

.about-section .middle-about {
    background-image: url(../images/About/back2.png);
    background-size: cover;
    min-height: 713px;
    color: white;
}

.about-section .middle-about .container,
.about-section .middle-about .row {
    min-height: 650px;
}

.about-section .middle-about h3 {
    font-size: 65px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
}

.about-section .middle-about h3 span {
    font-size: 45px;
    font-weight: 800;
}

.about-section .middle-about p {
    max-width: 450px;
    font-size: 15.5px;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
}

.about-section .middle-about p span {
    font-weight: 700;
}

.about-section .bottom-about {
    padding: 100px 0 110px;
}

.about-section .bottom-about .content {
    text-align: center;
}

.about-section .bottom-about h3 {
    font-size: 35px;
    font-weight: 800;
    color: #131313;
    margin-bottom: 30px;
}

.about-section .bottom-about h3 span:first-of-type {
    position: relative;
    top: -15px;
}

.about-section .bottom-about h3 span:last-of-type {
    position: relative;
    bottom: -8px;
}

.about-section .bottom-about h3 strong {
    font-size: 35px;
    font-weight: 600;
    color: #131313;
}

.about-section .bottom-about h3 span {
    font-size: 35px;
    color: #be8b1f;
}

.about-section .bottom-about p {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    max-width: 89%;
    margin: 0 auto 40px;
    text-align: justify;
    text-align-last: center;
}

.about-section .bottom-about .sign h6 {
    font-size: 16px;
    font-weight: 800;
}

.about-section .bottom-about .sign span {
    font-weight: 500;
    line-height: 2;
    font-size: 15px;
}

/* End About Section */

/* Start Our Values Section */
.our-values {
    background-image: url(../images/Ourvalues/back.png);
    background-size: cover;
    color: white;
    padding: 90px 0 60px;
    text-align: center;
}

.our-values h3 {
    font-weight: 800;
    font-size: 55px;
    margin-bottom: 30px;
}

.our-values p {
    font-weight: 500;
    line-height: 1.7;
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 80px;
}

.our-values .box {
    margin-bottom: 30px;
}

.our-values .box .circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .4s ease-in-out;
}

.our-values .box .circle:hover {
    box-shadow: 0 0 20px #fff;
}

.our-values .box h6 {
    text-transform: uppercase;
    font-size: 15px;
}

/* End Our Values Section */

/* Start Our fleet Section */
.our-fleet {
    padding: 80px 0 100px;
    color: #131313;
    position: relative;
}

.our-fleet .title {
    text-align: center;
}

.our-fleet .title h3 {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 15px;
}

.our-fleet .title p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    color: #757574;
    max-width: 820px;
    margin: auto;
    margin-bottom: 45px;
}

.our-fleet .slide {
    text-align: center;
}

.our-fleet .slide .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-fleet .slide h3 {
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 20px;
    color: #3c3c3b;
    margin-top: 70px;
}

.our-fleet .slide p {
    line-height: 1.7;
    font-weight: 500;
    font-size: 15px;
    max-width: 880px;
    margin: auto;
}

.our-fleet .slide p span {
    font-weight: 700;
}

.our-fleet .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.our-fleet .owl-carousel .owl-nav button.owl-next,
.our-fleet .owl-carousel .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    background: #1d1d1b;
    transition: all .5s ease-in-out;
    position: absolute;

}

.our-fleet .owl-carousel .owl-nav button.owl-prev {
    left: 90px;
}

.our-fleet .owl-carousel .owl-nav button.owl-next {
    right: 90px;
}

.our-fleet .owl-carousel .owl-nav button.owl-next:hover,
.our-fleet .owl-carousel .owl-nav button.owl-prev:hover {
    background: #d09923;
}

/* End Our fleet Section */

/* Start Our Parteners Section */
.our-parteners {
    background: rgb(239 239 239);
    background: url(../images/Ourparteners/back.png);
    background-size: cover;
    padding: 200px 0 80px;
    /*    border-bottom: 2px solid red;*/
}

.our-parteners .title {
    text-align: center;
}

.our-parteners .title h3 {
    font-size: 53px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #131313;
}

.our-parteners .title p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    color: #757574;
    max-width: 820px;
    margin: auto;
    margin-bottom: 50px;
}

.owl-carousel .owl-item img {
    width: auto;
}


.our-parteners .box {
    background: white;
    height: 100px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
}

.our-parteners .box img {
    filter: grayscale(100%);
    transition: all .4s ease-in-out;
}

.our-parteners .box:hover img {
    filter: none;
}

.our-parteners .owl-carousel .owl-dots.disabled,
.our-parteners .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.our-parteners .owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.our-parteners .owl-carousel button.owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 3px;
    display: inline-block;
    border-radius: 50%;
    background: #e3e4e3;
}

.our-parteners .owl-carousel button.owl-dot.active span {
    background-image: linear-gradient(to right, #a27015, #dda130);
}

.our-parteners .owl-carousel .owl-nav button.owl-next,
.our-parteners .owl-carousel .owl-nav button.owl-prev {
    width: 20px;
    height: 20px;
    background: #222323;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: all .4s ease-in-out;
    justify-content: center;
}

.our-parteners .owl-carousel .owl-nav button.owl-next i,
.our-parteners .owl-carousel .owl-nav button.owl-prev i {
    font-size: 12px;
    transition: all .4s ease-in-out;
}

.our-parteners .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    margin-top: 41px;
}

.our-parteners .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 43%;
    transform: translateX(-50%);
    margin-top: 41px;
}

.our-parteners .owl-carousel .owl-nav button.owl-next:hover,
.our-parteners .owl-carousel .owl-nav button.owl-prev:hover {
    background: #d09923;
}

/* End Our Parteners Section */

/* Start Contact Section */
.contact-section {
    background: url(../images/Contactus/back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 850px;
    padding-top: 380px;
    margin-bottom: -40px;
}

.contact-section .title {
    margin-bottom: 80px;
    color: white;
    font-size: 38px;
    position: relative;
    display: inline-block;
}

.contact-section .title::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 150px;
    background: #d09923;
    border-radius: 10px;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-section .contact-info {
    margin-bottom: 30px;
    border-bottom: 1px solid #4d4e4e;
}

.contact-section .col-lg-6 {
    position: relative;
}

.contact-section .col-lg-6::before {
    content: '';
    position: absolute;
    right: 20px;
    height: 95%;
    width: 1px;
    background: #4d4e4e;
    top: 45%;
    transform: translateY(-50%);
}

.contact-section .col-lg-6::after {
    content: '';
    position: absolute;
    left: 20px;
    height: 95%;
    width: 1px;
    background: #4d4e4e;
    top: 45%;
    transform: translateY(-50%);
}


.contact-section .contact-info .li {
    display: flex;
}

.contact-section .contact-info .li .social {
    display: flex;
    align-items: center;
}

.contact-section .contact-info .li .social a img {
    margin-right: 5px;
    transition: all .4s ease-in-out;
}

.contact-section .contact-info .li .social a img:hover {
    transform: scale(1.1);
}

.contact-section .contact-info span {
    display: block;
    margin-bottom: 5px;
    color: white;
    font-weight: 300;
    font-size: 15px;
}

.contact-section .contact-info a {
    font-weight: 600;
    font-size: 15px;
    display: block;
    line-height: 1.3;
    color: white;
    transition: all .3s ease-in-out;
}


.contact-section .contact-info a:hover {
    color: #d09923;
}

.contact-section .contact-info .li > div:nth-of-type(2) {
    padding-left: 15px;
    position: relative;
    padding-bottom: 30px;
}

.contact-section .contact-info:last-of-type {
    border-bottom: none;
}

.contact-section .map {
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 40px;
   
}

.contact-section .map.current {
    display: block;
}

.contact-section .map-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px 20px;
    transition: all .3s ease-in-out;
    border-radius: 4px;
}

.contact-section .map-list li {
    flex-grow: 1;
    background: #dfa432;
    text-align: center;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 400;
    color: white;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.contact-section .map-list li.current,
.contact-section .map-list li:hover {
    background: #90671a;
}

/* End Contact Section */

/* Start Footer Section */
.footer-section .top-footer {
    padding: 60px 0 30px;
    background: #1e1f1f;
    color: white;
}

.footer-section .top-footer .footer-box {
    margin-bottom: 30px;
}

.footer-section .top-footer .footer-box .logo {
    margin-bottom: 20px;
}

.footer-section .top-footer .footer-box p {
    margin-top: 10px;
    font-weight: 700;
    font-size: 13.5px;
    line-height: 1.6;
    color: #3a3a39;

}

.footer-section .top-footer .footer-box .head {
    font-weight: 700;
    font-size: 21.5px;
    padding-top: 20px;
    margin-bottom: 33px;
}

.footer-section .top-footer .footer-box ul li {
    margin-top: 15px;
}

.footer-section .top-footer .footer-box ul li a {
    font-size: 14px;
    color: white;
    transition: all .3s ease-in-out;
}

.footer-section .top-footer .footer-box ul li a:hover {
    color: #d09923;
}

.footer-section .top-footer .footer-box .social {
    position: relative;
    top: -10px;
}

.footer-section .top-footer .footer-box .social img {
    transition: all .3s ease-in-out;
    margin-left: 5px;
}

.footer-section .top-footer .footer-box .social img:first-of-type {
    margin-left: 0;
}

.footer-section .top-footer .footer-box .social img:hover {
    transform: scale(1.2);
}

.footer-section .top-footer .footer-box .kayan {
    color: white;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    transition: all .3s ease-in-out;
    position: relative;
    top: -10px;
}

.footer-section .top-footer .footer-box .kayan:hover {
    color: #e6493e;
}

.footer-section .copyright {
    padding: 25px 0;
    background: #1b1c1c;
}

.footer-section .copyright p {
    color: #5e5e5e;
    font-size: 13px;
    font-weight: 700;
}

.footer-section .copyright img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .35;
}

.footer-section .copyright .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-section .sub input {
    display: block;
    width: 100%;
    background: #232424;
    border: 1px solid #3f4040;
    padding: 10px 15px;
    height: 50px;
    font-size: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    color: white;
    transition: all .3s ease-in-out;
}

.footer-section .sub input:focus {
    outline: none;
    border-color: white;
}

.footer-section .sub input::placeholder {
    color: #3f4040;
    font-size: 15px;
    font-weight: 400;
}

.footer-section .sub button {
    border-radius: 3px;
    background: #d09923;
    border: none;
    display: inline-block;
    padding: 11px 15px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.footer-section .sub button:hover {
    background: white;
    color: #d09923;
}

.footer-section .sub .d-flex {
    display: flex;
    justify-content: flex-end;
}

/* End Footer Section */

.preloader-bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #222323;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader__element {
    height: 2px;
    width: 17%;
    background: #fff;
    margin-top: 30px;

}

.loader__element::before {
    content: '';
    display: block;
    background-color: #c39021;
    height: 2px;
    width: 0;
    animation: getWidth 2.5s ease-in infinite;
}

@keyframes getWidth {
    100% {
        width: 100%;
    }
}

/* Start To Top */

.to-top {
    width: 40px;
    height: 40px;
    background: #222323;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .3s ease-in-out;
    position: fixed;
    bottom: 40px;
    right: 50px;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, .16) !important;
    opacity: 0;
}

.to-top img {
    display: block;
    transform: rotate(-90deg);
    width: 19px;
}

.to-top:hover {
    background: #fff;
}

.scroll {
    opacity: 1;
}

/* End To Top */



/* -- Start Career Page -- */
.career-page {
    padding: 110px 0 200px;
}

.career-page .title-page {
    font-weight: 800;
    font-size: 45px;
    text-align: center;
    color: rgb(223 164 50);
    margin-bottom: 80px;
}

.career-page h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.career-page .opening {
    padding-bottom: 30px;
}

.career-page .opening span {
    border: 1px solid #cccccc;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
}

.career-page .apply-form .form-group {
    margin-bottom: 15px;
    position: relative;
}

.career-page .apply-form .form-group .ar {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 22px;
    transform: translateY(-50%);
    z-index: -1;
}

.career-page .apply-form input,
.career-page .apply-form select {
    display: block;
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding: 0 20px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    transition: all .3s ease-in-out;
}

.career-page .apply-form input::placeholder {
    color: #bbbbbb;
}

.career-page .apply-form select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    color: #bbbbbb;
}

.career-page .apply-form input:focus,
.career-page .apply-form select:focus {
    outline: none;
    border-color: rgb(223 164 50);
}

.career-page .upload {
    margin-top: 30px;
}

.career-page .upload small {
    display: block;
    text-align: center;
    margin-top: 13px;
    font-size: 13px;
    color: #b5b5b5;
}

.career-page .upload .one {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding: 0 20px;
    border-radius: 4px;
    background: #f6f6f6;
    color: #a0a09f;
    border: 1px solid #a0a09f;
    cursor: pointer;
}

.career-page .danger {
    font-size: 14.5px;
    line-height: 1.5;
    margin: 80px auto 40px;
    text-align: center;
    color: #e30e2a;
    font-weight: 500;
}

.career-page p {
    font-size: 14.5px;
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
    max-width: 1075px;
    margin: auto;
    margin-bottom: 50px;
}

.career-page button {
    display: block;
    width: 100%;
    height: 45px;
    background: #444545;
    text-align: center;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    font-size: 15.5px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.career-page button:hover {
    background: #d09923;
}

/* -- End Career Page -- */


/* -- Start Destination Page -- */
.detination-page {
    padding: 80px 0;
    background: url(../images/map.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 1500px;
}

.detination-page .title-page {
    font-weight: 800;
    font-size: 45px;
    text-align: center;
    color: rgb(223 164 50);
    margin-bottom: 20px;
}

.detination-page p {
    font-size: 18px;
    line-height: 1.5;
    color: #575756;
    font-weight: 500;
    text-align: center;
    margin: auto;
}

.detination-page img {
    display: none;
}

/* -- End Destination Page -- */


/* -- Start contact Page -- */
.contact-page {
    padding: 80px 0 60px;
}

.contact-page .send-message h3 {
    color: white;
    text-align: center;
    background-image: linear-gradient(to right, #a27015, #dda130);
    font-size: 25px;
    padding: 10px 0;
    font-weight: 800;
    margin-bottom: 40px;
}

.contact-page .send-message .form-group {
    margin-bottom: 15px;
}

.contact-page .send-message input[type="text"],
.contact-page .send-message textarea {
    display: block;
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding: 0 20px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    transition: all .3s ease-in-out;
}

.contact-page .send-message input[type="text"]:focus,
.contact-page .send-message textarea:focus {
    border-color: #d09923;
    outline: none;
}

.contact-page .send-message textarea {
    padding: 15px 20px;
    resize: none;
    font-size: 15px;
    height: 150px;
}

.contact-page .send-message label {
    color: #b6b6b6;
    font-size: 14px;
    position: relative;
    top: -2px;
}

.contact-page .send-message button {
    color: white;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    background: #d09923;
    border: none;
    transition: all .3s ease-in-out;
}

.contact-page .send-message button:hover {
    background: #444545;
}

.contact-page .side {
    text-align: center;
    padding: 0 80px;
}

.contact-page .side p {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 30px;
}

.contact-page .side h4 {
    font-weight: 800;
    font-size: 24px;
    color: #d09923;
}

.contact-page .near-you {
    padding: 150px 0 40px;
}

.contact-page .near-you h1 {
    color: rgb(34 35 35);
    font-weight: 800;
    font-size: 50px;
    text-align: center;
    margin-bottom: 70px;
}

.contact-page .near-you .parent {
    width: 265px;
    height: 265px;
    border: 1px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    margin: auto;
    cursor: pointer;
}


.contact-page .near-you .parent:hover,
.contact-page .near-you .parent.current {
    border: 1px solid #d09923;
}

.contact-page .near-you .circle {
    background: red;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-page .near-you .circle::before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, .2);
    transition: all .3s ease-in-out;
    z-index: 1;
    opacity: 0;

}

.contact-page .near-you .circle:hover::before {
    opacity: 1;
}


.contact-page .near-you .parent.current .circle::before {
    opacity: 1;
}

.contact-page .near-you .circle h4 {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    transition: all .3s ease-in-out;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.contact-page .near-you .circle:hover h4 {
    opacity: 1;
}

.contact-page .near-you .parent.current .circle h4 {
    opacity: 1;
}


.contact-page .owl-carousel .owl-nav button.owl-next,
.contact-page .owl-carousel .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    background: #1d1d1b;
    transition: all .5s ease-in-out;
    position: absolute;
}

.contact-page .owl-carousel .owl-nav button.owl-next:hover,
.contact-page .owl-carousel .owl-nav button.owl-prev:hover {
    background: white;
    color: : #1d1d1b;
}

.contact-page .owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.contact-page .owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.contact-page .owl-carousel .owl-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 100%;
}

.contact-page .owl-carousel button.owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 3px;
    display: inline-block;
    border-radius: 50%;
    background: #e3e4e3;
}

.contact-page .owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.contact-page .owl-carousel button.owl-dot.active span {
    background-image: linear-gradient(to right, #a27015, #dda130);
}

.contact-page .page-info {
    background: url(../images/bb.jpg);
    background-size: cover;
    background-position: top;
    padding: 70px 30px 40px 30px;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
    display: none;
    opacity: 0;
}

.contact-page .page-info h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-page .page-info.current {
    display: inherit;
    opacity: 1;
}

.contact-page .page-info ul li {
    font-size: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.contact-page .page-info ul li:last-of-type {
    margin-bottom: 0;
}

.contact-page .page-info ul li img {
    margin-right: 10px;
}

.contact-page .page-info .map {
    overflow: hidden;
    border-radius: 9px;
    height: 230px;
}

/* -- End contact Page -- */


/* -- Start Program Page -- */
.program-page .banner {
    background: url(../images/backc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.program-page .banner::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(24deg, rgb(0 0 0) 0%, rgb(90 67 18 / 30%) 54%, rgb(2 1 1 / 90%) 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.program-page .banner h3 {
    color: white;
    font-size: 67px;
    font-weight: 800;
    margin-bottom: 10px;
}

.program-page .banner p {
    color: white;
    font-size: 19.5px;
    max-width: 580px;
    font-weight: 300;
}

.program-page .info {
    padding: 80px 0;
}

.program-page .info h3 {
    font-size: 65px;
    font-weight: 800;
    color: #dfa432;
}

.program-page .info p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
}

.program-page .slider-p {
    padding: 60px 0;
    position: relative;
    background: url(../images/backp.jpg);
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    z-index: 2;
}

.program-page .slider-p::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(24deg, rgb(0 0 0) 0%, rgb(90 67 18 / 30%) 54%, rgb(2 1 1 / 90%) 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.program-page .slider-p .box {
    height: 380px;
    display: flex;
    align-items: flex-end;
}

.program-page .slider-p .box .content h3 {
    font-size: 40px;
    font-weight: 800;
    color: white;
}

.program-page .slider-p .box .content h3 span {
    font-size: 40px;
    font-weight: 500;
}

.program-page .slider-p .box .content p {
    font-size: 15.5px;
    line-height: 1.5;
    font-weight: 300;
    max-width: 650px;
    margin-top: 10px;
    color: #dfa432;
}

.program-page .slider-p .owl-carousel .owl-dots.disabled,
.program-page .slider-p .owl-carousel .owl-nav.disabled {
    display: flex !important;
}

.program-page .owl-carousel .owl-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 100%;
}

.program-page .owl-carousel .owl-nav button.owl-next,
.program-page .owl-carousel .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    background: #1d1d1b;
    transition: all .5s ease-in-out;
    position: absolute;
}

.program-page .owl-carousel .owl-nav button.owl-prev:hover,
.program-page .owl-carousel .owl-nav button.owl-next:hover {
    background: #fff;
    color: #1d1d1b;
}

.program-page .owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.program-page .owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.program-page .owl-carousel button.owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 3px;
    display: inline-block;
    border-radius: 50%;
    background: #e3e4e3;
}

.program-page .owl-carousel button.owl-dot.active span {
    background-image: linear-gradient(to right, #a27015, #dda130);
}

.program-page .slider-p .owl-carousel .owl-dots,
.program-page .slider-p .owl-carousel .owl-dots.disabled {
    position: absolute;
    top: 0;
    left: 0;
}


.program-page .normal-text {
    padding: 80px 0 30px;
}

.program-page .normal-text p {
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    max-width: 700px;
    margin: auto;
    line-height: 1.5;
}

/* -- End Program Page -- */


/* -- Start Team Page -- */
.team-page .main-slider {
    margin-bottom: 50px;
}

.team-page .main-slider .slide {
    height: 500px;
}

.team-page .main-slider .owl-item.active .slide .cover .content p {
    font-size: 19px;
    font-weight: 300;
    margin-top: 10px;
    max-width: 550px;
    line-height: 1.5;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.5s;
}

.team-page .main-slider .slide .cover {
    background: rgba(0, 0, 0, .35);
}


.team-page .our-captin {
    padding: 60px 0;
}

.team-page .our-captin h3 {
    font-size: 47px;
    font-weight: 800;
    color: #cf9521;
}

.team-page .our-captin h3 span {
    font-size: 47px;
    font-weight: 100;
}

.team-page .our-captin p {
    line-height: 1.5;
    font-size: 15.5px;
    margin-top: 5px;
}

.team-page .our-captin .image {
    text-align: center;
    position: relative;
}

.team-page .our-captin .image .two {
    position: absolute;
    bottom: -14px;
    right: 57px;
}

.team-page .our-captin.grad {
    background: url(../images/gradi.jpg);
}

/* -- End Team Page -- */

/* -- Start Travel Page -- */
.travel-page {
    padding: 150px 0;
    padding-bottom: 0;
    position: relative;
    background: url(../images/travback.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.travel-page::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: -1;
}

.travel-page h3 {
    font-weight: 800;
    font-size: 53px;
    color: white;
    margin-bottom: 40px;
}

.travel-page form {
    background: rgb(245 245 245);
    padding: 50px;
}

.travel-page form input {
    display: block;
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding: 0 20px;
    border-radius: 4px;
    border: 1px solid #cccccc63;
    transition: all .3s ease-in-out;
}

.travel-page form input:focus {
    border-color: rgb(223 164 50);
    outline: none;
}

.travel-page .form-group {
    margin-bottom: 20px;
}

.travel-page .upload .one {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding: 0 20px;
    border-radius: 4px;
    background: #f6f6f6;
    color: #a0a09f;
    border: 1px solid #a0a09f;
    cursor: pointer;
}

.travel-page .upload small {
    display: block;
    text-align: center;
    margin-top: 13px;
    font-size: 13px;
    color: #b5b5b5;
}

.travel-page p {
    text-align: center;
    margin: 40px 0;
    padding: 0 90px;
    line-height: 1.5;
    color: #a3a3a3;
}

.travel-page button {
    padding: 12px 120px;
    background: #dfa432;
    color: white;
    border: none;
    font-size: 15px;
    border-radius: 4px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.travel-page button:hover {
    background: #222323;
}

.travel-page .hide {
    font-size: 14px;
    cursor: pointer;
}

.travel-page .hide i {
    background: #575756;
    color: white;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    text-align: center;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    display: inline-block;
}

/* -- End Travel Page -- */





/* ============================ Responsive Edits ============================ */
@media(max-width: 567px) {
    .top-bar .content {
        justify-content: center;
        padding: 10px 0;
    }

    .top-bar .content .left {
        display: none;
    }

    .main-header .menu {
        display: none;
    }

    .main-header::before {
        display: none;
    }

    .main-header .content {
        padding: 10px 0;
    }

    .main-header .content .logo img {
        width: 160px;
    }

    .main-header .mobo-icon {
        display: inline-block;
    }

    .main-slider .owl-carousel .owl-nav {
        display: none;
    }

    .main-slider .owl-carousel .owl-dots {
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-slider .slide .cover .content h2,
    .main-slider .slide .cover .content h2 span {
        font-size: 32px;
        padding-bottom: 110px;
    }

    .main-slider .slide .cover .container {
        justify-content: center;
    }

    .main-slider .slide {
        height: 350px;
    }

    .about-section .top-about {
        padding: 80px 0;
        background: #222323;
        min-height: auto;
        text-align: center;
    }

    .about-section .top-about .text h3 {
        font-size: 36px;
    }

    .about-section .top-about .text p {
        text-align-last: center;
        text-align: center;
    }

    .about-section .middle-about h3 {
        line-height: 1.3;
    }

    .about-section .middle-about h3,
    .about-section .middle-about h3 span {
        font-size: 40px;
        text-align: center;
    }

    .about-section .middle-about p {
        text-align-last: center;
        text-align: center;
    }

    .about-section .middle-about {
        padding: 80px 0 120px;
    }

    .about-section .middle-about,
    .about-section .middle-about .container,
    .about-section .middle-about .row {
        min-height: auto;
    }

    .about-section .bottom-about {
        padding-top: 30px;
    }

    .about-section .bottom-about .image img {
        max-width: 100%;
        height: auto;
    }

    .about-section .bottom-about h3,
    .about-section .bottom-about h3 strong {
        font-size: 30px;
    }

    .our-values {
        padding: 80px 0 60px;
    }

    .our-values h3,
    .our-fleet .title h3,
    .our-parteners .title h3 {
        font-size: 40px;
    }

    .our-values p {
        font-size: 15px;
    }

    .our-fleet .slide .image img {
        max-width: 100%;
        height: auto;
    }

    .our-fleet .slide h3 {
        font-size: 26px;
    }

    .our-fleet .owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .our-fleet .owl-carousel .owl-nav button.owl-next {
        right: 0;
    }

    .our-fleet .slide {
        padding: 0 39px;
    }

    .our-parteners .owl-carousel .owl-nav.disabled {
        display: none !important;
    }

    .our-parteners .owl-carousel .owl-dots {
        margin-top: 0;
    }

    .contact-section {
        background: #222323;
        padding-top: 80px;
        height: auto;
    }

    .contact-section .col-lg-6::before,
    .contact-section .col-lg-6::after {
        display: none;
    }

    .contact-section .title {
        font-size: 30px;
    }

    .contact-section .map {
        margin: 0;
        margin-bottom: 60px;
    }

    .footer-section .copyright .content {
        flex-direction: column;
    }

    .footer-section .copyright .content p {
        margin-bottom: 10px;
    }

    .about-section .top-about .image {
        margin-bottom: 30px;
    }

    .about-section .top-about .image img {
        max-width: 100%;
        height: auto;
    }

    .our-parteners {
        padding: 80px 0;
        background: rgb(250 250 250);
    }

    .contact-section {
        margin-bottom: 0;
    }

    .tabs-section .inner-con .hide {
        bottom: 10px;
    }

    .tabs-section ul {
        flex-direction: column;
    }

    .tabs-section ul li {
        width: 100%;
        border-bottom: 1px solid #8f6619;
        padding: 5px 10px;
    }

    .tabs-section ul li::before {
        display: none;
    }

    .tabs-section ul li {
        font-size: 14px;
    }

    .tabs-section .inner-con select.two.th {
        padding-right: 5px;
    }

    .career-page {
        padding: 80px 0 120px;
    }

    .career-page .title-page,
    .detination-page .title-page {
        font-size: 30px;
        line-height: 1.5;
    }

    .career-page h3 {
        font-size: 18px;
    }

    .detination-page p {
        font-size: 16px;
    }

    .detination-page {
        background: #fff;
        height: auto;
    }

    .detination-page img {
        max-width: 100%;
        height: auto;
        display: block;
        margin-top: 40px;

    }

    .contact-page .send-message h3 {
        font-size: 20px;
    }

    .contact-page .side {
        margin-top: 30px;
    }

    .contact-page .near-you h1 {
        font-size: 35px;
    }

    .contact-page .owl-carousel .owl-nav button.owl-next,
    .contact-page .owl-carousel .owl-nav button.owl-prev {
        display: none;
    }

    .contact-page .page-info ul li:last-of-type {
        margin-bottom: 25px;
        font-size: 15px;
    }

    .contact-page .side img {
        max-width: 100%;
        height: auto;
    }

    .program-page .banner {
        text-align: center;
        padding: 80px 0;
    }

    .program-page .banner h3 {
        font-size: 30px;
    }

    .program-page .banner p {
        font-size: 15px;
    }

    .program-page .info {
        text-align: center;
    }

    .program-page .info h3 {
        font-size: 30px;
    }

    .program-page .info p,
    .program-page .slider-p .box .content p {
        font-size: 14px;
    }

    .program-page .slider-p .box .content h3,
    .program-page .slider-p .box .content h3 span {
        font-size: 20px;
    }

    .program-page .owl-carousel .owl-nav button.owl-next,
    .program-page .owl-carousel .owl-nav button.owl-prev {
        display: none !important;
    }

    .program-page .slider-p .box {
        height: 200px;
    }

    .team-page .main-slider .owl-item.active .slide .cover .content p {
        font-size: 15px;
    }

    .team-page .our-captin h3,
    .team-page .our-captin h3 span {
        font-size: 28px;
    }

    .team-page .our-captin {
        text-align: center;
    }

    .team-page .our-captin p {
        font-size: 14px;
    }

    .team-page .our-captin .image {
        margin-bottom: 30px;
    }

    .team-page .our-captin.grad .image {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .team-page .our-captin .image img {
        max-width: 100%;
        height: auto;
    }

    .team-page .main-slider .slide {
        height: 300px;
        text-align: center;
    }

    .travel-page h3 {
        font-size: 38px;
    }

    .travel-page p {
        padding: 0;
    }

    .travel-page .hide {
        margin-top: 30px;
    }

    .travel-page .upload {
        margin-bottom: 20px;
    }

    .popup .popup__content p,
    .popup .popup__content p strong {
        font-size: 15px;
    }

    .popup .popup__content {
        width: 90%;
        padding: 30px 45px;
    }

    .contact-section .map-list {
        margin-left: 0;
        margin-right: 0;
    }
}



/* ---------------------------------------------------- */
@media(min-width: 567px) and (max-width: 768px) {
    .top-bar .content {
        justify-content: center;
        padding: 10px 0;
    }

    .top-bar .content .left {
        display: none;
    }

    .main-header .menu {
        display: none;
    }

    .main-header::before {
        display: none;
    }

    .main-header .content {
        padding: 10px 0;
    }

    .main-header .mobo-icon {
        display: inline-block;
    }

    .main-slider .owl-carousel .owl-nav {
        display: none;
    }

    .main-slider .owl-carousel .owl-dots {
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-slider .slide .cover .content h2,
    .main-slider .slide .cover .content h2 span {
        font-size: 65px;
    }

    .main-slider .slide {
        height: 500px;
    }

    .about-section .top-about {
        padding: 80px 0;
        background: #222323;
        min-height: auto;
    }

    .about-section .middle-about,
    .about-section .middle-about .container,
    .about-section .middle-about .row {
        min-height: 600px;
    }

    .about-section .middle-about {
        padding: 0;
    }

    .about-section .middle-about h3 span,
    .about-section .middle-about h3 {
        font-size: 55px;
    }

    .about-section .bottom-about {
        padding-top: 50px;
    }

    .about-section .bottom-about .image img {
        max-width: 100%;
        height: auto;
    }

    .our-fleet .slide .image img {
        max-width: 100%;
        height: auto;
    }

    .our-fleet .owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .our-fleet .owl-carousel .owl-nav button.owl-next {
        right: 0;
    }

    .our-fleet .slide {
        padding: 0 39px;
    }

    .our-parteners .owl-carousel .owl-nav button.owl-next,
    .our-parteners .owl-carousel .owl-nav button.owl-prev {
        display: none;
    }

    .contact-section .col-lg-6::before,
    .contact-section .col-lg-6::after {
        display: none;
    }

    .contact-section .map {
        margin: 0;
        margin-bottom: 60px;
    }

    .footer-section .copyright .content {
        flex-direction: column;
    }

    .footer-section .copyright .content p {
        margin-bottom: 10px;
    }

    .contact-section {
        background: #222323;
        padding-top: 80px;
        height: auto;
    }

    .about-section .top-about .image {
        margin-bottom: 30px;
    }

    .about-section .top-about .image img {
        max-width: 100%;
        height: auto;
    }

    .our-parteners {
        padding: 80px 0;
        background: rgb(250 250 250);
    }

    .contact-section {
        margin-bottom: 0;
    }

    .detination-page {
        background: #fff;
    }

    .detination-page img {
        max-width: 100%;
        height: auto;
        display: block;
        margin-top: 40px;

    }

    .contact-page .side {
        margin-top: 30px;
    }

    .contact-page .page-info ul li:last-of-type {
        margin-bottom: 25px;
        font-size: 15px;
    }

    .program-page .owl-carousel .owl-nav button.owl-next,
    .program-page .owl-carousel .owl-nav button.owl-prev {
        display: none !important;
    }

    .team-page .our-captin .image {
        margin-bottom: 30px;
    }

    .team-page .our-captin.grad .image {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .travel-page p {
        padding: 0;
    }

    .travel-page .hide {
        margin-top: 30px;
    }

    .travel-page .upload {
        margin-bottom: 20px;
    }

    .popup .popup__content {
        width: 90%;
        padding: 30px 45px;
    }

    .contact-section .map-list {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ---------------------------------------------------- */


@media(min-width: 768px) and (max-width: 992px) {
    .main-header .menu {
        display: none;
    }

    .main-header::before {
        display: none;
    }

    .main-header .content {
        padding: 10px 0;
    }

    .main-header .mobo-icon {
        display: inline-block;
    }

    .about-section .bottom-about .image {
        text-align: center;
    }

    .our-fleet .slide .image img {
        max-width: 100%;
        height: auto;
    }

    .our-fleet .owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .our-fleet .owl-carousel .owl-nav button.owl-next {
        right: 0;
    }

    .our-parteners .owl-carousel .owl-nav button.owl-next {
        right: 39%;
    }

    .our-parteners .owl-carousel .owl-nav button.owl-prev {
        left: 43%;
    }

    .contact-section {
        background: #222323;
        padding-top: 80px;
        height: auto;
    }

    .contact-section .col-lg-6::before,
    .contact-section .col-lg-6::after {
        display: none;
    }

    .contact-section .map {
        margin: 0;
        margin-bottom: 60px;
    }

    .about-section .top-about .image {
        margin-bottom: 30px;
    }

    .about-section .top-about .image img {
        max-width: 100%;
        height: auto;
    }

    .contact-section {
        margin-bottom: 0;
    }

    .tabs-section .inner-con .form-group label.label {
        display: none;
    }

    .detination-page {
        background: #fff;
    }

    .detination-page img {
        max-width: 100%;
        height: auto;
        display: block;
        margin-top: 40px;

    }

    .contact-page .side {
        margin-top: 30px;
    }

    .contact-page .page-info ul li:last-of-type {
        margin-bottom: 25px;
        font-size: 15px;
    }

    .travel-page .upload {
        margin-bottom: 20px;
    }

    .contact-section .map-list {
        margin-left: 0;
        margin-right: 0;
    }

}

/* ---------------------------------------------------- */


@media(min-width: 992px) and (max-width: 1200px) {
    .main-slider .slide .cover .content {
        padding-left: 50px;
    }

    .main-header::before {
        display: none;
    }

    .main-header .menu ul li:last-of-type::after {
        display: block;
    }

    .contact-section {
        margin-bottom: 0;
    }
}


/* ---------------------------------------------------- */


@media(min-width: 1200px) and (max-width: 1300px) {
    .main-header::before {
        width: 12.5%;
    }

    .contact-section {
        margin-bottom: 0;
    }
}


@media(min-width: 1400px) and (max-width: 1600px) {
    .main-header::before {
        width: 20%;
    }

    .contact-section {
        margin-bottom: 0;
    }
}


@media(min-width: 1600px) {
    .main-header::before {
        display: none;
    }

    .main-header .menu ul li:last-of-type::after {
        display: block;
    }

    .about-section .top-about {
        padding: 80px 0;
        min-height: inherit;
        background: #222323;
    }

    .contact-section {
        padding: 80px 0;
        height: auto;
        background: #222323;
    }

    .our-parteners {
        padding: 80px 0;
        background: rgb(250 250 250);
    }

    .contact-section {
        margin-bottom: 0;
    }
}




/* ============================ Responsive Edits ============================ */