* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Rubik";
}

.container {
    max-width: 90%;
    margin: auto;
}

.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    color: white;
}

.header-inner {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 700;
}

.logo-icon
{
    display: flex;
    align-items: center;
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
}

.logo small {
    display: block;
    font-size: 9px;
    opacity: .6;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.hero {
    /*height: 850px;*/
    /*background: linear-gradient(90deg, rgba(3, 10, 25, .95), rgba(3, 10, 25, .4)), url(img/hero-bg.jpg);*/
    background-image: url("../../media/services-oms/background.png");
    background-size: cover;
    color: white;
    padding-bottom: 50px;
}

.hero-content {
    padding-top: 170px;
    display: flex;
    justify-content: space-between;
}

.hero h1 {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.1;
}

.hero h1 span {
    color: #1677ff;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 550px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.primary {
    background: #0878ff;
    color: white;
}

.primary:hover {
    background: #076ce7;
    transition: 200ms;
}

.outline {
    width: 300px;
    height: 60px;
    font-size: 20px;
    font-family: "Rubik";
    font-weight: 500;
    background: #0878ff;
    color: white;
    padding: 20px 60px !important;
}

.outline:hover {
    background: #076ce7;
    transition: 200ms;
}

.hero-text {
    width: 50%;
}

.hero-image {
    width: 50%;
    height: fit-content;
    margin-top: 80px;
}

.dashboard {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    color: #111;
    border-radius: 20px;
}

.hero-buttons
{
    margin-top: 60px;
}

.advantages-mini {
    display: flex;
}

.advantage-mini
{
    margin-right: 20px;
    display: flex;
}

.advantage-mini-icon
{
    width: 60px;
    height: 60px;
}

.advantage-mini-text
{
    margin: auto 15px;
}

.section {
    padding: 100px 0;
}

h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 60px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.card {
    background: #f5f7fb;
    padding: 30px;
    border-radius: 15px;
    font-size: 20px;
}

.card-icon
{
    width: 25%;
}

.solution-grid {
    display: flex;
    grid-template-columns: 1fr 400px;
}

.solution-list div {
    margin-bottom: 15px;
    
}

.solution-item
{
    display: flex;
}

.solution-options
{
    background: #f5f7fb;
    border-radius: 20px;
    display: grid;
    width: 30%;
}

.solution-option
{
    display: flex;
    width: 90%;
    height: 50px;
    margin: 20px;
}

.solution-options-icon
{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.solution-option-text
{
    width: 75%;
    margin: auto;
}

.solution-marker
{
    width: 30px;
    height: 30px;
    color: #0878ff;
    font-size: 25px;
    font-weight: 600;
}
.solution-text
{
    width: 80%;
    font-size: 20px;
}

.form-preview {
    background: white;
    border-radius: 20px;
}

.form-preview input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
}

.form-preview button {
    width: 100%;
    padding: 15px;
    background: #0878ff;
    color: white;
    border: 0;
}

.form-preview-image
{
    width: 100%;
    height: 100%;
}

.industry-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.industry
{
    width: 200px;
    height: 200px;
}

.industry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.dark-section {
    background: #07152d;
    color: white;
    padding: 80px 0;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stats strong {
    font-size: 35px;
    color: #0878ff;
}

.stat
{
    display: flex;
    width: 20%;
    padding: 0px 30px;
}
#stat_0,
#stat_1,
#stat_2,
#stat_3
{
    border-right: 1px solid white;
}

.stat-icon
{
    width: 75px;
    height: 75px;
}
.stat-text
{
    width: 60%;
    text-align: left;
    margin-left: 30px;
}

.icon
{
    width: 100%;
    height: 100%;
}

.steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.steps div {
    background: #f4f6fa;
    padding: 15px;
    border-radius: 15px;
    text-align: left;
}

.steps-separator
{

    background-color: transparent !important;
    padding: 0px !important;
}

.step-number
{
    color: #0065ff !important;
    font-size: 50px !important;
    font-weight: 600 !important;
}
.step-title
{
    font-size: 20px !important;
    font-weight: 500 !important;
}
.step-description
{
    font-size: 20px !important;
}

.cta {
    background: #0065ff;
    color: white;
    padding: 70px 0;
}

.cta button {
    background: white;
    color: #0065ff;
    border: 2px solid #0065ff;
    padding: 15px 30px;
    font-family: "Rubik";
    font-weight: 500;
}

.cta button:hover {
    background: #0065ff;
    color: white;
    border: 2px solid white;
    transition: 200ms;
}

.contacts-text
{
    font-size: 30px;
}
.contacts-text-alt
{
    font-size: 70px;
    font-weight: 900;
}
.contacts-block
{
    display: flex;
    justify-content: space-between;
}
.contacts-pic-block
{
    width: 40%;
}
.form-block
{
    width: 60%;
}
.feedback {
    width: 70% !important;
    margin-left: auto;
}

footer {
    padding: 30px;
    text-align: center;
}

.header_menu {
    display: flex;
    width: 25%;
    align-items: center;
}

@media (max-width: 900px) {
    h2
    {
        font-size: 32px;
    }
    .btn
    {
        padding: 15px;
    }

    .hero-content,
    .solution-grid {
        display: block;
    }

    .advantages-mini
    {
        display: block;
    }
    .advantage-mini
    {
        margin-bottom: 20px;
    }

    .cards,
    .industry-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .industry-grid 
    {
        display: block;
    }

    .industry
    {
        width: 300px;
        margin: 0 auto;
        height: fit-content;
    }

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero-text {
        width: 90%;
    }

    .hero-image {
        width: 100%;
        margin-top: 80px;
    }

    .outline
    {
        padding: 15px 15px;
    }

    .stats {
        display: block;
    }

    .stat
    {
        width: 90%;
        margin-bottom: 50px;
    }
    #stat_0,
    #stat_1,
    #stat_2,
    #stat_3
    {
        border-right: 0px;
        
    }
    .stats strong {
        font-size: 25px;
    }

    .cta form {
        display: block;
    }

    .solution-options {
        width: 90%;
        margin: 20px auto;
    }

    .solution-text {
        font-size: 15px;
    }

    .form-block
    {
        width: 100%;
    }
    .feedback {
        width: 100% !important;
    }
    .contacts-block
    {
        display: block;
    }
    .contacts-text-alt
    {
        font-size: 30px;
    }
    .contacts-pic-block
    {
        width: 100%;
        /*display: none;*/
    }
    input[type="text"] {
        width: 100% !important;
        margin: 10px 0px !important;
    }
    input[type="file"] {
        margin: 10px 0px !important;
    }
    textarea {
        width: 100% !important;
        margin: 10px 0px !important;
    }
    .feedback_submit_button {
        width: 100% !important;
        margin: 10px 0px !important;
    }
    #feedback_file_title {
        margin: 10px 0px !important;
    }
}