/*
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Open Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-variation-settings:
            "wdth" 100;
    }
            */
strong {
    font-weight: bold;
}

body {
    background-color: #f8f9fa;
    margin: 0;
    height: 100vh;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    color: #7A7A7A;
}

a {
    transition: all 0.25s ease-in-out;
}
header {}

section.dark {
    background-color: #282c31;
    color: #fff;
}

section.dark a:link:not(.btn),
section.dark a:visited:not(.btn) {
    color: #fff;
    font-size: 14px;
}

section.overlay {
    background: url(/assets/img/overlay.png);
    color: #7A7A7A;
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
}

section.overlay a:link,
section.overlay a:visited {
    color: #000;
    font-size: 14px;
}

section.white {
    color: #000;
}

section.prices {
    text-align: center;
}

section.prices h3 {
    color: #DDA61A;
    font-size: 66px;
    margin-bottom: -6px;
}

section.prices h4 {
    font-size: 26px;
    margin-bottom: -2px;
}

section.prices h5 {
    font-size: 16px;
    margin-bottom: -20px;
}

.price-element {}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px;
}

section .container {
    padding: 50px 40px;
}

h1,
h2,
h3,
h4,
h5 {
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #1D1D1D;
}

h1 {
    color: #fff;
    font-size: 50px;
}

h2 {
    color: #000;
    font-size: 40px;
}

section.dark h1,
section.dark h2,
section.dark h3 {
    color: #fff;
}

p {
    color: #fff;
}

footer {
    background-color: #282c31;
    color: #fff;
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
}

footer a:link,
footer a:visited {
    color: #999;
}

.btn {
    color: #fff;
    border-radius: 4px;
    padding: 0.6rem 1rem;
    border: 0;
    text-decoration: none;
    background: linear-gradient(0deg, rgba(133, 69, 21, 1) 0%, rgba(239, 124, 36, 1) 100%);
    font-size: 16px;
    transition: all 0.25s ease-in-out;
}

.btn:hover {
    color: #000;
}

.domains a:hover {
    color: #000;
    background-color: #DDA61A;
}

.price-element {
    padding: 40px;
}

.price-element.middel {
    border-left: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
}

img {
    max-width: 100%;
}

.bg-custom {
    background-color: #282c31;
    padding: 4px 20px 5px 20px;
    border: 1px solid rgba(255,255,255,0.8);
}

.bg-secondary {
    background-color: #DDA61A !important;
    border: 1px solid #bc8e16;
}

.bg-secondaryy::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: repeating-conic-gradient(#DDA61A 0deg 6deg,
            #0f2e3d 6deg 12deg);
    z-index: -0;
}

.bg-secondary h3 {
    color: #fff;
    text-shadow:
            -1px -1px 0 rgba(0,0,0,0.1),
            1px -1px 0 rgba(0,0,0,0.1),
            -1px 1px 0 rgba(0,0,0,0.1),
            1px 1px 0 rgba(0,0,0,0.1);
    text-shadow:
            1px 1px 0 #b07e2863,
            2px 2px 0 #8c5d2076,
            3px 3px 0 #4c351475;
}

@media (max-width: 920px) {
    h1 {
        font-size: 8vw;
    }
    .price-element.middel {
        border: 0;
    }
}


