:root {
    --theme-primary: #d63227;
    --theme-primary-bold: #ee6624;
    --theme-accent: #ffffff;
    --theme-text: #212121;
    --theme-text-light: rgba(142, 199, 255, 0.6);
    --theme-text-light-2: #ffffffe6;
    --theme-font-family: 'Roboto', var(--bs-font-sans-serif);
}

html {
    font-size: 100%;
}

body {
    font: 400 1rem/1.5 var(--theme-font-family);
    color: var(--theme-text);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
}

.page-main {
    color: var(--bs-white);
    position: relative;
}

.page-main::before,
.page-main::after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--theme-primary);
}

.page-main::before {
    opacity: 0.99;
}

.page-main::after {
    background: var(--backgroundUrl) center bottom / contain no-repeat;
}

.page-main .section-main {
    position: relative;
    z-index: 10;
}

.page-main .section-main > .container{
    padding: 2.5rem 0 10rem;
}

.page-main .section-main > * {
    position: relative;
    z-index: 11;
}

.page-main .section-main::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    opacity: 0.16;
    left: -100px;
    top: -100px;
    background: radial-gradient(circle closest-side, #6d8cf3, var(--theme-primary));
}


.page-main .section-main .section-inner {
    padding: 8.75rem 0;
    display: grid;
    grid-template-columns: 580px 1fr;
    align-items: center;
    color: var(--theme-text-light);
}

.page-main .page-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--bs-white);
}

.page-main .page-subtitle {
    display: inline-flex;
    padding: 0.625rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--theme-text-light-2);
    border-radius: 999px;
    border: 1px solid var(--theme-primary-bold);
    box-shadow: rgb(22 53 76 / 5%) 0px 5px 15px 0px;
    background-color: var(--theme-primary-bold);
}

.page-main .page-desc {
    margin-bottom: 2.5rem;
}

.count-down {
    display: flex;
    gap: 40px;
}

.count-down {
    padding-left: 2.5rem;
}

.count-down .count-down__block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    height: 115px;
    perspective-origin: 50% 50%;
    perspective: 300px;
    border-radius: 5px;
    background: var(--theme-primary-bold);
}

.count-down .count-down__block > span {
    font-size: 60px;
    line-height: 1;
    font-weight: 300;
    color: var(--bs-white);
    position: relative;
}

.count-down .count-down__block > b {
    color: #f8d53d;
    display: inline-block;
    font-weight: 500;
    font-size: 0.875rem;
    position: absolute;
    left: 50%;
    bottom: -2rem;
    transform: translateX(-50%);
    letter-spacing: 2px;
}

.count-down .count-down__block:not(:last-child)::after {
    content: ':';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -24px;
    font-size: 40px;
    transform: translateY(-50%);
    color: var(--bs-white);
}

.list-socials {
    display: flex;
    justify-content: center;
    gap: 1.125rem;
    padding-bottom: 1.5rem
}

.list-socials > li > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.125rem;
    color: #ffffff;
    background-color: #1b274e;
    transition: all 0.5s ease;
}
.list-socials a img {
    max-width: 1rem;
}

.list-socials a:hover {
    background-color: #eff5f940;
    color: var(--bs-white);
}


.copy-right {
    color: #f8d53d;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.copy-right a {
    color: #f8d53d;
    text-decoration: none;
}

.theme-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    min-height: 2.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.25rem;
    border: 1px solid transparent;
    transition: all 350ms ease 0s;
    background-color: var(--theme-primary);
    background-image: -webkit-linear-gradient(-31deg, #56ccf2 0%, #2f80ed 100%);
}

.theme-button:hover {
    box-shadow: rgb(82 104 219 / 57%) 0px 12px 24px -10px;
    color: #fff;
}

.page-logo {
    /*position: absolute;
    top: 2.8125rem;
    left: 50%;
    transform: translate(-50%, -50%);*/
}

@media (max-width: 1399px) {
    .page-main .section-main .section-inner {
        grid-template-columns: 500px 1fr;
    }
}

@media (max-width: 1199px) {
    .page-main .section-main .section-inner {
        grid-template-columns: 1fr;
        text-align: center;
        grid-gap: 2.5rem;
    }

    .count-down {
        padding-left: 0;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .count-down {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .count-down .count-down__block:nth-child(2)::after {
        display: none;
    }

    .count-down .count-down__block:nth-child(1),
    .count-down .count-down__block:nth-child(3) {
        justify-self: end;
    }

    .page-main .page-title {
        font-size: 32px;
    }
}

@media (max-width: 479px) {
    .page-main .section-main::before {
        display: none;
    }
}