@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap);

/*!
 * Sedom v1.0 (https://themenix.com/sedom/)
 * Copyright 2024 The Themenix Authors
 */

/*====== Variables =====*/
:root {
    --primary: #ff5555;
    --secondary: #adb5bd;
    --light: #e9ecef;
    --gray: #495057;
    --dark: #111519;
    --success: #00ab6b;
    --danger: #dc3545;
    --danger-rgb: 220, 53, 69;
    --success-rgb: 90, 183, 123;
    --black-rgb: 0, 0, 0;
    --white-rgb: 255, 255, 255;
    --border-radius: 0.35rem;
    --font-sans-serif: "Outfit", sans-serif;
}

/*====== /Variables =====*/

/*====== Before & After =====*/
*,
::after,
::before {
    box-sizing: border-box
}

/*====== /Before & After =====*/

/*====== Focusable elements (Firefox) =====*/
::-moz-focus-inner {
    padding: 0;
    border-style: none
}

/*====== /Focusable elements (Firefox) =====*/

/*====== Scroll behavior =====*/
@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

/*====== Tag styles ======*/
body {
    margin: 0;
    font-family: var(--font-sans-serif);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--light);
    background-color: var(--dark);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    min-height: 100vh;
    position: relative;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

ol,
ul {
    padding-left: 2rem
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

b,
strong {
    font-weight: 500
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

a:hover {
    text-decoration: underline;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button {
    text-transform: none
}

button {
    -webkit-appearance: button
}

button:not(:disabled) {
    cursor: pointer
}

/*====== /Tag styles ======*/

/*====== Container ======*/
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 900px;
    }
}

@media(min-width:1200px) {
    .container {
        max-width: 1200px;
    }
}

/*====== /Container ======*/

/*====== Preloader ======*/
#preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    z-index: 999;
}

#preloader .loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, var(--primary) 100%, #0000) 50% 1px/10px 10px no-repeat,
        radial-gradient(farthest-side, #0000 calc(100% - 12px), rgba(var(--white-rgb), 0.1) 0);
    animation: l9 1.5s infinite linear;
}

@keyframes l9 {
    to {
        transform: rotate(1turn)
    }
}

/*====== /Preloader ======*/

/*====== Header ======*/
.header {
    padding: 1.25rem 0;
    text-align: center;
    margin-bottom: 1.5rem;
}

.header a {
    display: inline-block
}

/*====== /Header ======*/

/*====== Sale box ======*/
.sale-box {
    text-align: center;
    margin-bottom: 1rem;
}

