@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
*{
    padding: 0;
    margin: 0;
}
body{
    padding: 0;
    margin: 0;
    font-family: 'Poppins';
}
.wrap_landing_page{
    text-align: center;
    display: block;
    padding: 50px 150px;
}
.academy_row h3{
    line-height: 36px;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}
.academy_row p{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}
.academy_box{
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 35px 50px;
    margin: 35px 0 45px 0;
}
.academy_box ul{
    display: flex;
    list-style-type: none;
    justify-content: center;    
}
.academy_box ul.workshop li:first-of-type{
    width: 49%;
}
.academy_box ul.workshop li:nth-child(2n){
    width: 72%;
}
.academy_row h4{
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
} 
.academy_row p.info{
    margin: 0 0 35px;
}
.academy_box h3{
    margin-top: 35px;
}
.academy_box ul li{
    color: #fff;
    font-size: 18px;
    padding: 0 15px 0 30px;
    position: relative; 
    text-align: left;
    box-sizing: border-box;
}
.academy_box ul li:before{
    content: "";
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 5px;
    position: absolute;
    left: 15px;
    top: 10px;
}

.academy_row img{
    margin-bottom: 35px;
}
.btn_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.btn_wrap a{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid #FFF;
    box-shadow: -6px 6px 12px 0px rgba(0, 0, 0, 0.07), 6px -6px 12px 0px rgba(0, 0, 0, 0.07);
    padding: 35px 220px 35px 150px;
    position: relative;
    margin: 0 25px;
    text-decoration: none;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    text-align: left;
}
.btn_wrap a.book_btn:before{
    content: "";
    background: url('./images/book_builder.svg') no-repeat center/contain;
    width: 95px;
    height: 86px;
    position: absolute;
    left: 25px;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
}

.btn_wrap a.book_btn:after,
.btn_wrap a.leder_btn:after{
    content: "";
    background: url('./images/white_arrow.svg') no-repeat center/contain;
    width: 36px;
    height: 36px;
    position: absolute;
    right: 25px;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
}
.btn_wrap a.leder_btn:before{
    content: "";
    background: url('./images/leader.svg') no-repeat center/contain;
    width: 95px;
    height: 86px;
    position: absolute;
    left: 25px;
}
.btn_wrap a.book_btn:hover:before{
    content: "";
    background: url('./images/hover_book.svg') no-repeat center/contain;
}
.btn_wrap a.leder_btn:hover:before{
    content: "";
    background: url('./images/leader_hover.svg') no-repeat center/contain;
}
.btn_wrap a.book_btn:hover:after,
.btn_wrap a.leder_btn:hover:after{
    content: "";
    background: url('./images/arrow.svg') no-repeat center/contain;
}
.btn_wrap a:hover{
    background: #fff;
}
.btn_wrap a p,
.btn_wrap a h4{
    margin: 0;
}
.btn_wrap a:hover p,
.btn_wrap a:hover h4{    
    color: #000;
}

@media(max-width:1400px){
    .wrap_landing_page{
        padding: 50px;
    }
}

@media(max-width:1099px){
    .btn_wrap{
        flex-direction: column;
        width: 100%;
    }
    .btn_wrap a{
        margin-bottom: 20px;
        width: 300px;
    }
    .academy_box ul{
        flex-direction: column;
        text-align: left;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    .academy_box ul li:before{
        left: 0;
    }
    .academy_box ul.workshop li:first-of-type,
    .academy_box ul.workshop li:nth-child(2n){
        width: 100%;
    }
    .btn_wrap a.book_btn:before,
    .btn_wrap a.leder_btn:before{
        width: 65px;
        height: 56px;
    }
    .btn_wrap a{
        padding: 35px 70px 35px 100px;
    }
    .academy_row .book_btn h4,
    .academy_row .leder_btn h4{
        font-size: 20px;
    }
    .academy_box{
        padding: 20px;
    }
    .wrap_landing_page{
        padding: 50px 20px;
    }
    .btn_wrap a.book_btn:before,
    .btn_wrap a.leder_btn:before{
        left: 15px;
    }
    .academy_row h3{
        font-size: 22px;
    }
    .academy_row h4{
        font-size: 20px;
    }
    .academy_box ul li{
        font-size: 16px;
    }
}
@media(max-width:480px){
    .btn_wrap a{
        width: 180px;
    }
    .academy_row .book_btn h4,
    .academy_row .leder_btn h4{
        font-size: 18px;
    }
    .btn_wrap{
        margin-bottom: 20px;
    }
    .academy_box ul li{
        padding-left: 20px;
    }    
    .academy_row img{
        width: 100%;
    }
}