@font-face {
    font-family: Barlow;
    src: url('/assets/font/Barlow/Barlow-Regular.ttf');
}
@font-face {
    font-family: bellefaire;
    src: url('/assets/font/Bellefair/Bellefair-Regular.ttf');
}
@font-face {
    font-family: Barlow_Condensed;
    src: url('/assets/font/Barlow_Condensed/BarlowCondensed-Light.ttf');
}
body{
    background: url('/assets/home/background-home-desktop.jpg');
    background-repeat: no-repeat;
    background-size: 130vw 100vh;
    background-position: 60% 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 40px;
    z-index: 7;
}
.menubtn , .closebtn{
    display: none;
}
.header img{
    scale: 0.8;
}
.header .menu{
    height: 80px;
    width: 63%;
    background-color: #ffffff13;
    border-radius: 5px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}
.header .menu::after{
    content: '';
    position: absolute;
    background-color: #ffffff52;
    border-radius: 1px;
    height: 1px;
    top: 50%;
    left: -43%;
    width: 45%;
}
.header .menu ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20% !important;
}
.header .menu ul li{
    line-height: 77px;
    margin: 0 32px 0 20px;
    position: relative;
}
.header .menu ul a::after{
    content: '';
    position: absolute;
    background-color: #ebebeba6;
    border-radius: 1px;
    height: 2.5px;
    left: 50%;
    top: 100%;
    width: 0%;
}
.header .menu ul a:hover::after{
    animation: lihoveranimat 0.5s ease both;
}
@keyframes lihoveranimat {
    100%{
        width: 100%;
        left: 0;
    }
}
.header .menu ul li .active::after{
    content: '';
    position: absolute;
    background-color: #fff;
    border-radius: 1px;
    height: 2.5px;
    left: 0;
    top: 100%;
    width: 100%;
}
.header .menu ul a{
    color: #ffffffd8;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    font-family: Barlow;
    font-size: 14px;
}
.header .menu ul a span{
    font-weight: 600;
    color: #fff;
    margin-right: 5px;
    font-family: Barlow;
    font-size: 14px;
}

