
:root{
  --main-color:#9ADE7B;
  --second-color:#508D69;
}

/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,800'); */
*{
  font-family: 'Iran Regular';
  scroll-behavior: smooth;
}
body,html{
    overflow-x:hidden;
    max-width: 100%;
}
body{
   
    overflow-x: hidden;
    line-height: 1.6;
    overflow-y: hidden;
    scroll-behavior: smooth;
	  font-family: 'Iran Regular';
    
}
/* component */
a{
  text-decoration: none;
}
ul{
  padding-right: 0;
  margin-bottom: 0;
}
.app-btn {
    width: 180px;
    height: 52px;
    border-radius: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #055061;
    box-shadow: 0 15px 40px rgba(11, 190, 173, 40%);
    
    transition: all 120ms ease-in ;

}
.app-btn:hover {
    background-color: #a2a2a2;
}


.app-btn--orange {
    background-color: #abc4ad;
    box-shadow: 0 15px 40px rgb(74 88 82 / 24%);
}





/* header */
.header {
    background-color: #fff;
    box-shadow: 0 0 12px #9ADE7B;
    z-index: 100;
    position: relative;
  
}
.see-resume{
  background-color: #9ADE7B;
}
.nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
}
.app-btn--orange{
  background-color: #508D69;

}
.nav__logo {
    
   height: 79px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  
}
.nav__logo span{
  font-size: 28px;
  color: #0f0f0f;
  font-weight: bold;
  font-family: "PT Serif", serif;
  
}
.nav__logo img{
  width: 210px;
  height: 80px;
}
.menu {
    display: flex;
    z-index: 100;
}
.menu__item--active {
    color: var(--primary-color);
}
.menu__item {
    margin-right: 40px;
}
.menu__link {
    display: inline-block;
    color: inherit;
    
    transition: color 120ms ease-in;
    color: #0f0f0f;
}
.menu__link:hover {
    color: var(--primary-color);
}
.nav__toggle-icon {
    display: none;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.nav__toggle-line, .nav__toggle-line::before, .nav__toggle-line::after {
    content: " ";
    width: 45px;
    height: 4px;
    background-color: #000;
    border-radius: 20px;
}

.nav__toggle-line {
    position: relative;
    transition: all 100ms ease-in;
}
.nav__toggle-line::before {
    position: absolute;
    top: 12px;
    transition: all 120ms ease-in;
}
.nav__toggle-line::after {
    position: absolute;
    bottom: 12px;
    transition: all 120ms ease-in;
}
.nav__toggle-icon--open .nav__toggle-line {
    background-color: transparent;
}

.nav__toggle-icon--open .nav__toggle-line::before {
    transform: translateY(-12px) rotate(-45deg);
}

.nav__toggle-icon--open .nav__toggle-line::after {
    transform: translateY(12px) rotate(45deg);
}
/*

 - Home Section -

*/


.home {
    margin-top: 100px;
    background-image: url("../images/shapes/header-shape.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    height: 590px;
}

.home__content {

}

.home__name {
    
    color: #055061;
    font-size: 28px;
    margin: 0;

}

.home__name span {
    color:#abc4ad ;
}

.home__title {
    
    color: #055061;
    font-size: 50px;
    margin: 0;

}

.home__caption {
    margin-top: 10px;
    margin-bottom: 30px;
    opacity: 0.7;
}

.home__links-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}



.home__photo {
    width: 500px;
    height: 500px;
    border-radius: 100%;
    background-image: url("img/IMG_5968_11zon.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 1px 12px #9ADE7B;
    border: 20px solid #fff;
}
.about-me-sec{
    margin-top: 70px;
}
/*

 - Resume Section -

*/

.resume {
    margin-top: 80px;
    box-shadow: 0 3px 20px #9ADE7B;
    padding: 8rem 0;
    transform: translateZ(0) skewY(-6deg);
    background-color: #fff
}

.resume-list {
    background-color: #fff;
    box-shadow: 0 1px 12px #9ADE7B;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    margin-right: 30px;
}

.resume-list::before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    background-color: #508D69;
    width: 40px;
    z-index: -1;
}

.resume-list__item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
    cursor: pointer;
}

