:root {
    --color-white-100: #fff;
    --color-white-200: #e4e6e7;
    --color-white-300: #c9cccf;
    --color-white-400: #949a9e;
    --color-white-500: #798086;
    --color-black-100: #101419;
    --color-black-200: #0c0f13;
    --color-black-300: #0c0f13;
    --color-black-400: #080a0c;
    --color-black-500: #060709;
    --color-pink-100: #fbd0e8;
    --color-pink-200: #f8a0d0;
    --color-pink-300: #f471b5;
    --color-pink-400: #ec4699;
    --color-pink-500: #13334C;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background: #e3ebf1;
}
a, button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

.container {
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.container a img{
    margin-top: 15px;
    width: 220px;
    border: 1px solid #13334D;
    border-top: 0px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
   
.brand {
    font-family: inherit;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-pink-500);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    background-color:#ffffff;
}
.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 4rem;
    margin: 0 120px;
}
@media screen and (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: var(--shadow-medium);
        background-color: #073C40;
        transition: all 0.5s ease;
   }
    .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
   }
   .wrapper {
    margin: 0px auto;
   }
}
.menu-item {
    position: relative;
    display: inline-block;
    margin-left: 1.5rem;
}
.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.25rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: #13334D;
    transition: all 0.3s ease-in-out;
}
.order{
    background-color: #13334D;
    color: white;
    padding: 10px 16px;
    border-radius: 15px;
    
}
.order a{
    color: white;
}
.menu-link > i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}
.menu-link:hover {
    outline: none;
    color: orange;
}
@media only screen and (min-width: 993px) {
    .menu-dropdown:hover > .submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
   }
}
@media only screen and (max-width: 992px) {
    .menu {
        width: 100%;
        height: auto;
        padding: 1rem 0;
   }
    .menu-item {
        display: block;
        margin: 0 auto;
   }
    .menu-link {
        margin-top: 40px;
        justify-content: space-between;
        padding: 0.5rem 1.25rem;
        color: white;
        font-size: 18px;
   }
  
   .navbar{
    background-color: #13334D;
   }
   .submenu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: white !important;
    transition: all 0.35s ease;
}
}
.submenu {
    position: absolute;
    top: 2.35rem;
    left: -2rem;
    min-width: 13rem;
    height: auto;
    padding: 0 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0 0 0.25rem 0.25rem;
    border-top: 2px solid var(--color-pink-500);
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
    transition: all 0.3s ease-in-out;
}
.submenu-item {
    display: block;
    margin-top: 0.75rem;
}
.submenu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: var(--color-black-500);
    transition: all 0.35s ease;
}
.submenu-link:hover {
    outline: none;
    color: var(--color-pink-500);
}
@media only screen and (max-width: 992px) {
    .submenu {
        position: relative;
        top: -0.5rem;
        left: 2.5rem;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
   }
}
.burger {
    position: relative;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}
.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: #13334D;
}
.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
.burger-line:nth-child(3) {
    top: 1rem;
}
@media only screen and (max-width: 992px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
   }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}
@media only screen and (max-width: 992px) {
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
   }
}

main{
    width: 100%;
    height: auto;
    padding: 50px 140px;
}
main .first-section{
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: row;
}
main .first-section .first-sect-left{
    width: 100%;
    flex: 50%;
}
main .first-section .first-sect-right{
    width: 90%;
    flex: 50%;
    padding-left: 2%;
}
main .first-section .first-sect-right img{
    width: 90%;
    margin-left: 50px;
    padding-top: 50px;
}
main .first-section .first-sect-left h1{
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: justify;
  width: 85%;
  color: #13334D;

}
main .first-section .first-sect-left p{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: justify;
    width: 90%;
}
main .first-section .first-sect-left .offers{
    width: 100%;
    display: flex;
    flex-direction: row;
}
main .first-section .first-sect-left .offers ul{
    width: 100%;
    flex: 50%;
    margin-top: 10px;
}

.form-container {
    max-width: 500px; /* Increased width for horizontal layout */
    
}

