html,body {
    margin: 0;
    padding: 0;
    /* font-family: 'Rubik', sans-serif; */
    font-family: 'TT Norms', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1px;
    background: #1a1a2e;
    font-size: 16px;
}

button, a, a:visited, a:focus, button:focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
    border: none;
    outline: none;
    -webkit-user-drag: none;
}

input, input:focus, input:active, textarea, textarea:focus, textarea:active, select, select:focus, select:active {
    outline: none;
    border: 0;
    padding: 0;
    margin: 0;
    user-select: auto;
    font-family: 'TT Norms', sans-serif;
    resize: none;
}

@media (min-width: 2500px) {
    html,body {
        font-size: 20px;
    }
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

.wrapper {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
}

.wrapper-inner {
    padding-left: 3.75rem;
    padding-right: 3.75rem;   
}

/* Header */
.header {
    background: #131521;
    width: 100%;
    height: 5.5rem;
    
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header__logo div {
    color: #FFFFFF;
    font-family: 'TT Norms';
    font-weight: 700;
    font-size: 3rem;
    text-shadow: 0px 0px 2.5rem rgba(255, 255, 255, 0.4);
}

.header__logo span {
    color: #4271FF;
    font-family: 'TT Norms';
    font-weight: 700;
    font-size: 3rem;
    text-shadow: 0px 0px 2.5rem rgba(66, 113, 255, 0.4);
}

.header__menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.1s;
    cursor: pointer;
    margin-right: 1.5625rem;
    text-decoration: none;
}

.header__item:hover .header__circle {
    background: linear-gradient(93.17deg, #ff4242 2.62%, rgba(215, 81, 81, 0.58) 97.38%);
    transition: 0.2s;
}

.header__item:hover {
    color: #fff;
    transition: 0.2s;
}

.header__item_active {
    color: #fff;
}

.header__item_active .header__circle {
    background: linear-gradient(93.17deg, #ff4242 2.62%, rgba(215, 81, 81, 0.58) 97.38%);
}

.header__circle {
    background: transparent;
    width: .625rem;
    height: .625rem;
    border-radius: 50%;
    margin-right: .3125rem;
    transition: 0.1s;
}

.header__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Button */
.primary-button {
    background: linear-gradient(to right, #CC5156, #ce4c51);
    border-radius: 1.875rem;
    padding: 1rem 2.5rem;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    outline: none;
    border: none;
    font-family: 'TT Norms', sans-serif;
    font-weight: 500;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.primary-button.big {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0px 0px 2.5rem rgba(255, 255, 255, 0.4);
}

.primary-button:hover {
    box-shadow: 0px .9375rem 1.5625rem 0px rgba(255, 66, 66, 0.4);
    transform: scale(1.03);
    transition: 0.2s;
}

.primary-link {
    color: #fff;
    cursor: pointer;
    transition: 0.1s;
}

.primary-link:hover {
    color: rgb(255, 66, 66);
    transition: 0.1s;
}

/* Content */
.hv-content {
    height: calc(100vh - 5.5rem);
    background-image: url(./assets/bg.svg);
    background-size: cover;
    background-position: 0 bottom;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* About block */
.about {
    /* width: 45%; */
    /* position: absolute; */
    /* left: 5rem; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding-top: 15.625rem; */
}

.about__title {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.about__subtitle {
    color: #fff;
    font-size: 1.1875rem;
    margin-top: 2.1875rem;
}

.about__logo {
    text-align: center;
    color: #fff;
    font-family: 'TT Norms';
    font-weight: 700;
    font-size: 3rem;
    text-shadow: 0px 0px 40px rgba(255, 255, 255, 0.4);
}

.about__sublogo {
    color: rgb(66, 113, 255);
    font-family: 'TT Norms';
    font-weight: 500;
}

/* Prices block */
.page-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-title__text {
    color: #fff;
    letter-spacing: 0.5px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 3.5625rem;
    text-shadow: 0px 0px 2.5rem rgba(255, 255, 255, 0.5), 0px 0px .625rem rgba(0, 0, 0, 0.5);
}

.page-title__bottom {
    /* background: #4271FF; */
    margin-top: .625rem;
    background: linear-gradient(to right, #ce4c51, #cc5156);
    border-radius: 6.25rem;
    height: .625rem;
    width: 7.5rem;
}

.arrow {
    clip-path: polygon(75% 0%, 96% 50%, 75% 100%, 45% 100%, 68% 50%, 45% 1%);
    background: linear-gradient(93.17deg, #ff4242 2.62%, rgba(215, 81, 81, 0.58) 97.38%);
}

.bottom-line {
    margin-top: .5rem;
    background: linear-gradient(93.17deg, #ff4242 2.62%, rgba(215, 81, 81, 0.58) 97.38%);
    border-radius: 6.25rem;
    height: .3125rem;
    width: 5.625rem;
}

/* Animation */
.fade-in {
    animation: fadeIn ease 0.5s;
    -webkit-animation: fadeIn ease 0.5s;;
    -moz-animation: fadeIn ease 0.5s;;
    -o-animation: fadeIn ease 0.5s;;
    -ms-animation: fadeIn ease 0.5s;;
  }
  
  @keyframes fadeIn {
    0% {opacity:1;}
    100% {opacity:0;}
  }
  
  @-moz-keyframes fadeIn {
    0% {opacity:1;}
    100% {opacity:0;}
  }
  
  @-webkit-keyframes fadeIn {
    0% {opacity:1;}
    100% {opacity:0;}
  }
  
  @-o-keyframes fadeIn {
    0% {opacity:1;}
    100% {opacity:0;}
  }
  
  @-ms-keyframes fadeIn {
    0% {opacity:1;}
    100% {opacity:0;}
  }


/* Donate */
#donate {
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer {
    background: #1a1a2e;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer span {
    color: #fff;
    font-family: 'TT Norms';
    font-weight: 400;
}

.input {
    outline: none;
    border: none;
    background: #4a2525;
    padding: .9375rem 1.25rem;
    color: #fff;
    font-family: 'TT Norms';
    font-weight: 400;
    border-radius: 1.25rem;
    width: 12.5rem;
    border: 1px #4a2525 solid;
    transition: 0.15s;
}

::-webkit-input-placeholder {color:#bfd3ff;}
::-moz-placeholder          {color:#bfd3ff;}
:-moz-placeholder           {color:#bfd3ff;}
:-ms-input-placeholder      {color:#bfd3ff;}

.input:focus {
    outline: none;
    border: 1px #ff4242 solid;
    transition: 0.15s;
}

.input:active {
    outline: none;
    border: none;
    border: 1px #4a2525 solid;
}

.donate {
    max-width: 30rem;
    /* width: 30rem; */

    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.donate-meta {
    margin-top: 0.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.donate > form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.donate-content {
    padding: 4rem;
    background: #0f1925;
    border-radius: 1.25rem;
}

.donate-title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #fff;
    text-shadow: 0px 0px 40px rgba(255, 255, 255, 0.5), 0px 0px 10px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.donate-input {
    background-color: #252e4a;
    border-radius: 1rem;
    border: 1px solid transparent;
    gap: 1rem;
    height: 3.5rem;
    padding: 0 14px;
    position: relative;
    transition: .2s ease;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.donate-input:hover, .donate-input:focus, .donate-input:active {
    background-color: #252e4a;
    border: 1px solid #4271FF;
    border-radius: 1rem;
    padding: 0 14px;
}

.donate-error {
    color: red;
    font-size: 1rem;
    text-align: center;
}

.hv-content-donate {
    height: calc(100vh - 5.5rem);
    background-image: url('/assets/donate-bg.svg');
    background-size: cover;
    background-position: 0 bottom;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-form {
    padding: 2.5rem;
    background-color: #0f1925;
    border-radius: 2rem;
}

.donate-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-methods {
    display: flex;
    align-items: center;
}

.payment-methods img {
    width: 5rem;
    opacity: 0.5;
}

/* Privacy policy */

.main_text {
    margin-top: 4.63vh;

    font-size: 4vh;
    font-style: normal;
    font-weight: 600;

    color: #FFF;

    margin-left: 13.021vw;
}

.other_info {
    font-size: 1.852vh;
    font-style: normal;
    font-weight: 500;

    color: #D8D8D8;
    width: 1200px;
    line-height: 150%;

    margin-top: 2.778vh;
    margin-left: 13.021vw;
}

.links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    font-weight: 500;
    transition: 0.2s;
}

.link:hover {
    color: #fff;
    transition: 0.2s;
}

#start-don {
    display: none;
}

@media only screen and (max-width: 767px) {
    .header__menu {
        display: none !important;
    }

    #start {
        display: none;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
    }

    #start-don {
        display: flex;
    }

    .other_info {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        padding-left: 0.5rem;
    }

    .main_text {
        margin: 0;
        margin-top: 0.5rem;
        width: 100%;
        box-sizing: border-box;
        padding-left: 0.5rem;
    }
}