* {
    margin: 0;
    line-height: 1.3;
}

/* FONTS */

@font-face {
    font-family: Cairo;
    src: url("assets/fonts/Cairo-Regular.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Cairo-Bold;
    src: url("assets/fonts/Cairo-Bold.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: Oswald;
    src: url("assets/fonts/Oswald-Regular.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Oswald-Bold;
    src: url("assets/fonts/Oswald-Bold.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
}

.dnone {
	display: none;
}

body {
    overflow-x: hidden;
    height: 100%;
}

header {
    /*position: absolute;*/
    width: 100%;
    background-color: #424140;
}

a {
    text-decoration: none;
    color: black;
}

.W {
    color: #FAE5E1;
}

.white {
    color: white;
}

.open {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.Center {
    text-align: center;
}

.cairo {
    font-family: Cairo-Bold, sans-serif;
}

.oswald {
    font-family: Oswald, sans-serif;
}

.cairo_bold {
    font-family: Cairo-Bold, sans-serif;
}

.oswald_bold {
    font-family: Oswald-Bold, sans-serif;
}

p {
    font-family: Cairo, sans-serif;
    font-size: 13pt;
}

.Mtp {
    font-size: 22px;
}

.big {
    font-size: 5vh;
}

.wbig {
    font-size: 35px;
    text-align: right;
}

.wwbig {
    font-size: 45px;
    text-align: right;
}

@media all and (max-width: 910px) {
    .wwbig {
        font-size: 35px;
    }
}

@media all and (max-width: 340px) {
    .wwbig {
        font-size: 30px;
    }
}

.small {
    font-size: 11pt;
}

.Semi {
    font-size: 18px;
}

.h_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media all and (max-width: 1000px) {
    .h_wrapper {
        height: 60px;
    }
}

.container {
    display: none;
}

.h_logo {
    display: flex;
    width: 30%;
    align-items: center;
    padding-left: 3%;
}

@media all and (max-width: 660px) {
    .h_logo {
        width: 50%;
    }
}

.h_logo img {
    height: 100px;
    width: 100px;
}

.navbar {
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media all and (max-width: 1000px) {
    .navbar {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(66, 65, 64, .8);
        z-index: 20;
        transition: all 200ms linear 100ms;
        flex-direction: column;
        justify-content: center;
    }

    .navbar a {
        padding: 20px 0;
        width: 100%;
    }

    .navbar.open {
        right: 0;
    }
}

.navbar a {
    float: left;
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 5% 23px;
    text-decoration: none;
}

@media all and (max-width: 1000px) {
    .navbar a {
        padding: 20px 0;
        width: 100%;
    }
}

.navbar a:hover {
    background: #EDC7A4;
    text-decoration: none;
    color: #666666;
}

.navbar a:focus {
    background: #EDC7A4;
    text-decoration: none;
    color: #666666;
}

.navbar a:active {
    background: #EDC7A4;
}

.active {
    background: #EDC7A4;
    color: #666666;
}

.main {
    background-image: url("assets/img/new/servicebg.png");
    /* width: 1920px; */
    height: 759px;
    background-size: cover;
    background-repeat-x: no-repeat;
    background-position: top;

}

@media all and (max-width: 910px) {
    .main {
        height: auto;
    }
}

/* INDEX */
.main_top_wrapper {
    display: flex;
    height: 70%;
}

.main_top_container {
    display: flex;
    flex-direction: column;
    padding-top: 5%;
}

.main_top_container_top {
    display: flex;
    justify-content: space-around;
    background-repeat: no-repeat;
    height: 100%;

}

.main_top_container_top div {
    display: flex;
    padding: 0 5%;
    flex-direction: column;
    justify-content: center;
    height: 30vh;
}

/* NEW MAIN TOP */

.main_top_cont {
    display: flex;
    width: 1920px;
    height: 84%;
    justify-content: space-between;

}

@media all and (max-width: 910px) {
    .main_top_cont {
        height: auto;
    }
}

.one {
    display: flex;
    height: 99%;
    width: 50%;
}

@media all and (max-width: 910px) {
    .one {
        height: auto;
    }
}

@media all and (max-width: 660px) {
    .one {
        width: 100%;
        margin-top: 130px;
    }
}

.two {
    display: flex;
    height: 99%;
    width: 50%;
}

@media all and (max-width: 910px) {
    .two {
        height: auto;
    }
}

@media all and (max-width: 660px) {
    .two {
        display: none;
    }
}

.three {
    display: flex;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0 30px;
}

@media all and (max-width: 910px) {
    .three {
        padding: 40px 30px;

    }
}

@media all and (max-width: 660px) {
    .three {
        display: block !important;
    }
}

.four {
    display: none;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0 30px;
}

@media all and (max-width: 910px) {
    .four {
        padding: 40px 30px;

    }
}

.three, .four {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.slogan {
    position: absolute;
    top: 230px;
    right: 260px;
}

@media all and (max-width: 1340px) {
    .slogan {
        right: 60px;
    }
}

@media all and (max-width: 910px) {
    .slogan {
        right: 20px;
        top: 100px;
    }
}

.slogan2 {
    display: none;
    position: absolute;
    text-align: left;
    top: 230px;
    left: 260px;
}

@media all and (max-width: 1340px) {
    .slogan2 {
        left: 60px;
    }
}

@media all and (max-width: 910px) {
    .slogan2 {
        left: 20px;
        top: 100px;
    }
}

@media all and (max-width: 660px) {
    .slogan2 {
        display: block !important;
        left: 20px;
        top: 75px;
    }
}

.new {
    max-width: 34em;
    padding: 10px 0;
    text-align: left;
}

.main_top_container_top div:last-child {
    align-items: flex-end;
}

.main_buttons_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-bottom: 3%;*/
}

.main_header {
    text-align: left;
}

.main_header p {
    margin: 10px 0;
}

.main_button {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px;
    margin: 0 25px;
    max-width: 220px;

}

.mainbtn {
    background-color: #EDC7A4;
    border: none;
    padding: 15px;
    width: 150px;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 5%;
}

.mainbtn:hover {
    transform: scale(1.1);
    transition-duration: .2s;
}

.Coral {
    background-color: #EDC7A4;
    width: 30vh;
    height: 6vh;
    border: none;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.1);
    margin-top: 3%;

}

.Coral:hover {
    transform: scale(1.1);
    transition-duration: .2s;
}

/* FLEET */
.main_our_fleet {
    display: flex;
    justify-content: center;
    height: 42%;
    transform: translateY(-27.9%);
    background-color: rgba(255, 255, 255, 0.7);
}

@media all and (max-width: 910px) {
    .main_our_fleet {
        height: auto;
        transform: translateY(0);
    }
}

.main_our_fleet_container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-evenly;
}

@media all and (max-width: 910px) {
    .main_our_fleet_container .fleet_container {
        padding: 10px 30px;
    }
}

.fleet_slogan {
    text-align: center;
    margin-top: 2%;
}

@media all and (max-width: 910px) {
    .fleet_slogan {
        padding: 30px;
    }
}

.fleet_slogan p:first-child {
    padding-bottom: 2vh;
}

.fleet_container {
    display: flex;
    justify-content: space-between;
    max-height: 250px;
}

@media all and (max-width: 910px) {
    .fleet_container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: fit-content;
    }
}

.fleet_container div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media all and (max-width: 910px) {
    .fleet_container div + div {
        margin-top: 20px;
    }
}

.fleet_container div:last-child {
    transform: translateX(20px);
}

@media all and (max-width: 910px) {
    .fleet_container div:last-child {
        transform: none;
    }
}

.fleet_container div img {
    max-width: 285px;
    width: 100%;
    height: 100%;
    transition-duration: .2s;
}

.fleet_container div img:hover {
    transform: scale(1.2);
    transition-duration: .2s;
}

.fleet_container div p {
    margin-top: 15px;
}

/* ABOUT */

#about_footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #424140;
}

#about_footer div {
    display: flex;
    justify-content: center;
    margin: 5px 0;
}

#about_footer div p {
    margin: 0 15px;
    color: white;
}

