@media only screen and (max-width: 1800px) {
  .hero-section .common-container {
    padding: 0 150px;
  }

  .team-quotes-sec img {
    min-width: 90px;
    width: 90px;
  }

  .hero-content {
    width: 75%; 
  }
}

@media only screen and (max-width: 1600px) {
  .hero-section .common-container {
    padding: 0 100px;
  }
  .upcoming-events-card img {
    height: 250px;
  }
  .event-price {
    min-width: 40%;
    width: auto;
  }

  .about-img2 {
    bottom: 5%;
    right: 0%;
    transform: rotate(26deg);
  }

  .common-container {
    padding: 0 100px;
  }

  .team-quotes-content p {
    font-size: 40px;
    line-height: 52px;
  }

  .common-btn.team-quotes-btn {
    height: 200px;
    width: 200px;
    font-size: 18px;
  }

  .team-quotes-sec {
    gap: 50px;
  }

  .founder-sec {
    gap: 70px;
  }

  .service-title {
    font-size: 20px;
    line-height: 28px;
  }

  .service-excerpt {
    font-size: 14px;
    line-height: 24px;
  }
  .learn-more-btn {
    font-size: 16px;
  }
  .service-item {
    border-radius: 16px;
    padding: 16px 16px 30px;
  }

  .event-partners img {
    height: 150px;
  }

  .about-sec {
    gap: 50px;
  }

  .hero-title {
    font-size: 50px;
    line-height: 59px;
  }
  .past-events-sec {
    gap: 40px;
  }

  .services-wrapper {
    gap: 30px;
  }

  .about-content h2 {
    font-size: 54px;
    line-height: 64px;
  }
}