.content{
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text{
    margin-top: 100px;
    margin-left: 12%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.text .title{
    font-family: Barlow_Condensed;
    color: #d0d6f9;
    font-weight: 500;
    width: 100%;
    font-size: 27px;
}
.text span{
    font-family: bellefaire;
    font-weight: 500;
    width: 100%;
    font-size: 120px;
    color: #ffffff;
    margin-top: 15px;
    opacity: 0;
    animation: spaceanimit 1.5s both;
}
@keyframes spaceanimit {
    100%{
        opacity: 1;
    }
}
.text .descraption{
    font-family: Barlow;
    color: #d0d6f9;
    font-weight: 400;
    width: 100%;
    font-size: 14px;
    line-height: 25px;
}

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 400px;
    margin-right: 8%;
    margin-top: 160px;
}
.btn button{
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: none;
    outline: none;
    background-color: #fff;
    cursor: pointer;
    font-family: bellefaire;
    font-size: 28px;
    color: #0c0e18;
    font-weight: 400;
    box-sizing: content-box;
    -moz-transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.btn button:hover {
    outline: 55px solid #ffffff33;
}


/* media query for tablet */
@media screen and (max-width:1115px) {
    body{
        padding-top: 0;
        background: url('/assets/home/background-home-tablet.jpg');
        background-repeat: no-repeat;
        background-size: 100vw;
    }
    .header img{
        margin-left: 25px;
        margin-top: 10px;
        scale: 1.3;
    }
    .header .menu::after{
        display: none;
    }
    .header .menu ul a span{
        display: none;
    }
    .header .menu{
       width: 65%;
       border-radius: 0;
       height: 125px;
    }
    .header .menu ul{
        padding-left: 50px !important;
    }
    .header .menu ul li{
        margin: 0 22px 0 14px;
        height: 121px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header .menu ul li a{
        font-size: 22px;
    }
    .text{
        margin-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .text *{
        text-align: center;
    }
    .btn{
        margin: 140px auto 0 auto ;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .content{
        height: auto;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 90px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .text .title{
        font-size: 38px;
    }
    .text span{
        font-size: 180px;
        margin-bottom: 25px;
    }
    .text .descraption{
        font-size: 25px;
        line-height: 37px;
    }
    .btn button{
        width: 320px;
        height: 320px;
        font-size: 40px;
    }
}
@media screen and (max-width:1010px) {
    body{
        background-size: 120vw;
    }
    .header img{
        margin-left: 15px;
        margin-top: 10px;
        scale: .9;
    }
    .header .menu{
        width: 75%;
        height: 115px;
    }
    .header .menu ul li{
        margin: 0 22px 0 14px;
        height: 110px;
    }
    .header .menu ul li a{
        font-size: 18px;
    }
    .btn{
        margin: 80px auto 0 auto ;
    }
    .content{
        margin-top: 60px;
    }
    .text .title{
        font-size: 32px;
    }
    .text span{
        font-size: 160px;
        margin-bottom: 25px;
    }
    .text .descraption{
        font-size: 22px;
        line-height: 37px;
    }
    .btn button{
        width: 280px;
        height: 280px;
        font-size: 38px;
    }
}
@media screen and (max-width:780px) {
    .menu{
        display: block;
    }
    .closebtn , .menubtn{
        display: none;
    }
    .btn{
        margin: 13px auto 0 auto ;
    }
    .content{
        margin-top: 22px;
    }
    .text .title{
        font-size: 30px;
    }
    .text span{
        font-size: 145px;
        margin-bottom: 15px;
    }
    .text .descraption{
        font-size: 20px;
        line-height: 35px;
    }
    .btn button{
        width: 250px;
        height: 250px;
        font-size: 36px;
    }
}


/* media query for mobile */
@media screen and (max-width:700px) {
    .header img{
        margin-left: 8px;
        margin-top: 15px;
        scale: 1.2;
    }
    .header .menu ul{
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-left: 40px !important;
        height: 100%;
    }
    .header .menu li{
        height: 30px !important;
        margin: 30px 0 30px 30px !important;
        flex-direction: row;
    }
    .header .menu li a{
        font-size: 28px;
    }
    .header .menu li a span{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 5px;
        height: 5px;
        position: absolute;
        font-size: 20px;
        top: 50%;
        left: -35px;
    }
    .header .menu{
        display: none;
        position: absolute;
        right: 0;
        top: 0;
        backdrop-filter: blur(25px);
        width: 75%;
        height: 100%;
        background-color: #11131d98;
    }
    .menubtn{
        content: "";
        width: 35px;
        height: 56px;
        position: absolute;
        background: url('/assets/shared/icon-hamburger.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        left: 86%;
        top: 4%;
        filter: grayscale(1);
        cursor: pointer;
        display: block;
    }
    .closebtn{
        content: "";
        width: 30px;
        height: 40px;
        position: absolute;
        background: url('/assets/shared/icon-close.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        left: 86%;
        top: 4%;
        filter: grayscale(1);
        cursor: pointer;
        z-index: 3;
    }
    .text{
        margin-top: 50px;
    }
    .btn{
        margin: 50px auto 0 auto ;
        height: auto;
    }
    .content{
        margin-top: 5px;
    }
    .text .title{
        font-size: 25px;
    }
    .text span{
        font-size: 110px;
        margin-bottom: 6px;
    }
    .text .descraption{
        font-size: 18px;
        line-height: 25px;
    }
    .btn button{
        width: 200px;
        height: 200px;
        font-size: 30px;
    }
}

@media screen and (max-width:455px) {
    body{
        background: url('/assets/home/background-home-mobile.jpg');
        background-repeat: no-repeat;
        background-size: 100vw 100vh;
        background-position: center;
        overflow: hidden;
    }
    .header{
        padding-left: 0;
        width: 100%;
    }
    .header .menu{
        width: 80%;
    }
    .header img{
        margin-left: 20px;
        margin-top: 20px;
        scale: 1;
    }
    .menubtn{
        left: 85%;
        top: 2.5%;
    }
    .closebtn{
        left: 85%;
        top: 3%;
    }
    .btn{
        margin: 120px auto 0 auto ;
        height: auto;
        width: 100%;
    }
    .content{
        margin-top: 5px;
        width: 90%;
    }
    .text .title{
        font-size: 20px;
    }
    .text span{
        font-size: 90px;
        margin-bottom: 8px;
    }
    .text .descraption{
        font-size: 15px;
        line-height: 27px;
    }
    .btn button{
        width: 170px;
        height: 170px;
        font-size: 27px;
    }
}
@media screen and (max-width:400px) {
    .btn{
        margin: 50px auto 0 auto ;
        width: 100%;
    }
    .btn button{
        width: 150px;
        height: 150px;
        font-size: 24px;
    }
    .text .title{
        font-size: 18px;
    }
    .text span{
        font-size: 80px;
        margin-bottom: 6px;
    }
    .text .descraption{
        font-size: 14px;
        line-height: 25px;
    }
}
@media screen and (max-width:345px) {
    .header img{
        margin-left: 20px;
        margin-top: 20px;
        scale: 0.8;
    }
    .menubtn{
        width: 20px;
        height: 25px;
        left: 85%;
        top: 5%;
    }
    .closebtn{
        width: 20px;
        height: 25px;
        left: 85%;
        top: 5%;
    }
    .text{
        margin-top: 70px;
    }
    .btn{
        margin-top: 70px;
    }
    .text .title{
        font-size: 15px;
    }
    .text span{
        font-size: 60px;
        margin-bottom: 6px;
    }
    .text .descraption{
        font-size: 12px;
        line-height: 20px;
    }
    .btn button{
        width: 130px;
        height: 130px;
        font-size: 23px;
    }
}
@media screen and (max-width:300px) {
    .text .descraption{
        font-size: 9px;
        line-height: 14px;
    }
    .btn button{
        width: 100px;
        height: 100px;
        font-size: 18px;
    }
}
