*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --main-grey-white-color: #EBEBEB;
    --main-black-color:#232323;
    --special-tags-color: rgba(216, 209, 193, 0.63);
    --button-color:#d8d8d8;
}

body{
    list-style: none;
    background-color: #EBEBEB;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    overflow-x: hidden;
}

main{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}
.header {
    padding: 1.6rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 61px;
}

.header img {
    height: 53px;
}

.navbar-lists {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-lists li {
    margin-right:43px;
}

.navbar-lists li:last-child {
    margin-right: 0;
}

.navbar-link {
    color: var(--main-black-color);
    transition: background-color 0.3s;
}

.navbar-lists li i{
    color: var(--main-black-color);
    cursor: pointer;
}

.icon {
    display: none;
}
.navbar-lists li:nth-child(1) i {
    color: rgb(48, 87, 15);
}

.navbar-lists li:nth-child(2) i {
    color: rgb(0, 0, 0);
}

.navbar-lists li:nth-child(3) i {
    color: rgb(11, 12, 11);
}

.dropdown-content a:nth-child(1) i {
    color: rgb(73, 86, 110);
}

.dropdown-content a:nth-child(2) i {
    color: rgb(255, 255, 255);
}

.dropdown-content a:nth-child(3) i {
    color: rgb(255, 255, 255);
}


@media screen and (max-width: 768px) {
    img{
        display: none;
    }
    .icon {
        display: flex;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 999;
        color: var(--main-black-color);
        font-size: 24px;
        cursor: pointer;
        flex-direction: row-reverse;
    }

    .navbar-lists {
        display: flex;
        position: fixed;
        top: 61px;
        left: -100%;
        background-color: var(--main-black-color);
        width: 35%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: left 0.3s ease;
        z-index: 998;
        padding-left: 20px;
    }

    .navbar-lists i{
        padding-left: 30px;

    }

    .navbar-lists.responsive {
        left: 0;
        margin-right: 2rem;
    }

    .navbar-lists.responsive li {
        margin: 10px 0;
    }

    .navbar-link {
        padding: 5px 20px;
        text-align: left;
        width: 100%;
    }

    .navbar-link i {
        display: none;
    }

}




@media screen and (max-width: 768px) {
  
}


/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    color: var(--main-grey-white-color);

}

/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: var(--main-black-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    border: none;
    cursor: pointer;
}


.dropbtn i {
    margin-left: 4px;
    color: var(--main-black-color);

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--main-black-color);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    width: 160px;
}

.dropdown-content a {
    color: var(--main-grey-white-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
}

.dropdown-content a i {
    margin-right: 5px;
    color: var(--main-grey-white-color);
}

.dropdown-content a:hover {
    background-color: #a0a0a0c9;
}

.dropdown:hover .dropdown-content {
    display: block;
}


@media screen and (max-width: 768px) {
    .dropdown {
        display: block;
        margin-bottom: 10px;
    }

    .dropdown-content {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        min-width: auto;
        border-radius: 0;
        width: 100%;
        top: initial;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropbtn {
        padding: 10px 20px;
    }

    .dropdown-content a {
        padding: 10px 20px;
    }

    .dropdown-content a i {
        display: none;
    }

    .dropdown:hover .dropdown-content a i {
        display: inline-block;
    }
}

.back-arrow{
    display: flex;
    width: 15%;
    padding: 2%;
    font-size: 25px;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: #232323;
}
.container{
    display: flex;
    flex-direction: row;
}
.container .centered{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}

.btn_wrap{
    display: flex;
    margin-top: 10rem;
    flex-direction: row;
}

.btn_wrap button{
    background-color: #d8d8d8;
    padding: 5px 25px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    font-size: 15px;
    text-decoration: none;
    border: none;
    margin-right: 4rem;
}
.btn_wrap button:hover{
    background-color: #c4c4c4;
    cursor: pointer;
}

.underline{
    margin-top: 5rem;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}