
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.582); 
    padding: 5px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 85px; 
}

.logo img {
    width: 100px; 
}


.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    list-style: none;
    z-index: 0;
  }

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    justify-content: center;
    transform: translateX(-50%);
    
}

.nav-links a:hover {
    color: #f1f1f1;
}






.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
    width: 100%;
}


.hero-content h1 {
    font-size: 100px; 
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}


.hero-content h1::first-letter {
    color: #2BA1AE; 
}


.hero-content p {
    font-size: 30px; 
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin: 15px 0;
}


.btn {
    position: absolute;
    bottom: -60%;
    left: 3%;
    display: inline-block;
    background: #2BA1AE;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background: #208a99;
    transform: scale(1.05);
}



.our-capabilities {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5;
}

.our-capabilities h2 {
    font-size: 24px;
    font-weight: bold;
    color: #2BA1AE;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.our-capabilities h2 span {
    flex: 1;
    height: 2px;
    background: #2BA1AE;
}

.subheading {
    font-size: 16px;
    color: #666;
    margin: 10px 0 30px;
}


.capabilities-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.flip-box {
    width: 250px;
    height: 250px;
    perspective: 1000px;
}

.flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-box:hover .flip-inner {
    transform: rotateY(180deg);
}


.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2BA1AE;
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
}


.flip-back {
    background: #2BA1AE;
    color: white;
    transform: rotateY(180deg);
}


.capabilities-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #d3d3d3; 
    padding: 30px;
    border-radius: 10px;
}





.why-choose-us {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5; 
}


.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 28px;
    color: #2BA1AE;
    font-weight: bold;
}


.line {
    flex-grow: 1;
    height: 2px;
    background: #2BA1AE;
    max-width: 150px; 
}


.section-subtitle {
    font-size: 16px;
    color: gray;
    margin-bottom: 30px;
}


.choose-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.choose-box {
    text-align: center;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.choose-box img {
    width: 120px; 
    height: 120px; 
}

.choose-box h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #333;
}


.choose-box:hover {
    transform: translateY(-5px);
}


.choose-box:hover {
    transform: translateY(-5px);
}






.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    width: 100%;
}


.section-line {
    flex-grow: 1;
    height: 2px;
    background: #2BA1AE;
    max-width: 580px; 
}

.section-title h2 {
    font-size: 28px;
    color: #2BA1AE;
    font-weight: bold;
    text-transform: uppercase;
}







.customer-journey {
    text-align: center;
    padding: 60px 0;
}


.section-subtitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px; 
    color: #444;
}



.journey-container {
    background: #d3d3d3;
    padding: 40px; 
    border-radius: 10px; 
    width: 97%; 
    margin: auto; 
}



.row-1-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}


.row-2-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px; 
}







.flip-box {
    width: 250px;
    height: 250px;
    perspective: 1000px;
}

.flip-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-box:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid #2BA1AE;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}


.flip-front, .flip-back {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}

.fa-solid {
    width: 50px; 
    height: 50px;
    margin-bottom: 10px; 
    font-size: 250%;
}



.flip-front {
    z-index: 2;
}

.flip-back {
    transform: rotateY(180deg);
}

.flip-box img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.flip-front p, .flip-back p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.journey-container .flip-box:nth-child(4),
.journey-container .flip-box:nth-child(5) {
    grid-column: span 1;
    justify-self: center;
}

.success-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.success-title {
    font-size: 22px;
    font-weight: bold;
    color: #0097A7; 
    padding: 0 15px; 
}


.success-title-container::before,
.success-title-container::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #0097A7;
    margin: 0 2.5%; 
}


.success-metrics {
    display: flex;
    justify-content: center;
    gap: 170px; 
    margin-top: 100px; 
}


.metric-box {
    text-align: center;
}

.metric-box i {
    font-size: 50px; 
    color: black;
}

.metric-box p {
    margin: 8px 0;
    font-size: 18px; 
}








.footer-section {
    background: #3a3a3a; 
    padding: 80px 0;
    text-align: center;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 60px; 
    margin-bottom: 20px;
}

