@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Blanka';
    src: url('/fonts/Blanka-Regular.woff') format('woff2'),
        url('/fonts/Blanka-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('/fonts/GlacialIndifference-Bold.woff') format('woff2'),
        url('/fonts/GlacialIndifference-Bold.woff2') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('/fonts/GlacialIndifference-Regular.woff') format('woff2'),
        url('/fonts/GlacialIndifference-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Glacial Indifference', sans-serif;
    height: 100vh;
    background-color: rgb(255, 255, 255);
}

.mainparts {
    display: flex;
    width: 100%;
    height: 300px;
    position: fixed;
    top: 0%;
    box-shadow: 0 0 10px black;
    padding: 20px 0;
    background-color: rgb(255, 255, 255);
    z-index: 2;
    animation: moveup 2s forwards;
}

@keyframes moveup {
    0% {
    height: 300px;
    }
    100% {
    height: 80px;
    }
}

.mainparts a {
    text-decoration: none;
    color: black;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    width: 165px;
    position: relative;
    left: 2%;
    justify-content: center;
}

.overlogo {
    position: absolute;
    background-color: rgb(255, 255, 255);
    padding: 4px;
    top: 44%;
    font-size: 50%;
    letter-spacing: 3px;
}

.logoa, .logor {
    font-family: 'Blanka', sans-serif;
    font-size: 4rem;
    padding: 0 10px;
    padding-bottom: 5px;
}

.logoa {
    border-right: 0.5px solid black;
}

.logor {
    border-left: 1px solid black;
}

.whatsapp {
    display: flex;
    width: 82px;
    height: 82px;
    position: fixed;
    right: 5%;
    top: 3%;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.whatsapp i:hover {
    font-size: 55px;
}

.whatsapp i {
    font-size: 50px;
    color: black;
}

.scroll-box {
    display: flex;
    width: 100%;
    padding-top: 150px;
    padding-bottom: 100px;
    justify-content: center;
    position: relative;
}

.scroll-box ul {
    list-style-type: none;
}

.scroll-box li {
    margin: 10px 0;
}

.scroll-box a {
    text-decoration: none;
    color: black;
}

.scroll-box i {
    margin-left: 5px;
    background-image: linear-gradient(90deg, black 0%, rgb(208, 208, 208) 50%, black 100%); 
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0% {
        background-position: 200% 0%;
    }
    100% {
        background-position: -200% 0%;
    }
}

.scroll-box a:hover {
    font-weight: bold;
}

.contactlink {
    display: flex;
    position: fixed;
    width: 100%;
    height: 300px;
    bottom: 0%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 10px black;
    font-size: 14px;
    justify-content: center;
    z-index: 2;
    animation: movedown 2s forwards;
}

@keyframes movedown {
    0% {
    height: 300px;
    }
    100% {
    height: 60px;
    }
}

.tag {
    display: flex;
    position: fixed;
    width: 100%;
    height: 300px;
    bottom: 0%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 10px black;
    font-size: 18px;
    justify-content: center;
    z-index: 2;
    animation: movedown 2s forwards;
}

.contactlink p {
    display: flex;
    align-items: end;
    text-align: center;
    padding: 2%;
}

.tag p {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 2%;
}

.commonpara {
    padding-top: 150px;
    padding-bottom: 100px;
    justify-content: center;
    width: 100%;
    position: relative;
}

.commonpara img {
    max-width: 100%;
}

img {
    width: 100%;
}

.commonpara h2 {
    text-align: center;
    margin-bottom: 25px;
}

.commonpara h4 {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 0 20px;
}

.commonpara p {
    margin-bottom: 20px;
    padding: 0 20px;
}

.commonlist {
    display: flex;
    width: 100%;
}

.commonlist li {
    padding: 10px 20px;
}

.commonlist i {
    margin-left: 5px;
    background-image: linear-gradient(180deg, black 0%, rgb(208, 208, 208) 50%, black 100%); 
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: glows 3s ease-in-out infinite;
}

@keyframes glows {
    0% {
        background-position: 0% 200%;
    }
    100% {
        background-position: 0% -200%;
    }
}

.commonpara ul {
    list-style-type: none;
}

.commonpara a {
    padding-left: 5px;
    color: rgb(152, 152, 152);
    text-decoration: none;
}

#moreContent, #lessBtn { 
    display: none; 
}

.topic-title {
    cursor: pointer;
    display: block;
}

.topic-content {
    display: none;
    color: rgb(140, 140, 140);
}

.topic.open .topic-content {
    display: block;
}

.contactpage a {
    display: block;
    color: black;
    text-align: center;
    padding: 10px;
}

.contactpage i {
    padding: 0 10px;
    color: black;
}

.contactpage a:hover {
    color: rgb(140, 140, 140);
}

.socialMedia {
    margin-top: 25px;
    display: block;
    color: black;
    text-align: center;
    padding: 10px;
}

.socialMedia a {
    color: black;
    padding: 0 10px;
}

.socialMedia img {
    width: 15px;
    height: 14px;
}

.contactpage img {
    width: 15px;
    height: 14px;
    margin: 0 10px;
}

/*rgb(154, 154, 117)
rgb(170, 150, 172)
rgb(90, 106, 114)
rgb(166, 142, 177)*/