/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #056839;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo-img {
    width: 163px;
    height: 38px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    display: inline-flex;
    padding: 26.5px 12px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: white;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 18px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 22px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: #eeeeee;
}

.hero-bg-img,
.hero-overlay-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    top: 330px;
    left: 130px;
    z-index: 10;
}

.hero-number {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 150px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    opacity: 0.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    color: white;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 72px;
    line-height: 82px;
    max-width: 800px;
    margin-bottom: 40px;
}

.hero-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-link-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: #026134;
    font-size: 16px;
    line-height: 24px;
    text-shadow: 0px 0px 14px rgba(255, 255, 255, 0.4);
}

.hero-link-line {
    width: 60px;
    height: 2px;
    background: #056839;
}

.social-links {
    position: absolute;
    top: 440px;
    right: 90px;
    transform: rotate(-90deg);
    transform-origin: center;
    display: flex;
    gap: 50px;
}

.social-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f6f7f8;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.about-text {
    flex: 1;
    max-width: 570px;
    padding: 50px 15px 67px;
    position: relative;
}

.about-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.about-bg-1 {
    position: absolute;
    width: 432px;
    height: 359px;
    top: 140px;
    left: -20px;
}

.about-bg-2 {
    position: absolute;
    width: 432px;
    height: 359px;
    left: 110px;
}

.about-card {
    position: relative;
    z-index: 10;
    background: #fff;
    max-width: 460px;
    width: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: black;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 40px;
    max-width: 312px;
}

.about-title {
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    color: black;
    font-size: 42px;
    line-height: 52px;
}

.about-description {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: black;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 24px;
    padding: 4px 0;
}

.about-btn {
    background: none;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #262423;
    font-size: 14px;
    line-height: 21px;
    cursor: pointer;
    text-align: left;
    padding: 0;
    transition: opacity 0.3s ease;
}

.about-btn:hover {
    opacity: 0.7;
}

.about-gallery {
    flex: 1;
    max-width: 570px;
    height: 566px;
    position: relative;
}

.gallery-item {
    position: absolute;
    width: 270px;
    padding-left: 20px;
}

.gallery-item-bg {
    background: url('./img/1.1.png') no-repeat center / cover !important;
}

.gallery-item:nth-child(1) {
    top: 0;
    left: 15px;
    height: 246px;
}

.gallery-item:nth-child(2) {
    top: 0;
    right: 0;
    height: 321px;
}

.gallery-item:nth-child(3) {
    bottom: 0;
    left: 0;
    height: 321px;
}

.gallery-item:nth-child(4) {
    bottom: 0;
    right: 0;
    height: 246px;
}

.stats-item {
    background: white;
    display: flex;
    flex-direction: column;
    position: relative;
}

.stats-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 225px;
    overflow: hidden;
    opacity: 0.1;
}

.stats-bg img {
    width: 330px;
    height: 233px;
    object-fit: cover;
    position: absolute;
    top: -4px;
    left: -40px;
}

.stats-content {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 10;
}

.stats-number {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 90px;
    line-height: 88px;
    color: transparent;
    -webkit-text-stroke: 2px #000000;
    opacity: 0.3;
    margin-bottom: -10px;
}

.stats-label {
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    color: black;
    font-size: 28px;
    line-height: 52px;
}

.stats-sublabel {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: black;
    font-size: 14px;
    line-height: 21px;
}

.image-item {
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-item::after {
    content: '';
    position: absolute;
    width: 88px;
    height: 601px;
    top: -150px;
    left: -250px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(40deg);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #056839;
    color: white;
    overflow: hidden;
}

.features-section .container {
    max-width: 1410px;
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 50px;
    gap: 0;
}

.section-title-block {
    width: 305px;
    display: flex;
    flex-direction: column;
    gap: 0.25px;
    padding: 0 53px 5px 0;
    border-right: 3px solid white;
}

.section-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    font-size: 22px;
    line-height: 33px;
    margin-top: -3px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    font-size: 42px;
    line-height: 52px;
    margin-top: -1px;
}

.section-description {
    flex: 1;
    max-width: 710px;
    padding: 20px 0 0 50px;
}

.section-description p {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 24px;
}

/* Features Slider */
.features-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.features-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.feature-card {
    width: 100%;
    /* max-width: 330px; */
   
    background: transparent;
    position: relative;
    padding: 0 10px;
    flex-shrink: 0;
}

.feature__wrap {
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 564px;
    padding: 15px 10px;
    width: 100%;
    max-width: 260px;
    position: relative;
}

.feature-number {
    /* position: absolute;
    top: 22px;
    left: 31px; */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 100px;
    line-height: 110px;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    opacity: 0.3;
    margin-bottom: 15px;
}

.feature-title {
    /* position: absolute;
    top: 156px;
    left: 31px; */
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    color: white;
    font-size: 20px;
    line-height: 26px;
    white-space: pre-line;
    margin-bottom: 10px;
}