.footer-box {
    width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  

.footer-box h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.box-content {
    width: 100%;
    height: 250px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white; 
    border: 2px solid white; 
    border-radius: 10px; 
}

.footer-text {
    font-size: 14px;
    margin-top: 10px;
    color: white;
}



.contact-footer {
    background: #b3b3b3; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}

.contact-info {
    font-size: 14px;
    color: black;
    display: flex;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.fa-brands {
    width: 20px;
    height: 20px;
}






.form-section {
    position: relative;
    background-image: url('hero1.png'); 
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}


.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


.home-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 29px; 
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.home-icon span {
    font-family: 'Nunito', sans-serif;
    font-size: 25px;
}


.home-icon i {
    font-size: 22px; 
    color: #ffffff; 
    top: 20px;
    margin-top: 33px;
}


.highlight {
    color: #2BA1AE; 
}


.form-heading {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    text-align: center;
    margin-bottom: 20px;
}

.form-heading h2 {
    font-size: 24px;
    font-weight: bold;
}

.form-heading p {
    font-size: 16px;
    margin: 5px 0;
}


.form-container {
    position: relative;
    background: rgba(0, 0, 0, 0.5); 
    border-radius: 10px;
    z-index: 2;
    width: 400px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


input, select, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
    color: black;
}


.submit-btn {
    background: #2BA1AE;
    color: white;
    border: none;
    padding: 10px 15px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn:hover {
    background: #238992;
}



.form-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    position: relative;
    z-index: 10;
    height: 100vh; 
}


.form-container {
    background: rgba(0, 0, 0, 0.5); 
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    height: auto;
}


.form-heading {
    color: white;
    max-width: 500px;
    text-align: left;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
    height: auto;
    
}

.form-heading h2 {
    color: #2BA1AE;
}




.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px; 
}


.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2BA1AE; 
    cursor: pointer;
    margin-top: -10px;
}


.checkbox-container label {
    color: white;
    font-size: 14px;
    cursor: pointer;
}


.nav-links li {
    position: relative;
}

.nav-links li a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 255); 
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-links li a:hover::after {
    opacity: 1;
    visibility: visible;
}

.logo-container {
    display: inline-block;
    position: relative;
    overflow: visible; 
}

.logo-link {
    text-decoration: none;
    display: block;
    position: relative;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible; 
}

.logo {
    width: 95px; 
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.logo-text {
    position: absolute;
    left: 85%; 
    opacity: 0;
    white-space: nowrap;
    font-size: 1.7em;
    font-weight: bold;
    color: white;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateX(-20px); 
}

.logo-wrapper:hover .logo-text {
    opacity: 1;
    transform: translateX(5px); 
}

.logo-text span{
    color: #2BA1AE;
}


body {
    overflow-x: hidden;
}


@media screen and (max-width: 768px) {
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 50%;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex; 
    }

    .search-icon {
        display: block; 
    }
}

img {
    max-width: 100%;
    height: auto;
}



@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #2ba1ae86;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .search-icon {
        display: block;
        cursor: pointer;
    }
}



@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}



@media (max-width: 768px) {
    .row-1-container,
    .row-2-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flip-box {
        width: 90%;
        margin-bottom: 10px;
    }
}



@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        
    }

    .footer-box {
        width: 100%;
    }
}


@media (max-width: 768px) {
    body {
        width: 100%;
        padding: 0;
        margin: 0;
        overflow-x: hidden; 
    }

    section {
        width: 100%;
        padding: 30px 5%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
    }

   

    .capabilities-container,
    .choose-container,
    .journey-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .success-metrics {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}



@media (max-width: 768px) {
    .journey-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .flip-box {
        width: 100% !important; 
        max-width: 350px; 
    }

    .row-1-container, 
    .row-2-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .form-content {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .form-container {
        width: 100%;
        max-width: 400px; 
    }

    .form-heading {
        width: 100%;
        max-width: 400px;
    }

    .input-group {
        width: 100%;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        width: 100%;
        padding: 10px;
        font-size: 16px;
    }

    .checkbox-container {
        text-align: left;
    }

    .submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .home-icon {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 18px;
    }

    .form-section {
        position: relative;
        padding-top: 90px; 
    }
}

@media (max-width: 768px) {
    .section-title {
        display: flex;
        flex-direction: column; 
        align-items: center;
        text-align: center;
    }

    .section-line {
        width: 50%; 
        margin: 5px auto; 
    }

    .section-subtitle {
        text-align: center; 
        font-size: 16px; 
    }
}



@media (max-width: 768px) {
    .success-title-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        width: 100%;
        margin: 40px 0;
        padding: 20px 0;
    }

    
    .success-title-container::before,
    .success-title-container::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 2px;
        background-color: #2BA1AE;
        left: 50%;
        transform: translateX(-50%);
        display: block;
    }

    
    .success-title-container::before {
        top: -20px; 
    }

   
    .success-title-container::after {
        bottom: -20px;
    }

    
    .success-title {
        font-size: 25px;
        font-weight: bold;
        position: relative;
        z-index: 2;
        background: white; 
        padding: 0 10px;
    }
}



