body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  a {
    color: #FFCC00;
    text-decoration: none;
  }
  a:hover {
    color: #FFCC00;
    text-decoration: none;
  }
  h1,h2,h3,h4,h5,h6 
  {
    font-family: "Roboto", sans-serif;
  }
  .loading {
    --speed-of-animation: 0.9s;
    --gap: 6px;
    --first-color: #4c86f9;
    --second-color: #49a84c;
    --third-color: #f6bb02;
    --fourth-color: #f6bb02;
    --fifth-color: #2196f3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    gap: 6px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
   }
   
   .loading span {
    width: 4px;
    height: 50px;
    background: var(--first-color);
    animation: scale var(--speed-of-animation) ease-in-out infinite;
   }
   
   .loading span:nth-child(2) {
    background: var(--second-color);
    animation-delay: -0.8s;
   }
   
   .loading span:nth-child(3) {
    background: var(--third-color);
    animation-delay: -0.7s;
   }
   
   .loading span:nth-child(4) {
    background: var(--fourth-color);
    animation-delay: -0.6s;
   }
   
   .loading span:nth-child(5) {
    background: var(--fifth-color);
    animation-delay: -0.5s;
   }
   
   @keyframes scale {
    0%, 40%, 100% {
     transform: scaleY(0.05);
    }
   
    20% {
     transform: scaleY(1);
    }
   }
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #FFCC00;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #FFCC00;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  #top-header {
    background: #24D4E1;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #000;
    padding: 0;
  }
  #top-header .contact-details i {
    font-style: normal;
    color: #000;
  }
  #top-header .social-media-links a {
    color: rgba(0, 0, 0, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
  }
  #top-header .social-media-links a:hover {
    color: #000;
  }
  #main-header {
    background: #000;
    transition: all 0.5s;
    z-index: 997;
    height: 86px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  #main-header.fixed-top {
    height: 70px;
  }
  #main-header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
  }
  #main-header .logo a {
    color: #222222;
  }
  #main-header .logo img {
    max-height: 35px;
  }
  .scrolled-offset {
    margin-top: 70px;
  }
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #24D4E1;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #FFCC00;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #FFCC00;
  }
  .mobile-nav-toggle {
    color: #24D4E1;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
    .navbar ul {
      display: none;
    }
  }
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
  }
  .navbar-mobile>ul>li {
    padding: 0;
  }
  .navbar-mobile a:hover:before,
  .navbar-mobile li:hover>a:before,
  .navbar-mobile .active:before {
    visibility: hidden;
  }
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #FFCC00;
  }
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  #banner-section {
    width: 100%;
    height: 75vh;
    background: url("../images/banner.jpg") top left;
    background-size: cover;
    position: relative;
  }
  #banner-section:before {
    content: "";
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  #banner-section .container {
    position: relative;
  }
  #banner-section h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #222222;
    text-align: center;
    font-family: "Poppins", sans-serif;
  }
  #banner-section h1 span {
    color: #FFCC00;
  }
  #banner-section h2 {
    color: #555555;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
  }
  #banner-section .btn-about-company {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #FFCC00;
  }
  @media (min-width: 1024px) {
    #banner-section {
      background-attachment: fixed;
    }
  }
  @media (max-width: 768px) {
    #banner-section {
      height: 100vh;
    }
    #banner-section h1 {
      font-size: 28px;
      line-height: 36px;
    }
    #banner-section h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
    #banner-section .btn-about-company {
      font-size: 13px;
    }
  }
  @media (max-height: 500px) {
    #banner-section {
      height: 120vh;
    }
  }
  section {
    padding: 60px 0;
    overflow: hidden;
  }
  .section-bg {
    background-color: #f3f5fa;
  }
  .title-section {
    text-align: center;
    padding-bottom: 30px;
  }
  .title-section h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  .title-section h2 span {
    color: #FFCC00;
  }
  .title-section h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  .title-section h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #FFCC00;
    bottom: 0;
    left: calc(50% - 20px);
  }
  .title-section p {
    margin-bottom: 0;
  }
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 20px 0;
    background-color: #f1f6fe;
    min-height: 40px;
  }
  
  .breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
  }
  
  @media (max-width: 992px) {
    .breadcrumbs h2 {
      margin: 0 0 10px 0;
    }
  }
  
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }
  
  .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
  }
  
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important;
    }
  
    .breadcrumbs ol {
      display: block;
    }
  
    .breadcrumbs ol li {
      display: inline-block;
    }
  }
  .about-us .content {
    
    padding: 40px;
  }
  .about-us p {
    margin: 15px 0 30px 0;
    line-height: 24px;
  }
  .about-us .content ul {
    list-style: none;
    padding: 0;
  }
  .about-us .content ul li {
    padding-left: 28px;
    position: relative;
  }
  .about-us .content ul li+li {
    margin-top: 10px;
  }
  .about-us .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #FFCC00;
    line-height: 1;
  }

  .about-us .btn-read-more {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #FFCC00;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
  }
  
  .about-us .btn-read-more .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
 .about-us .btn-read-more:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
 .about-us .btn-read-more:hover .icon {
    transform: translate(4px);
  }
  
 .about-us .btn-read-more:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
 .about-us .btn-read-more::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }  
  .counts {
    padding: 70px 0 60px;
    background: #040404;
  }
  .counts .count-box {
    display: flex;
    align-items: center;
    padding: 30px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  }
  .counts .count-box i {
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
    color: #4154f1;
  }
  .counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #0b198f;
  }
  .counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
  }
  .clients .clients-slider .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
  }
  .clients .clients-slider .swiper-slide img:hover {
    opacity: 1;
  }
  .clients .clients-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #FFCC00;
  }
  .clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #FFCC00;
  }
  .services .service-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    height: 100%;
    padding: 20px 20px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
  }
  .services .service-box .icon {
    font-size: 36px;
    padding: 20px 20px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    transition: 0.3s;
  }
  .services .service-box h3 {
    color: #444444;
    font-weight: 700;
  }
  .services .service-box.blue {
    border-bottom: 3px solid #2db6fa;
  }
  .services .service-box.blue .icon {
    color: #2db6fa;
    background: #dbf3fe;
  }
  .services .service-box.blue .read-more {
    color: #2db6fa;
  }
  .services .service-box.orange {
    border-bottom: 3px solid #f68c09;
  }
  .services .service-box.orange .icon {
    color: #f68c09;
    background: #fde3c4;
  }
  .services .service-box.orange .read-more {
    color: #f68c09;
  }
  .services .service-box.green {
    border-bottom: 3px solid #08da4e;
  }
  .services .service-box.green .icon {
    color: #08da4e;
    background: #cffddf;
  }
  .services .service-box.green .read-more {
    color: #08da4e;
  }
  .services .service-box.red {
    border-bottom: 3px solid #e9222c;
  }
  .services .service-box.red .icon {
    color: #e9222c;
    background: #fef7f8;
  }
  .services .service-box.red .read-more {
    color: #e9222c;
  }
  .services .service-box.purple {
    border-bottom: 3px solid #b50edf;
  }
  .services .service-box.purple .icon {
    color: #b50edf;
    background: #f8e4fd;
  }
  .services .service-box.purple .read-more {
    color: #b50edf;
  }
  .services .service-box.pink {
    border-bottom: 3px solid #f51f9c;
  }
  .services .service-box.pink .icon {
    color: #f51f9c;
    background: #feecf7;
  }
  .services .service-box.pink .read-more {
    color: #f51f9c;
  }

  .testimonials {
    padding: 80px 0;
    position: relative;
  }
  .testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #040404;
  }
  .testimonials .section-header {
    margin-bottom: 40px;
  }
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials .testimonial-item {
    text-align: center;
    color: #fff;
  }  
  .testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
  }  
  .testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
  }  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #eee;
  }
  @media (min-width: 992px) {
    .testimonials .testimonial-item p {
      width: 80%;
    }
  }
  .our-portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
  }
  .our-portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
  }
  .our-portfolio #portfolio-flters li:hover,
  .our-portfolio #portfolio-flters li.filter-active {
    background: #FFCC00;
    color: #fff;
  }
  .our-portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  .our-portfolio .portfolio-item .inner-item
  {
    border: 4px solid #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  .gslide-media{
      background-color: #fff;
  }
  .our-portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
  }
  .our-portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
  }
  .our-portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    bottom: 0;
    z-index: 3;
    right: 12px;
    transition: all 0.3s;
    background: rgba(255, 204, 0, 0.8);
    padding: 10px 15px;
  }
  .our-portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0px;
  }
  .our-portfolio .portfolio-item .portfolio-info p {
    color: #000;
    font-size: 14px;
    margin-bottom: 0;
  }
  .our-portfolio .portfolio-item .portfolio-info .preview-link,
  .our-portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #000;
    transition: 0.3s;
  }
  .our-portfolio .portfolio-item .portfolio-info .preview-link:hover,
  .our-portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #106eea;
  }
  .our-portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
  }
  .our-portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
  }
  .our-portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
  }
  .contact .info {
    border-top: 3px solid #FFCC00;
    border-bottom: 3px solid #FFCC00;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  }
  .contact .info i {
    font-size: 20px;
    color: #FFCC00;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37517e;
  }
  .contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
  }
  .contact .info .email p {
    padding-top: 5px;
  }
  .contact .info .social-links {
    padding-left: 60px;
  }
  .contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
  }
  .contact .info .social-links a:hover {
    background: #24D4E1;
    color: #fff;
  }
  .contact .info .email:hover i,
  .contact .info .address:hover i,
  .contact .info .phone:hover i {
    background: #24D4E1;
    color: #fff;
  }
  .contact .contact-form {
    width: 100%;
    border-top: 3px solid #FFCC00;
    border-bottom: 3px solid #FFCC00;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }
  .contact .contact-form .form-group {
    padding-bottom: 8px;
  }
  .contact .contact-form .form-group {
    margin-bottom: 20px;
  }
  .contact .contact-form label {
    padding-bottom: 8px;
  }
  .contact .contact-form input,
  .contact .contact-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
  }
  .contact .contact-form input:focus,
  .contact .contact-form textarea:focus {
    border-color: #FFCC00;
  }
  .contact .contact-form input {
    height: 44px;
  }
  .contact .contact-form textarea {
    padding: 10px 12px;
  }
  .contact .contact-form button[type=submit] {
    background: #FFCC00;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }
  .contact .contact-form button[type=submit]:hover {
    background: #FFCC00;
  }
  .footer-contact-banner {
    padding: 50px 0;
    background: #f1f6fe;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
  }
  
  .footer-contact-banner h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 30px;
    font-weight: 600;
  }
  .footer-contact-banner .btn-contact-banner {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #FFCC00;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
  }
  
  .footer-contact-banner .btn-contact-banner .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
 .footer-contact-banner .btn-contact-banner:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
 .footer-contact-banner .btn-contact-banner:hover .icon {
    transform: translate(4px);
  }
  
 .footer-contact-banner .btn-contact-banner:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
 .footer-contact-banner .btn-contact-banner::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }  

  #footer {
    background: #000;
    padding: 0;
    color: #fff;
    font-size: 14px;
  }
  #footer .footer-bottom ul {
    display: block;
    list-style-type: disc;
    padding: 0;
    margin: 0;
    text-align: right;
  }
  #footer .footer-bottom ul li {
    margin-left: 20px;
    display: inline-block;
  }
  #footer .footer-bottom ul a {
    color: #fff;
    text-align: right;
    transition: 0.3s;
  }
  #footer .footer-bottom ul a:hover {
    text-decoration: none;
    color: #FFCC00;
  }
  #footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
  }
   
  @media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
    .about-us .content {
      padding: 0px;
    }
    .about-us .title-section p {
    margin: 15px 0 0px 0;
}
    .title-section h2 {
      font-size: 28px;
    }
    .our-portfolio #portfolio-flters li {
      font-size: 12px;
    }
    #footer .footer-bottom {
      padding-top: 20px;
      padding-bottom: 20px;
    }
    #footer .footer-bottom .copyright{
      text-align: center;
      margin-bottom: 5px;
    }
    #footer .footer-bottom ul {
      text-align: center;
    }
    .footer-contact-banner {
        padding: 20px 0;
    }
  }