@media only screen and (max-width: 1450px) {
  .about-img div img {
    border-radius: 32px;
    min-width: 350px;
  }

  .team-quotes-content p {
    font-size: 34px;
    line-height: 46px;
  }

  .common-container {
    padding: 0 80px;
  }

  .common-title {
    font-size: 50px;
    line-height: 60px;
  }

  .common-head p {
    font-size: 18px;
    line-height: 28px;
  }

  .event-partners img {
    height: 120px;
  }

  .about-content h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .about-content p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 26px;
  }

  .header-section {
    height: 100px;
  }
  body {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 52px;
  }
  .services-wrapper {
    gap: 20px;
    padding: 0 5%;
  }

  .footer-menu-sec .footer-right a {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1200px) {
  #main-menu {
    gap: 50px;
  }

  .services-wrapper {
    gap: 30px;
    padding: 0%;
  }

  .footer-menu-sec .footer-right a {
    font-size: 14px;
  }
  .develop-sec,
  .copyright-sec {
    font-size: 14px;
    line-height: 24px;
  }

  .hero-section {
    height: 650px;
  }

  .hero-section .common-container {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 1024px) {
  .hambuger-menu-sec {
    display: block;
  }

  .mobile-menu-sec {
    position: fixed;
    width: 400px;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: 999;
    padding: 100px 50px 50px;
    background: var(--primary);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(400px);
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease-in-out;
  }

  .mobile-menu-sec.visible {
    transform: translateX(0px);
  }

  .header-menu-sec #main-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .header-menu-sec #main-menu li a {
    font-size: 22px;
    line-height: 32px;
    color: var(--white);
  }

  .header-menu-sec #main-menu li {
    transform: translateX(600px);
    transition: all 0.5s ease-in-out;
  }

  .mobile-menu-sec.visible #main-menu li {
    transform: translateX(0px);
  }

  .mobile-menu-sec.visible #main-menu li:nth-child(1) {
    transition: all 0.6s ease-in-out;
  }

  .mobile-menu-sec.visible #main-menu li:nth-child(2) {
    transition: all 0.7s ease-in-out;
  }

  .mobile-menu-sec.visible #main-menu li:nth-child(3) {
    transition: all 0.8s ease-in-out;
  }

  .mobile-menu-sec.visible #main-menu li:nth-child(4) {
    transition: all 0.9s ease-in-out;
  }

  .mobile-menu-sec.visible #main-menu li:nth-child(5) {
    transition: all 1s ease-in-out;
  }

  .mobile-menu-sec.visible #main-menu li:nth-child(6) {
    transition: all 1.1s ease-in-out;
  }

  .mobile-menu-sec.visible #main-menu li:nth-child(7) {
    transition: all 1.2s ease-in-out;
  }

  .mobile-menu-sec.visible #main-menu li:nth-child(8) {
    transition: all 1.3s ease-in-out;
  }

  .mobile-menu-sec.visible #main-menu li:nth-child(9) {
    transition: all 1.4s ease-in-out;
  }

  .menu-close-sec {
    position: fixed;
    right: 30px;
    width: 40px;
    height: 40px;
    top: 35px;
    background: #fff;
    z-index: 99999;
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
  }

  .mobile-hide {
    display: none;
  }

  .mobile-show {
    display: flex !important;
  }

  .header-section {
    height: 80px;
  }
  .header_nav_img {
    height: 74px;
  }
  body {
    padding-top: 80px;
  }

  #menu-item-15 {
    background: #fff;
  }

  #menu-item-15 a {
    color: var(--black) !important;
  }

  .team-quotes-sec img {
    display: none;
  }

  .common-container {
    padding: 0 60px;
  }

  .stats-section aside p {
    font-size: 28px;
    line-height: 38px;
  }

  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .past-events-sec {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .founder-right-sec p {
    font-size: 20px;
    line-height: 32px;
  }

  .contact-sec {
    flex-direction: column;
  }
  .contact-left-sec,
  .contact-right-sec {
    width: 100%;
  }

  .founder-sec {
    gap: 50px;
  }

  .team-quotes-sec {
    gap: 0;
  }
  .team-quotes-content {
    margin-right: 40px;
  }

  .stats-section {
    justify-content: space-between;
  }

  .hero-title {
    font-size: 34px;
    line-height: 44px;
  }
  .hero-content p {
    font-size: 20px;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .sub-title {
    font-size: 14px;
  }

  .footer-menu-sec .footer-right {
    gap: 30px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 991px) {
  .founder-sec {
    flex-direction: column;
  }
  .founder-left-sec {
    min-width: 60%;
    max-width: 60%;
  }
  .founder-left-sec img {
    height: 100%;
  }

  .about-sec {
    flex-direction: column;
  }
  .about-img {
    width: 80%;
  }

  .about-img div img {
    border-radius: 24px;
    min-width: 400px;
  }

  .about-content {
    width: 100%;
  }

  .stats-section aside p {
    font-size: 24px;
    line-height: 34px;
  }

  .common-container {
    padding: 0 50px;
  }

  .team-quotes-content {
    margin-right: 30px;
  }

  .padding-100 {
    padding-top: 80px;
  }
  .team-quotes-content p {
    font-size: 30px;
    line-height: 40px;
  }
  .service-title {
    font-size: 18px;
    line-height: 24px;
  }
  #partner-owl-carousel {
    padding: 0 0px;
  }

  .about-img {
    width: 100%;
  }

  .about-img2 {
    bottom: 5%;
    right: 0%;
    transform: rotate(0deg);
  }

  .footer-bottom-sec {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .social-media-sec {
    gap: 20px;
    justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 767px) {
  .team-quotes-sec {
    flex-direction: column;
  }
  .team-quotes-content {
    margin-bottom: 40px;
  }
  .common-btn.team-quotes-btn {
    height: 60px;
    width: 200px;
    font-size: 18px;
    border-radius: 10px;
  }

  .stats-section {
    flex-direction: column;
    gap: 40px;
    padding: 100px 20px;
  }

  .common-container {
    padding: 0 30px;
  }
  .common-title {
    font-size: 42px;
    line-height: 52px;
  }
}

@media only screen and (max-width: 650px) {
  .about-img div img {
    min-width: 100%;
  }

  .about-img2 {
    position: relative;
    bottom: auto;
    right: auto;
  }
  .about-img {
    min-height: auto;
  }

  .common-title {
    font-size: 34px;
    line-height: 46px;
  }
  .common-container {
    padding: 0 20px;
  }
  .upcoming-events-card {
    flex-direction: column;
  }

  .services-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero-content {
    width: 100%;
  }

  .hero-title {
    font-size: 30px;
    line-height: 40px;
  }
  .hero-content p {
    font-size: 18px;
    line-height: 28px;
  }
  .hero-section .common-container {
    padding: 0 20px;
  }

  .about-img {
    display: block;
  }

  .about-img1 {
    margin-bottom: 20px;
  }

  .about-img div {
    border-radius: 32px;
    padding: 12px 12px;
  }

  .owl-theme .owl-nav {
    margin-top: 50px;
  }

  .founder-sec {
    margin-top: 30px;
  }

  .footer-bottom-sec {
    gap: 14px;
  }

  footer {
    padding: 70px 0 50px;
  }
}

@media only screen and (max-width: 550px) {
  .upcoming-events-card img {
    width: 1100px !important;
  }

  .modula-tabs {
    gap: 15px;
  }
  .modula-tab {
    background: transparent;
    font-size: 14px;
  }

  .common-head {
    margin: 0 auto 40px;
  }

  .founder-left-sec {
    min-width: 100%;
    max-width: 100%;
  }

  .founder-right-sec h2 {
    font-size: 38px;
    line-height: 48px;
  }

  .founder-right-sec aside {
    font-size: 22px;
  }

  .contact-sec h3 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 35px;
  }

  .contact-left-sec aside a,
  .contact-left-sec aside p {
    margin-top: 4px;
    font-size: 22px;
    line-height: 32px;
    font-family: "stolzl-book";
  }

  .contact-left-sec aside {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
  }

  .padding-100 {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 400px) {
  .common-container {
    padding: 0 15px;
  }

  .contact-left-sec aside a,
  .contact-left-sec aside p {
    font-size: 20px;
    line-height: 30px;
  }

  .team-quotes-content p {
    font-size: 28px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 360px) {
  .team-quotes-content p {
    font-size: 26px;
    line-height: 36px;
  }
}