@media (max-width: 768px) {
    .section-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px; 
        width: 100%;
    }

    .section-title h2 {
        font-size: 27px;
        text-align: center;
        white-space: nowrap;
    }

    .section-line {
        width: 158px; 
        height: 2px;
        background-color: #2BA1AE;
    }
}


.back-to-top {
    position: fixed;
    bottom: 49px;
    right: 20px;
    background-color: #2BA1AE;
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    display: none; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    
}

.back-to-top:hover {
    background-color: #238a95;
}

.formpage-logo-container {
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 1000;
  }
  
  .formpage-logo-link {
    text-decoration: none; 
  }
  
  .formpage-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 2px; 
    overflow: hidden; 
    cursor: pointer;
  }
  
 
  .formpage-logo-img {
    
    width: 90px;
  }
  
  
  .formpage-logo-text {
    font-size: 30px;
    font-weight: bold;
    color: white;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  .formpage-logo-text span {
    color: #2b8994;
    font-size: 35px;
  }
  
 
  .formpage-logo-wrapper:hover .formpage-logo-text {
    transform: translateX(0);
    opacity: 1;
  }
  
  

  .capabilities-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #c2c0c0;
    padding: 30px;
    border-radius: 10px;
  }
  
  
  .capabilities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  
  .bottom-row {
    justify-content: center;
  }
  


  @media (max-width: 768px) {
    .capabilities-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .capabilities-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: 20px;
    }
  
    .capabilities-row .flip-box {
      width: 90%;
      max-width: 350px;
    }
  }

  
  @media (max-width: 768px) {
    .contact-footer {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 15px;
      text-align: center;
    }
  
    .contact-info {
      flex-direction: column;
      gap: 5px;
      align-items: center;
    }
  
    .social-icons {
      justify-content: center;
      gap: 12px;
    }
  
    .back-to-top {
      bottom: 90px; 
    }
  }

  

 
@media (max-width: 768px) {
    .formpage-logo-container {
      top: 20px;
      left: 20px;
    }
  
    .formpage-logo-wrapper {
      gap: 4px;
      flex-direction: row;
    }
  
    .formpage-logo-img {
      width: 60px;
    }
  
    .formpage-logo-text {
      font-size: 22px;
    }
  
    .formpage-logo-text span {
      font-size: 25px;
    }
  }

  

  .tooltip {
    position: absolute;
    top: 100%;              
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;        
    width: 300px;
    background: white;
    color: black;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: left;
    z-index: 999;
    pointer-events: none;   
  }
  
  .nav-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
  }


@media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .menu-toggle {
      display: block;
      font-size: 28px;
      cursor: pointer;
      color: white;
      position: absolute;
      right: 30px;
      top: 25px;
      z-index: 1001;
    }
  
    .mobile-nav-links {
      display: none;
      position: absolute;
      top: 85px; 
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding: 20px 0;
      z-index: 1000;
    }
  
    .mobile-nav-links a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
    }
  
    .mobile-nav-links.active {
      display: flex;
    }
  }
  
  
  @media (min-width: 769px) {
    .menu-toggle {
      display: none;
    }
  
    .mobile-nav-links {
      display: none !important;
    }
  }

  
  .mobile-tooltip {
    font-size: 14px;
    color: #ddd;
    margin-top: 8px;
    padding: 0 15px;
    text-align: left;
    line-height: 1.6;
  }

  
  .mobile-tooltip-content {
    display: none;
    font-size: 14px;
    color: #ddd;
    padding: 10px 15px;
    text-align: left;
    line-height: 1.6;
  }
  
  .mobile-tooltip-content.active {
    display: block;
  }
  

  @media (max-width: 768px) {
    .back-to-top {
      bottom: 100px; 
      right: 20px;
    }
  }

  
  .back-to-top {
    z-index: 9999;
  }

  
  .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;

}

.footer-links a,
.footer-social a {
    color: white; 
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #2BA1AE; 
}


.footer-links li {
  margin-bottom: 8px;
}

.footer-social {
    list-style: none;         
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .footer-social li {
    margin-bottom: 8px;
  }
  

.footer-links a:hover {
  color: #2BA1AE;
}


  

.box-content {
    padding: 32px 19px;  
    text-align: justify;
    font-size: 14px;
    background: transparent;
    border: 2px solid white;
    border-radius: 10px;
    color: white;
  }
  
  

  .about_us_text {
    font-size: 14px;
    text-align: justify;
    line-height: 1.7;
    padding: 30px 15px;
  }
  
  
  