/* Reset & Common Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    outline: none;
}

:root {
    /* --font-primary: 'Raleway', sans-serif; */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Jost', sans-serif;
    /* --font-i-ico: 'Moul', sans-serif; */
    --font-additional-one: 'Playfair Display', serif;
    --font-additional-two: 'Abril Fatface', serif;
    /* --font-additional-three: 'Prata', serif; */
    --font-footer-one: 'Poppins', sans-serif;
    --font-footer-two: 'Antic', sans-serif;
}

html {
    font-size: 10px;
    font-family: var(--font-primary);
    scroll-behavior: smooth;
}

.languages {
    position: absolute;
    top: 2vh;
    left: 5vw;
    font-size: 1.5rem;
}

.languages p.lang {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    color: #000;
    transition: 0.5s;
}

.languages p.lang.on {
    font-weight: 400;
}

.languages p.lang:hover {
    font-weight: 100;
    text-decoration: none;
    font-size: 4rem;
}

.languages p.lang:visited {
    font-weight: 400;
    color: #fff;
}

.burger-menu {
    position: fixed;
    top: 2rem;
    right: 4rem;
    width: 5rem;
    height: 3rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
    /* background-color: coral; */
    transition: right 0.7s;
    z-index: 200;
}

.change .burger-menu {
    right: 80vw;
}

.line {
    width: 100%;
    height: 0.2rem;
    background-color: #888;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
}

.change .line {
    background-color: rgba(0, 0, 0, 0.8);
}

.change .up-line {
    transform: rotate(45deg) translate(0.3rem, 0.8rem);
}

.change .medium-line {
    opacity: 0;
    visibility: hidden;
}

.change .down-line {
    transform: rotate(-45deg) translate(0.3rem, -0.8rem);
}

.burger-menu span {
    position: absolute;
    left: 5rem;
    width: 10rem;
    height: 4rem;
    background-color: #e2b646;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.change .burger-menu:hover span {
    opacity: 1;
    visibility: visible;
}

.burger-menu span::before {
    content: "";
    position: absolute;
    border-left: 1rem solid transparent;
    border-right: 1rem solid #e2b646;
    border-bottom: 1rem solid transparent;
    border-top: 1rem solid transparent;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
}

.section-heading {
    padding: 5vh;
    padding-top: 8vh;
    font-family: var(--font-primary);
    /* font-family: var(--font-additional-two); */
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

/* sm */
@media (min-width: 576px) {
    .change .burger-menu {
        right: 85vw;
    }
}

/* md */
@media (min-width: 768px) {
    .languages {
        font-size: 1.7rem;
    }

    .burger-menu {
        top: 2rem;
        right: 5rem;
    }


}

/* xl */
@media (min-width: 1000px) {
    .languages {
        font-size: 2rem;
    }

    .burger-menu {
        top: 5rem;
        right: 5rem;
    }

    .change .burger-menu {
        right: 50rem;
    }
}

/* xxl */
@media (min-width: 1400px) {
    .change .burger-menu {
        right: 75rem;
    }
}



/* End of Reset & Common Styles */


/* Set 1 - Header */

.section1 {
    /* width: 100vw; */
    /* height: 30vh; */
    padding: 2vh 0;
    /* background-color: royalblue; */
}

.section1 .logo {
    width: 50%;
    height: 15vh;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    letter-spacing: 0.2rem;
    text-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.3);
    /* background-color: red; */
}

.section1 .logo h2 {
    font-size: 1rem;
    font-weight: 600;
}

.section1 .logo h2 a {
    color: #000;
    /* color: #777; */
}

.section1 .logo h2 a:hover {
    color: #000;
    /* color: #777; */
}

.section1 .logo h2 a:visited {
    color: #000;
    /* color: #777; */
}

.section1 .logo h3 {
    font-size: 1.7rem;
    color: #555;
    /* color: #000; */
}


/* sm */
@media (min-width: 576px) {

    .section1 .logo h2 {
        font-size: 1.2rem;
    }

    .section1 .logo h3 {
        font-size: 2rem;
    }
}

/* md */
@media (min-width: 768px) {

    .section1 .logo h2 {
        font-size: 1.5rem;
    }

    .section1 .logo h3 {
        font-size: 2.5rem;
    }
}

/* xl */
@media (min-width: 1200px) {

    .section1 .logo h2 {
        font-size: 1.5rem;
    }

    .section1 .logo h3 {
        font-size: 3rem;
    }
}

/* xxl */
@media (min-width: 1400px) {
    .section1 .logo h2 {
        font-size: 1.7rem;
    }

    .section1 .logo h3 {
        font-size: 4rem;
    }


}


/* End of Set 1 - Header */



/* Set 2 - Sidebar */

.sidebar {
    /* display: none; */
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    background-color: #f5f2f2;
    transition: right 0.5s;
    z-index: 100;
}

.change .sidebar {
    right: 0;
}

.menu-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50rem;
    transform: translate(-50%, -50%);
    /* background-color: aquamarine; */
}

.menu-item {
    text-align: center;
    /* text-align: right; */

}

.menu-item-link {
    font-family: var(--font-primary);
    /* font-family: var(--font-secondary); */
    font-size: 1.8rem;
    color: #555;
    position: relative;
}

.menu-item-link:before {
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    color: #c29525;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease-in-out
}

.menu-item-link:hover::before {
    width: 100%;
}

.social {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.social i {
    margin: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.2rem;
    color: #fff;
    border-radius: 50%;
    background-color: #777;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.social i:hover {
    background-color: #c29525;
}

@media (min-width: 400px) {
    .menu-item-link {
        font-size: 2rem;
    }
}


/* sm */
/* @media (min-width: 576px) {} */

/* md */
@media (min-width: 938px) {
    .sidebar {
        right: -60rem;
        width: 60rem;
    }

    .menu-item-link {
        font-size: 3rem;
    }
}

/* xl */
/* @media (min-width: 1200px) {} */

/* xxl */
@media (min-width: 1400px) {
    .sidebar {
        right: -90rem;
        width: 90rem;
    }

    .menu-nav {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80rem;
    }

    .menu-item-link {
        font-size: 4rem;
    }
}



/* End of Set 2 - Sidebar */



/* Set 3 - Kadry */

.section3 {
    padding: 2vh 1vw 0;
    margin-bottom: 20vh;
    /* background-color: royalblue; */
    /* max-width: 1720px; */
    /* margin: 0 auto; */
}

/* End of Set 3 - Kadry */






/* -- responsive - breakpoints -- */

/* sm */
/* @media (min-width: 576px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* xl */
/* @media (min-width: 1200px) {} */

/* xxl */
/* @media (min-width: 1400px) {} */