* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #eeeeee;
    color: #757575;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

img {
    border: 0;
    display: block;
    max-width: 100%;
}

a {
    color: #23a7df;
    text-decoration: none;
}

.wrap,
.main,
.footer-wraper {
    margin: 0 auto;
    max-width: 960px;
    width: 100%;
}

.top-bar {
    background: #606469;
    color: #d7d7d7;
    font-size: 13px;
}

.top-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 43px;
    padding: 0 18px;
}

.contact-line {
    display: flex;
    gap: 28px;
}

.mail,
.phone {
    position: relative;
}

.social {
    align-items: center;
    display: flex;
    gap: 8px;
}

.social img {
    height: 21px;
    width: 21px;
}

.site-header {
    background: #24a5d7;
}

.header-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 84px;
    padding: 0 18px;
}

.brand img {
    width: 180px;
}

.main-nav {
    align-items: center;
    display: flex;
    gap: 26px;
}

.main-nav a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

.main-nav a.active,
.main-nav a:hover {
    color: #e8f8ff;
}

.banner img,
.hero-slider img {
    height: auto;
    width: 100%;
}

.map-banner {
    background: #d7d7d7;
    height: 337px;
    overflow: hidden;
}

.map-banner iframe {
    display: block;
}

.hero-slider {
    background: #ef1743;
    overflow: hidden;
    position: relative;
}

.hero-slider .slide {
    animation: fadeSlide 20s infinite;
    inset: 0;
    opacity: 0;
    position: absolute;
}

.hero-slider .slide:first-child {
    position: relative;
}

.hero-slider .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slider .slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-slider .slide:nth-child(3) {
    animation-delay: 10s;
}

.hero-slider .slide:nth-child(4) {
    animation-delay: 15s;
}

@keyframes fadeSlide {
    0%, 20% {
        opacity: 1;
    }
    25%, 100% {
        opacity: 0;
    }
}

.middle {
    background: #fff;
    min-height: 620px;
}

.row {
    clear: both;
}

.padding {
    padding: 42px 54px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-grid figure {
    margin: 0;
    overflow: hidden;
    position: relative;
}

.feature-grid img {
    height: 265px;
    object-fit: cover;
    width: 100%;
}

.feature-grid figcaption {
    align-items: center;
    background: rgba(20, 20, 20, .42);
    color: #fff;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    transition: opacity .25s ease;
}

.feature-grid figure:hover figcaption {
    opacity: 1;
}

.feature-grid h2 {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
}

.content-grid {
    display: grid;
    gap: 58px;
    grid-template-columns: minmax(0, 1fr) 300px;
}

.left-col h1:first-child:not(.heading) {
    color: #838383;
    font-size: 27px;
    font-weight: 400;
    margin: 0 0 12px;
}

.heading,
.heading1 {
    border-bottom: 1px solid #ddd;
    color: #111;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 26px;
    padding: 0 0 15px 34px;
    position: relative;
}

.heading::before,
.heading1::before {
    color: #23a7df;
    content: "||";
    font-weight: 400;
    left: 0;
    position: absolute;
    top: 0;
}

p {
    margin: 0 0 24px;
}

.subheading {
    color: #23a7df;
    display: block;
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 14px;
}

.list {
    list-style: none;
    margin: -12px 0 24px;
    padding: 0;
}

.list li {
    margin: 0 0 3px 18px;
    position: relative;
}

.list li::before {
    background: #23a7df;
    border-radius: 50%;
    content: "";
    height: 7px;
    left: -16px;
    position: absolute;
    top: 9px;
    width: 7px;
}

.product img {
    margin: 0 auto 16px;
}

.division-product img:first-child {
    width: 270px;
}

.division-product img:nth-child(2) {
    width: 250px;
}

.side-menu {
    background: #f0f0f0;
    margin-bottom: 28px;
    padding: 20px 18px;
}

.side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu li {
    border-bottom: 1px solid #ddd;
}

.side-menu li:last-child {
    border-bottom: 0;
}

.side-menu a {
    display: block;
    padding: 12px 0;
}

.product-range {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: #a7d9f4;
}

.product-card img {
    aspect-ratio: 1.35;
    object-fit: contain;
    padding: 18px;
    width: 100%;
}

.product-card p {
    background: #25a4d6;
    color: #fff;
    font-size: 14px;
    margin: 0;
    min-height: 55px;
    padding: 17px 8px;
    text-align: center;
}

.carousel-ui {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.dots {
    display: flex;
    gap: 10px;
}

.dots span {
    background: #bfc9c8;
    border-radius: 50%;
    display: block;
    height: 11px;
    width: 11px;
}

.carousel-buttons {
    display: flex;
    gap: 8px;
}

.carousel-buttons span {
    background: #25a4d6;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
}

.clients {
    background: #f1f1f1;
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 54px 78px;
    padding: 25px 46px;
}

.clients .logo {
    align-items: center;
    display: flex;
    justify-content: center;
}

footer {
    background: #25a4d6;
    color: #fff;
}

.footer-wraper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 122px;
    padding: 18px 86px;
}

.footer-logos {
    align-items: center;
    display: flex;
    gap: 34px;
    margin-bottom: 8px;
}

.footer-logos img {
    max-height: 38px;
    width: auto;
}

.footer-left p {
    font-size: 15px;
    line-height: 1.35;
    margin: 0;
}

.footer-left a {
    color: #fff;
}

.download-brochure img {
    width: 300px;
}

.contact-layout {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(210px, .9fr) minmax(280px, 1.1fr);
}

.contact-details hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 6px 0 24px;
}

.contact-form {
    background: #f4f4f4;
    padding: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 15px;
}

.contact-form span {
    color: #333;
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #d5d5d5;
    color: #555;
    font: inherit;
    padding: 11px 12px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background: #25a4d6;
    border: 0;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 11px 26px;
}

.form-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
}

.form-alert p {
    margin: 0 0 6px;
}

.form-alert p:last-child {
    margin-bottom: 0;
}

.form-alert.success {
    background: #e3f7ea;
    color: #236b37;
}

.form-alert.error {
    background: #ffe9e9;
    color: #9b2626;
}

@media (max-width: 900px) {
    .header-inner,
    .top-inner,
    .footer-wraper {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 14px 20px;
        padding-bottom: 18px;
    }

    .content-grid,
    .feature-grid,
    .product-range,
    .clients,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .padding,
    .footer-wraper {
        padding: 32px 22px;
    }

    .clients {
        margin: 0 22px 46px;
    }
}
