@import "header.css";
@import "footer.css";

@import "sections/hero.css";
@import "sections/about.css";
@import "sections/commander.css";
@import "sections/recruit.css";
@import "sections/vacancy.css";
@import "sections/faq.css";

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Citadina', sans-serif;
    font-weight: 400;
    color: #EDD7BF;

    background-image: url("/wp-content/themes/CSO/App/assets/images/background-main.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.phone-number {
    font-family: 'Intensiva', sans-serif;
}

h1 {
    text-transform: uppercase;
    font-size: 80px;
    line-height: 76px;
}

h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 42px;
    color: #081d94;
}

h2.white {
    color: #FFFFFF;
}

.description {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #081d94;
}

.section {
    background: transparent;
}

.container {
    width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.wrapper {
    margin: 0 120px;
}

.wrapper.horizontal {
    display: flex;
    justify-content: space-between;
}

.info {
    display: flex;
    align-items: center;
}

.button {
    padding: 10px 18px;
    color: #FFFFFF;
    background: #081d94;

    width: max-content;
    display: flex;

    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.button:hover {
    background-color: #103777;
}

.section-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.section-background.background-top {
    background-position: center top;
}

.dropdown-open {
    cursor: pointer;
}

.dropdown .description {
    display: none;
    overflow: hidden;
}

.dropdown.active .description {
    display: block;
}

.svg .open, .svg .close {
    width: 24px;
    height: 24px;
}

.burger {
    display: none;
}

.burger-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 0 120px;
}

.burger-close {
    display: none;
}

.phone-link {
    color: #EDD7BF;
}

.logo img {
    width: 150px;
}