.resume-list__item:last-child {
    margin-bottom: 0;
}

.resume-list__item::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #508D69;
    width: 54px;
    z-index: -1;
    border-radius: 30px;
    transition: all 0.2s ease-in;
    max-width: 270px;
    box-shadow: 0 0 4rem rgba(96,233,255,27%);
}

.resume-list__item--active {
    color: #fff;
}

.resume-list__item--active::before {
    width: 100%;
}
.skew-reset {
    transform: translateZ(0) skewY(6deg);
}
.resume-list__icon {
    width: 22px;
    height: 22px;
    margin: 0 8px;
}

.resume-list__text {
    
    font-size: 18px;
    margin-right: 50px;
    transition: all 120ms ease-in;
}
.about-me-sec {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.about-me-sec .container{
    width: 90%;
}
.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-sec{
  margin-top: 80px;

}
.resume-content {
    border-right: 2px solid #508D69;
    padding-right: 20px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 120ms ease-in;
}

.resume-content--show {
    height: auto;
    overflow: visible;
    opacity: 1;
}

.resume-content__item {
    margin-bottom: 20px;
}

.resume-content__item:last-child {
    margin-bottom: 0;
}

.resume-content__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resume-content__title {
    color:#abc4ad ;
    
    font-size: 18px;
    margin-right: 30px;
    position: relative;
}

.resume-content__title::before {
    content: "";
    position: absolute;
    right: -60px;
    top: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
    background-color: #508D69;
    border-radius: 100%;
    margin: auto;
}

.resume-content__date {
    background-color:#abc4ad ;
    border-radius: 20px;
    padding: 2px 15px;
    color: #fff;
    box-shadow: 0 0 4rem rgb(74 88 82 / 24%) ;
}

.resume-content__subtitle {
   
    font-size: 16px;
    margin: 1rem 0;
}

.resume-content__description {
    margin: 0;
}
.box{
    width: 130px;
    height: 130px;
    color: #000;
    border: 1px solid #593e03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.box a{
    color: #000;
}
.about-me-img{
    width: 500px;
    height: 500px;
    border-radius: 100%;

}
.about-me-img img{
    border-radius: 100%;
}
.box-1{
    background-color: #eea302;
  
}
.box-2{
    background-color: #ff3b25;
}
.box-3{
    background-color: #80d8da;
}
/* =========================================
                Portfolio
============================================ */

#portfolio {
    padding-bottom: 120px;
  }
  
  #portfolio .vertical-heading {
    margin-bottom: 50px;
  }
  
  .row.no-gutters [class*="col-"] {
    padding: 0;
  }
  
  .portfolio-item {
    overflow: hidden;
    position: relative;
  }
  
  /* Filters CSS */
  
  #isotope-filters {
    margin-bottom: 10px;
    padding: 20px 0px 20px 0;
  }
  
  #isotope-filters button {
    
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 35px;
    outline: 0;
    border: none;
  }
  
  #isotope-filters button span {
    display: block;
    padding-bottom: 5px;
    -webkit-transition: border-color 0.4s ease-in-out;
    transition: border-color 0.4s ease-in-out;
  }
  
  #isotope-filters button.active span {
    color: #055061;
    border-bottom: 3px solid #055061;
  }
  
  /* Zoom Effect */
  
  .portfolio-item img {
    width: 100%;
    height: auto;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  
  .portfolio-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  /* Overlay Effect */
  
  .portfolio-item-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14, 14, 17, 0.9);
    cursor: -webkit-zoom-in;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  /* Item Details Effect */
  
  .portfolio-item-details {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .portfolio-item-details h3 {
    color: #055061;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0;
    padding: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  
  .portfolio-item-details span {
    display: inline-block;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    height: 6px;
    width: 30px;
    margin: 11px auto 5px auto;
  }
  
  .portfolio-item-details p {
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  
  /* Show Overlay on mouse over */
  
  .portfolio-item:hover .portfolio-item-details h3 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  
  .portfolio-item:hover .portfolio-item-details p {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  
  .portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
  }
  .vertical-heading h5 {
    color: #055061;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    word-spacing: 9px;
    display: inline-block;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
  
    position: relative;
    top: 60px;
    right: -63px;
  }
  
  .vertical-heading h2 {
    margin: 0 42px 0 0px;
  }
  .isotope-filters button{
    outline: none;
  }
  .vertical-heading h2,
  .horizontal-heading h2 {
    font-size: 42px;
    font-weight: 100;
    font-weight: bold;
    line-height: 45px;
  }
  
  .horizontal-heading {
    margin-bottom: 80px;
  }
  
  .horizontal-heading h5 {
    font-size: 16px;
    color: #055061;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .horizontal-heading h2 {
    margin: 0;
  }  


  /* 
  
            CONTACT US FORM

  
  */
  .contact-us .container .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .contact-us .container .content .left-side{
    width: 28%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  .content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
  }
  .content .left-side .details{
    margin: 14px;
    text-align: center;
  }
  .content .left-side .details i{
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
  }
  .content .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
  }
  .content .left-side .details .text-one,
  .content .left-side .details .text-two{
    font-size: 14px;
    color: #2b2b2c;
  }
  .container .content .right-side{
    width: 72%;
    
  }
  .section-head__caption{
    font-weight: 700;
  }
  .content .right-side .topic-text{
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f0f0f;
  }
  .right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
  }
  .right-side .input-box input,
  .right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
  }
  .right-side .message-box{
    min-height: 110px;
  }
  .right-side .input-box textarea{
    padding-top: 10px;
  }
  .right-side .button{
    display: inline-block;
    margin-top: 12px;
    text-align: right;
  }
  .right-side .button input[type="button"]{
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #508D69;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .button input[type="button"]:hover{
    background: #5029bc;
  }
  @media (max-width: 950px) {
    .contact-us .container{
      width: 100%;
      padding: 30px 0px 40px 0px ;
    }
    .contact-us .container .content .right-side{
     width: 75%;
     
  }
  }
  @media (max-width: 768px) {
    .contact-us .container{
     
      height: 100%;
    }
    .left-side-first{
      display: flex;
      width: 80%;
      justify-content: space-between;
    }
    .contact-us .container .content{
      flex-direction: column-reverse;
    }
    .contact-us .container .content .left-side{
     width: 100%;
     flex-direction: row;
     margin-top: 40px;
     justify-content: center;
     flex-wrap: wrap;
   }
   .contact-us .container .content .left-side::before{
     display: none;
   }
  .contact-us .container .content .right-side{
     width: 100%;
     margin-left: 0;
   }
  
  }

  /* 
  ==================================
  
            FOOTER Strat

  ==================================
  */
  footer{
    margin-top: 100px;
  }
  .footer {
    padding: 40px 0;
    background-color: #508D69;
    color: white;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer li {
    display: inline-block; /* Change to inline-block for horizontal layout */
    padding: 0 10px;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer .social > a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    margin: 0 8px;
    color: inherit;
    
}

.footer .social > a:hover {
    opacity: 0.9;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}
.footer .footer-break{
  height:2px;
  border-width:0;
  color:gray;
  background-color:white
    }


    /* about us */
    #about-right p:first-child {
      margin-bottom: 30px;
    }
    
    #about-bottom {
      margin-top: 60px;
    }
    
    #about-bottom img {
      margin: 0 auto;
    }
    
