@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0px;
    box-sizing: border-box;
    padding: 0px;
}

body {
    /* padding: 0px 5vw; */
    font-family: "Oswald", sans-serif;
}

.active {
    border-bottom: 5px solid #186aa5;
    color: #186aa5;
}

.fax-element-box-1 li {
    list-style-type: none;
    color: #186aa5;
    font: normal normal normal 1.5rem/2.25rem Oswald;
    margin: 10px 0px;
    width: fit-content;
}

.active-second {
    transform: scale(1.07);
    filter: brightness(0.3) saturate(500%);
}

.click-event-anchor {
    display: inline-block;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
}

.click-event-anchor:hover {
    transform: scale(1.03);
}

.click-event-anchor2 {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s;
    background: linear-gradient(to right, #ffcc00, #ffcc00 50%, white 50%);
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.click-event-anchor2:hover,
.click-event-anchor2:active {
    transform: translateY(-2px);
    background-position: 0 100%;
}

.main-picture {
    /* width: 100%;
        height: 100%; 
        /* height: 903px; */
    background: #ffe900;
    padding: 0px;
}

.main-button__container {
    display: flex;
    justify-content: center;
    position: relative;
}

.main-button__button {
    position: absolute;
    background: rgba(16, 17, 120, 1);
    padding: 2% 3%;
    width: fit-content;
    color: white;
    text-transform: uppercase;
    transform: skew(-20deg);
    box-shadow: 0.625rem -0.625rem #ffe900;
    bottom: -70px;
    /* bottom: -8vh; */
    font: normal normal bold 5rem/4.375rem Oswald;
    cursor: pointer;
    transition: all 0.2s;
}

.main-button__button:active {
    transform: translateY(-3px);
}

.main-picture img {
    display: block;
    width: 100%;
    background-size: 100%;
    clip-path: polygon(20% 0%, 95% 0%, 95% 100%, 2% 100%);
}

.main-vission-text {
    margin-top: 200px;
    padding: 0px 100px;
    margin-bottom: 5%;
}

.main-vission-text p {
    font: normal normal bold 2.125rem/2.5rem Oswald;
    color: black;
    text-align: center;
    text-transform: uppercase;
}

.main-vission-image {
    margin-top: 10%;
}

.main-vission-image__background {
    clip-path: polygon(0 10vw, 100% 0, 100% calc(100% - 10vw), 0% 100%);
    width: 100%;
}

.main-vission-image {
    position: relative;
    margin-bottom: 5%;
}

.main-vission-image::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 25%;
    display: block;
    content: "";
    width: 10%;
    height: 1rem;
    background: white;
    z-index: 100;
}

.main-vission-image-header {
    position: absolute;
    font: normal normal bold 5rem/5rem Oswald;
    text-align: center;
    padding: 0px 5%;
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.main-vission-button-container {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    background: #ffcc00;
    padding: 1% 5%;
    width: fit-content;
    margin: 0px auto;
    bottom: 22%;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    margin: 0px auto;
    cursor: pointer;
}

.main-vission-button {
    color: #00317e;
    font: normal normal bold 1.5rem Oswald;
    text-transform: uppercase;
}

.main-principles {
    margin-top: -50px;
    clip-path: polygon(0 10vw, 100% 0, 100% calc(100% - 10vw), 0% 100%);
    background: rgba(216, 218, 222, 0.2);
    padding: 20% 5%;
    /* min-height: 1200px; */
}

.main-principles-header {
    color: #00317e;
    font: normal normal bold 5rem Oswald;
    text-align: center;
    text-transform: uppercase;
}

.main-principles-items {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5%;
    grid-row-gap: 20%;
}

.main-principles-items-item {
    /* width: fit-content; */
    width: 80%;
    background: #101178;
    /* padding: 20px 120px; */
    padding: 5% 0%;
    transform: skew(-20deg);
    box-shadow: 0.625rem -0.625rem #ffe900;
    /* transform: translateX(-2000px); */
}

.slider-items {
    transform: skew(-20deg);
    animation: slajderi 2s;
}

.slider-items-kontra {
    transform: skew(-20deg);
    animation: slajderi-kontra 2s;
}

@keyframes slajderi {
    0% {
        transform: translateX(-2000px) skew(-20deg);
    }

    90% {
        transform: translateX(100px) skew(-20deg);
    }

    100% {
        transform: translateX(0px) skew(-20deg);
    }
}

@keyframes slajderi-kontra {
    0% {
        transform: translateX(2000px) skew(-20deg);
    }

    90% {
        transform: translateX(-100px) skew(-20deg);
    }

    100% {
        transform: translateX(0px) skew(-20deg);
    }
}

.items-item-center {
    justify-self: center;
}

.main-principles-items-item__header {
    text-align: center;
    color: #ffffff;
    font: normal normal bold 5rem/4.375rem Oswald;
    text-transform: uppercase;
}

.faq-header {
    margin-top: 120px;
    text-transform: uppercase;
    color: #00317e;
    font: normal normal bold 4rem Oswald;
    text-align: center;
}

.faq-nav-items {
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
}

.faq-nav-item {
    cursor: pointer;
    list-style-type: none;
}

.faq-nav-item a {
    text-decoration: none;
}

.faq-nav-item h1 {
    padding-bottom: 50px;
    color: #186aa5;
    max-width: 250px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    /* position: absolute; */
}

.faq-nav-item h1:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #186aa5;
    position: absolute;
    top: 95px;
}

.faq-nav-items {
    height: 100px;
    border-bottom: 2px solid #d8dade;
    position: relative;
}

.faq-elements {
    display: flex;
    justify-content: flex-end;
    margin-top: 100px;
    padding-right: 10%;
}

.fax-element-box-1 {
    /* align-self: center; */
    /* justify-self: center; */
    background-color: #e8eff7;
    padding: 5% 10%;
    max-width: 70%;
    /* min-width: 500px; */
    position: absolute;
    left: -60%;
    top: 50%;
    transform: translateY(-50%);
}

.fax-element-box-1 p {
    color: #00317e;
    font: normal normal normal 1.5rem/2.25rem Oswald;
    margin: 10px 0px;
    width: fit-content;
}

.fax-element-box-2 {
    position: relative;
    padding: 3% 6% 5% 8%;
    max-width: 50%;
    /* min-width: 700px; */
    /* align-self: center; */
    /* justify-self: center; */
    background-color: #101178;
}

.fax-element-box-header-2 {
    color: white;
    font: normal normal bold 2.5rem/2.81rem Oswald;
    text-align: left;
}

.fax-element-box-paragraph {
    color: white;
    font: normal normal 300 1.56rem/1.875rem Oswald;
    padding: 15% 0px;
    text-align: left;
}

.fax-element-box-header {
    color: #00317e;
    font: normal normal 600 1.75rem/2.25rem Oswald;
    text-align: left;
}

.supporters {
    text-align: center;
    height: 500px;
    margin-bottom: 20%;
}

.supporters-header {
    margin-top: 250px;
    color: #00317e;
    text-align: center;
    text-transform: uppercase;
    font-size: 4rem;
    font: Oswald;
    transform: rotateZ(-5deg);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.supporters-container {
    text-align: center;
    background: #e8eff7;
    height: 100%;
    clip-path: polygon(0 10vw, 100% 0, 100% calc(100% - 10vw), 0% 100%);
}

.faq-general-link > .faq-general-header {
    background: yellow;
}

.faq-ul-click-event {
    padding-left: 2rem;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

h1 {
    font-size: 1.3rem;
}
@-webkit-keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1700px) {
    .main-vission-image-header {
        font: normal normal bold 4rem/4.5rem Oswald;
    }

    .main-principles-items-item__header {
        font: normal normal bold 4rem/3.375rem Oswald;
    }
}

@media (max-width: 1500px) {
    .main-vission-image-header {
        font: normal normal bold 3rem/4rem Oswald;
    }

    .main-principles-items-item__header {
        font: normal normal bold 2rem/2.375rem Oswald;
    }
}

@media (max-width: 1200px) {
    .main-vission-image-header {
        font: normal normal bold 2rem/4rem Oswald;
    }
}

@media (max-width: 1100px) {
    .main-vission-text {
        margin-top: 15%;
    }

    html {
        font-size: 80%;
    }
    .main-button__button {
        bottom: -7vh;
    }
}

@media (max-width: 770px) {
    .supporters {
        height: 30vw;
    }

    .main-vission-text {
        padding: 0 10%;
    }

    .main-principles-items {
        margin-top: 5%;
    }

    html {
        font-size: 60%;
    }

    .main-button__button {
        font-size: 3rem;
    }

    .fax-element-box-1 {
        width: 80%;
        /* min-width: 500px; */
        position: absolute;
        left: 50%;
        top: 92%;
        transform: translateY(0%);
        transform: translateX(-50%);
    }

    .fax-element-box-2 {
        position: relative;
        padding: 3% 6% 5% 8%;
        max-width: 80%;
        /* min-width: 700px; */
        /* align-self: center; */
        /* justify-self: center; */
        background-color: #101178;
        margin: 0 auto;
    }

    .faq-elements {
        display: block;
        padding: 0;
        margin-bottom: 90vh;
    }
}

@media (max-width: 600px) {
    .main-principles {
        margin-top: 0;
    }

    .main-vission-image-header {
        font: normal normal bold 2rem/2.5rem Oswald;
    }

    .faq-nav-items {
        margin-left: 5%;
        margin-right: 5%;
        gap: 5%;
    }
}

@media (max-width: 500px) {
    html {
        font-size: 50%;
    }

    .main-button__button {
        bottom: -5vh;
    }
}

@media (max-width: 400px) {
    .supporters-header {
        font-size: 2rem;
    }

    .main-vission-image-header {
        font: normal normal bold 1.5rem/1.5rem Oswald;
    }
}

@media (max-height: 400px) {
    .supporters {
        margin-top: 120vh;
    }
}
