@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
header{
    position: fixed;
    background-color: rgba(255,255,255,.1);
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: 1s ease;
}
header.sticky{
    background:#13AF88;
    padding: 20px 80px;
}

header .brand{
    color: white;
    font-size: 32px;
    font-weight: 700;
}
header .navigation{
    position: relative;
}
header .navigation a{
    text-decoration: none;
    color: white;
    font-size: 17px;
    margin-left: 30px;
    font-weight: 500;
    transition: .5s ease;
}
.navigation-btn{
    border: 2px solid white;
    padding: 5px;
    border-radius: 5px;
}
.navigation-btn2{
    border: 2px solid white;
    padding: 5px 15px;
    border-radius: 5px;
}
header .navigation a:hover{
    color: #a7f7e3;
    border-color: #a7f7e3;
}
.navigation-btn2:hover{
    border: 2px solid #1E2A4F !important;
    color: #1E2A4F !important;
}
section{
    padding: 100px;
}
.ul{
    position: relative;
    top: 0;
    left: 0;
    background-color: black;
}
.main{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.527),rgba(0, 0, 0, 0.5)), url(../img/about.JPG);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: black;
}
.content .main-title{
    color:white;
    font-size: 40px;
}
.content .main-text{
    color: white;
    font-size: 30px;
    margin-bottom: 10px;
}
.content .main-text-font{
    color: white;
    font-size: 15px;
}
.title{
    width: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
    flex-direction: column;
}
.section-title{
    position: relative;
    color: #1E2A4F;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 60px;
}
.section-title::before{
    content: "";
    position: absolute;
    top: 56px;
    left: 50%;
    width: 140px;
    height: 4px;
    background: #1E2A4F;
    transform: translateX(-50%);
}
.section-title::after{
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background:#1E2A4F;
    transform: translateX(-50%);
}

/* about */

.about .content{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.about .content .col-left{
    position: relative;
    width: 45%;
}
.about .content .col-right{
    position: relative;
    width: 45%;
}
.about .content .col-left .img-card{
    position: relative;
    width: 100%;
    height: 450px;
}
.about .content .col-left .img-card img{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.about .col-right .about-title{
    text-align: center;
    color: #1E2A4F;
    margin-bottom: 10px;
}
.about .col-right .about-text{
    color: #1E2A4F;
}
.news{
    padding: 30px;
    padding-bottom: 100px;
}
.news-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.news .content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.news .content .card{
    position: relative;
    width: 300px;
    margin: 15px;
    box-shadow: 0 5px 25px rgba(1 1 1 /15%);
    padding: 20px;
    border-radius: 10px;
}
.news .content .card-img{
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;

}
.news .content .card-img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .5s ease;
}
.news .content .card-img img:hover{
    cursor: pointer;
    transform: scale(1.2);
}
.news .content .card-info{
    color: #1E2A4F;
    margin-top: 10px;
    text-align: center;
}
.news span{
    position: absolute;
    color: #1E2A4F;
    opacity: .7;
    font-size: 13px;
    bottom: 10px;
    left: 10px;
}
.services .content{
    padding: 30px;
    background: #000016;
}
.services .content{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.services .content .card{
    width: 200px;
    height: 150px;
    margin: 20px 50px;
}

.services .content .card .services-icon{
    font-size: 50px;
    text-align: center;
    color: white;
    transition: .5s ease;
}
.services .content .card:hover .services-icon{
    transform: translateY(-10px);
    cursor: pointer;
}
.services .content .card .info{
    text-align: center;
    font-size: 16px;
    color: white;
}
.announcement{
    position: relative;
}
.announcement .content{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.announcement .content .video-card{
    width: 1000px;
    height: 500px;
}

.announcement-text{
    margin-top: 30px;
    color: #1E2A4F;
}
.contact .content{
    position: relative;
    display: flex;
    justify-content: center;
}
.contact-form{
    background: white;
    max-width: 600px;
    margin-top: 50px;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(1 1 1 /15%);
}
.contact-form h3{
    color: #111;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}
.contact-form .input-box{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.contact-form .input-box input,
.contact-form .input-box textarea{
    color: #111;
    width: 100%;
    padding: 10px;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    border: 1px solid #111;
    border-radius: 5px;
    resize: none;
}
.contact-form .input-box .send-btn{
    color: white;
    background:#13AF88;
    font-size: 19px;
    font-weight: 500;
    border: none;
    letter-spacing: 2px;
    width: 100%;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase ;
    transition: .5s ease;
}
.contact-form .input-box .send-btn:hover{
    background: white;
    color: black;
    border: 1px solid #111;
}

footer{
    background: #000016;
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
footer .footer-left{
    position: relative;
    width: 45%;
}
footer .footer-right{
    position: relative;
    width: 45%;
}
footer .footer-left .footer-img{
    display: flex;
    flex-direction: row;
}
footer .footer-left .footer-img img{
    width: 60px;
    height: 60px;
}
.img-title{
    margin-top: 30px;
    margin-left: 20px;
    color: white;
}
.footer-title{
    color: white;
    margin: 20px 0;
}
footer .footer-icon{
    display: flex;
    flex-direction: column;
}
footer .footer-icon .icon{
    font-size: 30px;
    color:#13AF88;
    margin: 15px;
}
footer .footer-icon a{
    text-decoration: none;
    color: white;
    font-size: 15px;
}
footer .maps-title{
    color: white;
    text-align: center;
    margin-bottom: 25px;
}
footer .maps{
    text-align: center;
}
.scrollToTop-btn{
    z-index: 999;
    position: fixed;
    background:#13AF88;
    color: white;
    width: 45px;
    height: 45px;
    right: 0;
    bottom: 10px;
    font-size: 22px;
    text-align: center;
    line-height: 45px;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0;
    transition: all .5s ease;
}
.scrollToTop-btn.active{
    right: 10px;
    opacity: 1;
}
.reveal{
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all .5s ease;
}
.reveal.active{
    transform: translateY(0);
    opacity: 1;
}

@media(max-width:1049px){
    header .navigation{
        display: none;
    }
    .menu-btn{
        position: absolute;
        background: url(../img/menu.png) no-repeat;
        background-position: center;
        background-size: 30px;
        width: 40px;
        height: 40px;
        right: 0;
        margin: 0 20px;
        cursor: pointer;
        transition: .4s ease;
    }
    .menu-btn.active{
        background: url(../img/close.png) no-repeat;
        z-index: 999;
        background-size: 25px;
        background-position: cover;
        margin-top: 20px;
    }
    .navigation.active{
        z-index: 888;
        position: fixed;
        background: white;
        top: 0;
        right: 0;
        width: 380px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: 0 5px 25px rgba(1 1 1 /15%);
        transition: .4s ease;
    }
    .navigation.active a{
        color: black;
        margin: 10px 0;
    }
    section{
        padding: 80px 20px;
    }
    footer .column,
    .about .content .column{
        position: relative;
        width: 100%;
        align-items: center;
    }
    .about-title{
        margin-top: 20px;
    }
    .announcement .content .video-card{
        width: 350px;
        height: 180px;
    }
    .announcement-text{
        text-align: center;
    }
    .news-row{
        flex-direction: column;
    }
    footer .maps iframe{
        width: 300px;
        height: 300px;
    }

}
