.header_container {
    position: relative;
    width: 100%;
    height: calc(100vw * 0.3);
}

.slide_container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide_track {
    position: relative;
    height: 100%;
    transition: transform 0.4s ease-in;
}

.slide {
    position: relative;
    z-index: 45;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.slide_content .slide_text {
    text-align: center;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 3vw;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.slide img {
    width: 100%;
    height: calc(100vw * 0.3);
    object-fit: cover;
}

.slide_container:hover .slide_nav_button {
    display: block;
    transition: 0.4s ease;
}

.slide_nav_button {
    display: none;
    position: absolute;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 52;
    font-size: 18px;
    padding: 12px 18px;
    top: calc(50% - 40px);
    cursor: pointer;
    border-radius: 50%;
    transition: 0.4s ease;
}

.slide_nav_button:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slide_nav_button#left_button {
    left: 20px;
}

.slide_nav_button#right_button {
    right: 20px;
}

.slide_right_gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    right: 0;
    z-index: 50;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.3));
}

.slide_left_gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    left: 0;
    z-index: 50;
    background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.3));
}

.sub_content_heading {
    font-size: 30px;
    position: relative;
    line-height: 1.4;
    padding: 20px 16px 0;
    margin: 0;
    color: var(--colorAccent);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.sub_content_heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25px;
    height: 3px;
    background-color: var(--yellowColor);
    border-radius: 1px;
    width: 20%;
}

.sub_content {
    font-size: 20px;
    line-height: 1.4;
    padding: 16px;
    margin: 0;
    font-weight: 300;
    color: #404040;
    font-family: 'Roboto', sans-serif;
}

.features_container {
    margin-top: -50px;
    z-index: 44;
}

.features_container > .block {
    flex: 1 1 auto;
    width: 200px;
    padding: 24px;
    background: var(--colorAccent);
    transition: 0.4s ease;
    display: flex;
    flex-direction: row;
    color: white;
    align-items: center;
}

.features_container .block:nth-child(even) {
    background-color: var(--yellowColor);
    color: var(--colorPrimary);
}

.features_container .block i {
    font-size: 50px;
    margin: 12px 20px 12px 12px;
    color: inherit;
}

.features_container .block span {
    font-size: 20px;
    text-align: center;
    padding: 16px 0;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: inherit;
    text-transform: capitalize;
}

.about_us_container {
    position: relative;
    padding: 80px 20px;
}

.about_us_container::after {
    content: '';
    position: absolute;
    top: -100px;
    bottom: -100px;
    z-index: -1;
    left: 0;
    width: 100%;
    background: url('../images/background_pattern.png') no-repeat;
    background-size: cover;
}

.trust_seal {
    width: 190px;
    height: 190px;
    /*padding: 20px;*/
    border-radius: 50%;
    margin: 20px 30px;
    transform: rotate(-25deg);
    object-fit: contain;
    /*background-color: var(--colorAccent);*/
}

.what_we_do_container {
    padding-bottom: 50px;
}

.what_we_do_container .main_content {
    max-width: 1200px;
}

.what_we_do_container .block {
    flex: 1 1 auto;
    width: 260px;
    margin: 12px;
    border-bottom: 3px solid var(--yellowColor);
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.what_we_do_container .block img {
    margin: 20px;
    width: 80px;
    align-self: center;
}

.what_we_do_container .block span {
    font-size: 16px;
    text-align: center;
    padding: 10px 0;
    flex-grow: 1;
    background-color: #f6f6f6;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: inherit;
    text-transform: capitalize;
}

.product_nav_button {
    position: absolute;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 52;
    font-size: 14px;
    padding: 8px 12px;
    top: calc(50% - 40px);
    cursor: pointer;
    border-radius: 50%;
    transition: 0.4s ease;
}

.product_nav_button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.product_nav_button#p_left_button {
    left: 6px;
}

.product_nav_button#p_right_button {
    right: 6px;
}

.products_container {
    background-color: var(--colorAccent);
    padding-bottom: 60px;
}

.products_container .section_heading, .products_container .section_sub_heading {
    color: white;
}

.products_container .category:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);

}

