/********** Template CSS **********/
:root {
    --primary: #88B44E;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (max-width: 768px) {
  a.shine {
    font-size: 1.2rem;
    display: inline-block;
    padding: 10px;
    text-align: center;
  }
}

/* Responsive spécifique pour smartphones */
@media (max-width: 768px) {
  
  /* Adapter le texte du carousel */
  .carousel-caption h1 {
    font-size: 1.5rem !important;
  }
  .carousel-caption p {
    font-size: 1rem !important;
  }
  .shine {
    font-size: 1.1rem;
    display: inline-block;
    padding: 10px;
    text-align: center;
  }

  /* Améliorer l'espacement global */
  .container, .container-xxl {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Réorganiser les colonnes pour éviter les images collées au texte */
  .row.g-5 > .col-lg-5,
  .row.g-5 > .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Centrer les images */
  img.img-fluid {
    margin: 0 auto;
    display: block;
  }

  /* Réduire les marges dans les compteurs */
  .statistic-section .col-xs-12 {
    margin-bottom: 30px;
  }

  /* Réduire la taille des titres */
  h1.display-6 {
    font-size: 1.8rem;
  }

  /* Espacement correct pour les sections à fond blanc */
  .bg-white.shadow-sm.text-center {
    margin-left: 10px;
    margin-right: 10px;
  }

  /* Adapter les paddings sur la navbar mobile */
  .navbar {
    padding-left: 0;
    padding-right: 0;
  }

  /* Ajuster la hauteur de certaines images en carousel si nécessaire */
  #header-carousel img {
    object-fit: cover;
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .store-item img {
    margin-bottom: 10px;
    max-width: 120px;
  }
  .store-item .p-4 {
    padding: 1rem 1rem 2rem 1rem;
  }
}

@media (max-width: 768px) {
  .store-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .store-item img {
    width: 60%;
    height: auto;
  }
}


img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
  .container, .container-xxl {
    padding-left: 15px;
    padding-right: 15px;
  }

  h1, h2, h3 {
    font-size: 1.5rem !important;
  }

  .carousel-caption h1 {
    font-size: 1.8rem !important;
  }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(136, 180, 78, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img-fluid {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(#a4ce34, rgba(255, 255, 255, 0.7)), url(img/v300batch2-nunoon-10.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(143, 223, 40, 0.1), rgba(161, 182, 135, 0.1)), url(../img/v300batch2-nunoon-10.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** About ***/
.video {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
    
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);

    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);

}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #252c30;
}

.copyright a:hover {
    color: #FFFFFF !important;
}



/* compteur */

.statistic-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #00c6ff;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #88b44e, #A4ce39);
    background: linear-gradient(to right,#88b44e, #a4ce39); 
    color: white;
}

.count-title {
   font-size: 50px;
   font-weight: normal;
   margin-top: 10px;
   margin-bottom: 0;
     text-align: center;
     font-weight: bold;
   color: #fff;
}

.stats-text {
   font-size: 15px;
   font-weight: normal;
   margin-top: 15px;
   margin-bottom: 0;
   text-align: center;
     color: #fff;
     text-transform: uppercase;
     font-weight: bold;
}

.stats-line-black {
   margin: 12px auto 0;
   width: 55px;
   height: 2px;
   background-color: #fff;
   color: white;
}
.stats-icon {
     font-size: 35px;
     margin: 0 auto;
   float: none;
   display: table;
   color: white;
}


/* agences */


.team-boxed {
    color:#313437;
    background-color:#eef4f7;
  }
  
  .team-boxed p {
    color:#7d8285;
  }
  
  .team-boxed h2 {
    font-weight:bold;
    margin-bottom:40px;
    padding-top:40px;
    color:inherit;
  }
  
  @media (max-width:767px) {
    .team-boxed h2 {
      margin-bottom:25px;
      padding-top:25px;
      font-size:24px;
    }
  }
  
  .team-boxed .intro {
    font-size:16px;
    max-width:500px;
    margin:0 auto;

  }
  
  .team-boxed .intro p {
    margin-bottom:0;
  }
  
  .team-boxed .people {
    padding:50px 0;
  }
  
  .team-boxed .item {
    text-align:center;
  }
  
  .team-boxed .item .box {
    text-align:center;
    padding:30px;
    background-color:#fff;
    margin-bottom:30px;
  }
  
  .team-boxed .item .name {
    font-weight:bold;
    margin-top:28px;
    margin-bottom:8px;
    color:inherit;
  }
  
  .team-boxed .item .title {
    text-transform:uppercase;
    font-weight:bold;
    color:#d0d0d0;
    letter-spacing:2px;
    font-size:13px;
  }
  
  .team-boxed .item .description {
    font-size:15px;
    margin-top:15px;
    margin-bottom:20px;
  }
  
  .team-boxed .item img {
    max-width:160px;
  }
  
  .team-boxed .social {
    font-size:18px;
    color:#a2a8ae;
  }
  
  .team-boxed .social a {
    color:inherit;
    margin:0 10px;
    display:inline-block;
    opacity:0.7;
  }
  
  .team-boxed .social a:hover {
    opacity:1;
  }
  
 
/* équipe */

  
  .profile-card{
         width: 600px;
          border-radius: 10px;
          overflow: hidden;
      box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
          margin: auto;
          background: rgba(255,255,255,1);
          top: 53.5%;
          transform: translateY(3%);
      overflow:hidden;
    margin-top: 60px;
  }
  .profile-card header{
          display: block;
          position: relative;
          background: rgba(255,255,255,1);
          text-align: center;
          padding: 30px 0 20px;
          z-index: 1;
      
      }
  
      .profile-card header:before{
          content: "";
          position: absolute;
          
          background-size: cover;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
          z-index: -1;
          
      }
  
      .profile-card header:after{
          content: "";
          position: absolute;
          bottom: -1px;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: -1;
          background-image: linear-gradient(
              to bottom,
              rgba(255, 255, 255, 0) 0%,
              rgba(255, 255, 255, 1) 100%
          );
      }
  
      .profile-card header img{
          border-radius: 100%;
          overflow: hidden;
          width: 200px;
          border: 1px solid rgba(255,255,255,.5);
          box-shadow: 0 1px 0 rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.1);
      }
  
      .nombre-principal{
          font-weight: 100;
          font-size: 42px;
          color: #555;
          letter-spacing: 1px;
          margin: 0;
          padding: 0.5em;
          text-decoration: none;
      }
  
      .profile-card header h2{
          font-weight: 400px;
          font-size: 14px;
          color: #555;
          letter-spacing: .5px;
          margin: 0;
          padding: 10px;
      }
  
      .profile-card .profile-bio{
          padding: 0 30px;
          text-align: justify;
          color: #555;
      }
  
      .profile-card .profile-social-links{
          display: table;
          width: 100%;
          margin: 10px -20px 10px -20px;
              display: table-cell;
      padding: 10px;
          transition: box-shadow 0.2s;
      }
      .profile-card .profile-social-links li a:active{
          box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);
      }
  .fa{
    color: white;
  }
      .profile-card .profile-social-links li a img{
          width: auto;
          display: block;
      }
  .portafolio-titulo,.contacto-titulo{
    padding-top: 30px;
    margin-bottom:-30px;
    color:white;
    
  }
  .galeria{
    margin: 35px;
  }
  ul{
    margin: 30px 30px 30px 30px ;
  }
  li{
  margin: 30px 0px 0px 30px;
    display:inline-block;
  }
  .comentario{
    font-size:15px;
    color:white;
  }
  .dr{
    color:gray;
   
  }
  .panel{
    opacity:0.5;
  }
  a:link{
    text-decoration:none;
  }
  a:hover{
    color: #608815;
  }










  section.testimonial {
    background: #d6f0a5;
    }
    
    section .inner {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    }
    section.testimonial .inner {
    padding-top: 10px;
    text-align: left;
    }
    
    
    section.testimonial #quote-wrapper {
    position: relative;
    min-height: 358px;
    padding-top: 40px;
    }
    
    section.testimonial blockquote {
        font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #4b4b4b;
    font-size: 28px;
    line-height: 1.3em;
    padding-top: 1em;
    position: relative;
    z-index: 1;
    margin-bottom: 0.75em;
    }
    q, blockquote {
    quotes: none;
    }
    section.testimonial cite {
    font-size: 15px;
    color: #595756;
    font-weight: bold;
    margin: 2em 0;
      margin-left: 38px;
    
    }
    #quote-quote a {
    color: #020202;
    text-decoration: none;
    }
    #quote-quote a:hover {
    color: #020202;
    text-decoration: underline;
    }
    
    section.testimonial #quote-wrapper.lisagor .portrait {
    background-repeat: no-repeat;
    background-image: url("http://www.getballpark.com/images/home/testimonials/lisagor.jpg");
    background-size: 313px 329px;
    background-position: center center;
    width: 313px;
    height: 329px;
    }
    
    section.testimonial #quote-wrapper.cederholm .portrait {
    background-repeat: no-repeat;
    background-image: url("http://www.getballpark.com/images/home/testimonials/cederholm.jpg");
    background-size: 275px 305px;
    background-position: center center;
    width: 275px;
    height: 305px;
    }
    
    
    section.testimonial blockquote::before {
    content: "“";
    color: #ffffff;
    font-family: georgia, serif;
    font-size: 6em;
    position: absolute;
    left: -0.25em;
    top: 0.35em;
    z-index: -10;
    }
    
    
    
    
    
    
    
    
    
    @media screen and (min-width: 750px){
      
    section.testimonial #quote-wrapper {
    padding-left: 360px;
    }  
      
    section.testimonial #quote-wrapper .portrait {
    position: absolute;
    left: 10px;
    bottom: 0;
    }
      
    }
    
    
    
    @media screen and (max-width: 750px){
        
    
    section.testimonial .inner {
    padding-left: 0;
    }
    
    section.testimonial .quote {
    max-width: 75%;
    margin: 0 auto;
    margin-bottom: 20px;
    }
    
    section.testimonial .portrait {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    background-size: 100% auto !important;
    background-position: center bottom !important;
    }
      
    }
    
    







   

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}
body {
    width: 100%;
    height: auto;
}



