* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {

    --main-color: #F6E471;
    --black-color: #000000;
    --text-color: #EFEFEF;
    --text-color_two: #F0F0F0;
    --text-color-glg-av: #D4D4D4;
    --text-color-one: #707070;
    --background-color-one: #171717;
    --grey-mid-grey: #8F8F8F;

    --font-size-title-bg: 50px;
    --font-size-title-sm: 50px;
}
html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}
a{
    text-decoration: none;
}
h1{
    margin: 0px !important;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../font/century-gothic/CenturyGothic.ttf') format('woff'),
        url('../font/century-gothic/Century\ Gothic.ttf') format('truetype'),
        url('../font/century-gothic/GOTHIC.TTF') format('truetype'),
        url('../font/century-gothic/GOTHICB.TTF') format('truetype'),
        url('../font/century-gothic/GOTHICB0.TTF') format('truetype'),
        url('../font/century-gothic/GOTHICBI.TTF') format('truetype'),
        url('../font/century-gothic/GOTHICI.TTF') format('truetype');
}
@font-face {
    font-family: 'Avenir';
    src: url(../font/avenir/AvenirRegular/AvenirRegular.ttf),
        url(../font/avenir/AvenirBlack/AvenirBlack.ttf),
        url(../font/avenir/AvenirBook/AvenirBook.ttf),
        url(../font/avenir/AvenirHeavy/AvenirHeavy.ttf),
        url(../font/avenir/AvenirLight/AvenirLight.ttf);
}


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden !important;
    background-color: var(--background-color-one);
    font-family: 'Avenir';
    font-family: 'Century Gothic', sans-serif;

}
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn{
    cursor: pointer;
    border:.2rem solid var(--main-color);
    color:var(--main-color);
    background:none;
    padding:.5rem 3rem;
    margin-top: 1rem;
    position: relative;
    z-index: 0;
    font-size: 2rem;
}

.btn::before{
    content: '';
    position: absolute;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    top: 1.5px;
    left: 1.5px;
    border: 1px solid var(--black-color);
}

.btn:hover::before{
    clip-path: circle(100%);
}

.btn:hover{
    background-color: var(--main-color);
    color: var(--black-color);
}

