/* old nav code */


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background-color: white;
    color: black;
    }
    
    a {
      text-decoration: none;
      color: #67b0d1;
    }
    
    a:hover {
      color: #8ec4dd;
      text-decoration: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: "Jaapokki";
  
    }
    
    #main {
      margin-top: 90px;
    }
    
    /*--------------------------------------------------------------
    # Back to top button
    --------------------------------------------------------------*/
    .back-to-top {
      position: fixed;
      visibility: hidden;
      opacity: 0;
      right: 15px;
      bottom: 15px;
      z-index: 998;
      background: #67b0d1;
      width: 40px;
      height: 40px;
      border-radius: 50px;
      transition: all 0.4s;
    }
    
    .back-to-top i {
      font-size: 24px;
      color: #fff;
      line-height: 0;
    }
    
    .back-to-top:hover {
      background: #86c0da;
      color: #fff;
    }
    
    .back-to-top.active {
      visibility: visible;
      opacity: 1;
    }
    
    /*--------------------------------------------------------------
    # Disable aos animation delay on mobile devices
    --------------------------------------------------------------*/
    @media screen and (max-width: 768px) {
      [data-aos-delay] {
        transition-delay: 0 !important;
      }
    }
    
    /*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/
    #header {
      transition: all 0.5s;
      z-index: 997;
      transition: all 0.5s;
      padding: 24px 0;
      background: rgba(103, 176, 209, 0.8);
    }
    
    #header.header-transparent {
      background: transparent;
    }
    
    #header.header-scrolled {
      background: rgb(243, 112, 5);
      padding: 12px;
    }
    
    #header .logo h1 {
      font-size: 24px;
      margin: 0;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 1px;
      font-family: "Poppins", sans-serif;
      text-transform: uppercase;
    }
    
    #header .logo h1 a,
    #header .logo h1 a:hover {
      color: #fff;
      text-decoration: none;
    }
    
    #header .logo img {
      padding: 0;
      margin: 0;
      max-height: 60px;
    }
    
    @media (max-width: 768px) {
      #header.header-scrolled {
        padding: 15px 0;
      }
    }
    
    /*--------------------------------------------------------------
    # Navigation Menu
    --------------------------------------------------------------*/
    /**
    * Desktop Navigation 
    */
    .navbar {
      padding: 0;
      position: static;
    }
    
    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
    
    .navbar li {
      position: relative;
    }
    
    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 16px;
      margin-left: 10px;
      font-family: "Raleway", sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      transition: 0.3s;
    }
    
    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }
    
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
      background: rgba(255, 255, 255, 0.2);
    }
    
    .navbar .dropdown ul {
      display: block;
      position: absolute;
      left: 10px;
      top: calc(100% + 30px);
      margin: 0;
      padding: 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
      transition: 0.3s;
    }
    
    .navbar .dropdown ul li {
      min-width: 200px;
    }
    
    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      font-weight: 600;
      color: #2f4d5a;
    }
    
    .navbar .dropdown ul a i {
      font-size: 12px;
    }
    
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
      color: #67b0d1;
    }
    
    .navbar .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
    
    .navbar .megamenu {
      position: static;
    }
    
    .navbar .megamenu ul {
      margin: 0;
      padding: 10px;
      display: block;
      position: absolute;
      top: 130%;
      left: 0;
      right: 0;
      visibility: hidden;
      opacity: 0;
      display: flex;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
    }
    
    .navbar .megamenu ul li {
      flex: 1;
    }
    
    .navbar .megamenu ul li strong {
      padding: 10px 0 10px 20px;
      display: block;
    }
    
    .navbar .megamenu ul li a,
    .navbar .megamenu ul li:hover>a {
      color: rgba(var(--color-white-rgb), 0.5);
      background: none;
      padding: 8px 10px;
    }
    
    .navbar .megamenu ul li a:hover,
    .navbar .megamenu ul li .active,
    .navbar .megamenu ul li .active:hover {
      color: #67b0d1;
    }
    
    .navbar .megamenu:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
    
    .navbar .dropdown .dropdown ul {
      top: 0;
      left: calc(100% - 30px);
      visibility: hidden;
    }
    
    .navbar .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: 100%;
      visibility: visible;
    }
    
    @media (max-width: 1366px) {
      .navbar .dropdown .dropdown ul {
        left: -90%;
      }
    
      .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
      }
    }
    
    /**
    * Mobile Navigation 
    */
    .mobile-nav-toggle {
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      display: none;
      line-height: 0;
      transition: 0.5s;
    }
    
    @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(43, 111, 142, 0.9);
      transition: 0.3s;
    }
    
    .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;
      background-color: #fff;
      overflow-y: auto;
      transition: 0.3s;
    }
    
    .navbar-mobile a,
    .navbar-mobile a:focus {
      padding: 10px 20px;
      font-size: 15px;
      color: #2f4d5a;
    }
    
    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover>a {
      color: #67b0d1;
    }
    
    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
      margin: 15px;
    }
    
    .navbar-mobile .dropdown ul {
      position: static;
      display: none;
      margin: 10px 20px;
      padding: 10px 0;
      z-index: 99;
      opacity: 1;
      visibility: visible;
      background: #fff;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }
    
    .navbar-mobile .dropdown ul li {
      min-width: 200px;
    }
    
    .navbar-mobile .dropdown ul a {
      padding: 10px 20px;
    }
    
    .navbar-mobile .dropdown ul a i {
      font-size: 12px;
    }
    
    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover>a {
      color: #67b0d1;
    }
    
    .navbar-mobile .dropdown>.dropdown-active {
      display: block;
    }
    
    .navbar-mobile .megamenu ul li a,
    .navbar-mobile .megamenu ul li:hover>a {
      color: rgba(var(--color-white-rgb), 0.5);
      background: none;
    }
    
    .navbar-mobile .megamenu ul li a:hover,
    .navbar-mobile .megamenu ul li .active,
    .navbar-mobile .megamenu ul li .active:hover {
      color: #67b0d1;
    }
    
    /*--------------------------------------------------------------
    # Hero Section
    --------------------------------------------------------------*/
    #hero {
      width: 100%;
      height: 100vh;
      background:  url(../img/2ndpg/banner/corporate.jpg) top center;
      background-size: cover;
      position: relative;
      margin-bottom: -90px;
      background-position: center;
    }
    
    #hero .hero-container {
      position: absolute;
      bottom: 0;
      top: 150px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      /* margin-top: 55px; */
      
    }
    
    #hero h1 {
      margin: 0 0 100px 0;
        font-size: 70px;
        font-weight: 700;
        line-height: 6px;
        text-transform: uppercase;
        color: #fff;
        text-shadow: 6px 0 2px #000000;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        text-overflow: clip;
    }
    
    #hero h2 {
    
      width: 500px;
      color: #fff;
      margin-bottom: 50px;
      font-size: 15px;
      text-transform: uppercase;
      font-weight: 700;
      text-shadow: -1px 0 2px #2f4d5a;
      margin-top: 10px;
      line-height: 29px;
      word-spacing: 9px;
    }
    
    #hero .btn-get-started {
      font-size: 36px;
      display: inline-block;
      padding: 4px 0;
      border-radius: 50px;
      transition: 0.3s ease-in-out;
      margin: 10px;
      width: 64px;
      height: 64px;
      text-align: center;
      border: 2px solid #fff;
      color: #fff;
    }
    
    #hero .btn-get-started:hover {
      padding-top: 8px;
      background: rgba(255, 255, 255, 0.15);
    }
    
    @media (min-width: 1024px) {
      #hero {
        background-attachment: fixed;
      }
    }
    
    @media (max-width: 768px) {
      #hero{
        width: 100%;
        height: 100vh;
        background: linear-gradient(rgba(55, 142, 181, 0.5), rgba(55, 142, 181, 0.2)), url(../img/2ndpg/banner/Corporate.jpg) top center;
        background-size: cover;
        position: relative;
      }
      #hero h1 {
        display: flex;
        margin: 15px;
        font-size: 38px;
        line-height: 35px;
      }
    
      #hero h2 {
        width: 300px;
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 30px;
      }
      #hero .hero-container{
        position: absolute;
        bottom: 0;
        top: 108px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
      }
    }
  
    
      /*--------------------------------------------------------------
    # careers
    --------------------------------------------------------------*/
    .section-title p {
      margin: 0;
      margin: 0;
      font-size: 25px;
      font-weight: 700;
      text-transform: uppercase;
      font-family: "Poppins", sans-serif;
      color: orangered;
    }
  .section-title h2 {
    font-size: 17px;
    font-weight: 400;
    padding: 3px;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    display: inline;
    background-color: black;
  }
  /* .section-title h2::after {
    content: "";
    width: 90px;
    height: 1px;
    display: inline-block;
    background: #fd9042;
    margin: -1px 14px;
  } */
  section {
    padding: 60px 0;
    overflow: hidden;
  }
  .servmain{
    margin-bottom: 15px;
  }
  
  /* Content  */
  .cntaint{
    width: 100%;
    height: auto;
    margin: 20px -12px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  
  }
  .abtcont{
    margin-top: 0;
    margin-bottom: 1rem;
    width: 83%;
    font-weight: 600;
  }
  .rightcnt{
    width: 50%;
  }
  @media(max-width:768px)
  {
    .rightcnt{
      width: 100%;
    }
  }
  .leftimg{
    width: 50%;
  }
  @media(max-width:768px)
  {
    .leftimg{
      width: 100%;
    }
  }
  /*==========================================================
   Cards 
  ============================================================= */
  .otherserv{
    display: flex;
    flex-wrap: wrap;
  }
  .ag-courses_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  
    padding: 50px 0;
  }
  .ag-courses_item {
    -ms-flex-preferred-size: calc(33.33333% - 30px);
    flex-basis: calc(33.33333% - 30px);
  
    margin: 0 15px 30px;
  
    overflow: hidden;
  
    border-radius: 28px;
  }
  .ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #121212;
  
    overflow: hidden;
  
    position: relative;
  }
  .ag-courses-item_link:hover,
  .ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #fff;
  }
  .ag-courses-item_link:hover .ag-courses-item_bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
  }
  .ag-courses-item_title {
    min-height: 87px;
    margin: 0 0 25px;
  
    overflow: hidden;
  
    font-weight: bold;
    font-size: 30px;
    color: #fff;
  
    z-index: 2;
    position: relative;
  }
  .ag-courses-item_date-box {
    font-size: 18px;
    color: #fff;
  
    z-index: 2;
    position: relative;
  }
  .ag-courses-item_date {
    font-weight: bold;
    color: #f9b234;
  
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
  }
  .ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #f9b234;
  
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
  
    border-radius: 50%;
  
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: #3ecd5e;
  }
  .ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: #e44002;
  }
  .ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: #952aff;
  }
  .ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: #cd3e94;
  }
  .ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: #4c49ea;
  }
  
  @media only screen and (max-width: 979px) {
    .ag-courses_item {
      -ms-flex-preferred-size: calc(50% - 30px);
      flex-basis: calc(50% - 30px);
    }
    .ag-courses-item_title {
      font-size: 24px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .ag-format-container {
      width: 96%;
    }
  }
  @media only screen and (max-width: 639px) {
    .ag-courses_item {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
    }
    .ag-courses-item_title {
      min-height: 72px;
      line-height: 1;
  
      font-size: 24px;
    }
    .ag-courses-item_link {
      padding: 22px 40px;
    }
    .ag-courses-item_date-box {
      font-size: 16px;
    }
  }
  
    
    /*--------------------------------------------------------------
    # Contact
    --------------------------------------------------------------*/
    .contact {
      padding-bottom: 80px;
    }
    .cntmain{
      margin-bottom: 50px;
    
     
    }
    .cnt{
      box-shadow: 0px 0px 1px black;
    
      transition-property:all;
      transition-duration: 1s;
      margin-bottom: 22px;
       }
    .cnt:hover{
        box-shadow: 0px 0px 16px black;
       }
       iframe{
        transition-property:all;
        transition-duration: 1s;
       }
       iframe:hover{
        box-shadow: 0px 0px 16px black;
    
       }
    .contact .info-box {
      color: #444444;
      background: #fff;
      text-align: center;
     
      padding: 20px 0 30px 0;
    }
    
    .contact .info-box i {
      font-size: 32px;
      color: #fc6501;
      border-radius: 50%;
      padding: 8px;
      border: 2px dotted #f0f7fa;
    }
    .col-md-5{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .contact .info-box h3 {
      font-size: 20px;
      color: #000000;
      font-weight: 700;
      margin: 10px 0;
    }
    
    .contact .info-box p {
      padding: 0;
      line-height: 24px;
      font-size: 14px;
      margin-bottom: 0;
    }
    
    .contact .php-email-form {
      box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
      padding: 30px;
      background: #fff;
    }
    
    .contact .php-email-form .error-message {
      display: none;
      color: #fff;
      background: #ed3c0d;
      text-align: left;
      padding: 15px;
      font-weight: 600;
    }
    
    .contact .php-email-form .error-message br+br {
      margin-top: 25px;
    }
    
    .contact .php-email-form .sent-message {
      display: none;
      color: #fff;
      background: #18d26e;
      text-align: center;
      padding: 15px;
      font-weight: 600;
    }
    
    .contact .php-email-form .loading {
      display: none;
      background: #fff;
      text-align: center;
      padding: 15px;
    }
    
    .contact .php-email-form .loading:before {
      content: "";
      display: inline-block;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      margin: 0 10px -6px 0;
      border: 3px solid #18d26e;
      border-top-color: #eee;
      animation: animate-loading 1s linear infinite;
    }
    
    .contact .php-email-form input,
    .contact .php-email-form textarea {
      border-radius: 0;
      box-shadow: none;
      font-size: 14px;
    }
    
    .contact .php-email-form input::focus,
    .contact .php-email-form textarea::focus {
      background-color: #67b0d1;
    }
    
    .contact .php-email-form input {
      padding: 10px 15px;
    }
    
    .contact .php-email-form textarea {
      padding: 12px 15px;
    }
    
    .contact .php-email-form button[type=submit] {
      background: #67b0d1;
      border: 0;
      padding: 10px 24px;
      color: #fff;
      transition: 0.4s;
    }
    
    .contact .php-email-form button[type=submit]:hover {
      background: #8ec4dd;
    }
    
    @keyframes animate-loading {
      0% {
        transform: rotate(0deg);
      }
    
      100% {
        transform: rotate(360deg);
      }
    }
   
    /*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/
    #footer {
      background: rgb(243, 112, 5);
      padding: 0 0 30px 0;
      color: #fff;
      font-size: 14px;
    }
    
    #footer .footer-top {
      padding: 60px 0 30px 0;
      color: black;
      font-weight: 600;
    }
    
    #footer .footer-top .footer-info {
      margin-top: -90px;
      margin-bottom: 15px;
      background: white;
      color: #2f4d5a;
      border-top: 4px solid #f8620b;
      text-align: center;
      padding: 30px 20px;
    }
    
    #footer .footer-top .footer-info h3 {
      font-size: 24px;
      margin: 0 0 20px 0;
      padding: 2px 0 2px 0;
      line-height: 1;
      font-weight: 600;
      color: orangered;
    }
    
    #footer .footer-top .footer-info p {
      font-size: 14px;
      line-height: 24px;
      margin-bottom: 0;
      font-family: "Raleway", sans-serif;
    }
    
    #footer .footer-top .social-links a {
      font-size: 18px;
      display: inline-block;
      background: #5a402f;
      color: #fff;
      line-height: 1;
      padding: 8px 0;
      margin-right: 4px;
      border-radius: 50%;
      text-align: center;
      width: 36px;
      height: 36px;
      transition: 0.3s;
    }
    
    #footer .footer-top .social-links a:hover {
      background: #f86007;
      color: black;
      text-decoration: none;
    }
    
    #footer .footer-top h4 {
      font-size: 16px;
      font-weight: 900;
      color:black;
      position: relative;
      padding-bottom: 12px;
    }
    
    #footer .footer-top .footer-links {
      margin-bottom: 30px;
    }
    
    #footer .footer-top .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    #footer .footer-top .footer-links ul i {
      padding-right: 2px;
      color: #b5d9e9;
      font-size: 18px;
      line-height: 1;
    }
    
    #footer .footer-top .footer-links ul li {
      padding: 10px 0;
      display: flex;
      align-items: center;
    }
    
    #footer .footer-top .footer-links ul li:first-child {
      padding-top: 0;
    }
    
    #footer .footer-top .footer-links ul a {
      color: #fff;
      transition: 0.3s;
      display: inline-block;
      line-height: 1;
    }
    
    #footer .footer-top .footer-links ul a:hover {
      color: #a2cfe3;
    }
    
    #footer .footer-top .footer-newsletter form {
      margin-top: 30px;
      background: #fff;
      padding: 6px 10px;
      position: relative;
      border-radius: 4;
    }
    
    #footer .footer-top .footer-newsletter form input[type=email] {
      border: 0;
      padding: 4px;
      width: calc(100% - 110px);
    }
    
    #footer .footer-top .footer-newsletter form input[type=submit] {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      border: 0;
      background: none;
      font-size: 16px;
      padding: 0 20px;
      background: #f13b03;
      color: #fff;
      transition: 0.3s;
      border-radius: 4;
    }
    
    #footer .footer-top .footer-newsletter form input[type=submit]:hover {
      background: #409cc5;
    }
    
    #footer .copyright {
      border-top: 1px solid #f86007;
      text-align: center;
      padding-top: 30px;
    }
    
    #footer .credits {
      padding-top: 10px;
      text-align: center;
      font-size: 13px;
      color: #fff;
    }
    
    @media (max-width: 575px) {
      #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
      }
    }
    
    
    
    /*--------------------------------
    social media left side
    ---------------------------------*/
    
    
    
    #leftsocial{
      display: flex;
        width: 25px;
        flex-direction: column;
        position: fixed;
        z-index: 1000;
        top: 25%;
    }
    @media(max-width:768px){
        #leftsocial{
            display: flex;
        width: 100%;
        flex-direction: row;
        position: fixed;
        top:90%;
        z-index: 1000;
        }
    }
    
    #leftsocial a{
      display: contents;
      margin: -3;
      color: #000000;
    }
    .st-btn {
      background-color: whitesmoke;
      display: flex;
      width: 53px;
      height: 57px;
      align-items: center;
      overflow: hidden;
      border: 1px solid black;
      transition-property: all;
      transition-duration: 1s;
    
    }
    .st-btn:hover {
      background-color: whitesmoke;
      display: flex;
      width: 145px;
      height: 57px;
      align-items: center;
    }
    .st-btn > img {
      margin: 18px 10px;
      margin-right: 15px;
      width: 25px;
      height: 25px;
      align-items: center;
      overflow: hidden;
      text-align: center;
      justify-content: center;
    }
    