.About {
    display: flex;
    justify-content: center;
    background-image: url("assets/img/bg3.jpg");
    background-size: cover;
    min-height: calc(100vh - 178px);
    padding: 10% 30px 0;
}

@media all and (max-width: 768px) {
    .About {
        padding: 5% 15px 0;
    }
}

.tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset .tab-panel {
    display: none;
}

.tab-panel * {
    padding: 10px 0;
}

.tab-panel h2 {
    border-bottom: #EDC7A4 4px solid;
}

.tab-panel h2, .tab-panel h3 {
    font-family: Roboto;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
    padding: 0 3%;
}

/*
 Styling
*/

.tabset > label {
    position: relative;
    font-family: Roboto;
    display: inline-block;
    padding: 15px 15px 25px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
}

@media all and (max-width: 768px) {
    .tabset > label {
        display: block;
        width: 100%;
    }
}

.tabset > label::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 10px;
    width: 22px;
    height: 4px;
    background: #8d8d8d;
}

@media all and (max-width: 768px) {
    .tabset > label::after {
        width: 50px;
    }
}

.tabset > label:hover,
.tabset > input:focus + label {
    color: #EDC7A4;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
    background: #EDC7A4;
}

.tabset > input:checked + label {
    border-color: #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

@media all and (max-width: 768px) {
    .tabset > input:checked + label {
        margin: 0;
        border: none;
    }
}

.tab-panel {
    padding: 30px 0;
    border-top: 1px solid #ccc;
}

/*
 Demo purposes only
*/
*,
*:before,
*:after {
    box-sizing: border-box;
}

.tabset {
    max-width: 65em;
    background-color: white;
    border: 2px solid #EDC7A4;
    margin-bottom: 25px;
}

.tabset2 {
    max-width: 65em;
    background-color: white;
    border: 2px solid #EDC7A4;
}

.tabset2 > input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset2 .tab-panel {
    display: none;
}

.tab-panel * {
    padding: 10px 0;
}

.tab-panel h2 {
    border-bottom: #EDC7A4 4px solid;
}

.tab-panel h2, .tab-panel h3 {
    font-family: Roboto;
}

.tabset2 > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset2 > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset2 > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset2 > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset2 > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset2 > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
    padding: 0 3%;
}

