html {
    line-height: 1.15;
    text-size-adjust: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
}

details, main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0px;
}

hr {
    box-sizing: content-box;
    height: 0px;
    overflow: visible;
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
    object-fit: cover;
    max-width: 100%;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0px;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

[type="button"], [type="reset"], [type="submit"], button {
    appearance: button;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0px;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0px;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    appearance: none;
}

::-webkit-file-upload-button {
    appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

[hidden], template {
    display: none;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.hinge {
    animation-duration: 2s;
}

@-webkit-keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        transform: translateY(0px);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        transform: translateY(0px);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.bounce {
    animation-name: bounce;
}

@-webkit-keyframes flash {
    0%, 100%, 50% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 100%, 50% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

.flash {
    animation-name: flash;
}

@-webkit-keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.pulse {
    animation-name: pulse;
}

@-webkit-keyframes shake {
    0%, 100% {
        transform: translateX(0px);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0px);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

.shake {
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.swing {
    transform-origin: center top;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.tada {
    animation-name: tada;
}

@-webkit-keyframes wobble {
    0%, 100% {
        transform: translateX(0px);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
}

@keyframes wobble {
    0%, 100% {
        transform: translateX(0px);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
}

.wobble {
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.bounceIn {
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(30px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(30px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(30px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(30px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0px);
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(-30px);
    }
    80% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(-30px);
    }
    80% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.bounceInUp {
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

@keyframes bounceOut {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

.bounceOut {
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    0% {
        transform: translateY(0px);
    }
    20% {
        opacity: 1;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0px);
    }
    20% {
        opacity: 1;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    0% {
        transform: translateX(0px);
    }
    20% {
        opacity: 1;
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0px);
    }
    20% {
        opacity: 1;
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    0% {
        transform: translateX(0px);
    }
    20% {
        opacity: 1;
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0px);
    }
    20% {
        opacity: 1;
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    0% {
        transform: translateY(0px);
    }
    20% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0px);
    }
    20% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fadeOutDown {
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        transform: perspective(400px) translateZ(0px) rotateY(0deg) scale(1);
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) translateZ(0px) rotateY(360deg) scale(0.95);
        animation-timing-function: ease-in;
    }
    100% {
        transform: perspective(400px) translateZ(0px) rotateY(360deg) scale(1);
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        transform: perspective(400px) translateZ(0px) rotateY(0deg) scale(1);
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) translateZ(0px) rotateY(360deg) scale(0.95);
        animation-timing-function: ease-in;
    }
    100% {
        transform: perspective(400px) translateZ(0px) rotateY(360deg) scale(1);
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    backface-visibility: visible;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    animation-name: flipInX;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    animation-name: flipInY;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    animation-name: flipOutX;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    animation-name: flipOutY;
    backface-visibility: visible !important;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        transform: translateX(0px) skewX(-15deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0px) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        transform: translateX(0px) skewX(-15deg);
        opacity: 1;
    }
    100% {
        transform: translateX(0px) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        transform: translateX(0px) skewX(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        transform: translateX(0px) skewX(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        transform-origin: center center;
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        transform-origin: center center;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateIn {
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    100% {
        transform: translateY(0px);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    100% {
        transform: translateX(0px);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    100% {
        transform: translateX(0px);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
    0% {
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.slideOutRight {
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
    0% {
        transform: rotate(0deg);
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        transform: rotate(80deg);
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }
    40% {
        transform: rotate(60deg);
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }
    80% {
        transform: rotate(60deg) translateY(0px);
        opacity: 1;
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }
    100% {
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        transform: rotate(0deg);
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        transform: rotate(80deg);
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }
    40% {
        transform: rotate(60deg);
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }
    80% {
        transform: rotate(60deg) translateY(0px);
        opacity: 1;
        transform-origin: left top;
        animation-timing-function: ease-in-out;
    }
    100% {
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    animation-name: hinge;
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    animation-name: rollIn;
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    animation-name: rollOut;
}

@font-face {
    font-family: Raleway;
    src: url("../fonts/raleway-regular-webfont.woff2") format("woff2"), url("../fonts/raleway-regular-webfont.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Raleway;
    src: url("../fonts/raleway-bold-webfont.woff2") format("woff2"), url("../fonts/raleway-bold-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Raleway;
    src: url("../fonts/raleway-medium-webfont.woff2") format("woff2"), url("../fonts/raleway-medium-webfont.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

*, ::after, ::before {
    box-sizing: inherit;
}

.page {
    font-family: Raleway, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

.btn-reset {
    padding: 0px;
    border: none;
    background: 0px 0px;
    outline: 0px;
    cursor: pointer;
    hyphens: auto;
    overflow-wrap: break-word;
}

.btn-reset, [role="button"] {
    -webkit-tap-highlight-color: transparent;
}

.list-reset {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.visually-hidden {
    position: fixed;
    z-index: -100;
    opacity: 0;
    left: -100vh;
    transform: scale(0);
}

.stop-scroll {
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1500px;
    margin: 0px auto;
    padding: 0px 50px;
}

@media (max-width: 767px) {
    .container {
        padding: 0px 30px;
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0px 15px;
    }
}

.wide {
    width: 100%;
}

.section-title {
    margin-top: 0px;
    margin-bottom: 50px;
    width: min(100%, 700px);
    font-size: clamp(1.3rem, 1rem + 1.4vw, 2.7rem);
    font-weight: 700;
    color: rgb(61, 67, 83);
    line-height: 150%;
}

.header {
    padding: 20px 0px;
    background-color: rgb(0, 175, 199);
}

.header__container {
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .header__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 10px 0px;
    }

    .header__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    }
}

.header__logo {
    flex-shrink: 0;
    display: inline-block;
    padding-top: 60px;
    background-image: url("../img/secret.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 50px 50px;
    border-radius: 100%;
    outline: 0px;
}

@media (max-width: 1200px) {
    .header__logo {
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        height: 50px;
        padding-top: 0px;
        padding-right: 60px;
        background-position: right center;
    }
}

@media (max-width: 992px) {
    .header__logo {
        height: 40px;
        background-size: 40px 40px;
        padding-right: 50px;
    }
}

.header__logo img {
    display: block;
    height: 30px;
    width: auto;
}

@media (max-width: 992px) {
    .header__logo img {
        height: 25px;
    }

    .header__nav {
        position: fixed;
        z-index: 1000;
        top: -100%;
        right: -100%;
    }
}

@media (max-width: 500px) {
    .header__logo {
        background-size: 30px 30px;
        padding-right: 40px;
        height: 30px;
    }

    .header__logo img {
        height: 20px;
    }
}

@media (max-width: 992px) {
    .menu {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        gap: 30px;
        padding: 70px 20px 20px;
        height: 100%;
        width: 100vw;
        background-color: rgb(0, 175, 199);
        background-image: url("../img/secret.png");
        background-position: center bottom 20px;
        background-size: auto 15vh;
        background-repeat: no-repeat;
    }
}

@media (max-height: 420px) and (max-width: 992px) {
    .menu {
        background-image: unset;
    }
}

.menu__close {
    display: none;
}

@media (max-width: 992px) {
    .menu__close {
        flex-shrink: 0;
        display: block;
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
        border: 2px solid rgb(255, 255, 255);
        border-radius: 50%;
    }

    .menu__close::before {
        content: "✗";
        color: rgb(255, 255, 255);
        font-weight: 700;
    }

    .menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        max-height: 100%;
        overflow-y: auto;
    }
}

.menu__list {
    display: flex;
    gap: 15px;
}

.menu__link {
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 8px 12px;
    font-size: 18px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    hyphens: auto;
    overflow-wrap: break-word;
    outline: 0px;
    transition: background-color 0.3s;
}

.menu__link::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 38px);
    height: 1px;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    transition: opacity 0.3s;
}

.menu__link:active, .menu__link:focus-visible {
    background-color: rgb(102, 212, 227);
}

.menu__link:hover:not(:focus-visible):not(:active)::after {
    opacity: 1;
}

.burger {
    display: none;
}

@media (max-width: 992px) {
    .burger {
        position: relative;
        display: block;
        width: 30px;
        height: 30px;
        border-radius: 3px;
        outline: transparent solid 2px;
        outline-offset: 5px;
        transition: outline-color 0.3s;
    }

    .burger::after, .burger::before, .burger__line {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0px);
        width: 100%;
        height: 2px;
        background-color: rgb(255, 255, 255);
        transition: background-color 0.3s, width 0.3s;
    }

    .burger::before {
        content: "";
        top: 0px;
    }

    .burger::after {
        content: "";
        bottom: 0px;
    }

    .burger__line {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .burger:focus-visible {
        outline-color: rgb(102, 212, 227);
    }

    .burger:focus-visible .burger__line, .burger:focus-visible::after, .burger:focus-visible::before {
        background-color: rgb(102, 212, 227);
    }

    .burger:hover:not(:focus-visible):not(:active) .burger__line {
        width: 70%;
    }

    .burger:hover:not(:focus-visible):not(:active)::after {
        width: 50%;
    }

    .burger:active .burger__line, .burger:active::after {
        width: 100%;
    }
}

.js-menu {
    transition: transform 0.4s ease-in, -webkit-transform 0.4s ease-in;
}

.js-menu--open {
    transform: translate(-100%, 100%);
    transform-origin: right top;
}

.hero {
    background-color: rgb(255, 255, 255);
}

@media (max-width: 1200px) {
    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.hero__container {
    background-image: url("../img/couple-heart.svg");
    background-repeat: no-repeat;
    background-position: right 17% top 40%;
    background-size: auto 70%;
}

@media (max-width: 1200px) {
    .hero__container {
        background-size: auto 90%;
        background-position: right 20% bottom;
    }
}

@media (max-width: 992px) {
    .hero__container {
        background-size: 40%;
        background-position: right 15% center;
    }
}

@media (max-width: 767px) {
    .hero__container {
        background-position: right 30px center;
    }
}

.hero__content {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    width: 50%;
    min-height: 700px;
    transform: translateY(-30px);
}

@media (max-width: 1200px) {
    .hero__content {
        min-height: 400px;
        transform: none;
    }
}

@media (max-width: 767px) {
    .hero__content {
        width: 60%;
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .section-title {
        margin-bottom: 30px;
        text-align: center;
    }

    .hero {
        padding-top: 0px;
    }

    .hero__container {
        padding-top: 250px;
        background-position: center top 30px;
        background-size: max(200px, 40%);
    }

    .hero__content {
        -webkit-box-align: center;
        align-items: center;
        width: 100%;
        min-height: unset;
        text-align: center;
    }
}

.hero__title {
    margin: 0px 0px 30px;
    padding: 0px;
    font-size: clamp(1.5rem, 1.2rem + 1.6vw, 3.125rem);
    font-weight: 700;
    color: rgb(61, 67, 83);
    hyphens: auto;
    overflow-wrap: break-word;
}

@media (max-width: 992px) {
    .hero__title {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .hero__title {
        width: 100%;
    }
}

.hero__descr {
    margin: 0px 0px 30px;
    padding: 0px;
    width: 70%;
    font-size: clamp(1rem, 0.9rem + 0.6vw, 1.5625rem);
    line-height: 130%;
    color: rgb(61, 67, 83);
    letter-spacing: 1.2px;
}

@media (max-width: 992px) {
    .hero__descr {
        width: 85%;
    }
}

@media (max-width: 576px) {
    .hero__descr {
        width: 100%;
    }
}

.hero__btn {
    align-self: flex-start;
    width: min(50%, 150px);
    min-width: 150px;
    padding: 8px 12px;
    font-size: 18px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    background-color: rgb(0, 175, 199);
    transition: background-color 0.3s;
}

.hero__btn:focus-visible {
    background-color: rgb(37, 136, 149);
}

.hero__btn:hover:not(:focus-visible):not(:active) {
    background-color: rgb(102, 212, 227);
}

.hero__btn:active {
    background-color: rgb(0, 113, 129);
}

.advantages {
    padding: 80px 0px;
    background-color: rgba(102, 212, 227, 0.5);
}

@media (max-width: 1200px) {
    .advantages {
        padding: 60px 0px;
    }
}

.advantages__rates {
    display: flex;
    gap: 60px;
}

@media (max-width: 992px) {
    .advantages__rates {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .advantages__rates {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        gap: 50px;
        -webkit-box-align: center;
        align-items: center;
    }
}

@media (max-width: 500px) {
    .advantages__rates {
        gap: 30px;
    }
}

.rate {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 50px;
    height: auto;
    width: calc(50% - 30px);
    padding: 50px;
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    box-shadow: rgb(255, 255, 255) 0px 0px 15px 0px;
}

@media (max-width: 992px) {
    .rate {
        width: calc(50% - 15px);
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .rate {
        padding: 50px;
        width: 100%;
    }
}

.rate img {
    display: block;
    height: 40%;
    margin-bottom: auto;
    object-fit: contain;
}

@media (max-width: 576px) {
    .hero__btn {
        align-self: unset;
    }

    .rate {
        gap: 20px;
        padding: 25px 18px;
    }

    .rate img {
        height: 250px;
    }
}

.rate__content {
    flex-basis: 50%;
}

.rate__title {
    margin: 0px auto 30px;
    padding: 0px;
    width: min(100%, 500px);
    text-align: center;
    font-size: clamp(1.1rem, 0.9rem + 1.1vw, 2.2rem);
    color: rgb(61, 67, 83);
    font-weight: 700;
    line-height: 130%;
}

@media (max-width: 500px) {
    .rate__title {
        margin: 0px auto 20px;
    }
}

.rate__list {
    margin: 0px;
    padding-left: 20px;
}

.rate__item {
    padding-left: 20px;
    font-size: 1.375rem;
    line-height: 200%;
    font-weight: 500;
    color: rgb(61, 67, 83);
}

.rate__item:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 500px) {
    .rate__item:not(:last-child) {
        margin-bottom: 15px;
    }
}

.rate__item::marker {
    content: "ღ";
    font-size: 1.5625rem;
    color: rgb(241, 105, 137);
}

.premium__item::marker {
    content: "♛";
    color: rgb(233, 224, 95);
}

.contacts {
    padding: 40px 0px 60px;
}

.contacts__title {
    margin-bottom: 30px;
}

.contacts__list {
    width: 100%;
    background-image: url("../img/support.svg");
    background-repeat: no-repeat;
    background-position: right 10% center;
    background-size: auto 100%;
}

@media (max-width: 1200px) {
    .contacts {
        padding: 40px 0px;
    }

    .contacts__list {
        background-size: auto 80%;
    }
}

@media (max-width: 992px) {
    .rate__item {
        font-size: 1rem;
        line-height: 150%;
    }

    .contacts__list {
        background-size: 30%;
        background-position: right 50px bottom;
    }
}

.contacts__item {
    width: 53%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 20px;
    font-size: clamp(1rem, 1rem + 0.2vw, 1.2rem);
    border-bottom: 1px solid rgba(187, 196, 200, 0.514);
    padding: 20px 0px;
}

@media (max-width: 992px) {
    .contacts__item {
        width: 70%;
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .contacts__list {
        background-size: 30%;
        background-position: right 30px bottom;
    }

    .contacts__item {
        width: 80%;
    }

    .contacts__content {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contacts__title {
        margin-bottom: 10px;
    }

    .contacts__list {
        background-image: none;
    }

    .contacts__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .contacts__content {
        text-align: center;
    }
}

.contacts__subtitle {
    margin: 0px;
    padding: 0px;
    -webkit-box-flex: 0;
    flex: 0 0 40%;
    color: rgb(61, 67, 83);
    font-weight: 500;
    line-height: 150%;
    hyphens: auto;
    overflow-wrap: break-word;
}

@media (max-width: 992px) {
    .contacts__subtitle {
        -webkit-box-flex: 0;
        flex: 0 0 35%;
    }
}

.contacts__content {
    margin: 0px;
    padding: 0px;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.96px;
}

.contacts__link {
    padding: 5px 0px;
    color: rgb(0, 113, 129);
    border-bottom: 1px solid rgb(0, 113, 129);
    hyphens: auto;
    overflow-wrap: break-word;
    transition: color 0.3s, border-color 0.3s;
}

.contacts__link:focus-visible, .contacts__link:hover {
    color: rgb(0, 175, 199);
    border-color: rgb(0, 175, 199);
}

.contacts__link:active {
    color: rgb(61, 67, 83);
    border-color: rgb(61, 67, 83);
}

.footer {
    padding: 20px 0px;
    background-color: rgb(61, 67, 83);
}

.footer__container {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .footer__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        gap: 50px;
    }
}

.footer__logo img {
    height: 40px;
    display: block;
}

.footer__list {
    columns: 2;
    column-gap: 60px;
}

@media (max-width: 767px) {
    .footer {
        padding: 30px 0px;
    }

    .footer__list {
        columns: unset;
    }

    .footer__link {
        margin: 0px auto;
    }
}

.footer__link {
    position: relative;
    display: block;
    width: max-content;
    height: 100%;
    padding: 8px 12px;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    hyphens: auto;
    overflow-wrap: break-word;
    outline: 0px;
    transition: background-color 0.3s;
}

.footer__link::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    height: 1px;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    transition: opacity 0.3s;
}

.footer__link:active, .footer__link:focus-visible {
    background-color: rgb(102, 212, 227);
}

.footer__link:hover:not(:focus-visible):not(:active)::after {
    opacity: 1;
}

.footer_contacts {
    margin-left: 14%;
    font-size: 14px;
    color: rgb(255, 255, 255);
    opacity: 0.5;
}

/* Skipped cross-origin stylesheet: https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap */

.logo {
    font-family: Quicksand, sans-serif;
    font-size: 32px;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.footer_contacts {
    font-size: 14px;
    color: rgb(255, 255, 255);
    opacity: 0.5;
    max-width: 1500px;
    padding: 0px 50px;
    margin: 0px auto;
}

@media (max-width: 1200px) {
    .footer_contacts {
        text-align: center;
        margin: 15px 0px 0px;
    }
}