/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/style/common.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
html,
body {
    font-family: 'Montserrat', serif;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #141414;
    margin: 0 auto;
    width: 100%;
    scroll-behavior: smooth;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.logo {
    font-family: 'Montserrat', serif;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out,
        background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
        transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: max-content;
    color: #fff;
}
.logo:hover,
.logo:focus {
    color: #a9f0fa;
}
.logo:active {
    color: inherit;
}

.link {
    font-family: 'Montserrat', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    border-bottom: 1px solid transparent;
    padding: 2px 4px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out,
        background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
        transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 100%;
}
.link:hover,
.link:focus {
    color: #a9f0fa;
    border-bottom: 1px solid #a9f0fa;
}
.link:active {
    color: inherit;
    border-bottom: 1px solid transparent;
}

.btn {
    font-family: 'Montserrat', serif;
    font-family: inherit;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: max-content;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    padding: 10px 45px;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.22857;
    text-align: center;
    color: #fff;
    background: #a9f0fa;
}
.btn-second {
    background: #3d84d5;
    color: #fff;
}

.raroreraro {
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out,
        background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
        transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform: scale(1);
}
.raroreraro:hover,
.raroreraro:focus {
    transform: scale(1.025);
}
.title1 {
    font-size: 40px;
    line-height: 1.1;
    font-family: 'Montserrat', serif;
}

.kikikoka {
    font-size: 32px;
    font-family: 'Montserrat', serif;
}

.papipaka {
    font-size: 20px;
    font-family: 'Montserrat', serif;
}

.title4 {
    font-size: 20px;
    font-family: 'Montserrat', serif;
    text-transform: uppercase;
}

.kawabanga {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.border {
    border-radius: 20px;
    border: 3px solid rgb(68, 68, 68);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
}

.border-b {
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(51, 51, 51);
}

.za {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.second {
    color: #000000;
}

.disc {
    list-style: disc;
    padding-left: 18px;
}

.text-link {
    display: inline;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    font-weight: 600;
}

.arrow-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 10px;
    color: #a9f0fa;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out,
        background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
        transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.arrow-up:hover,
.arrow-up:focus {
    color: #000000;
    transform: scale(1.025);
}
.arrow-up:active {
    color: #a9f0fa;
    transform: inherit;
}
.arrow-up svg {
    width: 2.5rem;
    height: 2.5rem;
}
.arrow-up.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.link-btn-as {
    animation: pulse-animation 2s infinite;
}
.link-btn-as:hover {
    animation-play-state: paused;
}

.kokari {
    animation: pulse-animation 2s infinite;
    animation-delay: 1s;
}
.kokari:hover {
    animation-play-state: paused;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
input.error {
    border: 1px solid #e10000;
}