/*
 Styling
*/

.tabset2 > label {
    position: relative;
    font-family: Roboto;
    display: inline-block;
    padding: 15px 15px 25px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
}

.tabset2 > label::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 10px;
    width: 22px;
    height: 4px;
    background: #8d8d8d;
}

.tabset2 > label:hover,
.tabset2 > input:focus + label {
    color: #EDC7A4;
}

.tabset2 > label:hover::after,
.tabset2 > input:focus + label::after,
.tabset2 > input:checked + label::after {
    background: #EDC7A4;
}

.tabset2 > input:checked + label {
    border-color: #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

.flw {
    display: flex;
}

@media all and (max-width: 768px) {
    .flw {
        flex-direction: column;
    }
}

/* SERVICES */

.Service {
    display: flex;
    justify-content: center;
    background-image: url("assets/img/new/servicebg.png");
    background-size: cover;
    min-height: calc(100vh - 178px);
    padding: 5% 30px 0;
}

@media all and (max-width: 768px) {
    .Service {
        padding: 5% 15px 0;
    }
}

.service_container {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    padding-top: 8%;
    align-items: center;
}

.service_container * {
    margin: 8px 0;
}

.service_wrapper {
    padding: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
}

.service {
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
}

@media all and (max-width: 768px) {
    .service {
        flex-direction: column;
    }
}

.service div {
    width: 50%;
    margin: 0 1%;
}

@media all and (max-width: 768px) {
    .service div {
        width: 100%;
        margin: 0;
    }
}

.service div * {
    padding: 5px 0;
}

.sr {
    display: flex;
    flex-direction: column;
}

.airport {
    display: flex;
    justify-content: space-around;
}

/* RESERVATION */
.reservation_container {
    background-image: url("assets/img/bg.jpg");
    z-index: 666;
    padding-top: 10%;
    background-position-x: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reservation_wrapper {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin-bottom: 3%;
}
@media all and (max-width: 768px) {
    .reservation_wrapper {
        width: 80%;
    }
}
.widget_booking {
    width: 60%;
}
@media all and (max-width: 768px) {
    .widget_booking {
        width: 80%;
    }
}
/* PRIVACY */

li {
    font-family: Roboto;
}

.privacy_container {
    display: flex;
    padding-top: 150px;
    justify-content: center;
    margin-bottom: 50px;
}

.privacy_wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
}

.privacy_wrapper ul li {
    padding-left: 30px;
    list-style-type: disc;
}

.privacy_wrapper p {
    padding: 10px 0;
}

/* Privacy-policy */
.privacy_policy {
    padding-top: 150px;
    justify-content: center;
    margin-bottom: 50px;
    display: flex;
}

.privacy_policy_wrapper {
    width: 60%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
@media all and (max-width: 768px) {
    .privacy_policy {
        padding-top: 50px;
    }
    .privacy_policy_wrapper {
        width: 80%;
    }
}

.entry-content ul {
    margin: 0 0 1.5em 3em;
    list-style: disc;
}

.entry-content p, .entry-content h3 {
    margin: 0px 0px 20px 0px;
    font-family: Cairo;

}

/* FOOTER */

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #424140;
}

footer div {
    display: flex;
    justify-content: center;
    margin: 5px 0;
    color: white;
}

footer div:first-child p {
    margin: 0 15px;
}

.fas {
    color: #EDC7A4;
}

.fab {
    color: #EDC7A4;
	padding-right: 7px;
}

.menu-btn {
    align-items: center;
    display: none;
    z-index: 30;
}

@media all and (max-width: 1000px) {
    .menu-btn {
        display: flex;
    }
}

.b-menu {
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height: 60px;
    padding-left: 15.5px;
    padding-top: 17.5px;
    position: relative;
    transition: all 0.4s ease;
    width: 60px;
    z-index: 12;
}

.b-menu.open .b-bun--top {
    background: #EDC7A4;
    top: 9px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.b-menu.open .b-bun--mid {
    opacity: 0;
}

.b-menu.open .b-bun--bottom {
    background: #EDC7A4;
    top: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.b-bun {
    background: #fff;
    position: relative;
    transition: all 0.4s ease;
}

.b-bun--top {
    height: 2px;
    top: 0;
    width: 25px;
}

.b-bun--mid {
    height: 2px;
    top: 8px;
    width: 25px;
}

.b-bun--bottom {
    height: 2px;
    top: 16px;
    width: 25px;
}

@media all and (max-width: 600px) {
    footer .footer_container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    footer p {
        font-size: 14px;
    }
    footer p .W {
        display: block;
        text-align: center;
    }
}

