*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

p.logo-bottom-p{
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
    font-size: 15px;
    text-align-last: center;
    color: rgba(0,0,0,.8);
    font-weight: bold;
}
p.img-bottom-p{
    max-width: 350px;
    margin: 20px auto;
    text-align: center;
    font-size: 15   px;
    text-align-last: center;
    color: rgba(0,0,0,.8);
    margin-top: 0;
}

/* TOP BUTTONS START */

.top-buttons{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 5%;
}
.top-buttons .button button{
    background-color: transparent;
    color: black;
    font-size: 18px;
    border: none;
    width: 100%;
    height: 100%;
}
.top-buttons .button{
    width: 200px;
    height: 50px;
    position: relative;
}
.top-buttons .button span{
    position: absolute;
    background-color: black;
    transition: 0.5s;
}
.top-buttons .button:hover span:nth-child(2),.top-buttons .button:hover span:nth-child(3),.top-buttons .button:hover span:nth-child(6),.top-buttons .button:hover span:nth-child(7){
    width: 50%;
}
.top-buttons .button span:nth-child(2){
    width: 20%;
    height: 2px;
    top: 0;
    left: 0;
}
.top-buttons .button span:nth-child(3){
    width: 20%;
    height: 2px;
    bottom: 0;
    left: 0;
}
.top-buttons .button span:nth-child(4){
    width: 2px;
    height: 100%;
    bottom: 0;
    left: 0;
}
.top-buttons .button span:nth-child(5){
    width: 2px;
    height: 100%;
    bottom: 0;
    right: 0;
}
.top-buttons .button span:nth-child(6){
    width: 20%;
    height: 2px;
    top: 0;
    right: 0;
}
.top-buttons .button span:nth-child(7){
    width: 20%;
    height: 2px;
    bottom: 0;
    right: 0;
}

/* TOP BUTTONS END */

.container{
    width: 100%;
    height: 100vh;
    background-image: url(../img/header_back.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 10px 0;
    position: relative;
    overflow-y: scroll;
}
.container footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: gray;
    font-size: 12px;
    padding: 5px 0;
}
.container footer a{
    color: white;
    text-decoration: none;
    font-size: 12px;
}

.top-text{
    text-align: center;
    margin-top: 0px;
    z-index: 50;
    position: relative;
}
.top-text img{
    width: 230px;
}
.card-box{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    padding: 0 5%;
    margin-bottom: 50px;
    z-index: 100;
    position: relative;
}
/* .card{
    position: relative;
    cursor: pointer;
    width: 280px;
    height: 350px;
    border-radius: 10px;
    margin: 0 auto;
} */
.card img{
    width: 100%;
    max-width: 350px;
    margin: 30px auto;
    display: block;
    border-radius: 5px;
    transition: 0.3s;
    filter: grayscale(0);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.card img:hover{
    transform: scale(1.05);
    filter: grayscale(30%);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.img-link{
    display: inline-block;
    margin: 0;
    padding: 0;
}
.card .link-btn{
    display: block;
    width: 140px;
    height: 40px;
    border: 2px solid black;
    line-height: 37px;
    font-size: 13px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    color: black;
    text-decoration: none;
}
.card .link-btn:hover{
    background-color: black;
    color: white;
}
.container .clouds{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    user-select: none;
}
.container .clouds img{
    position: absolute;
    user-select: none;
}
.container .clouds img:nth-child(1){
    left: 0;
    animation: cloudAnimation 60s linear infinite;
}
.container .clouds img:nth-child(2){
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.3;
    animation: cloudAnimation1 75s linear infinite;
}
.container .clouds img:nth-child(3){
    top: 15%;
    left: 0;
    animation: cloudAnimation 75s linear infinite;
}

@keyframes cloudAnimation{
    0%{
        left: -100%;
    }
    100%{
        left: 100%;
    }
}
@keyframes cloudAnimation1{
    0%{
        left: 0;
    }
    100%{
        left: 100%;
    }
}

@media screen and (max-width: 1200px){
    .container{
        overflow-y: scroll;
    }
    .card-box{
        margin-bottom: 30px;
    }
    .card-box{
        margin-top: 50px;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px 0;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    footer{
        background-color: black;
    }
}
@media screen and (max-width: 620px){
    .card-box{
        grid-template-columns: 100%;
    }
    .top-text p{
        padding: 0 10px;
    }
}



/* ABOUT START */
.about-container{
    width: 100%;
    height: 100%;
    background-image: url(../img/header_back.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 30px;
}
.about-inner{
    background-color: rgba(255,255,255,0.3);
    border-radius: 5px;
    padding: 40px 5%;
}
.about-inner h1{
    margin: 30px 0;
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    position: relative;
}
.about-inner h1::before{
    content: "";
    width: 200px;
    height: 3px;
    position: absolute;
    bottom: -15px;
    background-color: #70843C;
}
.about-inner p{
    color: rgba(0,0,0,.8);
    margin: 30px 0;
    text-align: justify;
}
.about-inner ul{
    padding-left: 40px;
}
.about-inner ul li{
    color: black;
    margin: 5px 0;
}
.about-inner a{
    color: black;
    text-decoration: none;
}
.border-class{
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 40px;
}
/* ABOUT END */

@media screen and (max-width: 1025px){
    .about-inner h1{
        font-size: 22px;
    }
    .about-inner h1::before{
        width: 150px;
    }
}

@media screen and (max-width: 480px){
    .about-inner h1{
        font-size: 20px;
    }
    .about-inner{
        background-color: transparent;
        padding: 0;
    }
}



.contact-form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 10%;
}
.contact-form h1{
    margin-bottom: 30px;
}
.form, .info{
    padding: 40px;
}

.contact-form form input,.contact-form form textarea{
    width: 100%;
    margin: 10px 0;
    height: 45px;
    padding-left: 15px;
    font-weight: bold;
}
.contact-form form textarea{
    padding-top: 15px;
    height: 120px;
    resize: none;
}

.info ul li{
    margin: 25px 0;
    list-style: none;
}
.info ul li a{
    text-decoration: none;
    color: black;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}
.info ul li a:hover{
    color: #70843C;
}
.info ul li i{
    display: inline-block;
    margin-right: 10px;
}
.contact-form input[type="submit"]{
    border: 2px solid black;
    background-color: black;
    color: white;
    transition: 0.3s;
    font-size: 16px;
}

.contact-form input[type="submit"]:hover{
    background-color: white;
    color: black;
    cursor: pointer;
}


@media screen and (max-width: 1025px){
    .contact-form{
        display: grid;
        grid-template-columns: 100%;
    }
}

@media screen and (max-width: 480px){
    .contact-form{
        padding: 30px 5%;
    }
    .contact-form h1{
        margin-bottom: 30px;
    }
    .form, .info{
        padding: 0;
    }
    .info{
        margin-top: 40px;
    }
    .top-buttons .button{
        width: 150px;
        height: 50px;
        position: relative;
    }
}