@font-face {
    font-family: 'DMsans-medium';
    src: url('fonts/DMSans-Medium.ttf');
}

:root {
    --bgcolor: #ffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

#active {
    color: #B1AFE6 !important;
}


/* Header section */

header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-section {
    background-color: var(--bgcolor);
    padding: 1vw 3vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1800px;
}

.header-logo {
    color: black;
    align-self: center;
    margin-left: 1.2rem;
}

.header-logo img {
    width: 10vw;
}

.desk-menu {
    margin: auto;
}

.desk-menu ul {
    float: right;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-item {
    float: right;
}

.desk-menu ul li {
    display: inline-block;
    vertical-align: middle;
}

.desk-menu a {
    color: black;
    padding: 1rem 2rem;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2vw;
    font-family: DMsans-medium;
    text-wrap: nowrap;
}

.menu-icon {
    color: black;
    cursor: pointer;
    display: none;
}

.nav-button {
    font-size:1.2vw;
    background-color: #B1AFE6;
    border: 1px solid #B1AFE6;
    border-radius: 5px;
    padding: .5vw 2vw;
    font-family: DMsans-medium;
    color: #ffff;
    margin-left: 2rem;
}
.nav-button a{
    padding:0  ;
    color: #fff;
}

.active {
    color: #B1AFE6 !important;
    background-color: transparent;
}


/* dropdown */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffff;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 45px;
}

.dropdown-content a {
    color: black !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-weight: 300 !important;
    font-family: DMsans-medium;
    border-bottom: 1px solid #B1AFE6;
}

.dropdown-content a:hover {
    background-color: #b1afe696;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* footer section */

footer {
    width: 100%;
    display: flex;
    justify-content: center;
}

footer section {
    width: 100%;
    max-width: 1800px;
}

.footer-section {
    background-color: var(--bgcolor);
    padding: 5rem 3rem 2rem;
    display: flex;
    justify-content: flex-end;
    /* align-items: center; */
}

.column1 {
    width: 40%;
}

.footer-logo {
    align-self: center;
}

.sub-copy {
    padding: 1.5rem 13.5rem 1.5rem 0;
}

.sub-copy p {
    color: #4f4f4f;
    text-decoration: none;
    font-size: 17px;
    font-family: DMsans-medium;
}

.social-icons {
    display: flex;
    justify-content: start;
}

.social-icons i {
    color: white;
    background-color: #8caae4;
    padding: 10px;
    border-radius: 50%;
    font-size: 25px;
    margin: 0px 2px;
}

.social-icons i.fa-facebook {
    padding: 10px 13px;
}

.social-icons i.fa-instagram {
    padding: 10px 11px;
}

.column2 {
    width: 15%;
}

.column2 h3 {
    color: #2f2f2f;
    text-decoration: none;
    font-size: 18px;
    font-family: DMsans-medium;
    line-height: 3rem;
}

.column2 p {
    color: #2f2f2f;
    text-decoration: none;
    font-size: 16px;
    font-family: DMsans-medium;
    line-height: 1.6rem;
}

.column2 p a {
    color: inherit;
    text-decoration: none;
}

.column3 {
    width: 15%;
}

.column3 h3 {
    color: #2f2f2f;
    text-decoration: none;
    font-size: 18px;
    font-family: DMsans-medium;
    line-height: 3rem;
}

.column3 p {
    color: #2f2f2f;
    text-decoration: none;
    font-size: 16px;
    font-family: DMsans-medium;
    line-height: 1.6rem;
}

.column3 p a {
    color: inherit;
    text-decoration: none;
}

.column4 {
    width: 25%;
}

.column4 h3 {
    color: #2f2f2f;
    text-decoration: none;
    font-size: 1.3rem;
    font-family: DMsans-medium;
    line-height: 3rem;
}

.column4 p {
    color: #2f2f2f;
    text-decoration: none;
    font-size: 1rem;
    font-family: DMsans-medium;
    line-height: 1.6rem;
}

.column4 i {
    color: #8caae4;
    margin-right: 10px;
    color-scheme: #7a00d84f;
}

.footer-copy {
    background-color: var(--bgcolor);
    padding: 1rem 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copy p {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-family: DMsans-medium;
    line-height: 2rem;
}


/* Mobile view */

@media screen and (max-width: 768px) {
    /* header */
    .header-section {
        padding: 1rem 1.3rem;
    }
    .desk-menu {
        display: none;
        position: absolute;
        top: 3.7rem;
        left: 0;
        z-index: 10;
        width: 100%;
        background-color: var(--bgcolor);
        text-align: center;
    }
    .desk-menu.responsive {
        display: block;
        margin-top: 10px;
        padding-bottom: 40px;
    }
    .nav-item {
        float: none;
    }
    .desk-menu ul {
        float: none;
    }
    .desk-menu a{
        font-size: 4.5vw;
    }
    .nav-item {
        float: none;
    }
    .desk-menu ul{
        flex-direction: column;
    }
    .desk-menu ul li {
        display: block;
        
    }
    .desk-menu a {
        display: block;
    }
    .menu-icon {
        display: block;
        z-index: 1;
    }
    .menu-icon i.fa {
        font-size: 25px !important;
        color: #8280CB;
    }
    button {
        padding: 0.4rem;
    }
    .social-icons i{
        
        font-size: 6vw;
    }
    .header-logo {
        margin-left: 0.2rem;
    }
    .header-logo img {
        width: 120px;
    }
    /* footer */
    .footer-section {
        padding: 2rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .column1,
    .column2,
    .column3,
    .column4 {
        width: 100%;
        padding: 10px 0px;
    }
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    .sub-copy {
        padding: 2rem 0;
    }
    .sub-copy p {
        text-align: center;
    }
    .social-icons {
        display: flex;
        justify-content: center;
    }
    .column2,
    .column3,
    .column4 {
        text-align: center;
    }
    .footer-copy {
        padding: 1rem 3rem 2rem;
    }
    .footer-copy p {
        line-height: 1.5rem;
        text-align: center;
    }
    .show{
        display: block !important;
    }
    .dropdown:hover .dropdown-content {
        display:none;
    }
    .nav-button {
        font-size:4.5vw;
        background-color: #B1AFE6;
        border: 1px solid #B1AFE6;
        border-radius: 5px;
        padding: 1.5vw 4vw;
        font-family: DMsans-medium;
        color: #ffff;
        margin-left: 0;
        margin-top: 1rem;
    }
    .nav-button a{
        padding:0  ;
        color: #fff;
    }
}