.round-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.round-checkbox:checked {
    background-color: #28a745;
    border-color: #28a745;
    position: relative;
}
 .sec-section{
    width: 100%;
    height: auto;
    background: url(./images/bg-oth.jpg)
}
.sec-section .sec-main{
    width: 100%;
    height: auto;
    background-color: #296fa429;
    padding: 40px 140px;
}
.sec-section .sec-main h1{
    text-align: center;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.sec-section .sec-main p{
    text-align: center;
    margin-top: 15px;
    font-family: "Lato", sans-serif;
}
.sec-section .sec-main .img-service{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content:space-around;
    margin-top: 20px;
}
.sec-section .sec-main .img-service div{
    border: 2px dotted black;
    border-radius: 15px;
    padding: 10px;
}
.sec-section .sec-main .img-service div:hover{
    border: 2px dotted rgb(255, 0, 0);
}
.sec-section .sec-main .img-service div img{
    width: 130px;
    border:0;
    cursor: pointer;
    border-radius: 15px;
}


.sec-section .sec-main .img-service div.active {
    border-color: #070321; /* Highlight the active image */
}

.sec-section .sec-main .content-display {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.sec-section .sec-main .content-display h1{
    text-align: start;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #13334D;
    padding-left: 15px;
}
.sec-section .sec-main .content-display p{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: justify;
    padding: 5px 15px;
}



.counter-section{
    width: 100%;
    padding-top: 20px;
    height: 65vh;
    
  }
  .counter-section #counter{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 0px;
    width: 100%;
    flex-wrap: wrap;
  
  }
  .counter-section #counter .item img{
    width: 120px;
    align-self: center;
    align-items: center;
    justify-content: center;
    mix-blend-mode: color-burn;
    object-fit: contain;
  }
  .counter-section #counter .item{
  
    width: 350px;
    height: 200px;
    padding: 20px 50px;
    margin: 10px;
    text-align: center;
  
  } 
  .counter-section #counter .item .plus-count{
    color: #13334C;
    margin-bottom: 5px;
    font-size: 50px;
  }
  .counter-section #counter .item h1 .plus-count .count{
    color: #13334C;
    margin-bottom: 5px;
    font-size: 50px;
  }
  .counter-section #counter .item h1{
    color: #13334C;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 400;
  }
  .counter-section  .offer-h1  h1{
    font-size: 32px;
    text-align: center;
    width: 100%;
  }
  .card-details{
    width: 100%;
    height: auto;
    padding: 30px 140px;
    background: #13334D;
  }






  .card-details h1{
    text-align: center;
    color: white;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;

  }
  .card-details p{
    text-align: center;
    color: white;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .card-details .cards{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .card-details .cards .cards-d{
    width: 290px;
    height: 440px;
    background: white;
    margin-top: 15px;
    border-radius: 20px;
    border: 5px solid rgb(20, 72, 135);
  }
  .card-details .cards .cards-d h3{
    text-align: center;
    margin-top: 12px;
    margin:5;
    font-family: "Lato", sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #13334D;
  }
  .card-details .cards .cards-d p{
    padding: 10px 15px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #13334D;
    text-align: start;
    font-size: 14px;
    text-align: justify;
  }
  .card-details .cards .cards-d center{
    margin-top: 5px;
  }
  .card-details .cards .cards-d center img{
    width: 110px;
    border-radius: 50%;
    border: 4px solid rgb(20, 72, 135) ;
  }

.faqs{
    width: 100%;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #13334D;
    margin-top: 50px;
    padding-bottom: 50px;
}
.faqs h1{
    text-align: center;
}
  .faq-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 10px;
}

.faq-item {
    margin-bottom: 10px;
}

.h4-faq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #13334D;
    color: white;
    cursor: pointer;
    font-size: 18px;
    margin: 0;
    border: none;
}