.sale-box .title {
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.sale-box .domain-offer {
    position: relative;
    display: inline-block;
    padding-top: 1.15rem;
}

.sale-box .domain-offer .domain {
    font-size: 2.15rem;
    color: var(--primary);
    font-weight: 600;
}

.sale-box .domain-offer .offer {
    position: absolute;
    top: 0px;
    right: 0;
    display: inline-flex;
    align-items: center;
}

.sale-box .domain-offer .offer span {
    margin-right: 0.5rem;
    font-size: 0.85rem;
    color: var(--secondary);
}

.sale-box .domain-offer .offer strong {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
    padding: 0.25rem 0.35rem 0.25rem 1.65rem;
    background-color: var(--success);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sale-box .domain-offer .offer strong::after {
    position: absolute;
    content: '';
    top: 50%;
    width: 8px;
    height: 8px;
    left: 0.75rem;
    transform: translateY(-50%);
    z-index: 1;
    background-color: var(--dark);
    border-radius: 50%;
}

@media (min-width: 768px) {

    .sale-box .title {
        font-size: 1.75rem;
    }

    .sale-box .domain-offer .domain {
        font-size: 3.25rem;
    }

    .sale-box .domain-offer .offer strong {
        padding: 0.35rem 0.55rem 0.35rem 1.75rem;
        font-size: 1.25rem;
    }

    .sale-box .domain-offer .offer strong::after {
        width: 10px;
        height: 10px;
        left: 0.75rem;
    }

}

@media (min-width: 992px) {

    .sale-box .domain-offer .domain {
        font-size: 4rem;
    }

    .sale-box .domain-offer .offer strong {
        font-size: 1.5rem;
    }

}

/*====== /Sale box ======*/

/*====== Offer box ======*/
.offer-box {
    text-align: center;
}

.offer-box .title {
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

/* Offer form */
.offer-box .offer-form {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-box .offer-form .form-container {
    background-color: rgba(var(--white-rgb), 0.15);
    padding: 15px;
    border-radius: var(--border-radius);
}

.offer-box .offer-form .form-container .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem .375rem 2.75rem;
    line-height: 1.5;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    background-clip: padding-box;
    border: 1px solid white;
    border-radius: var(--border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.offer-box .offer-form .form-container .form-control.form-error {
    border-color: var(--danger);
    color: var(--danger);
}

.offer-box .offer-form .form-container .form-control:focus {
    border-color: var(--primary);
    outline: 0;
}

.offer-box .offer-form .form-container .form-control.form-error:focus {
    border-color: var(--danger);
}

.offer-box .offer-form .form-container .form-control.form-error::-moz-placeholder,
.offer-box .offer-form .form-container .form-control.form-error::placeholder {
    color: var(--danger);
}

.offer-box .offer-form .form-container .form-group {
    position: relative;
}

.offer-box .offer-form .form-container .form-group .form-label {
    position: absolute;
    display: inline-block;
    line-height: 0;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.offer-box .offer-form .form-container .form-group .form-label svg {
    stroke: var(--gray);
    line-height: 1;
}

.offer-box .offer-form .form-container .name,
.offer-box .offer-form .form-container .email,
.offer-box .offer-form .form-container .price {
    margin-bottom: 1rem;
}

.offer-box .offer-form .form-container .btn {
    width: 100%;
    text-decoration: none;
    display: inline-block;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: white;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    border-radius: var(--border-radius);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (min-width: 768px) {
    .offer-box .title {
        font-size: 1.75rem;
    }
}

@media (min-width: 992px) {

    .offer-box .offer-form .form-container {
        width: 800px;
        display: inline-flex;
        align-items: center;
    }

    .offer-box .offer-form .form-container .name {
        width: calc(200px - 0.5rem);
        margin-right: 0.5rem;
        margin-bottom: 0;
    }

    .offer-box .offer-form .form-container .email {
        width: calc(295px - 0.5rem);
        margin-right: 0.5rem;
        margin-bottom: 0;
    }

    .offer-box .offer-form .form-container .price {
        width: calc(165px - 0.5rem);
        margin-right: 0.5rem;
        margin-bottom: 0;
    }

    .offer-box .offer-form .form-container .submit {
        width: 110px;
    }
}

/* Offer alert */
.offer-alert {
    text-align: center;
}

.offer-alert span {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.offer-alert.alert-200 span {
    background-color: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.offer-alert.alert-500 span,
.offer-alert.alert-403 span {
    background-color: rgba(var(--danger-rgb), 0.15);
    color: var(--danger);
}

/* Offer countdown */
.offer-box .offer-countdown {
    margin-bottom: 2.5rem;
    text-align: center;
}

.offer-box .offer-countdown .title {
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--secondary);
}

.offer-box .offer-countdown .countdown {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.offer-box .offer-countdown .countdown .date-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 75px;
    min-height: 55px;
    padding: 0.75rem;
    background-color: rgba(var(--white-rgb), .1);
    border-radius: var(--border-radius);
}

.offer-box .offer-countdown .countdown .date-time:not(:last-child) {
    margin-right: 0.5rem;
}

.offer-box .offer-countdown .countdown .date-time .num {
    display: block;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1;
}

.offer-box .offer-countdown .countdown .date-time .word {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    color: var(--secondary);
}

@media (min-width:768px) {

    .offer-box .offer-countdown .countdown .date-time:not(:last-child) {
        margin-right: 1rem;
    }

    .offer-box .offer-countdown .countdown .date-time {
        min-width: 90px;
        min-height: 80px;
        padding: 1rem;
    }

    .offer-box .offer-countdown .countdown .date-time .num {
        font-size: 2.25rem;
    }

    .offer-box .offer-countdown .countdown .date-time .word {
        font-size: .75rem;
    }
}

/*====== /Offer box ======*/

/*====== Footer ======*/

.footer {
    padding-bottom: 1rem;
}

.footer .contact-box {
    text-align: center;
    margin-bottom: 1rem;
    text-align: center;
}

.footer .contact-box .contact-info {
    margin-bottom: 1rem;
}

.footer .contact-box .email,
.footer .contact-box .phone {
    display: inline-flex;
    align-items: center;
    margin: 0 0.75rem;
}

.footer .contact-box .email svg,
.footer .contact-box .phone svg {
    margin-right: 0.5rem;
}

.footer .contact-box .social-list a {
    display: inline-block;
    color: var(--gray);
    margin: 0 0.15rem;
}

.footer .contact-box .social-list a:hover {
    display: inline-block;
    color: var(--primary);
}

@media (min-width:768px) {
    .footer .contact-box .contact-info {
        display: inline-flex;
        align-items: center;
    }
}

.footer .copyright-box {
    text-align: center;
}

/*====== /Footer ======*/

/* Hide element */
.d-none {
    display: none !important;
}