* {
    margin: 0px;
}

body {
    margin: 0px;
    background-color: rgb(204, 165, 129);
    font-family: "MontserratM";

}

/******* NAV START ******/
nav {
    display: flex;
    flex-direction: row;
    height: 80px;
    border: 1px red solid;
    justify-content: space-between;
    align-items: center;
    /*background-color: rgb(196,151,114);*/
    z-index: 10;
    padding-top: 60px;
}

/*******BURGER MENU START ******/
.burger_menu {
    display: none;
    position: fixed;

    backdrop-filter: blur(5px);
    top: 65px;
    right: 20px;
    width: 40px;
    aspect-ratio: 1;
    /*outline: solid white 2px;*/
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 5px;
    z-index: 1000;
    cursor: pointer;

}

.burger_menu>div {
    width: 90%;
    height: 5px;
    background: white;
    pointer-events: none;
}

.burger_menu_links {
    display: none;
    position: absolute;
    top: 100%;
    right: 100%;
    padding: 40px;
    background: #16172CF5;
    color: white;
    font-weight: 500;
    line-height: 150%;
    flex-direction: column;
    z-index: 1000;
    gap: 20px;
    border-radius: 25px 0 25px 25px;
    text-align: right;
    border-left: solid 1px rgba(255, 255, 255, 0.5);
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    cursor: default;
}

.burger_menu_links>* {
    cursor: pointer;
}

.burger_menu_links_visible {
    display: flex;
}

.burger_menu_links_ajanlat {
    color: #00DBB9;
}

/***** BURGER MENU END ******/

.contact_but {
    font-size: 14px;
    padding: 20px;
    color: white;

}

.event_but {
    background-color: rgba(29, 41, 67, 1);
    padding: 20px;
    border-radius: 90px;
    font-size: 14px;

}

.event_but>a {
    text-decoration: none;
    color: white;

}

header {
    display: flex;
    flex-direction: column;
}

#nav_left {
    display: flex;
    flex-direction: row;
    padding-left: 100px;
}

#nav_right {
    gap: 30px;
    display: flex;
    flex-direction: row;
    padding-right: clamp(0px, 100px, 100px);
}

#logo {
    max-height: 60px;
    display: flex;
    object-fit: contain;
    height: auto;
    width: auto;
}

/***** NAV END *****/


main {
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px blue solid;
    justify-content: center;

    /*align-items: center;*/
    height: max-content;
    top: 70px;

}

main>img {
    display: block;
    position: absolute;
    opacity: 20%;

    width: 100%;
    height: auto;
}


/******* FOOTER START *********/

footer {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 156px;
    background-color: white;
    top: 150px;
    padding-left: 100px;
    padding-right: 100px;
}

.footer_img {
    display: flex;
    flex-direction: column;
}

.footer_dev {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer_school {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

/******* FOOTER END *********/


@font-face {
    font-family: "MontserratM";
    src: url(/fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: "MontserratSB";
    src: url(/fonts/Montserrat-SemiBold.ttf);
}

@media screen and (max-width: 860px) {
    .footer_dev {
        display: none;
    }

    .navbar_links {
        display: none;
    }

    #nav_right {
        display: none;
    }

    .navbar {
        display: flex;

    }

    #nav_left {
        display: flex;


    }

    .navbar {
        justify-content: flex-start;
    }

    .burger_menu {
        display: flex;
    }
}

/***** BACK TO MAIN START ******/

#backtomain {
    display: flex;
    position: relative;
    flex-direction: row;
    padding-left: 100px;
    font-size: 18px;
    font-weight: 500;
    top: 20px;
    text-decoration: none;
    width: max-content;
}
#backtomainlink {
    color: black;
    text-decoration: none;
    z-index: 25;
}

/******** FACT SHORT DESC START *******/

#fact_short_desc {
    display: flex;
    flex-direction: column;
    position: relative;
    left: 100px;
}

.fact_short_desc_tag{
    display: flex;
    position: relative;
    padding: 10px 30px;
    border-radius: 90px;
    background-color: rgba(217, 214, 224, 1);
    width: max-content;
}

#fact_short_desc_title{
    font-size: 48px;
    font-weight: 500;
    color: white;
}

#fact_short_desc_text{
    font-size: 32px;
    font-family: "MontserratSB";
    font-weight: 600;
    color: rgba(134, 118, 118, 1);
    max-width: 979px;
    flex-wrap: wrap;
}

/****** CONCRETE COURSE WRAPPER START *******/

#concrete_course_wrapper{
    display: flex;
    flex-direction: row;
    
}

#concrete_course_wrapper_left{
    display: flex;
    flex-direction: column;
}

#concrete_course_wrapper_right{
        display: flex;
    flex-direction: column;
}