body {
    font-family: "Maitree", serif;
    background-image: url(../images/BACKG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

* {
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
}
*::selection{
    color: rgb(199, 187, 170);
}
header{
    display: grid;
    grid-template-columns: 1fr 9fr ;
    grid-template-areas:
        "i1 i2";
        margin-bottom: 90px;
}
header img{
        height: 150px;
        border-radius: 20px;
        margin: 10px;
        grid-area: i1;
}
.main_links{
            display: flex;
            justify-content: flex-end;
            gap: 270px;
            grid-area: i2;
            margin: 60px 200px 0 0;
            }
.main_links a{
    text-decoration: none;
    color: aliceblue;
    font-size: 20px;
}
.main_links a:hover{
    border-bottom: 3px solid rgb(199, 187, 170);
    color: rgb(199, 187, 170);
}
section h1{
    color: aliceblue;
    text-align: center;
    font-size: 30px;
}
section .way_to_train{
    display: flex;
    justify-content: center;
    gap: 600px;
}
section .way_to_train img{
    width: 400px;
    height: 400px;
    border-radius: 20%;
    transition: 1s;
    margin-bottom: 50px;
}
section .way_to_train img:hover{
    transform: translateY(-25px);
}
.footer {
    margin-top: 20px;
    padding: 40px 0 0;
    color:aliceblue;
}

.container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-left .logo {
    max-width: 150px;
    border-radius: 20px;
}

.footer-description {
    margin-top: 10px;
    font-size: 14px;
}

.footer-middle {
    display: flex;
    gap: 70px;
}
.footer-middle div:hover{
    h3{
            color: rgb(199, 187, 170);
    }
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color:aliceblue;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color:rgb(199, 187, 170);
}

.footer-right {
    text-align: right;
}
.footer-right:hover{
    color:rgb(199, 187, 170);
}

.social-icons i {
    width: 24px;
    height: 24px;
    padding: 10px;
    margin: 5px;
    color:aliceblue;
}
.social-icons i:hover{
    transform: scale(1.3);
    color: rgb(199, 187, 170);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
}