.products_container .block {
    position: relative;
    margin: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: white;
    transition: 0.4s ease;
    cursor: pointer;
    max-width: 280px;
    overflow: hidden;
    border-bottom: 3px solid var(--yellowColor);
}

.products_container .block img {
    width: 100%;
    align-self: center;
    height: 200px;
    object-fit: contain;
    overflow: hidden;
    margin: 12px;
    color: var(--yellowColor);
    transition: 0.4s ease;
}

.products_container .block img:hover {
    transform: scale(1.1, 1.1);
}

.products_container .block .title {
    font-size: 18px;
    text-align: center;
    border-top: 1px solid #f2f2f2;
    padding: 8px 4px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: var(--colorAccent);
    text-transform: capitalize;
}

.products_container .block .tag {
    position: absolute;
    top: 12px;
    right: 0;
    font-size: 14px;
    text-transform: uppercase;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    background: var(--yellowColor);
    padding: 4px 12px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: var(--colorAccent);
}

.products_container .block .description {
    font-size: 15px;
    text-align: center;
    padding: 8px 0 4px;
    font-family: "Roboto", sans-serif;
    color: var(--colorPrimary);
    text-transform: capitalize;
}

.products_container .block .category_name {
    font-size: 14px;
    text-align: center;
    padding: 0 0 8px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: var(--yellowColor);
    text-transform: capitalize;
}

.contact_us_container {
    position: relative;
    padding: 120px 0 50px;
}

.contact_us_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    right: 0;
    background: url('../images/back_image.png') repeat;
}

.contact_block_heading_container {
    background-color: var(--colorAccent);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
}

.contact_block_heading_container > div {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    background-color: var(--yellowColor);
    color: var(--colorAccent);
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    align-self: normal;
    text-transform: uppercase;
    padding: 20px;
}

.contact_block_heading_container > div::before {
    content: '';
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--yellowColor);
    clip-path: polygon(0 0, 0 calc(100% - 15px), calc(50% - 10px) calc(100% - 15px), 50% 100%, calc(50% + 10px) calc(100% - 15px), 100% calc(100% - 15px), 100% 0);
}

.contact_us_container h1 {
    margin: 0 0 24px;
    padding: 0 0 8px;
    color: var(--colorAccent);
    font-weight: bold;
    text-align: left;
    font-family: "Roboto", sans-serif;
    position: relative;
    align-self: flex-start;
}

.contact_us_container h1::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 30%;
    height: 3px;
    border-radius: 2px;
    background-color: var(--yellowColor);
}

.contact_us_container h3 {
    padding: 0;
    text-align: center;
    margin: 0 0 20px;
    font-size: 14px;
    color: white;
    font-weight: 200;
    font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 700px) {
    .header_container {
        position: relative;
        width: 100%;
        height: calc(100vw * 0.5);
    }

    .slide img {
        width: 100%;
        height: calc(100vw * 0.5);
        object-fit: cover;
    }

    .slide .slide_text {
        font-size: 5vw;
    }

    .slide_content {
        bottom: 80px;
    }

    .features_container {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 2px;
    }

    .features_container > .block {
        padding: 8px 12px;
        margin: 4px;
    }

    .features_container > .block i {
        font-size: 36px;
    }

    .features_container > .block span {
        font-size: 18px;
    }

    .sub_content_heading {
        font-size: 22px;
        line-height: 1.4;
        padding: 16px 12px 0;
        margin: 0;
        align-self: center;
        text-align: center;
        color: var(--colorAccent);
        font-weight: 400;
        position: relative;
        font-family: 'Roboto', sans-serif;
    }

    .sub_content {
        text-align: center;
        font-size: 18px;
        line-height: 1.4;
        padding: 12px;
        margin: 0;
        font-weight: 200;
        font-family: 'Roboto', sans-serif;
    }

    .trust_seal {
        width: 100px;
        height: 100px;
        margin: 20px;
        align-self: center;
    }

    .about_us_container {
        padding: 20px;
    }

    .about_us_container .button_underline {
        align-self: center;
    }

}

@media only screen and (max-width: 500px) {

    .products_container .block img {
        height: 180px;
    }

    .products_container .block span {
        font-size: 15px;
        padding: 14px 0;
    }

}