.home{
    min-height: calc(100vh - 130px);
    background:linear-gradient(rgba(0, 0, 0, 0.747),rgba(0, 0, 0, 0.801)), url(../img/img28.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.home h1{
    color: var(--text-color-one);
    text-align: center;
    padding:0 1rem;
    text-transform: uppercase;
    color: var(--text-color_two, #F0F0F0);
    /* Headlines/H1 */
    font-family: "Century Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px; /* 130% */
}

.home .btn{
    box-shadow: 0 .3rem .5rem #000;
    color: var(--main-color);
    transition: all 200ms ease-out;
}

.about .row{
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 80px 100px;
    gap: 80px;
    position: relative;
}
.about .row::before{
    content: "";
    width: 1px;
    height: 60%;
    position: absolute;
    bottom: 0px;
    left: 90px;
    background-color: var(--text-color-one);
}

.about .row .image{
    /* flex: 1 1 40rem; */
    /* padding:2rem; */
    width: 400px;
    height: fit-content;
    /* background-color: red; */
}

.about .row .image img{
    height:100%;
    width:100%;
    object-fit: cover;
}

.about .row .content{
    width: calc(100% - 490px);
    max-width: 900px;
}

.about .row .content h3{
    color: var(--text-color_two, #F0F0F0);
    font-family: "Century Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
}

.about .row .content p{
    padding:1rem 0;
    color: var(--grey-mid-grey, #8F8F8F);
    /* Body */
    font-family: 'Avenir';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px; /* 130% */
    letter-spacing: 0.08px;
}

@media (max-width: 950px) {
    .home h1{
        /* font-size: 30px; */
    }
    .about .row .content h3{
        /* font-size: 30px; */
        /* text-align: center; */
    }
    .about .row .content p{
        /* font-size: 20px; */
        /* text-align: center; */
    }
    .btn{
        /* display: block; */
        /* margin: 15px auto 20px; */
        /* font-size: 20px; */
    }
    .about .row .content p{
        /* line-height: 24px; */
    }
}


/* .about-main{
    width: 100%;
    height: fit-content;
    position: relative;
}
.about-main::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: var(--text-color-one);
    left: 100px;
    top: 0px;
    z-index: 0;
}
.about-main::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, var(--main-color) 10%, transparent, var(--main-color) 90%);
    left: 0px;
    top: 0px;
}
.about_section .container .title{
    color: var(--main-color);
} */
/* Strat about */
/* .about_section{
    width: 100%;
    height: 900px;
}
.about_section .container{
    width: 100%;
    height: 100%;
    padding:  20px 30px 0px;
    display: flex;
}
.info{
    display: flex;
    flex-flow: column nowrap;
    z-index: 1;
}
.info .title{
    font-size: 40px;
}
.hv_line{
    display: block;
    width: 2px;
    height: 40px;
    background-color: var(--main-color);
    border-radius: 20px;
    margin: 10px auto 0px 20px;
}
.info .tit{
    margin-top: 30px;
    font-size: 21px;
    color: var(--main-color);
}
.info .paragraph{
    font-size: 20px;
    color: var(--text-color-one);
    padding: 15px 0px 15px 22px;
    line-height: 32px;
}
.info i{
    margin-right: 15px;
    font-size: 25px;
} */
/* Start New Vsion Mission Commitment */
.vmc{
    width: 100%;
    background-color: #000;
    position: relative;
}
.vmc::before{
    content: "";
    width: 85%;
    height: 1px;
    position: absolute;
    top: -30px;
    left: 0px;
    background-color: var(--text-color-one);
}
.vmc::after{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 90px;
    background-color: var(--text-color-one);
}
.vmc .container{
    width: 100%;
    height: fit-content;
    padding: 80px 120px;
    display: flex;
    flex-flow: row nowrap;
    gap: 22px;
}
.vmc .container .card{
    width: calc((100% - 44px) / 3);
    /* height: fit-content; */
    max-height: 100%;
    background-color: #161616;
    padding: 16px;
    display: flex;
    flex-flow: column nowrap;
    gap: 24px;
    overflow-x: hidden;
}
.vmc .container .card .title{
    color: var(--text-color_two, #F0F0F0);
    font-family: "Century Gothic";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 130% */
}
.vmc .container .card .desc{
    color: var(--grey-mid-grey, #8F8F8F);
    font-family: 'Avenir';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px; /* 130% */
    letter-spacing: 0.08px;
}

@media screen and (min-width: 950px) and (max-width: 1300px) {
    .vmc .container .card .title{
        font-size: 24px;
    }
    .vmc .container .card .desc{
        font-size: 14px;
    }
}
/* End New Vsion Mission Commitment */
/* Start WCSM */
.wcsm{
    width: 100%;
    position: relative;
}
.wcsm::before{
    content: "";
    width: 85%;
    height: 1px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: var(--text-color-one);
}
.wcsm::after{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 90px;
    background-color: var(--text-color-one);
}
.wcsm .container{
    padding: 80px 120px;
    display: flex;
    flex-flow: row wrap;
    gap: 24px;
}
.wcsm .container .head{
    width: 100%;
    margin-bottom: 24px;
}
.wcsm .container .head .title{
    color: var(--text-color_two, #F0F0F0);
    font-family: "Century Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px; /* 115% */
}
.wcsm .container .card{
    width: calc((100% - 48px) / 3);
    /* padding: 16px; */
    display: flex;
    flex-flow: column nowrap;
    gap: 16px;
}
.wcsm .container .card .title{
    color: var(--main-color);
    font-family: "Century Gothic";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 130% */
    letter-spacing: 0.03px;
}
.wcsm .container .card .title i{
    margin-right: 16px;
}
.wcsm .container .card .desc{
    color: var(--grey-mid-grey, #8F8F8F);
    font-family: 'Avenir';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px; /* 130% */
    letter-spacing: 0.08px;
}
/* End WCSM */
/* @media (min-width: 960px) {
    .about_section{
        padding: 50px 0px 0px 100px ;
        min-height: fit-content;
    }
    .about_section .container{
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
    }
    .about_section.one{
        height: fit-content;
    }

    .about_section.three{
        padding-bottom: 40px;
    }
    .info{
        width: 50%;
        height: calc(100% - 20px);
    }
    .about_section.two .title{
        margin-top: 35px;
    }
    #about_img{
        width: 500px;
        height: 500px;
        background-color: rgba(255, 0, 0, 0.267);
        position: absolute;
        top: 50px;
        right: 50px;
        animation: show_img 2s ease-out;
        background: url(../img/sinatra_holding_about_img.png) no-repeat;
        background-size: 100%;
        background-position: center;
    }
    @keyframes show_img {
        0%{
            right: -110%;
        }
        100%{
            right: 50px;
        }
    }
}
@media (max-width: 959px) {
    .about-main::before{
        display: none;
    }
    .about_section{
        padding: 20px;
        margin-bottom: 30px;
    }
    .about_section .container{
        flex-flow: column nowrap;
        padding: 0px;
    }
    .info{
        width: 100%;
        height: 100%;
    }
    .about_section.one{
        height: fit-content;
    }
    .about_section.one .info{
        margin-top: 10px;
    }
    .about_section.two{
        height: 800px;
        height: fit-content;
    }
    .about_section.three{
        height: 1200px;
        height: fit-content;
    }
    .info .title {
        font-size: 28px;
    }
    .info .paragraph {
        font-size: 18px;
        padding: 15px 0px 15px 22px;
        line-height: 26px;
    }
    .info .tit {
        margin-top: 20px;
    }
    #about_img{
        width: 95%;
        height: 400px;
        display: block !important;
        margin: 20px auto;
        background: url(../img/sinatra_holding_about_img.png) no-repeat;
        background-size: 100%;

    }
}
@media screen and (min-width: 550px) and (max-width: 1200px) {
    #about_img{
        width: 45%;
        height: 500px;
        background-size: 70%;
        background-size: cover;
    }
} */

@media (max-width: 950px){
    .home{
        min-height: 60vh;
    }
    .home .title{
        font-size: 30px;
    }
    .about .row {
        padding: 16px;
        gap: 40px;
    }
    .about .row .image {
        width: 100%;
        padding: 0px 40px;
    }
    .about .row .content {
        width: 100%;
    }


    .partners::before,
    .wcsm::after,
    .vmc::after,
    .about .row::before,
    .vmc::before{
        display: none;
    }
    .vmc .container{
        padding: 80px 16px;
        flex-flow: column nowrap;
    }
    .vmc .container .card{
        width: 100%;
    }

    .wcsm .container {
        padding: 80px 16px;
        flex-flow: column nowrap;
    }
    .wcsm .container .head .title {
        font-size: 28px;
    }
    .wcsm .container .card {
        width: 100%;
    }

    .partners{
        padding: 40px 0px;
    }

}
/* Start Partner */
.partners{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    min-height: 1000px;
}
.partners::before{
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 90px;
    background-color: var(--text-color-one);
}
.partners .cont_title{
    width: 100%;
    height: 100px;
    color: var(--main-color);
    align-self: flex-start;
    color: var(--text-color_two, #F0F0F0);

    /* Headlines/H1 */
    font-family: "Century Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px; /* 130% */
}
.partners .box{
    padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 70px;
    position: relative;
    z-index: 1;
    transition: all 300ms ease-out;
    cursor: pointer;
}
.partners .box::before{
    content: "";
    width: 20%;
    height: calc(100% + 2px);
    background-color: var(--main-color);
    position: absolute;
    right: -1px;
    top: -1px;
    z-index: -100;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 70px;
    transition: all 400ms ease-out;
}
.partners .box::after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--background-color-one);
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -100;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 70px;
}
.partners .box:hover::before{
    width: calc(100% + 1px);
}
.partners .box .part_img{
    animation: opacity_logo 2s ease-out;
    width: 100%;
    height: 200px !important;
    margin-left: auto;
    margin-right: auto;
}
.partners .box.pa_one .part_img{
    background: url(../img/aldamani\ logo.svg) no-repeat;
    background-size: 50%;
}
.partners .box.pa_two .part_img{
    background: url(../img/wingamm_logo.png) no-repeat;
    background-size: 170%;
}
.partners .box.pa_three .part_img{
    background: url(../img/icon_aircraft_logo.svg) no-repeat;
    background-size: 80%;
}
.partners .box.pa_four .part_img{
    background: url(../img/candela\ logo.svg) no-repeat;
    background-size: 70%;
}
.partners .box.pa_five .part_img{
    background: url(../img/sinatrabikeslogo.png) no-repeat;
    background-size: 40%;
}
.partners .box .part_img{
    background-position: center !important;
}

.partners .box .title{
    width: 100%;
    display: flex;
    flex-flow: column;
    margin-top: 20px;
    animation: opacity_word 2.5s ease-out;
}
.tit_main{
    margin-bottom: 16px !important;
    color: var(--text-color-glg-av, #D4D4D4);
    text-align: center;
    font-family: "Century Gothic";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.03px;
}
.tit_comp{
    color: var(--text-color_two, #F0F0F0);
    text-align: center;
    font-family: 'Avenir';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20.8px; /* 130% */
    letter-spacing: 0.024px;
}
.partners .box .paragraph{
    margin-top: 30px;
    animation: opacity_word 3.5s ease-out;

    color: var(--text-color-one, #8F8F8F);
    text-align: center;
    font-family: 'Avenir';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px; /* 130% */
    letter-spacing: 0.08px;
}
@media (min-width: 1201px) {
    .partners .box{
        width: calc((100% - 30px / 2)); 
        height: 500px;
        min-height: fit-content;
        width: 450px;
        height: 550px;
        margin-top: 60px;
        margin-bottom: 80px;
    }
}

@media (min-width: 960px) {
    .partners{
        padding: 80px 100px;
        gap: 10px;
    }
    .partners::before{
        /* content: "";
        width: calc(50% - 100px);
        height: 1px;
        background-color: var(--text-color-one);
        position: absolute;
        top: 0px;
        left: 100px; */
    }
    .partners .box{
        /* width: calc((100% - 30px) / 3); */
        /* min-width: 450px; */
        /* width: 450px; */
        /* height: 700px; */
        /* margin-top: 60px; */
        /* margin-bottom: 100px; */
    }
    .partners .box.pa_one .part_img{
        background-size: 30%;
    }
    .partners .box.pa_two .part_img{
        background-size: 120%;
    }
    .partners .box.pa_three .part_img{
        background-size: 60%;
    }
    .partners .box .paragraph{
        padding: 0px 20px;
    }
}
@media screen and (min-width: 960px) and (max-width: 1200px) {
    .partners {
        padding: 20px 20px 20px 100px !important;
        gap: 10px;
    }
    .partners .box{
        width: calc((100% - 30px) / 2);
        height: 550px;
        margin-top: 60px;
        margin-bottom: 80px;
    }
}
@media (max-width: 959px) {
    .partners .box{
        width: calc(100% - 2px);
        margin: 20px auto;
        min-height: 550px;
        /* justify-content: center; */
        align-items: center;
    }
    .box .part_img{
        width: 350px !important;
        height: 200px !important;
    }
    .box.pa_two .part_img{
        background-position: center;
        background-size: 170%;
    }
    .partners .box.pa_four .part_img {
        background-size: 80%;
    }
    .partners .box.pa_five .part_img {
        background-size: 45%;
    }
    .partners .box::before{
        content: "";
        width: calc(100% + 1px);
        height: calc(100% + 2px);
        background-color: var(--main-color);
        position: absolute;
        right: -1px;
        top: -1px;
        z-index: -100;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 70px;
        transition: all 400ms ease-out;
    }
    .partners .box::after{
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--background-color-one);
        position: absolute;
        right: 0px;
        top: 0px;
        z-index: -100;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 70px;
    }
    .partners .box.pa_four::before,
    .partners .box.pa_two::before{
        position: absolute;
        right: calc(50% + 1px);
        top: -1px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 70px;
        width: calc(100% + 1px);
        right: 1px;
    }
    .partners .box.pa_four::after,
    .partners .box.pa_two::after{
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 70px;

    }
}
@keyframes opacity_word {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacity_logo {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* End Partners */