#desc{
    width: 60%;
    margin: auto;
    height: 300px;
    align-items: center;
    justify-content: center;
    
}
#desc p{
    line-height:2;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
   
}


#heading{
    color: orangered;
    margin-bottom: 20px;
}

.carousel {
    margin-top:50px ;
    width: 90%;
    margin: auto;
     overflow: hidden;
    position: relative; 
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 50%;
}

.carousel-item {
    min-width: 30%;
   
}

.carousel-item img {
    width: 60%;
    
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ff0055;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #ff0055;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-control:hover {
    background-color: #ff0055;
    color: white;
}




/*  */
.logo-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #f9f9f9;
    padding: 20px 0;
  }
  
  .logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: scroll 20s linear infinite;
    gap: 40px;
  }
  
  .logo {
    margin: 0 20px;
    width: 300px;
    height: auto;
    transition: transform 0.2s;
  }
  
  .logo:hover {
    transform: scale(1.1);
  }
  
  @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
  }
  


  #imagedata{
    width: 90%;
    /* border: 1px solid teal; */
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,440px);
    grid-template-rows: repeat(3,280px);
    gap: 20px;

  }
  #imagedata div{

/* width: 100%; */
/* border: 2px solid red; */
border-radius:5px;

  }
  #imagedata div img{
    width: 100%;
    height: 95%;
    border-radius:5px;
  }


  @media all and (min-width:481px) and (max-width:799px) {

    #desc
    {
      height: auto;
      width: 100%;
      flex-wrap: wrap;
    }
    #rollingimage{
      display: block;
    }
    #imagedata{
      width: 100%;
      /* border: 1px solid teal; */
      margin: auto;
      display: grid;
      grid-template-columns: repeat(2,300px);
      grid-template-rows: repeat(5,220px);
      gap: 10px;
      margin-left: 10px;
    }
    .logo-wrapper {
      width: 100%;
      overflow: hidden;
      background-color: #f9f9f9;
      padding: 5px 0;
    }
    .logo-container {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      animation: scroll 20s linear infinite;
      gap: 20px;
    }
    .logo {
      margin: 0 20px;
      width: 250px;
      height: auto;
      transition: transform 0.2s;
    }
  }   
  
  
  @media all and (min-width:0px) and (max-width:480px) {
    #desc
    {
      height: auto;
      width: 100%;
      flex-wrap: wrap;
    }
    #rollingimage{
      display: block;
    }
 
    #imagedata{
      width: 100%;
      /* border: 1px solid teal; */
      margin: auto;
      display: grid;
      grid-template-columns: repeat(1,300px);
      grid-template-rows: repeat(9,200px);
      /* gap: 80px; */
      margin-left: 40px;
  
    }
    .logo-wrapper {
      width: 100%;
      overflow: hidden;
      background-color: #f9f9f9;
      
    }
    .logo-container {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      animation: scroll 20s linear infinite;
      /* gap: 10px; */
    }
    .logo {
      margin: 0 20px;
      width: 250px;
      height: auto;
      transition: transform 0.2s;
    }
  }




  @media all and (min-width:481px) and (max-width:799px) {

    #desc
    {
      height: auto;
      width: 100%;
      flex-wrap: wrap;
    }
    #rollingimage{
      display: block;
    }
    #imagedata{
      width: 100%;
      /* border: 1px solid teal; */
      margin: auto;
      display: grid;
      grid-template-columns: repeat(2,300px);
      grid-template-rows: repeat(5,220px);
      gap: 10px;
      margin-left: 10px;
    }
    .logo-wrapper {
      width: 100%;
      overflow: hidden;
      background-color: #f9f9f9;
      padding: 5px 0;
    }
    .logo-container {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      animation: scroll 20s linear infinite;
      gap: 20px;
    }
    .logo {
      margin: 0 20px;
      width: 250px;
      height: auto;
      transition: transform 0.2s;
    }
  }   
  
  
  @media all and (min-width:0px) and (max-width:480px) {
    #desc
    {
      height: auto;
      width: 100%;
      flex-wrap: wrap;
    }
    #rollingimage{
      display: block;
    }
 
    #imagedata{
      width: 100%;
      /* border: 1px solid teal; */
      margin: auto;
      display: grid;
      grid-template-columns: repeat(1,300px);
      grid-template-rows: repeat(9,200px);
      /* gap: 80px; */
      margin-left: 40px;
  
    }
    .logo-wrapper {
      width: 100%;
      overflow: hidden;
      background-color: #f9f9f9;
      
    }
    .logo-container {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      animation: scroll 20s linear infinite;
     
      /* gap: 10px; */
    }
    .logo {
      margin: 0 20px;
      width: 150px;
      height: auto;
      transition: transform 0.2s;
    }
  }