nav .nav-main .nav-mobile-menu {
    display: none;
    cursor: pointer;
}
nav .nav-main .nav-mobile-menu img {
    width: 100%;
    display: block;
}

nav .nav-main ul {
    display: flex;
    list-style-type: none;
    align-items: center;
}

nav.mobile-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 100%;
}
nav.mobile-menu ul:first-child {
    padding-bottom: 10px;
    border-bottom: 1px solid #4f4f4f42;
}
nav.mobile-menu ul:last-child {
    padding-top: 10px;
}
nav.mobile-menu ul:last-child li:last-child {
    margin-top: 10px;
}
nav .nav-main ul li, nav.mobile-menu ul li {
    border-radius: 5px;
}
nav .nav-main ul li a, nav.mobile-menu ul li a {
    text-decoration: none;
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    padding: 12px 15px;
    border-radius: 5px;
    transition: .2s background ease;
}
nav .nav-main ul li a:hover, nav.mobile-menu ul li a:hover {
    background: rgb(128 128 128 / 23%);
}
nav .nav-main ul li:last-child a, nav.mobile-menu ul li:last-child a {
    color: #fff;
    font-weight: 600;
    background-color: #a4ce39;
    margin-left: 10px;
}




footer {
    width: 100%;
    padding: 50px 0px 50px 0px;
    display: flex;
    justify-content: center;
    background-color: #fbf8f3;
}
footer .footer-main {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 50px;
}
footer .footer-main .footer-content {
    display: flex;
    column-gap: 50px;
}
footer .footer-main .footer-content .footer-1 {
    width: 40%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
footer .footer-main .footer-content .footer-1 .footer-1-logo  {
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
footer .footer-main .footer-content .footer-1 .footer-l-content, footer .footer-main .footer-content .footer-1 .footer-1-copyright {
    line-height: 20px;
    color: #6e6f6e;
    font-size: 15px;
}
footer .footer-main .footer-content .footer-2 {
    width: 60%;
    display: flex;
    justify-content: space-between;
}
footer .footer-main .footer-content .footer-2 .footer-f1, footer .footer-main .footer-content .footer-2 .footer-f2 {
    display: flex;
    width: 50%;
}
footer .footer-main .footer-content .footer-2 .footer-2-1, footer .footer-main .footer-content .footer-2 .footer-2-2, footer .footer-main .footer-content .footer-2 .footer-2-3, footer .footer-main .footer-content .footer-2 .footer-2-4 {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 50%;
}
footer .footer-main .footer-content .footer-2 .footer-2-1 .footer-2-1-title, footer .footer-main .footer-content .footer-2 .footer-2-2 .footer-2-2-title, footer .footer-main .footer-content .footer-2 .footer-2-3 .footer-2-3-title, footer .footer-main .footer-content .footer-2 .footer-2-4 .footer-2-4-title {
    font-size: 16px;
    color: #000;
}
footer .footer-main .footer-content .footer-2 .footer-2-1 .footer-2-1-links, footer .footer-main .footer-content .footer-2 .footer-2-2 .footer-2-2-links, footer .footer-main .footer-content .footer-2 .footer-2-3 .footer-2-3-links, footer .footer-main .footer-content .footer-2 .footer-2-4 .footer-2-4-links {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
footer .footer-main .footer-content .footer-2 .footer-2-1 .footer-2-1-links li a, footer .footer-main .footer-content .footer-2 .footer-2-2 .footer-2-2-links li a, footer .footer-main .footer-content .footer-2 .footer-2-3 .footer-2-3-links li a, footer .footer-main .footer-content .footer-2 .footer-2-4 .footer-2-4-links li a {
    text-decoration: none;
    color: #6e6f6e;
    font-size: 14px;
}
footer .footer-main .footer-text {
    width: 100%;
    text-align: center;
}
footer .footer-main .footer-content .footer-1 .footer-1-copyright a {
    text-decoration: none;
    color: #6e6f6e;
    font-weight: 600;
}



main section {
    width: 100%;
    display: flex;
    justify-content: center;
}
main section.section-1 {
    background: white;
    background: #f6f6f6;
    padding: 35px 0px 70px 0px;
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
}


main section.section-1 nav {
    width: 80%;
    padding: 25px 0px;
    display: flex;
    justify-content: center;
    background: transparent;
}
main section.section-1 nav .nav-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
main section.section-1 nav .nav-main .nav-logo a img {
    display: block;
}

main section.section-1 nav.mobile-menu {
    padding: 0px;
    display: none;
}
main section.section-1 nav.mobile-menu.active {
    display: block;
    margin-top: -50px;
}

main section.section-1 .section-1-main {
    width: 80%;
    display: flex;
    align-items: center;
    position: relative;
    column-gap: 50px;
}
main section.section-1 .section-1-main .section-1-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
main section.section-1 .section-1-main .section-1-content .section-1-title {
    font-size: 40px;
    line-height: 42px;
}
main section.section-1 .section-1-main .section-1-content .section-1-desc, main section.section-1 .section-1-main .section-1-content .section-1-alt-txt {
    color: #5a5444;
    line-height: 24px;
}
main section.section-1 .section-1-main .section-1-content .section-1-links {
    display: flex;
    align-items: center;
    column-gap: 25px;
    width: 100%;
}
main section.section-1 .section-1-main .section-1-content .section-1-links .section-1-link {
    padding: 12px 18px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    background-color: #664efc;
}
main section.section-1 .section-1-main .section-1-content .section-1-imgs img {
    display: block;
} 
main section.section-1 .section-1-main .section-1-content .section-1-alt-txt span {
    color: #664efc;
    font-weight: 500;
}
main section.section-1 .section-1-main .section-1-img {
    width: 50%;
}
main section.section-1 .section-1-main .section-1-img img {
    width: 100%;
    display: block;
}


main section.section-2 {
    padding: 75px 0px 75px 0px;
}
main section.section-2 .section-2-main {
    width: 80%;
    display: flex;
    flex-direction: column;
    row-gap: 75px;
}

main section.section-2 .section-2-main .section-2-2, main section.section-2 .section-2-main .section-2-1 {
    display: flex;
    align-items: center;
    border-radius: 10px;
    column-gap: 100px;
}
main section.section-2 .section-2-main .section-2-2 .section-2-2-content, main section.section-2 .section-2-main .section-2-1 .section-2-1-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    row-gap: 17px;
}
main section.section-2 .section-2-main .section-2-2 .section-2-2-content .section-2-2-title, main section.section-2 .section-2-main .section-2-1 .section-2-1-content .section-2-1-title {
    font-size: 36px;
    line-height: 40px;
}
main section.section-2 .section-2-main .section-2-2 .section-2-2-content .section-2-2-desc, main section.section-2 .section-2-main .section-2-1 .section-2-1-content .section-2-1-desc {
    color: #5a5444;
    line-height: 24px;
}
main section.section-2 .section-2-main .section-2-2 .section-2-2-content .section-2-2-link, main section.section-2 .section-2-main .section-2-1 .section-2-1-content .section-2-1-link {
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    color: #664efc;
    background-color: #fff;
    width: fit-content;
}
main section.section-2 .section-2-main .section-2-2 .section-2-2-img, main section.section-2 .section-2-main .section-2-1 .section-2-1-img {
    width: 40%;
}
main section.section-2 .section-2-main .section-2-2 .section-2-2-img img, main section.section-2 .section-2-main .section-2-1 .section-2-1-img img {
    width: 100%;
    display: block;
}





/* login page */
main section.section-login {
    background-color: #f8edf9;
    flex-direction: column;
    align-items: center;
    justify-content: unset;
}
main section.section-login .header-main, main section.section-login .section-main {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
main section.section-login .header-main {
    height: 100px;
    align-items: flex-end;
}
main section.section-login .header-main .header-login-logo img {
    display: block;
}
main section.section-login .header-main .header-login-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
main section.section-login .header-main .header-login-btn img {
    border: 1px solid black;
    padding: 6px 8px;
    width: 25px;
    display: block;
}
main section.section-login .header-main .header-login-btn span {
    font-weight: 500;
}

main section.section-login .section-main {
    padding: 50px 0px;
}
main section.section-login .section-main .section-login-1, main section.section-login .section-login-2 {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
main section.section-login .section-main .section-login-1 .section-login-1-main {
    width: 100%;
}
main section.section-login .section-main .section-login-1 .section-login-1-main .section-login-1-title {
    font-size: 34px;
    line-height: 40px;
}
main section.section-login .section-main .section-login-1 .section-login-1-main .section-login-1-lists {
    margin-top: 20px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
main section.section-login .section-main .section-login-1 .section-login-1-main .section-login-1-lists li {
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
}
main section.section-login .section-main .section-login-1 .section-login-1-main .section-login-1-lists li p {
    line-height: 24px;
}

main section.section-login .section-main .section-login-2 .section-login-2-main {
    width: 100%;
    background: #fff;
    padding: 50px;
    border-radius: 7px;
    height: fit-content;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-title {
    font-size: 28px;
    line-height: 38px;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-1, main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-2, main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-3 {    
    display: flex;   
    flex-direction: column;
    row-gap: 8px;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-1 label, main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-2 label, main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-3 label {
    font-weight: 500;
    font-size: 15px;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-1 input, main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-2 input, main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-3 input {
    padding: 12px 15px;
    border: 1px solid #e9e6e6;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    width: 100%;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-4 {
    display: flex;
    column-gap: 7px;
    align-items: center;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-4 p, main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-5 p {
    font-size: 14px;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-4 p a, main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-5 p a {
    font-weight: bold;
    color: #5a1fe0;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-submit-btn button {
    background: #5a1fe0;
    padding: 14px;
    width: 100%;
    color: #fff;
    outline: none;
    border: 0px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}
main section.section-login .section-main .section-login-2 .section-login-2-main .section-login-2-form .login-form-5 p {
    text-align: center;
}





@media only screen and (max-width: 1200px) {
    main section.section-1 nav, main section.section-1 .section-1-main, main section.section-2 .section-2-main, footer .footer-main {
        width: 90%;
    }
    main section.section-1 {
        padding: 20px 0px 70px 0px;
    }
    main section.section-2 {
        padding: 65px 0px 65px 0px;
    }



    /* login page */
    main section.section-login .section-login-1 .section-login-1-main, main section.section-login .section-login-2 .section-login-2-main {
        width: 85%;
    }
    main section.section-login .section-login-1 .section-login-1-main .section-login-1-title, main section.section-login .section-login-1 .section-login-1-main .section-login-1-form {
        margin-top: 35px;
    }
    main section.section-login .header-main, main section.section-login .section-main {
        width: 85%;
    }
    main section.section-login .section-main .section-login-1, main section.section-login .section-login-2 {
        width: 47%;
    }
}

@media only screen and (max-width: 900px) {
    footer {
        padding: 35px 0px;
    }
    footer .footer-main .footer-content {
        flex-direction: column;
        row-gap: 30px;
    }
    footer .footer-main .footer-content .footer-1, footer .footer-main .footer-content .footer-2 {
        width: 100%;
    }


    main section.section-1 {
        padding: 20px 0px 50px 0px;
    }
    main section.section-1 .section-1-main {
        flex-direction: column-reverse;
        row-gap: 50px;
    }
    main section.section-1 .section-1-main .section-1-content, main section.section-1 .section-1-main .section-1-img {
        width: 100%;
    }
    main section.section-1 .section-1-main .section-1-img {
        display: grid;
        place-items: center;
    }
    main section.section-1 .section-1-main .section-1-img img {
        width: 60%;
    }
    main section.section-1 .section-1-main .section-1-content {
        row-gap: 15px;
    }
    main section.section-2 {
        padding: 55px 0px 65px 0px;
    }
    main section.section-2 .section-2-main .section-2-2, main section.section-2 .section-2-main .section-2-1 {
        column-gap: 65px;
    }
    


    /* login page */
    main section.section-login .section-main {
        padding: 35px 0px;
    }
    main section.section-login .section-login-1 .section-login-1-main, main section.section-login .section-login-2 .section-login-2-main {
        width: 90%;
    }
    main section.section-login .section-login-1 .section-login-1-main {
        height: 90%;
    }
    main section.section-login .section-login-1 .section-login-1-main .section-login-1-title, main section.section-login .section-login-1 .section-login-1-main .section-login-1-form {
        margin-top: 25px;
    }
    main section.section-login .section-main {
        flex-direction: column;
        row-gap: 50px;
    }
    main section.section-login .header-main, main section.section-login .section-main {
        width: 90%;
    }
    main section.section-login .section-main .section-login-1, main section.section-login .section-login-2 {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    nav .nav-main .nav-mobile-menu {
        display: block;
    }
    nav .nav-main ul {
        display: none;
    }
    nav.mobile-menu ul:last-of-type li:last-child a {
        margin-left: unset;
    }

    footer .footer-main .footer-content .footer-2 {
        flex-direction: column;
        row-gap: 25px;
    }
    footer .footer-main .footer-content .footer-2 .footer-f1, footer .footer-main .footer-content .footer-2 .footer-f2 {
        width: 100%;
    }

    

    main section.section-1 .section-1-main .section-1-img img {
        width: 80%;
    }
    main section.section-2 .section-2-main .section-2-1 {
        flex-direction: column-reverse;
    }
    main section.section-2 .section-2-main .section-2-2 {
        flex-direction: column;
    }
    main section.section-2 .section-2-main {
        row-gap: 65px;
    }
    main section.section-2 .section-2-main .section-2-1, main section.section-2 .section-2-main .section-2-2 {
        row-gap: 35px;
    }
    main section.section-2 .section-2-main .section-2-2 .section-2-2-content, main section.section-2 .section-2-main .section-2-1 .section-2-1-content, main section.section-2 .section-2-main .section-2-2 .section-2-2-img, main section.section-2 .section-2-main .section-2-1 .section-2-1-img {
        width: 100%;
    }
    
    


    /* login page */
    main section.section-login .header-main {
        height: 80px;
    }
    main section.section-login .header-main .header-login-btn {
        margin-bottom: 7px;
    }
    main section.section-login .header-main .header-login-btn span {
        display: none;
    }
    main section.section-login .section-main {
        padding: 25px 0px 35px 0px;
    }
    main section.section-login .section-main .section-login-2 .section-login-2-main {
        padding: 35px 25px;
    }
}


.shine {
  position: absolute;
  width: 200px;
  top: 75%;
  left: 50%;
  height: 60px;
  margin-left: -100px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.1);
  -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
  -webkit-mask-size: 200%;
  animation: shine 4s infinite, hover 2s alternate infinite ease-in-out;
  
  &:after {
    content: '';
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    left: 50%;
    margin-left: -5px;
    transform: translateY(30%) rotate(45deg);
    animation: hoverSmall 2s 1s alternate infinite ease-in-out;
  }
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}

@-webkit-keyframes hover {
  from {
    transform: translateY(-50%);
  }
  
  to {
    transform: translateY(-75%);
  }
}

@-webkit-keyframes hoverSmall {
  from {
    transform: translateY(30%) rotate(45deg);
  }
  to {
    transform: translateY(-10%) rotate(45deg);
  }
}