.h4-faq h4 {
    margin: 0;
    font-size: 17px;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.h4-faq i {
    font-size: 16px;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
}
.faq-answer p{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 600px) {
    .h4-faq {
        font-size: 16px;
    }
}






.pg-footer {
    font-family: 'Roboto', sans-serif;
  }
  
  
  .footer {
      background-color: #13334D;
      color: #fff;
  }
  .footer-wave-svg {
      background-color: transparent;
      display: block;
      height: 30px;
      position: relative;
      top: -1px;
      width: 100%;
  }
  .footer-wave-path {
      fill:#E3EBF1;
  }
  
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 450px;
      position: relative;
  }
  
  .footer-content-column {
      box-sizing: border-box;
      float: left;
      padding-left: 15px;
      padding-right: 15px;
      width: 100%;
      color: #fff;
  }
  
  .footer-content-column ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-logo-link {
      display: inline-block;
  }
  .footer-menu {
      margin-top: 30px;
  }
  .footer-menu p{
  text-align: start;
  font-size: 16px;
  padding-right: 50px;
  }
  
  
  .footer-menu-name {
      color: #fffff2;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: .1em;
      line-height: 18px;
      margin-bottom: 0;
      margin-top: 0;
      text-transform: uppercase;
  }
  .footer-menu-list {
      list-style: none;
      margin-bottom: 0;
      margin-top: 10px;
      padding-left: 0;
  }
  .footer-menu-list li {
      margin-top: 5px;
  }
  
  .footer-call-to-action-description {
      color: #fffff2;
      margin-top: 10px;
      margin-bottom: 20px;
  }
  .footer-call-to-action-button:hover {
      background-color: #fffff2;
      color: #00bef0;
  }
  .button:last-of-type {
      margin-right: 0;
  }
  .footer-call-to-action-button {
      background-color: #027b9a;
      border-radius: 21px;
      color: #fffff2;
      display: inline-block;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .1em;
      line-height: 18px;
      padding: 12px 30px;
      margin: 0 10px 10px 0;
      text-decoration: none;
      text-transform: uppercase;
      transition: background-color .2s;
      cursor: pointer;
      position: relative;
  }
  
  
  .footer-call-to-action {
      margin-top: 30px;
  }
  .footer-call-to-action-title {
      color: #fffff2;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .1em;
      line-height: 18px;
      margin-bottom: 0;
      margin-top: 0;
      text-transform: uppercase;
  }
  .footer-call-to-action-link-wrapper {
      margin-bottom: 0;
      margin-top: 10px;
      color: #fff;
      text-decoration: none;
  }
  .footer-call-to-action-link-wrapper a {
      color: #fff;
      text-decoration: none;
  }
  
  
  
  
  
  .footer-social-links {
      bottom: 0;
      height: 54px;
      position: absolute;
      right: 0;
      width: 236px;
  }
  
  .footer-social-amoeba-svg {
      height: 54px;
      left: 0;
      display: block;
      position: absolute;
      top: 0;
      width: 236px;
  }
  
  .footer-social-amoeba-path {
      fill: #E3EBF1;
  }
  
  .footer-social-link.linkedin {
      height: 26px;
      left: 0px;
      top: 11px;
      width: 40px;
  }
  
  .footer-social-link {
      display: block;
      padding: 10px;
      position: absolute;
  }
  
  
  .footer-social-icon-svg {
      display: block;
  }
  
  .footer-social-icon-path {
      fill: #123049;
      transition: fill .2s;
  }
  
  .footer-social-link.twitter {
      height: 28px;
      left: 59px;
      top: 3px;
      width: 40px;
  }
  
  .footer-social-link.youtube {
      height: 24px;
      left: 120px;
      top: 12px;
      width: 24px;
  }
  .footer-social-link.github {
    height: 24px;
    left: 175px;
    top: 12px;
    width: 24px;
  }
  
  
  .footer-copyright {
      background-color:#E3EBF1;
      color: #13334D;
      padding: 15px 30px;
    text-align: center;
  }
  
  .footer-copyright-wrapper {
      margin-left: auto;
      margin-right: auto;
      max-width: 1200px;
  }
  
  .footer-copyright-text {
    color: #13334D;
      font-size: 13px;
      font-weight: 400;
      line-height: 18px;
      margin-bottom: 0;
      margin-top: 0;
  }
  
  .footer-copyright-link {
      color: #13334D;
      text-decoration: none;
  }
  
  
  
  
  
  
  
  /* Media Query For different screens */
  @media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 1050px;
      position: relative;
    }
  }
  @media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
    .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 1050px;
      position: relative;
    }
  }
  @media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
    .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 1050px;
      position: relative;
    }
  }
  
  
  
  @media (min-width: 760px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 450px;
        position: relative;
    }
  
  
    .footer-wave-svg {
        height: 50px;
    }
  
    .footer-content-column {
        width: 24.99%;
    }
  }

  #foot-logo{
    width: 230px;
  }
  @media (max-width: 820px){
    main{
        padding: 40px 30px;
    }
    main .first-section .first-sect-left h1{
        width: 95%;
    }
    main .first-section .first-sect-left p{
        font-size: 14px;
    }
    main .first-section .first-sect-left .offers ul li{
        font-size: 12px;
        width: 90%;
    }
    .sec-section .sec-main{
        padding: 40px 30px;
    }
    .sec-section .sec-main .img-service div img {
        width: 80px;
    }
    .counter-section{
        height: 60vh;
       
    }
    .counter-section #counter .item {
        width: 200px;
        height: 170px;
    }
    .counter-section #counter .item h1 .plus-count .count {
        font-size: 27px;
    }
    .counter-section #counter .item .plus-count {
        font-size: 25px;
    }
    .counter-section #counter .item img {
        width: 80px;
    }
    .card-details{
        padding: 40px 30px;
    }
    .faq-container{
        max-width: 700px;
    }
    #foot-logo{
       width: 160px;   }

       #foot-wt-btn {
        width: 80%;
        padding: 12px 15px;
        font-size: 9.5px;
        margin: 0;
    }
    
  }
  #f-1{
    display: flex;
    padding-bottom: 20px;
}
#f-1 input{
    margin-right: 10px;padding: 10px;border-radius: 5px; border: 0;
}