.feature-description {
    /* position: absolute;
    top: 197px;
    left: 31px; */
    width: 219px;
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 24px;
}

.feature-image {
    position: absolute;
    width: 298px;
    height: 186px;
    top: 347px;
    left: 31px;
    overflow: hidden;
}

.feature-image img {
    width: 324px;
    height: 185px;
    object-fit: cover;
    position: relative;
    left: -13px;
    top: 1px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f6f7f8;
}

.services-section .section-title-block {
    border-right-color: #056839;
    color: black;
}

.services-section .section-description {
    color: black;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    min-height: 315px;
    background: white;
    padding: 25px 30px 31px;
    margin: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}

.service-letter {
    position: absolute;
    top: 45px;
    right: -40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 360px;
    line-height: 360px;
    color: transparent;
    -webkit-text-stroke: 1px #000000;
    opacity: 0.1;
    pointer-events: none;
}

.service-title {
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    color: black;
    font-size: 20px;
    line-height: 26px;
    z-index: 10;
    position: relative;
}

.service-description {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: black;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 24px;
    z-index: 10;
    position: relative;
}

.service-btn {
    background: none;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #262423;
    font-size: 14px;
    line-height: 21px;
    cursor: pointer;
    text-align: left;
    padding: 0;
    z-index: 10;
    position: relative;
    transition: opacity 0.3s ease;
}

.service-btn:hover {
    opacity: 0.7;
}

/* Company Section */
.company-section {
    padding: 80px 150px;
    /* background: url('../public/background-1.png') 50% 50% / cover, linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%); */
}

.company-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.company-section .section-header {
    margin-bottom: 50px;
}

.company-section .section-title-block {
    width: 249px;
    border-right-color: #056839;
    color: black;
    margin: 0 auto;
}

.company-section .section-description {
    color: black;
    max-width: 786px;
}

.company-text {
    position: relative;
    height: 583px;
}

.company-description {
    width: 633px;
    margin-top: 50px;
    margin-bottom: 45px;
}

.company-description p {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: black;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 24px;
}

.company-values {
    background: white;
    border: 1px solid #dddddd;
    padding: 21px;
    max-width: 620px;
}

.values-title {
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    color: black;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: black;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 24px;
    margin-bottom: 5px;
}

.values-list li:before {
    content: '• ';
    margin-right: 5px;
}

.company-image {
    width: 100%;
    max-width: 360px;
}

.company-image img {
    width: 100%;
    height: auto;
}

.desc__wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Approach Section */
.approach-section {
    padding: 80px 150px 0;
    /* background: url('../public/background-1.png') 50% 50% / cover, linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%); */
}

.approach-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    height: 580px;
}

.approach-image {
    max-width: 570px;
    width: 423px;
    height: 415px;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.approach-info {
    flex: 1;
    max-width: 570px;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 4px;
}

.approach-card {
    background: white;
    border: 1px solid #dddddd;
    padding: 21px;
    width: 619px;
    margin-right: -65px;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.approach-list li {
    font-family: 'Raleway', sans-serif;
    font-weight: normal;
    color: black;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 24px;
    margin-bottom: 10px;
}

.approach-list li:before {
    content: '• ';
    margin-right: 5px;
}

.approach-team-img {
    width: 557px;
    height: 428px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    overflow: hidden;
    padding: 80px 0;
    margin: 0 auto 40px;
    background:  linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%);
}

.contact-section .section-header {
    margin-bottom: 50px;
}

.contact-section .section-title-block {
    max-width: 372px;
    border-right-color: #056839;
    color: black;
     margin: 0 auto;
}

.contact-section .section-description {
    color: black;
    max-width: 430px;
    margin: 0 auto;
}

.contact-content {
    position: relative;
    max-width: 1110px;
    margin: 0 auto;
}

.contact-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.contact-bg-1 {
    position: absolute;
    width: 288px;
    height: 397px;
    bottom: 0;
    left: -30px;
}

.contact-bg-2 {
    position: absolute;
    width: 288px;
    height: 397px;
    top: 0;
    right: -30px;
}

.contact-form {
    background: white;
    border: 1px solid #f1f2f9;
    box-shadow: 0px 12px 40px 0px rgba(25, 33, 61, 0.05);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #170f49;
    font-size: 16px;
    line-height: 135%;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    background: white;
    border-radius: 16px;
    border: 1px solid #f1f2f9;
    box-shadow: 0px 0.5px 1px 0px rgba(25, 33, 61, 0.04);
}

.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #a0a3bd;
    font-size: 16px;
    line-height: 135%;
    background: transparent;
}

.input-wrapper input::placeholder {
    color: #a0a3bd;
}

.input-icon {
    position: absolute;
    right: 16px;
    width: 20px;
    height: 20px;
}