.about-item,
.about-item i,
.about-item hr {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.about-item h3,
.about-item p {
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.content-box-lg {
  padding: 130px 0;
}
.section-head__title{
    font-weight: bold;
    font-size: 37px;
    text-align:center;
}
.content-box-md {
  padding: 100px 0;
}

.about-item:hover {
  background-color: #055061;
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p {
  color: #fff;
}

.about-item:hover hr {
  background-color: #fff;
}

.about-item:hover i {
  transform: translateY(-20px);
}

/* preload page */

@keyframes load {
  0%{
      opacity: 0.08;
/*         font-size: 10px; */
/* 				font-weight: 400; */
      filter: blur(5px);
      letter-spacing: 3px;
      }
  100%{
/*         opacity: 1; */
/*         font-size: 12px; */
/* 				font-weight:600; */
/* 				filter: blur(0); */
      }
}
.loading{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #FFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: hidden;
}
.carousel-item {
  height: 100%;
}
.animate {
display:flex;
justify-content: center;
align-items: center;
height:100%;
margin: auto;
/* 	width: 350px; */
	font-size:40px;
  color: #508D69;
  font-weight: bold;
font-family: Helvetica, sans-serif, Arial;
animation: load 1.3s infinite 0s ease-in-out;
animation-direction: alternate;
text-shadow: 0 0 2px #508D69;
}

.tel-icon{
  position: relative;
  right: .9px
}
.bi-whatsapp{
  position: relative;
  top: -1px;
    left: 1px;
}

/* 


page qr code
*/
.flow > * + * {
  margin-top: var(--flow-space, 1em);
}

/* CARD COMPONENT */

.card {
  display: grid;
  place-items: center;
  cursor: pointer;
 
  height: 28.125rem;
  overflow: hidden;
  border-radius: 0.625rem;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.card > * {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.card__background {
  object-fit: cover;
  max-width: 100%;
  height: 100%;
}

.card__content {
  --flow-space: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-end;
  height: 55%;
  padding: 12% 1.25rem 1.875rem;
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(0, 0%, 0%, 0.3) 10%,
    hsl(0, 0%, 0%) 100%
  );
}

.card__content--container {
  --flow-space: 1.25rem;
}

.card__title {
  position: relative;
  width: fit-content;
  width: -moz-fit-content; /* Prefijo necesario para Firefox  */
  direction: rtl;
}

.card__title::after {
  content: "";
  position: absolute;
  
  height: 0.3125rem;
  width: calc(100% + 1.25rem);  bottom: calc((1.25rem - 0.5rem) * -1);
  right: -1.25rem;
  background-color: #9ADE7B;
}
.main-project .container .row > div{
  margin-bottom: 80px;
}
.card__button {
  padding: 10px 20px;
  width: 120px;
  width: -moz-fit-content; /* Prefijo necesario para Firefox  */
  font-variant: small-caps;
  font-weight: bold;
  border-radius: 0.45em;
  border: none;
  background-color: #9ADE7B;
  font-size: 16px;
  font-size: 1.125rem;
  color: #fff;
}
.title-img a{
  width: 100%;
  height: 100%;
}
.card__button:focus {
  outline: 2px solid black;
  outline-offset: -5px;
}

@media (any-hover: hover) and (any-pointer: fine) {
  .card__content {
    transform: translateY(62%);
    transition: transform 500ms ease-out;
    transition-delay: 500ms;
  }

  .card__title::after {
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 1000ms ease-in, transform 500ms ease-out;
    transition-delay: 500ms;
    transform-origin: right;
  }

  .card__background {
    transition: transform 500ms ease-in;
  }

  .card__content--container > :not(.card__title),
  .card__button {
    opacity: 0;
    transition: transform 500ms ease-out, opacity 500ms ease-out;
  }

  /* .card:hover,
  .card:focus-within {
    transform: scale(1.05);
    transition: transform 500ms ease-in;
  } */
  
  .card:hover .card__content,
  .card:focus-within .card__content {
    transform: translateY(0);
    transition: transform 500ms ease-in;
  }

  .card:focus-within .card__content {
    transition-duration: 0ms;
  }

  .card:hover .card__background,
  .card:focus-within .card__background {
    transform: scale(1.3);
  }

  .card:hover .card__content--container > :not(.card__title),
  .card:hover .card__button,
  .card:focus-within .card__content--container > :not(.card__title),
  .card:focus-within .card__button {
    opacity: 1;
    transition: opacity 500ms ease-in;
    transition-delay: 200ms;
  }

  .card:hover .card__title::after,
  .card:focus-within .card__title::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
    transition: opacity 500ms ease-in, transform 500ms ease-in;
    transition-delay: 200ms;
  }
}
.card__title,.card__description{
  color: #fff;
  font-size: 20px;
}
.card__description{
  font-size: 16px;
  
}
.main-project{
  margin-top: 120px;
}
.nav-project{
  justify-content: center;
}
.slider-head{
  margin-bottom: 2rem;
}

/* sample page */

.title-sample-text{
  font-size: 23px;
  font-weight: normal;
  font-weight: 300;
  text-transform: uppercase;
}
.title-sample-text{
  margin-bottom: 15px;
  display: block;
}
.main-sample{
  margin-top: 120px;
}
.title-project-en h2:first-child{
  font-size: 20px;
}

.details-project-items li{
  margin-bottom: 10px;
}
.project-img{
  margin: 10px 0px 20px 0;
}
.project-text,.project-text p{
  text-align: justify !important;
  line-height: 2;
}
.details-project-items li span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #9ADE7B;
  border-radius: 2px;
}
.project-text-title{
  text-align: right;
  font-size: 18px;
  font-weight: bold;
}
.hivad{
  color: #0dcaf0;
}

/* photoes page */

.photos-main{
  margin-top: 100px;
}
.ph-img{
  margin-bottom: 50px;
}

/* support page */
.chat-search-box {
  -webkit-border-radius: 3px 0 0 0;
  -moz-border-radius: 3px 0 0 0;
  border-radius: 3px 0 0 0;
  padding: .75rem 1rem;
}

.chat-search-box .input-group .form-control {
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
  border-right: 0;
}

.chat-search-box .input-group .form-control:focus {
  border-right: 0;
}

.chat-search-box .input-group .input-group-btn .btn {
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  margin: 0;
}

.chat-search-box .input-group .input-group-btn .btn i {
  font-size: 1.2rem;
  line-height: 100%;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .chat-search-box {
      display: none;
  }
}


/************************************************
************************************************
                Users Container
************************************************
************************************************/

.users-container {
  position: relative;
  padding: 1rem 0;
  border-right: 1px solid #e6ecf3;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}


/************************************************
************************************************
                    Users
************************************************
************************************************/

.users {
  padding: 0;
}

.users .person {
  position: relative;
  width: 100%;
  padding: 10px 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f4f8;
}

.users .person:hover {
  background-color: #ffffff;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e9eff5), to(#ffffff));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(right, #e9eff5, #ffffff);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, #e9eff5, #ffffff);
  /* FF3.6 */
  background-image: -ms-linear-gradient(right, #e9eff5, #ffffff);
  /* IE10 */
  background-image: -o-linear-gradient(right, #e9eff5, #ffffff);
  /* Opera 11.10+ */
  background-image: linear-gradient(right, #e9eff5, #ffffff);
}

.users .person.active-user {
  background-color: #ffffff;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f9fb), to(#ffffff));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(right, #f7f9fb, #ffffff);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, #f7f9fb, #ffffff);
  /* FF3.6 */
  background-image: -ms-linear-gradient(right, #f7f9fb, #ffffff);
  /* IE10 */
  background-image: -o-linear-gradient(right, #f7f9fb, #ffffff);
  /* Opera 11.10+ */
  background-image: linear-gradient(right, #f7f9fb, #ffffff);
}

.users .person:last-child {
  border-bottom: 0;
}

.users .person .user {
  display: inline-block;
  position: relative;
  margin-right: 10px;
}
.main-support{
  margin: 100px 0;
}
.users .person .user img {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.users .person .user .status {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #e6ecf3;
  position: absolute;
  top: 0;
  right: 0;
}

.users .person .user .status.online {
  background: #9ec94a;
}

.users .person .user .status.offline {
  background: #c4d2e2;
}

.users .person .user .status.away {
  background: #f9be52;
}

.users .person .user .status.busy {
  background: #fd7274;
}

.users .person p.name-time {
  font-weight: 600;
  font-size: .85rem;
  display: inline-block;
}

.users .person p.name-time .time {
  font-weight: 400;
  font-size: .7rem;
  text-align: right;
  color: #8796af;
}

@media (max-width: 767px) {
  .users .person .user img {
      width: 30px;
      height: 30px;
  }
  .users .person p.name-time {
      display: none;
  }
  .users .person p.name-time .time {
      display: none;
  }
}


/************************************************
************************************************
                Chat right side
************************************************
************************************************/

.selected-user {
  width: 100%;
  padding: 0 15px;
  min-height: 64px;
  line-height: 64px;
  border-bottom: 1px solid #e6ecf3;
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}

.selected-user span {
  line-height: 100%;
}

.selected-user span.name {
  font-weight: 700;
}

.chat-container {
  position: relative;
  padding: 1rem;
  direction: rtl;
}

.chat-container li.chat-left,
.chat-container li.chat-right {
  display: flex;
  flex: 1;
  flex-direction: row;
  margin-bottom: 40px;
}

.chat-container li img {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.chat-container li .chat-avatar {
  margin-right: 20px;
}

.chat-container li.chat-right {
  justify-content: flex-end;
}

.chat-container li.chat-right > .chat-avatar {
  margin-left: 20px;
  margin-right: 0;
}

.chat-container li .chat-name {
  font-size: .75rem;
  color: #999999;
  text-align: center;
  margin-top: 5px;
}

.chat-container li .chat-text {
  padding: .4rem 1rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #ffffff;
  font-weight: 300;
  line-height: 150%;
  position: relative;
  margin-right: 20px;
}


.text-area-wrap button{
  outline: none;
  border: none;
  position: relative;
}
.chat-container li.chat-right > .chat-text {
  text-align: right;
  margin-left: 20px;
  background: #dcf8c6;
}
.text-area-wrap{
  position: relative;
}
.text-area-wrap .reply-send i{
  position: absolute;
  bottom: 29px;
  right: 13px;
  font-size: 21px;
}
.chat-container li.chat-right > .chat-text:before {
  right: -20px;
  border-color: transparent transparent transparent #ffffff;
  left: inherit;
}

.chat-container li .chat-hour {
  padding: 0;
  margin-bottom: 10px;
  font-size: .75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 15px 0 0px;
}

.chat-container li .chat-hour > span {
  font-size: 16px;
  color: #9ec94a;
}

.chat-container li.chat-right > .chat-hour {
  margin: 0 15px 0 0;
}

@media (max-width: 767px) {
  .chat-container li.chat-left,
  .chat-container li.chat-right {
      flex-direction: column;
      margin-bottom: 30px;
  }
  .chat-container li img {
      width: 32px;
      height: 32px;
  }
  .chat-container li.chat-left .chat-avatar {
      margin: 0 0 5px 0;
      display: flex;
      align-items: center;
  }
  .chat-container li.chat-left .chat-hour {
      justify-content: flex-end;
      margin-top: 10px;
  }
  .chat-container li.chat-left .chat-name {
      margin-left: 5px;
      margin: 10px;
  }
  .chat-container li.chat-right .chat-avatar {
      order: -1;
      margin: 0 0 5px 0;
      align-items: center;
      display: flex;
      justify-content: right;
      
  }
  .chat-container li.chat-right .chat-hour {
      justify-content: flex-start;
      order: 2;
      margin-top: 10px;
      display: flex;
      align-items: normal;
   
  }
  .chat-container li.chat-right .chat-name {
      margin-right: 5px;

  }
  .chat-container li .chat-text {
      font-size: .8rem;
      margin-top: 10px;
  }
}

.chat-form {
  padding: 15px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border-top: 1px solid white;
}


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.chaht-wrapper .card{
  border: 0;
  background: #f4f5fb;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: none;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: transparent !important;
  outline: 0;
  box-shadow: none !important;
}
.chat-container li .chat-hour > span{
  margin-left: 5px;
}
.text-area-supprt{
  text-align: right;
}
.fa-send:before{
  color: #508D69;
}

.cursor{
  cursor: pointer;
}
.email-one a,.text-one a,.text-two a{
  color: #2b2b2c;
}
/* .chat-menu-online{
  color: #9ADE7B;
} */


/* login page */
.body-login {
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
}
.body-login .row>*{
  padding: 0;
}
.c-email {
  width: 50%;
  border-radius: 40px;
  overflow: hidden;
  margin-top: 80px;
  box-shadow: 0px 7px 22px 0px rgba(0, 0, 0, .1);
}
.c-email__header {
  background-color: #0fd59f;
  width: 100%;
  height: 60px;
}
.c-email__header__title {
  font-size: 23px;
  
  height: 60px;
  line-height: 60px;
  margin: 0;
  text-align: center;
  color: white;
}
.c-email__content {
  width: 100%;
  height: 215px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 15px;
}
.c-email__content__text {
  font-size: 20px;
  text-align: center;
  color: #343434;
  margin-top: 6px;
}
.c-email__code {
  display: block;
  width: 60%;
  margin: 10px auto;
  background-color: #ddd;
  border-radius: 40px;
  padding: 20px;
  text-align: center;
  font-size: 36px;
  
  letter-spacing: 10px;
  
  margin-bottom: 5px;
  box-shadow: 0px 7px 22px 0px rgba(0, 0, 0, .1);
}
.c-email__code input{
  letter-spacing: 20px;
}
.c-email__footer {
  width: 100%;
  height: 100px;
  background-color: #fff;
}
.resend-code-wrap{
  padding-bottom: 20px;
  background-color: #fff;
}
.text-center {
  text-align: center;
}
.text-italic {
  font-style: italic;
}
.opacity-30 {
  opacity: 0.3;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.c-email__code__text{
  height: 100%;
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  text-align: center;
  font-size: 40px;
}
/* count down timer */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:800);
.container-timer {
  margin: auto;
  width: 400px;
}
.path--background {
  fill: rgb(34, 213, 201);
  stroke: #fff;
  stroke-width: 0px;
}

.pulse {
  fill: rgb(255, 74, 74) !important;
}

.path--foreground {
  fill: #eee;
  stroke: #eee;
  stroke-width: 2px;
}

.body-login .label {
  font: 90px "Open Sans";
  font-weight: 900;
  text-anchor: middle;
  fill: rgb(34, 213, 201);
}
.resend-code {
  color: #508D69;
  display: none;
}

.resend-code, .send-code {
  font-size: 14px;
  margin-top: -35px;
  margin-left: 5px;
}
.send-code{
  margin-top: -19px;
  margin-left: 25px
}
.resend-code{
  margin-left: 8px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
}
/* login page */

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #fff;}
input:-moz-placeholder { color: #fff;}
input::-moz-placeholder { color: #fff;}
input:-ms-input-placeholder { color: #fff;}

textarea::-webkit-input-placeholder { color: #fff;}
textarea:-moz-placeholder { color: #fff;}
textarea::-moz-placeholder { color: #fff;}
textarea:-ms-input-placeholder { color: #fff;}

label {
  margin: 0;
  display: block;
}

/*---------------------------------------------*/
.limiter button {
	outline: none !important;
	border: none;
	background: transparent;
  font-size: 18px;
}

.limiter button:hover {
	cursor: pointer;
}

.limiter iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #e5e5e5;
  line-height: 1.5;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/
.body-log{
  width: 100vw;
  height: 100vh;
  margin: 0;
 
}
.limiter {
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;  
}

.container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.9);
}

.wrap-login100 {
  width: 390px !important;
  border-radius: 10px;
  overflow: hidden;
  padding: 55px 55px 37px 55px;
  height: 520px;
  background: rgb(154,222,123);
background: linear-gradient(90deg, rgba(154,222,123,1) 0%, rgba(80,141,105,1) 100%);
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-logo {
  font-size: 60px; 
  color: #333333;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto;
}

.login100-form-title {
  
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;

  display: block;
}


/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,0.24);
  margin-bottom: 30px;
}

.input100 {
  
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  border: none;
  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 24px 0 38px;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #fff;
}

.focus-input100 svg {
  
  
  

  
 
  
  position: absolute;
  top: 11px;
  right: -4px;
  

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus {
  padding-left: 5px;
  border: none;
  outline: none;
}
.focus-input100 svg{
  position: absolute;
  transition: all 200ms ease;
}
.input100:focus + .focus-input100 svg {
  top: -18px;
  font-size: 18px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100 svg {

  top: -12px;
  font-size: 18px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.has-val.input100 {
  padding-left: 5px;
}


/*==================================================================
[ Restyle Checkbox ]*/

.contact100-form-checkbox {
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 35px;
}

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f26b";
  font-family: Material-Design-Iconic-Font;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #555555;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  
  font-size: 16px;
  color: #555555;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 120px;
  height: 50px;
  border-radius: 25px;

  background: #9152f8;
  background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);
  background: -o-linear-gradient(bottom, #7579ff, #b224ef);
  background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
  background: linear-gradient(bottom, #7579ff, #b224ef);
  position: relative;
  z-index: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}






/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 55px 15px 37px 15px;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}
.custom-slider {
  max-width: 1200px;
  margin: 50px auto;
  background-color: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-content {
  min-height: 500px;
  
}

.carousel-item img {
  
  width: 100%;
  
  object-position: center;
}

.text-section {
  padding: 2.5rem;
  background: linear-gradient(135deg, #c2f0a8 0%, #9ade7b 45%, #82c665 100%);

  padding: 2.5rem 1.5rem 45px 1.5rem;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}

.slide-title {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.slide-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to left, #3498db, #2ecc71);
  border-radius: 2px;
}

.slide-description {
  font-size: 1.1rem;
  line-height: 2.2;
  color: #2d5a3c;

  margin-bottom: 2rem;
  text-align: center;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  padding: 15px 50px 15px 20px;
  position: relative;
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.services-list li:hover {
  transform: translateX(-5px);
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
  border-color: rgba(52, 152, 219, 0.3);
}

.services-list li::before {
  content: "✦";
  position: absolute;
  right: 20px;
  color: #3498db;
  font-size: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.services-list li:hover::before {
  color: #2ecc71;
  transform: translateY(-50%) rotate(180deg);
}

/* Tablet styles (768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {
  .custom-slider {
    margin: 30px auto;
    border-radius: 12px;
  }

  .carousel-item img {
    height: 450px;
  }

  .text-section {
    padding: 2rem;
  }

  .slide-title {
    font-size: 2rem;
  }
}

/* Mobile styles (less than 768px) */
@media (max-width: 767.98px) {
  .custom-slider {
    margin: 0;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .container {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  .carousel-item img {
    
    width: 100vw;
    object-fit: cover;
    object-position: center;
  }

  .carousel {
    position: relative;
    width: 100%;
  }

  .carousel-indicators {
    bottom: 50px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .carousel-item img {
      height: 600px;
  }
}
.right-side .input-box input::placeholder, .right-side .input-box textarea::placeholder{
    color: #000;
    text-align:right;
    
}
.right-side .input-box textarea::placeholde{
    padding:10px;
}