#f-2 {
    display: flex;
    padding-bottom: 20px;
}
#f-2 input{
    margin-right: 10px;padding: 10px;border-radius: 5px; border: 0;
}
#f-2 select{
    padding: 10px;border-radius: 5px; border: 0; width: 36.7%;
}

  @media (max-width: 420px){

    main .first-section{
        flex-direction: column;
    }
    main{
        padding: 40px 5px;
    }
    .sec-section .sec-main p{
        font-size: 12px;
    }
    .sec-section .sec-main h1{
        font-size: 20px;
    }
    .sec-section .sec-main{
        padding: 40px 5px;
    }
    .sec-section .sec-main .img-service{
        flex-wrap: wrap;
  
    }
    .sec-section .sec-main .img-service div{
        margin-bottom: 10px;
    }
    .sec-section .sec-main .img-service div img {
        width: 60px;
    }
    .form-container {
        max-width: 400px;
    }
    #f-1{
        flex-direction: column;
    }
    #f-2 {
        flex-direction: column;
    }
    #f-1 input{
        margin-bottom: 10px;
    }
    #f-2 input{
        margin-bottom: 10px;
        width: 95%;
    }
    #f-2 select{
        margin-top: 10px;
        width: 95%;
    }
    .h4-faq h4{
        font-size: 12px;
    }
    .faqs h1{
        font-size: 18px;
    }
    .h4-faq i{
        font-size: 12px;
    }
    main .first-section .first-sect-left h1 {
        font-size: 18px;
    }
    .counter-section{
        height: 150vh;
    }
    .counter-section #counter .item {
        width: 250px;
        height: 270px;
    }
    .counter-section #counter .item img{
        width: 120px;
    }
  }
  #code input{
    padding: 10px;
    border-radius: 5px;
     border: 0;
     
  }
  #countrycode{
    width: 11%;

  }
  #phone{
    width: 33%;
  }
  #subject{
    margin-top: 18px;
  }
  @media (max-width:820px) {
     #countrycode{
        width: 18%;
      }
      #phone{
        width: 80%;
        margin-bottom: 15px;
      }
      #university{
        width: 100%;
      }
      #f-2{
        padding-bottom: 5px;
      }
  }
  @media (max-width:420px) {
    #countrycode{
       width: 15%;
     }
     #phone{
       width: 77%;
     }
     #f-1{
        padding-bottom: 5px;
     }
 }
 .asign-des{
    width: 100%;
    padding: 40px 140px;
 }

 .asign-des h1 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #13334D;
    text-align: center;
  }
  .asign-des h2{
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #13334D;
  }
  .asign-des p {
    text-align: justify;
  }
  .hidden-content {
    display: none;
  }
  .button-container {
    text-align: center;
    margin: 20px 0;
  }
  .btn {
    padding: 10px 20px;
    background-color: #13334D;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  .btn:hover {
    background-color: #13334D;
  }
  @media (max-width: 768px) {
    .asign-des{
        padding: 40px 18px;
    }
  
  }

  .mark{
    width: 100%;
   padding: 40px 140px;
    background-color:#123049
  }
  .mark h1{
    font-size: 20px;
    color: white;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .logo-container img {
    width: 120px;
    height: 120px;
    object-fit: contain; /* Makes sure the logos fit well */
    margin: 0 20px; /* Adds space between logos */
  }

  marquee {
    padding: 10px 0;
  }
  @media (max-width: 768px) {
    
    .mark{
        padding: 40px 20px;
    }
  }