.form-group textarea {
    width: 100%;
    height: 145px;
    padding: 24px;
    border: 0.5px solid #d9dbe9;
    border-radius: 16px;
    box-shadow: 0px 0.5px 1px 0px rgba(25, 33, 61, 0.04);
    resize: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #a0a3bd;
    font-size: 16px;
    line-height: 135%;
    outline: none;
}

.form-group textarea::placeholder {
    color: #a0a3bd;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: #056839;
    border: 0.5px solid #d2ceff;
    border-radius: 8px;
    box-shadow: inset 0px 3px 4px rgba(223, 237, 255, 0.3), inset 0px 1px 1px rgba(255, 255, 255, 0.35), inset 0px -2px 2px rgba(0, 66, 137, 0.15), 0px 2px 3px rgba(52, 123, 208, 0.3);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 18px;
    line-height: 135%;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #044a2c;
    transform: translateY(-2px);
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #056839;
    padding: 20px 10px;
    color: #7E878C;
    font-size: 13px;
}

footer img {
    max-width: 220px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        left: 50px;
    }
    
    .hero-title {
        font-size: 60px;
        line-height: 70px;
    }
    
    .company-section,
    .approach-section {
        padding: 80px 50px;
    }
    
    .approach-content {
        gap: 30px;
    }
    
    .approach-card {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #056839;
        padding: 20px;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-title-block {
        border-right: none;
        border-bottom: 3px solid;
        padding: 0 0 20px 0;
        width: 100%;
    }
    
    .section-description {
        padding: 0;
        max-width: 100%;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-gallery {
        max-width: 100%;
        height: 400px;
        display: flex;
        flex-wrap: wrap;
        position: relative;
    }
    
    .gallery-item {
        position: relative;
        width: calc(50% - 10px);
        height: 180px;
        margin: 5px;
        left: auto !important;
        top: auto !important;
    }
    
    .services-grid {
        justify-content: center;
    }
    
    .service-card {
        min-width: 280px;
        max-width: 350px;
    }
    
    .company-content {
        padding: 0;
    }
    
    .company-text {
        height: auto;
    }
    
    .company-description {
        width: 100%;
    }
    
    .company-image {
        position: relative;
        width: 100%;
        margin-top: 40px;
    }
    
    .approach-content {
        flex-direction: column;
        height: auto;
        gap: 40px;
    }
    
    .approach-image {
        max-width: 100%;
        width: 100%;
    }
    
    .approach-info {
        max-width: 100%;
        height: auto;
    }
    
    .contact-content {
        height: auto;
        position: relative;
    }
    
    .contact-form {
        position: relative;
        left: 0;
        width: 100%;
        margin: 40px 0;
    }
    
    .contact-images {
        display: none;
    }
    
    .hero-content {
        left: 20px;
        top: 200px;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }
    
    .social-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 600px;
    }
    
    .hero-content {
        top: 150px;
        left: 20px;
        right: 20px;
    }
    
    .hero-number {
        font-size: 100px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .about-gallery {
        height: auto;
    }
    
    .gallery-item {
        width: 100%;
        height: 200px;
        margin: 10px 0;
    }
    
    .features-slider {
        padding: 0 20px;
    }
    
    /* .feature-card {
        min-width: 240px;
    } */
    
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        min-width: 100%;
        max-width: 100%;
        margin: 10px 0;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .company-section,
    .approach-section {
        padding: 60px 20px;
    }
    
    .approach-team-img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .about-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .feature-card {
        min-width: 200px;
        height: 500px;
    }
    
    .feature-title {
        font-size: 18px;
        top: 140px;
    }
    
    .feature-description {
        top: 170px;
        width: 180px;
    }
    
    .service-letter {
        font-size: 200px;
        line-height: 200px;
    }
}

.preloaderWrapperForm {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000d4;
    z-index: 9999;
    text-align: center;
    margin-top: 50px;
    margin: 0 !important;
  }
  
  .preloaderWrapperForm span {
    width: 5px;
    height: 50px;
    background: linear-gradient(180deg, #7f4095, #fb3393);
    display: inline-block;
    margin: 0 1px;
    border-radius: 50px;
    animation: animade 1.5s infinite ease-in-out;
    margin-right: 4px !important;
  }
  
  @keyframes animade {
    0%,
    50%,
    100% {
      transform: scaleY(0.5);
    }
  
    20% {
      transform: scaleY(1);
    }
  }
  
  .preloaderWrapperForm span:nth-child(1) {
    animation-delay: 1.1s;
  }
  
  .preloaderWrapperForm span:nth-child(2) {
    animation-delay: 1.2s;
  }
  
  .preloaderWrapperForm span:nth-child(3) {
    animation-delay: 1.3s;
  }
  
  .preloaderWrapperForm span:nth-child(4) {
    animation-delay: 1.4s;
  }
  
  .preloaderWrapperForm span:nth-child(5) {
    animation-delay: 1.5s;
  }