@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --c_primary: #101010;
    --c_text: #787878;
    --c_text_dark: #1D1D1D;
    --c_heading: #101010;
    --c_black: #101010;
    --c_white: #ffffff;
    --c_border: #D4D4D4;
    --c_grey: #EAEAEA;
    --f_body: "Montserrat", sans-serif;
    --transition: all 0.3s ease-in-out 0s;
}

* {
    margin: 0;
    padding: 0;
    outline: none !important;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c_white);
}

b,
strong {
    font-weight: 700;
}

a,
a:hover {
    color: var(--c_text);
    transition: var(--transition);
}

a,
a:not(.btn_n):hover {
    text-decoration: none;
}

:is(h1, h2, h3, h4, h5, h6) {
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: var(--f_body);
    color: var(--c_heading);
    margin-bottom: 0;
}

:where(h1, h2, h3, h4, h5, h6):not(:last-child) {
    margin-bottom: 25px;
}

body,
p,
li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--c_text);
    font-family: var(--f_body);
}

p,
li {
    margin: 0;
}

:where(p, ul, ol, li):not(:last-child) {
    margin-bottom: 20px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

figure {
    margin: 0;
}

.ut_spc,
.u_spc {
    padding-top: 120px;
}

.ub_spc,
.u_spc {
    padding-bottom: 120px;
}

.content {
    overflow: clip;
}

.btnn {
    gap: 10px;
    min-height: 45px;
    font-size: 14px;
    font-weight: 400;
    padding: 2px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    transition: var(--transition);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    text-indent: 0;
    z-index: 1;
}

.btn_primary {
    color: var(--c_white);
    background-color: var(--c_primary);
    border-color: var(--c_primary);
}

.btn_white {
    color: var(--c_black);
    background-color: var(--c_white);
    border-color: var(--c_white);
}

.btn_white.br {
    color: var(--c_white);
    background-color: transparent;
    border-color: var(--c_white);
}

.btn_white.br:is(:hover, :focus) {
    color: var(--c_black);
    background-color: var(--c_white);
    border-color: var(--c_white);
}

.btn_flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

label {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    color: #5E5E5E;
    display: block;
    margin: 0;
}

.control_group:not(:last-child) {
    margin-bottom: 15px;
}

input,
select,
textarea {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--c_black);
    background-color: var(--c_white);
    border: 1px solid var(--c_white);
    outline: none !important;
    border-radius: 0;
    box-shadow: none;
}

input {
    height: 45px;
    padding: 0 10px;
}

select {
    height: 45px;
    padding: 0 10px;
}

textarea {
    height: 100px;
    padding: 10px 15px;
    resize: none;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
    color: #6A6A6A;
    opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--c_primary);
}

:is(input, select, textarea, .control-group).empty_value {
    border-color: #ff0000;
}

.form_btn {
    margin-top: 35px;
}

.form_btn .btnn {
    width: auto;
    min-width: 240px;
}

.gap_p,
.gap_m {
    --gap_x: 30px;
    --gap_y: 30px;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--gap_y) * -1);
    margin-left: calc(var(--gap_x) * -1);
}

.gap_p>*,
.gap_m>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    margin-top: var(--gap_y);
}

.gap_p>* {
    padding-left: var(--gap_x);
}

.gap_m>* {
    margin-left: var(--gap_x);
}

.w_50 {
    width: 50%;
}

.w_100 {
    width: 100%;
}

.text_white,
.text_white *:not(.btnn) {
    color: var(--c_white);
}

.conta_iner {
    max-width: 1170px;
    width: 90%;
    margin-inline: auto;
}

@media (max-width: 767.98px) {
    .conta_iner {
        width: 100%;
        padding: 0 15px;
    }
}

/* Header */
.site_header {
    top: 0;
    left: 0;
    position: absolute;
    transition: var(--transition);
    width: 100%;
    z-index: 9;
}

.site_header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    padding: 15px 0;
    gap: 20px;
}

.site_header.scrolled nav {
    padding: 15px 0;
    border-color: var(--c_black);
}

.site_header .site_logo {
    height: 100px;
}

.site_header .site_logo figure,
.site_header .site_logo img {
    height: 100%;
}

/* Footer */
.site_footer {
    background-color: var(--c_grey);
}

.footer_bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-block: 50px;
    flex-wrap: wrap;
    gap: 35px 20px;
}

.footer_bottom :is(.lt_s, .rt_s) {
    width: 100%;
    max-width: 320px;
}

.footer_bottom p {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--c_text_dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer_bottom .lt_s p {
    margin-bottom: 20px;
}

.btn_apps {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn_apps a {
    display: inline-flex;
}

.btn_apps a:hover {
    transform: scale(1.1);
}

.form_subscribe .control_group {
    display: flex;
    align-items: flex-start;
}

.form_subscribe .btnn {
    font-size: 12px;
    min-width: 100px;
    padding: 5px 10px;
}

.copyrwrite {
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    text-align: center;
}

.copyrwrite p {
    font-size: 14px;
    font-weight: 500;
    color: var(--c_black);
}

/* Main */
.hero_sc {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

.hero_sc::before {
    content: "";
    inset: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero_sc h1 {
    font-size: 55px;
    color: var(--c_white);
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
}

.about_sc {
    padding: 80px 0;
}

.about_sc .inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.about_sc .inner .lt_s {
    width: calc(54% - 15px);
    padding-right: 20px;
}

.about_sc .inner .rt_s {
    width: calc(46% - 15px);
}

.about_sc .inner .lt_s h2 {
    font-size: 32px;
    text-transform: capitalize;
}

.about_sc .inner .rt_s {
    text-align: right;
}

@media screen and (max-width: 767.98px) {
    .site_header .site_logo {
        height: 70px;
    }

    .hero_sc h1 {
        font-size: 40px;
    }

    .about_sc .inner :is(.lt_s, .rt_s) {
        width: 100%;
        padding-right: 0;
    }

    .about_sc .inner .lt_s h2 {
        font-size: 26px;
    }

    :where(h1, h2, h3, h4, h5, h6):not(:last-child) {
        margin-bottom: 15px;
    }

    body,
    p,
    li {
        font-size: 14px;
        line-height: 1.7;
    }

    :where(p, ul, ol, li):not(:last-child) {
        margin-bottom: 15px;
    }

    .about_sc {
        padding: 50px 0;
    }

    .footer_bottom :is(.lt_s, .rt_s) {
        max-width: 100%;
    }

    .footer_bottom .lt_s p {
        margin-bottom: 10px;
    }

    .footer_bottom p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer_bottom {
        gap: 30px 20px;
    }
}