@font-face {
  font-family: 'Brightness';
  src: url('../fonts/brightness/Brightness.ttf') format('truetype');
}
@font-face {
  font-family: 'GolosText';
  src: url('../fonts/Golos_Text/GolosText-VariableFont_wght.ttf') format('truetype');
}
@font-face {
  font-family: 'Mini_Font';
  src: url('../fonts/Roboto/Roboto-Light.ttf') format('truetype');
}

*{
  font-family: var(--Mini_Font);
  line-height: 1.5;
  cursor: none !important;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
    --action-color: #f9d21d;
    --secondary: #4f4e4e;
    --second_bg: #e6e6e6;
    --first_bg: #fff; 
    --cards_bg: #fff; 
    --sun_border: #ffe1004e;
    --second_title: #1e1e1e;
    --first_title: #000000; 
    --buttons_bg: #303030;
    
    --Title_Font:'Brightness', sans-serif;
    --Subtitle_Font:'GolosText', sans-serif;
    --Mini_Font:"Mini_Font", sans-serif;

    --logo: url(../img/logo.webp);
    --cursor: url(../img/cursor.webp);
    --city: url(../img/landingPage/light/city.webp);

}
body{
  width: 100%;
  height: 100%;
  overflow: hidden auto;
  cursor: var(--cursor), auto;
}
.buttons_bg{
  background-color: var(--buttons_bg);
}
::-webkit-scrollbar{
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track{
    background-color: transparent;
}
::-webkit-scrollbar-thumb{
    border-radius: 25px;
    background-color: var(--action-color);
}
/********** Template CSS **********/
@media (max-width: 992px) {
  .max-width-display{
    display: none !important;
  } 
}
.first_BG{
  background-color: var(--first_bg) !important;
}
.second_BG{
  background-color: var(--second_bg) !important;
}
.first_title{
  color: var(--first_title) !important;
}
.second_title{
  color: var(--second_title) !important;
}
.cards_bg{
  background-color: var(--cards_bg) !important;
}
.ContainerLOGOAPP{
  width: 40px;
  height: 60px;
}
.LOGOAPP{
  background-image: var(--logo);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 100%;
  width: 100%;
}
#bottomLOGO{
  height: 15px;
}
.Title_Font{
  font-family: var(--Title_Font);
  font-size: 60px;
  color: var(--first_title) !important;
  font-weight: normal;
}
.Subtitle_Font{
  font-family: var(--Subtitle_Font);
  font-size: 22px;
  color: var(--second_title);
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** 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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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 ***/
.navbar.fixed-top {
  display: none;
  transition: .5s;
}
.navbar{
  visibility: visible !important;
  #checkbox {
    display: none;
  }
  #checkboxTogel {
    display: none;
  }
  
  .toggle {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition-duration: .5s;
  }
  
  .bars {
    width: 100%;
    height: 4px;
    background-color: var(--second_title);
    border-radius: 4px;
  }
  
  #bar2 {
    transition-duration: .8s;
  }
  
  #bar1,#bar3 {
    width: 70%;
  }
  
  #checkbox:checked + .toggle .bars {
    position: absolute;
    transition-duration: .5s;
  }
  
  #checkbox:checked + .toggle #bar2 {
    transform: scaleX(0);
    transition-duration: .5s;
  }
  
  #checkbox:checked + .toggle #bar1 {
    width: 100%;
    transform: rotate(45deg);
    transition-duration: .5s;
  }
  
  #checkbox:checked + .toggle #bar3 {
    width: 100%;
    transform: rotate(-45deg);
    transition-duration: .5s;
  }
  
  #checkbox:checked + .toggle {
    transition-duration: .5s;
    transform: rotate(180deg);
  }
}

.navbar .navbar-nav .nav-link {
    padding: 20px 0 20px 25px;
    color: var(--first_title);
    font-size: 16px;
    font-weight: 600;
    outline: none;
    position: relative;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--action-color);
}
@media (max-width: 992px){
  #checkboxTogel {
    display: flex !important;
  }
}
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
      margin-left: 0;
      max-width: 150px;
    }
    .ContainerLOGOAPP{
      margin: 10px 0;
      padding: 0 !important;
      display: flex;
      width: 35px;
      height: 25px;
    }
    .configPart{
      padding: 20px 0 20px 25px !important;
    }
}
.numberNews{
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: 10px;
  right: -10px;
  border-radius: 50%;
  background-color: red;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact_link{
  margin: 8px 0px 8px 15px;
  border-radius: 10px;
  background-color: var(--action-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 17px !important;
  border: 2.5px solid var(--action-color);
}
#contact_link:hover{
  background-color: transparent;
  color: var(--action-color);
}

/*** Header ***/
#home {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100%;
    margin-bottom: 0;
    overflow: hidden !important;
    position: relative;
    .home_container{
      z-index: 999;
    }
      .bgc1,.bgc2,.frant,.f_left,.f_rigth{
          position: absolute;
          width: 100%;
          height: 100vh;
          bottom: 0;
          left: 0;
          z-index: 1;
          overflow: hidden !important;
      }
      .bgc2{
          z-index: 1;
      }
      .f_left,.f_rigth{
          z-index: 3;
      }
      .frant{
          z-index: 2;
      }
      .sun{
          position: absolute;
          width: 10vw;
          height: 50vw;
          top: 12vh;
          right: 45vw;
          z-index: 1;
          transform-origin: 50% 100%;
          transform: rotate(-10deg);
          z-index: 999 !important;
      }
      .bgc1 img,.bgc2 img,.frant img,.f_left img,.f_rigth img{
          height: 100%;
          width: 100%;
      }
      #rigth{
          position: absolute;
          height: 100%;
          width: 100%;
      }
      .sun img{
          height: 100px;
          width: 100px;
          border-radius: 50% 50%;
          box-shadow: -3px 1px 17px 20px var(--sun_border);
          animation: circle1 10s linear infinite;
      }
      @keyframes circle1{
          0%{
              transform: rotate(0deg);
          }
          50%{
              box-shadow: -3px 1px 17px 20px #ffffff4f;
              background-color: #ffffff4a;
          }
          100%{
              transform: rotate(360deg);
          }
      }
    .side_image{
        width: 100%;
        z-index: 1;
        img{
            position: absolute;
            bottom: 0;
            right: 0px;
            height: 400px;
        }
    }
    .side-info{
        z-index: 2;
    }
      .Subtitle_Font {
        margin-bottom: 20px;
      }
      .Title_Font {
        margin-bottom: 20px;
      }
      .typing{
        display: flex;
        flex-direction: row;
        align-items: center;
        .typed-text-output {
            font-size: calc(1.375rem + 1.5vw) !important;
            line-height: calc(1.375rem + 1.5vw);
            color: var(--action-color) !important;
            margin-bottom: 20px;
          }
        .typed-cursor{
            font-size: calc(1.375rem + 1.5vw) !important;
            color: var(--action-color) !important;
            margin-bottom: 20px;
          }
      }
      p {
        margin-bottom: 20px;
        color: var(--second_title);
        margin-bottom: 50px;
        font-size: 18px;
      }
      .buttons{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
      button {
        position: relative;
        display: inline-block;
        padding: 10px 15px;
        text-align: center;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 1px;
        text-decoration: none;
        color: var(--action-color);
        background: var(--buttons_bg);
        cursor: none;
        transition: ease-out 0.5s;
        border: 2px solid var(--action-color);
        border-radius: 50px;
        box-shadow: inset 0 0 0 0 var(--action-color);
      }
      
      button:hover {
        color: white;
        box-shadow: inset 0 -100px 0 0 var(--action-color);
      }
      
      button:active {
        transform: scale(0.9);
      }
      
      .card {
        width: fit-content;
        height: fit-content;
        background-color: transparent;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        border: none;
      }
      /* for all social containers*/
.socialContainer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--action-color);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: .3s;
  }
  /* instagram*/
  .containerOne:hover {
    background-color: var(--action-color);
    transition-duration: .3s;
  }
  /* twitter*/
  .containerTwo:hover {
    background-color: var(--action-color);
    transition-duration: .3s;
  }
  /* linkdin*/
  .containerThree:hover {
    background-color: var(--action-color);
    transition-duration: .3s;
  }
  /* Whatsapp*/
  .containerFour:hover {
    background-color: var(--action-color);
    transition-duration: .3s;
  }
  
  .socialContainer:active {
    transform: scale(0.9);
    transition-duration: .3s;
  }
  
  .socialContainer:hover .socialSvg path {
    fill: #fff;
  }
  
  .socialSvg {
    width: 17px;
  }
  
  .socialSvg path {
    fill: var(--action-color);
  }
  
  .socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
  }
  
  @keyframes slide-in-top {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
}
@media (max-width: 991px) {
  #home{
    background-image: var(--city);
    background-repeat: no-repeat;
    background-position: 80% 100%;
    background-size: 100% 454px;
    overflow: hidden !important;
  }
  .bgc1{
    display: none;
  }
  .bgc1,.bgc2,.frant,.f_left,.f_rigth{
    height: auto !important;
    bottom: 0 !important;
    left: 0 !important;
  }
  .sun{
    display: none;
  }
}
@media (max-width: 600.98px) {
  .bgc1,.bgc2,.frant,.f_left,.f_rigth,.sun{
    display: none;
  }
  .home_container {
    position: absolute;
    top: 0%;
  }
}
@media (max-width: 600.98px) {
  #home{
    background-image: var(--city);
    background-repeat: no-repeat;
    background-position: 80% 100%;
    background-size: 170% 500px;
  }
  .bgc1,.bgc2,.frant,.f_left,.f_rigth,.sun{
    display: none;
  }
  .home_container {
    position: absolute;
    top: 0%;
  }
}
@media (max-width: 450.98px) {
  #home{
    background-image: var(--city);
    background-repeat: no-repeat;
    background-position: 80% 100%;
    background-size: 200%;
  }
  .bgc1,.bgc2,.frant,.f_left,.f_rigth,.sun{
    display: none;
  }
  .home_container {
    position: absolute;
    top: 15%;
  }
}
.typed-cursor {
    font-size: 30px;
    color: var(--dark);
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--action-color);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--action-color);
    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: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--action-color);
    border-top: 11px solid transparent;
    border-bottom: 11px 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;
}

#section-counter {
    margin: 0;
    background-color: var(--secondary);
    height: 6rem;
    max-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
    margin-bottom: 50px;
    border-bottom: 4.5px solid var(--action-color);
      .container{
        transform: translateY(3rem);
        border: 2.5px solid var(--action-color);
        border-radius: 80px;
        padding: 13px 30px;
        background: var(--second_bg);
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        #numbers_panel{
          width: 100%;
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-around;
          padding: 0px 10px;
          .counter_val{
            width: 22%;
            .cardCount{
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              .part1{
                display: flex;
                flex-direction: row;
                align-items: center;
                .number {
                  padding: 10px;
                  line-height: 1;
                  font-weight: 700;
                  font-size: 30px;
                  color: var(--first_title);
                  display: block;
                  margin-bottom: 4px; }
                span {
                  font-weight: 600;
                  font-size: 15px;
                  color: #b1b493;
                  text-transform: uppercase; }
              }
              .icon {
                width: 60px;
                height: 60px;
                position: relative;
                background: var(--action-color);
                font-size: 17px;
                font-weight: 500;
                border: 3px solid  var(--action-color);
                border-radius: 50%;
                box-shadow: 0 0 0  var(--action-color);
                transition: all 0.3s ease-in-out;
                cursor: none;
                display: flex;
                justify-content: center;
                align-items: center;
              }
                .icon i {
                  font-size: 20px;
                  color: #fff; }
              
              .star-1 {
                position: absolute;
                top: 20%;
                left: 20%;
                width: 25px;
                height: auto;
                filter: drop-shadow(0 0 0 #000);
                z-index: -5;
                transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
              }
              
              .star-2 {
                position: absolute;
                top: 45%;
                left: 45%;
                width: 15px;
                height: auto;
                filter: drop-shadow(0 0 0 #000);
                z-index: -5;
                transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
              }
              
              .star-3 {
                position: absolute;
                top: 40%;
                left: 40%;
                width: 5px;
                height: auto;
                filter: drop-shadow(0 0 0 #000);
                z-index: -5;
                transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
              }
              
              .star-4 {
                position: absolute;
                top: 20%;
                left: 40%;
                width: 8px;
                height: auto;
                filter: drop-shadow(0 0 0 #000);
                z-index: -5;
                transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
              }
              
              .star-5 {
                position: absolute;
                top: 25%;
                left: 45%;
                width: 15px;
                height: auto;
                filter: drop-shadow(0 0 0 #000);
                z-index: -5;
                transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
              }
              
              .star-6 {
                position: absolute;
                top: 5%;
                left: 50%;
                width: 5px;
                height: auto;
                filter: drop-shadow(0 0 0 #000);
                z-index: -5;
                transition: all 0.8s ease;
              }
              
              .icon:hover {
                background: transparent;
                color: #fec195;
                box-shadow: 0 0 25px #fec1958c;
              }
              
              .icon:hover .star-1 {
                position: absolute;
                top: -80%;
                left: -30%;
                width: 25px;
                height: auto;
                filter: drop-shadow(0 0 10px var(--action-color));
                z-index: 2;
              }
              
              .icon:hover .star-2 {
                position: absolute;
                top: -25%;
                left: 10%;
                width: 15px;
                height: auto;
                filter: drop-shadow(0 0 10px var(--action-color));
                z-index: 2;
              }
              
              .icon:hover .star-3 {
                position: absolute;
                top: 55%;
                left: 25%;
                width: 5px;
                height: auto;
                filter: drop-shadow(0 0 10px var(--action-color));
                z-index: 2;
              }
              
              .icon:hover .star-4 {
                position: absolute;
                top: 30%;
                left: 80%;
                width: 8px;
                height: auto;
                filter: drop-shadow(0 0 10px var(--action-color));
                z-index: 2;
              }
              
              .icon:hover .star-5 {
                position: absolute;
                top: 25%;
                left: 115%;
                width: 15px;
                height: auto;
                filter: drop-shadow(0 0 10px var(--action-color));
                z-index: 2;
              }
              
              .icon:hover .star-6 {
                position: absolute;
                top: 5%;
                left: 60%;
                width: 5px;
                height: auto;
                filter: drop-shadow(0 0 10px var(--action-color));
                z-index: 2;
              }
              
              .fil0 {
                fill: var(--action-color);
              }
            }
          }
        }
      }
  }
/*** About ***/
#about .years .display-1 {
    font-size: 10rem;
    line-height: 9rem;
}
#about .aboutYers{
  position: relative;
}
#about .aboutYers::before{
  content: '';
  position: absolute;
  background-color: var(--action-color);
  height: 20px;
  box-shadow: 0 0 30px var(--main_color1);
  width: 100%;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
  border-radius: 10px;
}
#about .aboutYers span{
  position: absolute;
  top: -80px;
  right: 0;
  font-size: 40px;
  font-weight: 700;
  color: var(--action-color);
}

#about .years h5 {
    letter-spacing: 30px;
    margin-right: -30px;
}
#about .first_part{ 
    position: relative;
}
#aboutImage {
  height: 500px;
  position: relative;
}
#aboutImage .aboutImage{
  height: 100%;
  position: absolute;
  right: 100px;
  max-height: 100%;
}
@media (max-width: 1250px){
  .aboutImage{
    right: 0px !important;
  }
}
@media (max-width: 990px){
  .aboutImage{
    left: 0px !important;
  }
}

@media (max-width: 1000px) {
  #about .first_part{ 
    .card {
      width: 150px;
      height: 150px;
      bottom: 0;
      right: 20px;
    }

    .number:nth-child(1) {
      transform: translate(-50%, -50%) rotateZ(calc(30deg)) translateY(-60px);
    }
    
    .number:nth-child(2) {
      transform: translate(-50%, -50%) rotateZ(calc(60deg)) translateY(-60px);
    }
    
    .number:nth-child(3) {
      transform: translate(-50%, -50%) rotateZ(calc(90deg)) translateY(-60px);
    }
    
    .number:nth-child(4) {
      transform: translate(-50%, -50%) rotateZ(calc(120deg)) translateY(-60px);
    }
    
    .number:nth-child(5) {
      transform: translate(-50%, -50%) rotateZ(calc(150deg)) translateY(-60px);
    }
    
    .number:nth-child(6) {
      transform: translate(-50%, -50%) rotateZ(calc(180deg)) translateY(-60px);
    }
    
    .number:nth-child(7) {
      transform: translate(-50%, -50%) rotateZ(calc(210deg)) translateY(-60px);
    }
    
    .number:nth-child(8) {
      transform: translate(-50%, -50%) rotateZ(calc(240deg)) translateY(-60px);
    }
    
    .number:nth-child(9) {
      transform: translate(-50%, -50%) rotateZ(calc(270deg)) translateY(-60px);
    }
    
    .number:nth-child(10) {
      transform: translate(-50%, -50%) rotateZ(calc(300deg)) translateY(-60px);
    }
    
    .number:nth-child(11) {
      transform: translate(-50%, -50%) rotateZ(calc(330deg)) translateY(-60px);
    }
    
    .number:nth-child(12) {
      transform: translate(-50%, -50%) rotateZ(calc(0deg)) translateY(-60px);
    }
  }
}
@media (max-width: 767.98px) {
  #aboutImage {
    height: 300px;
  }
  #about .first_part{ 
    .card {
      width: 130px;
      height: 130px;
      bottom: 0;
      right: 20px;
    }

    .number:nth-child(1) {
      transform: translate(-50%, -50%) rotateZ(calc(30deg)) translateY(-50px);
    }
    
    .number:nth-child(2) {
      transform: translate(-50%, -50%) rotateZ(calc(60deg)) translateY(-50px);
    }
    
    .number:nth-child(3) {
      transform: translate(-50%, -50%) rotateZ(calc(90deg)) translateY(-50px);
    }
    
    .number:nth-child(4) {
      transform: translate(-50%, -50%) rotateZ(calc(120deg)) translateY(-50px);
    }
    
    .number:nth-child(5) {
      transform: translate(-50%, -50%) rotateZ(calc(150deg)) translateY(-50px);
    }
    
    .number:nth-child(6) {
      transform: translate(-50%, -50%) rotateZ(calc(180deg)) translateY(-50px);
    }
    
    .number:nth-child(7) {
      transform: translate(-50%, -50%) rotateZ(calc(210deg)) translateY(-50px);
    }
    
    .number:nth-child(8) {
      transform: translate(-50%, -50%) rotateZ(calc(240deg)) translateY(-50px);
    }
    
    .number:nth-child(9) {
      transform: translate(-50%, -50%) rotateZ(calc(270deg)) translateY(-50px);
    }
    
    .number:nth-child(10) {
      transform: translate(-50%, -50%) rotateZ(calc(300deg)) translateY(-50px);
    }
    
    .number:nth-child(11) {
      transform: translate(-50%, -50%) rotateZ(calc(330deg)) translateY(-50px);
    }
    
    .number:nth-child(12) {
      transform: translate(-50%, -50%) rotateZ(calc(0deg)) translateY(-50px);
    }
}
}
@media (max-width: 450px) {
  #aboutImage {
    height: 350px;
  }
}
#aboutImage .container {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 200ms;
}
#aboutImage .container:active {
  width: 180px;
  height: 245px;
}

#aboutImage #card {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: 700ms;
}

#aboutImage .tracker {
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 100%;
}

#aboutImage .tracker:hover {
  cursor: none;
}


#aboutImage .tracker:hover ~ #card {
  transition: 300ms;
  filter: brightness(1.1);
}

#aboutImage .container:hover #card::before {
  transition: 200ms;
  content: '';
  opacity: 80%;
}

#aboutImage .canvas {
  perspective: 800px;
  inset: 0;
  z-index: 200;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas: "tr-1 tr-2 tr-3 tr-4 tr-5"
    "tr-6 tr-7 tr-8 tr-9 tr-10"
    "tr-11 tr-12 tr-13 tr-14 tr-15"
    "tr-16 tr-17 tr-18 tr-19 tr-20"
    "tr-21 tr-22 tr-23 tr-24 tr-25";
}

#aboutImage .tr-1 {
  grid-area: tr-1;
}

#aboutImage .tr-2 {
  grid-area: tr-2;
}

#aboutImage .tr-3 {
  grid-area: tr-3;
}

#aboutImage .tr-4 {
  grid-area: tr-4;
}

#aboutImage .tr-5 {
  grid-area: tr-5;
}

#aboutImage .tr-6 {
  grid-area: tr-6;
}

#aboutImage .tr-7 {
  grid-area: tr-7;
}

#aboutImage .tr-8 {
  grid-area: tr-8;
}

#aboutImage .tr-9 {
  grid-area: tr-9;
}

#aboutImage .tr-10 {
  grid-area: tr-10;
}

#aboutImage .tr-11 {
  grid-area: tr-11;
}

#aboutImage .tr-12 {
  grid-area: tr-12;
}

#aboutImage .tr-13 {
  grid-area: tr-13;
}

#aboutImage .tr-14 {
  grid-area: tr-14;
}

#aboutImage .tr-15 {
  grid-area: tr-15;
}

#aboutImage .tr-16 {
  grid-area: tr-16;
}

#aboutImage .tr-17 {
  grid-area: tr-17;
}

#aboutImage .tr-18 {
  grid-area: tr-18;
}

#aboutImage .tr-19 {
  grid-area: tr-19;
}

#aboutImage .tr-20 {
  grid-area: tr-20;
}

#aboutImage .tr-21 {
  grid-area: tr-21;
}

#aboutImage .tr-22 {
  grid-area: tr-22;
}

#aboutImage .tr-23 {
  grid-area: tr-23;
}

#aboutImage .tr-24 {
  grid-area: tr-24;
}

#aboutImage .tr-25 {
  grid-area: tr-25;
}

#aboutImage .tr-1:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(-10deg) rotateZ(0deg);
}

#aboutImage .tr-2:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(-5deg) rotateZ(0deg);
}

#aboutImage .tr-3:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(0deg) rotateZ(0deg);
}

#aboutImage .tr-4:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(5deg) rotateZ(0deg);
}

#aboutImage .tr-5:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(10deg) rotateZ(0deg);
}

#aboutImage .tr-6:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(-10deg) rotateZ(0deg);
}

#aboutImage .tr-7:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(-5deg) rotateZ(0deg);
}

#aboutImage .tr-8:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(0deg) rotateZ(0deg);
}

#aboutImage .tr-9:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(5deg) rotateZ(0deg);
}

#aboutImage .tr-10:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(10deg) rotateZ(0deg);
}

#aboutImage .tr-11:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(-10deg) rotateZ(0deg);
}

#aboutImage .tr-12:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(-5deg) rotateZ(0deg);
}

#aboutImage .tr-13:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

#aboutImage .tr-14:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(5deg) rotateZ(0deg);
}

#aboutImage .tr-15:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(10deg) rotateZ(0deg);
}

#aboutImage .tr-16:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(-10deg) rotateZ(0deg);
}

#aboutImage .tr-17:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(-5deg) rotateZ(0deg);
}

#aboutImage .tr-18:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(0deg) rotateZ(0deg);
}

#aboutImage .tr-19:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(5deg) rotateZ(0deg);
}

#aboutImage .tr-20:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(10deg) rotateZ(0deg);
}

#aboutImage .tr-21:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(-10deg) rotateZ(0deg);
}

#aboutImage .tr-22:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(-5deg) rotateZ(0deg);
}

#aboutImage .tr-23:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg);
}

#aboutImage .tr-24:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(5deg) rotateZ(0deg);
}

#aboutImage .tr-25:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(10deg) rotateZ(0deg);
}

#aboutImage .noselect {
  -webkit-touch-callout: none;
   /* iOS Safari */
  -webkit-user-select: none;
   /* Safari */
   /* Konqueror HTML */
  -moz-user-select: none;
   /* Old versions of Firefox */
  -ms-user-select: none;
   /* Internet Explorer/Edge */
  user-select: none;
   /* Non-prefixed version, currently
									supported by Chrome, Edge, Opera and Firefox */
}

/*  education */
#education .EducationsCOntainer{
  display: flex;
  flex-direction: row;
  justify-content: start;
}
.services {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  cursor: none; }
  .services .icon {
    line-height: 1.3;
    position: relative;
    margin-top: -60px;
    width: 80px;
    height: 80px;
    background: var(--action-color);
    border-radius: 50%;
    margin-bottom: 15px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; 
    color: #fff;
    font-size: 40px;}
    .services .icon i {
      font-size: 40px; }
    .services .media-body h3 {
          font-size: 18px;
          font-weight: 700; 
          color: var(--first_title);
    }
    .services .media-body {
      color: var(--second_title);
    }
  .services:hover {
    background-color: var(--action-color) !important; 
  }
    .services:hover .icon {
      color: var(--action-color) !important;
      background: #fff !important;
      margin-left: 20px; 
      border-radius: 50%;
      border: 1.5px solid var(--action-color);}
      .services:hover .year_educ{
        color: #fff !important;
      }
      .services:hover .icon span {
        color: #b1b493; }
    .services:hover h3 {
      color: #fff; }
    .services:hover .media-body {
      color: rgba(255, 255, 255, 0.8); }
/* education */
/*** Skills ***/
#skill .bottomDetails{
  position: relative;
}
#skill .progress {
  height: 5px;
  border-radius: 5px;
  max-width: 80%;
}
#skill .educationHed {
  border-width: 2.5px !important;
  background-color: var(--second_bg);
  height: 100%;
}

#skill .progress .progress-bar {
    width: 0px;
    border-radius: 5px;
    transition: 3s;
}

#skill .nav-pills .nav-link {
    border-color: var(--action-color);
    background-color: transparent;
    color: var(--action-color);
}

#skill .tab-content hr {
  width: 30px;
}

#skill .Education {
  color: var(--action-color) !important;
}

#skill .skillsValue {
  color: var(--action-color) !important;
  position: absolute;
  right: 0;
  top: -10px;
}

#skill .card {
 border-radius: 10px;
 background: var(--cards_bg);
 position: relative;
 padding: 10px;
 border: 2px solid transparent;
 transition: 0.5s ease-out;
 overflow: visible;
 box-shadow: none;
}

#skill .card-details {
 color: var(--second_title);
 height: 100%;
 gap: .5em;
 display: grid;
}

#skill .cardTools {
  transform: translate(-50%, 125%);
  border-radius: 1rem;
  border: none;
  background-color: var(--action-color);
  color: #fff;
  font-size: 1rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease-out;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

/* for all social containers*/
.socialContainer {
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
}
.socialContainer img{
  width: 80%;
}

.socialContainer:hover {
  transition-duration: 0.3s;
  transform: scale(1.2);
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


#skill .text-body {
 color: #fff;
}

/*Text*/
#skill .text-title {
 font-size: 1.5em;
 font-weight: bold;
}

/*Hover*/
#skill .card:hover {
  border-color: var(--action-color);
  box-shadow: 0 4px 18px 0 rgba(var(--first_bg).25);
 }

#skill .card:hover .cardTools {
 transform: translate(-50%, 30%);
 opacity: 1;
}

@media (min-width: 992px) {
  .cardSkill{
    display: flex;
    justify-content: space-between;
  }
  .cardskills{
      width: 47%;
    }
}
/*** Service ***/
.service-item .bg-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/landingPage/bg-icon.webp) center center no-repeat;
  background-size: cover;
}
.service-item .bg-icon i{
  font-size: 2em;
  color: var(--first_title);
  font-weight: 900;
}
.cardsServ .cardServ {
  border-radius: 30px;
  background: var(--second_bg);
  box-shadow: 15px 15px 30px var(--second_bg),
             -15px -15px 30px var(--first_bg);
  cursor: none;
  transform: scale(1.0);
  transition: 400ms;
}

.cardsServ .cardServ:hover {
  transform: scale(1.1);
}

.cardsServ:hover > .cardServ:not(:hover) {
  transform: scale(1.0);
}
@media (min-width: 992px) {
  .cardsServ {
    display: flex;
    justify-content: space-between;
  }
  .cardsServ .cardServ{
    width: 47%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

/* .portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
  border-radius: 10px;
  background-color: var(--first_bg);
  width: fit-content;
}

.portfolio #portfolio-flters li {
  cursor: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--title3-dark);
  transition: all 0.3s ease-in-out;
  padding: 10px 20px;
  margin: 5px 10px;
  border-radius: 10px;
  border: 1.5px solid transparent;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: var(--action-color);
  background: var(--buttons_bg);
  border: 1.5px solid var(--action-color);
} 

*/

/*  */
.overFilter{
  display: flex;
  justify-content: center;
}   
.portfolio #portfolio-flters {
  padding: 0;
  margin: -15px 0 25px 0;
  list-style: none;
  font-size: 0;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 5px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: var(--action-color);
  border: 2px solid transparent;
  border-radius: 0;
  box-shadow: inset 0 0 0 50px var(--action-color);
  transition: ease-out 0.3s;
  -webkit-transition: ease-out 0.3s;
  -moz-transition: ease-out 0.3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--action-color);
  background: white;
  box-shadow: inset 0 0 0 0 var(--action-color);
  border-color: var(--action-color);
}
/*  */
.portfolio .project_card{
  height: 300px !important;
}

.project_card .project_title{
  position: absolute;
  transform: translate3d(0, 0, 46px);
  color: rgb(255, 255, 255);
  background-color: #00000008;
  font-weight: 700;
  backdrop-filter: blur(10px);
  width: 100%;
  border-radius: 0 0 10px 10px;
  bottom: -12px;
  padding: 0 10px;
  transition: .4s ease;
}
@media (max-width: 1200px) {
  .portfolio .project_card{
    height: 200px !important;
  }
}
@media (max-width: 992px) {
  .portfolio .project_card{
    height: 300px !important;
  }
}


.parent {
  perspective: 1000px;
  transition: 0.4 ease;
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 1.5rem;
}

.card {
  height: 100%;
  border-radius: 10px;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
  transform-style: preserve-3d;
  box-shadow: rgba(5, 71, 17, 0) 40px 50px 25px -40px, rgba(5, 71, 17, 0.2) 0px 25px 25px -5px;
}

.bottom {
  padding: 10px 12px;
  transform-style: preserve-3d;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translate3d(0, 0, 26px);
}

.bottom .social-buttons-container {
  display: flex;
  gap: 10px;
  transform-style: preserve-3d;
}

.bottom .social-buttons-container .social-button {
  aspect-ratio: 1;
  width: 100px;
  height: 40px;
  font-size: 14px;
  background: var(--buttons_bg);
  border: 1.5px solid var(--action-color);
  border-radius: 10px;
  color: var(--action-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  place-content: center;
  box-shadow: rgba(5, 71, 17, 0.5) 0px 7px 5px -5px;
  transition: .4s ease;
}

.bottom .social-buttons-container .social-button:first-child {
  transition: transform 0.2s ease-in-out 0.4s, box-shadow 0.2s ease-in-out 0.4s;
}

.bottom .social-buttons-container .social-button .svg {
  width: 15px;
  fill: #ffffff;
  transition-duration: 1s;
}

.bottom .social-buttons-container .social-button:hover {
  background: var(--action-color);
  color: #fff;
}

.bottom .social-buttons-container .social-button:hover .svg {
  fill: white;
}

.bottom .social-buttons-container .social-button:active {
  background: rgb(255, 234, 0);
}

.bottom .social-buttons-container .social-button:active .svg {
  fill: black;
}

.parent:hover {
  z-index: 9;
}

.parent:hover .card {
  transform: rotate3d(1, 1, 0, 30deg);
  background-color: var(--action-color);
  box-shadow: rgba(5, 71, 17, 0.3) 30px 50px 25px -40px, rgba(5, 71, 17, 0.1) 0px 25px 30px 0px;
}

.parent:hover .card .bottom .social-buttons-container .social-button {
  transform: translate3d(0, 0, 80px);
  box-shadow: rgba(5, 71, 17, 0.2) -5px 20px 10px 0px;
}
.parent:hover .project_title {
  visibility: hidden;
}
.parent .card .img-fluid {
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 40px);
  transition-delay: 0.4s;
  transition-duration: 1s;
  border-radius: 10px;
}
.parent:hover .card .img-fluid {
  transform: translate3d(0, 0, 60px);
  box-shadow: rgba(5, 71, 17, 0) 40px 50px 25px -40px, rgba(5, 71, 17, 0.2) 0px 25px 25px -5px;
}  
/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    opacity: .7;
}

.team-item .team-text {
    position: absolute;
    left: 0;
    right: 60px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    right: 30px;
    opacity: 1;
}

.team-item .team-text div {
    transition: .5s;
}

.team-item:hover .team-text div {
    margin-left: 30px;
}


/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px solid var(--secondary);
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.testimonial-carousel .testimonial-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid var(--secondary);
    border-radius: 60px;
}

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

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 5px;
    left: 5px;
    border-radius: 16px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--action-color);
}


/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience {
    position: relative;
    padding: 45px 0 15px 0;
    overflow-x: hidden;
    width: 100%;
}
.experience .container{
  z-index: 0;
  background: transparent;
}
.experience .timeline {
    position: relative;
    width: 100%;
}
.experience .timeline .lieu{
  padding-top: 9px;
  text-align: end;
  color: var(--action-color);
  font-weight: 700;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--action-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.cardServ {
  border-radius: 30px;
  background: var(--second_bg);
  box-shadow: 15px 15px 30px #bebebe,
             -15px -15px 30px #ffffff;
}

.experience .timeline .timeline-item {
  position: relative;
  background: inherit;
  width: 50%;
  margin-bottom: 30px;
  transition: 0.4s ease;
  z-index: 2;
}
.experience .timeline .timeline-item.left:hover {
  transform: translateX(-50px);
}
.experience .timeline .timeline-item.right:hover {
  transform: translateX(50px);
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid var(--action-color);
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 46px;
  right: 10px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent transparent transparent #dddddd;
}

.experience .timeline .timeline-item.right::before {
  left: 10px;
  border-color: transparent #dddddd transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: var(--action-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
  padding: 30px;
  position: relative;
  border-right: 5px solid #dddddd;
  cursor: none;
  border-radius: 30px;
  background: var(--cards_bg);
  box-shadow: -15px 15px 30px var(--second_bg),
             -15px -15px 30px var(--first_bg);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid #dddddd;
    box-shadow: 15px 15px 30px var(--second_bg),
              -15px -15px 30px var(--first_bg);
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
}

.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 900;
    color: var(--action-color);
}

.experience .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .experience .timeline::after {
        left: 8px;
    }

    .experience .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }
    
    .experience .timeline .timeline-item.left {
        padding-right: 0;
    }
    
    .experience .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left::after, 
    .experience .timeline .timeline-item.right::after {
        left: 0;
    }
    
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 5px solid #dddddd;
    }
}
@media (max-width: 500px) {
  .experience .timeline .timeline-item.left:hover {
    transform: translateX(10px);
  }
  .experience .timeline .timeline-item.right:hover {
    transform: translateX(10px);
  }
  #skill .cardTools {
    transform: translate(-50%, 0%);
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    opacity: 1;
    border-radius: 10px;
    background-color: var(--second_bg);
  }
  #skill .card:hover .cardTools {
    transform: translate(-50%, 0%);
  }
   
  #skill .card-details{
    margin-bottom: 10px;
  }
  #skill .socialContainer{
    border:2.5px solid var(--action-color);
    margin: 10px 5px;
  }
}
/*--------------------------------------------------------------
# blog-section
--------------------------------------------------------------*/
  .blog-section .buttom_butt{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding-top: 50px;
  }
  .blog-section .ftco-section {
    padding: 7em 0;
    position: relative; }
    @media (max-width: 767.98px) {
      .ftco-section {
        padding: 6em 0; } }
        .blog-section .blogs_cards{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 !important;
      }
      .blog-section .blogs_cards_list{
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
      }
      .blog-section .ftco-animate{
        background-color: var(--second_bg);
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        width: 30%;
        overflow: hidden;
        margin-bottom: 20px;
      }
      .blogs_cards_list .ftco-animate{
        margin: 20px;
      }
      .blog-section .ftco-animate .img_coverBlog{
        height: 260px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
      }
      .blog-section .ftco-animate .img_coverBlog:hover img{
        transform: scale(1.3);
      }
      .blog-section .ftco-animate .img_coverBlog img{
        width: 100%;
        height: 100%;
        transition: .4s ease;
        }
        .blog-section .ftco-animate .blog_description{
          padding: 10px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
        } 
        .blog-section .ftco-animate .blog_description .blog_content{
          height: 100px;
          width: 100%; /* or specify a fixed width like width: 200px; */
          overflow: hidden;
          text-overflow: ellipsis;
          margin-bottom: 10px;
          font-size: 15px !important;
        } 
        .blog-section .ftco-animate .blog_description .blog_content h1{
          color: var(--second_title)  !important;
        }
        .blog-section .ftco-animate .blog_description .blog_content h2{
          color: var(--second_title)  !important;
        }
        .blog-section .ftco-animate .blog_description .blog_content h3{
          color: var(--second_title)  !important;
        }
        .blog-section .ftco-animate .blog_description .blog_content h4{
          color: var(--second_title)  !important;
        }
        .blog-section .ftco-animate .blog_description .blog_content h5{
          color: var(--second_title)  !important;
        }
        .blog-section .ftco-animate .heading{
          font-size: 20px;
          color: var(--action-color);
        } 
        @media (max-width: 980px) {
          .blog-section .ftco-animate{
            width: 45%;
            margin: 10px;
          }
        }
        @media (max-width: 760px) {
          .blog-section .ftco-animate{
            width: 100%;
          }
        }
        .blog-section a {
          position: relative;
          display: inline-block;
          cursor:   pointer;
          outline: none;
          border: 0;
          vertical-align: middle;
          text-decoration: none;
          background: transparent;
          padding: 0;
          font-size: inherit;
          font-family: inherit;
         }
         
         .blog-section a.learn-more {
          width: 12rem;
          height: auto;
         }
         
         .blog-section a.learn-more .circle {
          transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
          position: relative;
          display: block;
          margin: 0;
          width: 40px;
          height: 40px;
          background: var(--action-color);
          border-radius: 1.625rem;
         }
         
         .blog-section a.learn-more .circle .icon {
          transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
          position: absolute;
          top: 0;
          bottom: 0;
          margin: auto;
          background: #fff;
         }
         
         .blog-section a.learn-more .circle .icon.arrow {
          transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
          left: 0.625rem;
          width: 1.125rem;
          height: 0.125rem;
          background: none;
         }
         
         .blog-section a.learn-more .circle .icon.arrow::before {
          position: absolute;
          content: "";
          top: -0.29rem;
          right: 0.0625rem;
          width: 0.625rem;
          height: 0.625rem;
          border-top: 0.125rem solid #fff;
          border-right: 0.125rem solid #fff;
          transform: rotate(45deg);
         }
         
         .blog-section a.learn-more .button-text {
          transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          margin: 0 0 0 1.85rem;
          color: var(--action-color);
          font-weight: 600;
          display: flex;
          justify-content: center;
          align-items: center;
         }
         
         .blog-section a:hover .circle {
          width: 100%;
         }
         
         .blog-section a:hover .circle .icon.arrow {
          background: #fff;
          transform: translate(1rem, 0);
         }
         
         .blog-section a:hover .button-text {
          color: #fff;
         }
         .blog-section  .cssbuttons-io-button {
            background: var(--action-color);
            color: white;
            font-family: inherit;
            padding: 0.35em;
            padding-left: 1.2em;
            font-size: 17px;
            font-weight: 500;
            border-radius: 0.9em;
            border: none;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            box-shadow: inset 0 0 1.6em -0.6em var(--action-color);
            overflow: hidden;
            position: relative;
            height: 2.8em;
            padding-right: 3.3em;
            cursor: none;
          }
          
          .blog-section  .cssbuttons-io-button .icon {
            background: white;
            margin-left: 1em;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 2.2em;
            width: 2.2em;
            border-radius: 0.7em;
            box-shadow: 0.1em 0.1em 0.6em 0.2em var(--action-color);
            right: 0.3em;
            transition: all 0.3s;
          }
          
          .blog-section  .cssbuttons-io-button:hover .icon {
            width: calc(100% - 0.6em);
          }
          
          .blog-section  .cssbuttons-io-button .icon svg {
            width: 1.1em;
            transition: transform 0.3s;
            color: var(--action-color);
          }
          
          .blog-section  .cssbuttons-io-button:hover .icon svg {
            transform: translateX(0.1em);
          }
          
          .blog-section .cssbuttons-io-button:active .icon {
            transform: scale(0.95);
          }
          .bg-second{
            background-color: var(--secondary);
          }
          @media (max-width: 1199.98px) {
            #section-counter {
              background-position: center center !important;
              .container {
                  #numbers_panel {
                    .counter_val {
                          .cardCount {
                            .icon {
                              width: 50px;
                              height: 50px;
                              span {
                                font-size: 20px;
                                color: #666666; 
                              }
                            }
                            .number {
                              font-size: 20px;
                            }
                            span {
                              font-size: 10px;
                            }
                          }
                        }
                      }
                    }

               } 
          }
          @media (max-width: 991.98px) {
            #section-counter {
              background-position: center center !important;
              .container {
                  #numbers_panel {
                    .counter_val {
                          .cardCount {
                            .icon {
                              width: 40px;
                              height: 40px;
                              span {
                                font-size: 15px;
                                color: #666666; 
                              }
                            }
                            .number {
                              font-size: 17px;
                            }
                            span {
                              font-size: 10px;
                            }
                          }
                        }
                      }
                    }

               } 
            }
          @media (max-width: 767.98px) {
            #section-counter {
              height: auto;
              margin-top: 2rem;
              background-color: transparent;
              border: none;
              padding-bottom: 50px;
              .container {
                border: 0 solid var(--action-color);
                border-radius: 0;
                padding: 0;
                background: var(--bg2-dark);
                position: static;
                border-radius: 10px;
                
                  #numbers_panel {
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    justify-content: space-between;
                    .counter_val {
                      padding: 10px 0;
                      display: flex;
                      width: 100%;
                      flex-direction: row;
                      align-items: center;
                      justify-content: start !important;
                          .cardCount {
                            display: flex;
                            align-items: start;
                            .part1 {
                              justify-content: end;
                              .icon {
                                width: 65px;
                                height: 65px;
                                transform: translateY(15px);
                                span {
                                  font-size: 40px;
                                  color: #666666; 
                                }
                              }
                              .number {
                                font-size: 30px;
                                padding: 0 15px 0!important;
                              }
                            }
                            span {
                              font-size: 20px;
                              margin-left: 80px
                            }
                          }
                    }
                  }
              }

            } 
          }
#mapANDcontact{
  position: relative;
  margin-top: 30%;
}
#mapANDcontact .formFrame{
  position: absolute;
  top: -70%;
  width: 100%;
  left: 0;
  z-index: 22;
  display: flex;
  justify-content: center;
}
#mapFIlter{
  filter: brightness(.5);
}
#mapANDcontact #emailForm{
  width: 70%;
  max-width: 900px;
  background-color: var(--first_bg);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  z-index: 22;
  border: 2.5px solid var(--action-color);
  padding: 40px 110px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#mapANDcontact #emailForm .form-control{
  background-color: var(--cards_bg);
  color: var(--first_title);
}
#submitBtn{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#uploadProgress{
  margin-top: 10px;
}
#persentProgress{
  display: none;
  margin: 0 10px;
}
.QRCODE{
  display: flex;
  justify-content: end;
}
.QRCODE img{
  max-width: 100%;
  max-height: 400px;
  border-radius: 5px;
  border: 2.5px solid var(--action-color);
}
@media (max-width: 991px) {
  .QRCODE{
    display: flex;
    justify-content: center;
  }
  #mapANDcontact{
    margin-top: 40%;
  }
  #mapANDcontact .formFrame{
    top: -80%;
  }
  #mapANDcontact #emailForm{
    width: 90%;
    padding: 20px 50px;
  }
}
@media (max-width: 767.98px) {
  .QRCODE{
    justify-content: start;
  }
  #mapANDcontact{
    margin-top: 50%;
  }
  #mapANDcontact .formFrame{
    top: -80%;
  }
  #mapANDcontact #emailForm{
    padding: 20px;
  }
}
@media (max-width: 500px) {

  #mapANDcontact{
    margin-top: 90%;
  }
}

#grayCOntetnt{
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}
.whiteColor{
  color: #fff !important;
  transition: .4s ease;
}
#grayCOntetnt #gray_bg{
  background-color: var(--secondary);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 0;
  z-index: 0;
  overflow: hidden;
  transition: 3s ease;
}
.zIndex{
  z-index: 1;
  position: sticky;
}

#copyright{
  color: var(--first_title);
  font-weight: bold;
}
.ContainerCopyRight{
  display: flex;
}
.ContainerLOGOAPP_bottom{
  width: 20px;
  height: 15px;
}

/* From Uiverse.io by menezes11 */ 
.button_primary {
  position: relative;
  padding: 1em 1.8em;
  outline: none;
  border: 1px solid var(--buttons_bg);
  background: var(--buttons_bg);
  color: var(--action-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  transition: 0.2s;
  border-radius: 20px;
  cursor: none;
  font-weight: bold;
  overflow: hidden !important;
 }
 
 .button_primary:hover {
  box-shadow: 0 0 10px var(--action-color), 0 0 25px var(--action-color), 0 0 50px var(--action-color);
  transition-delay: 0.6s;
 }
 
 .button_primary span {
  position: absolute;
 }
 
 .button_primary span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--action-color));
 }
 
 .button_primary:hover span:nth-child(1) {
  left: 100%;
  transition: 0.7s;
 }
 
 .button_primary span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--action-color));
 }
 
 .button_primary:hover span:nth-child(3) {
  right: 100%;
  transition: 0.7s;
  transition-delay: 0.35s;
 }
 
 .button_primary span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--action-color));
 }
 
 .button_primary:hover span:nth-child(2) {
  top: 100%;
  transition: 0.7s;
  transition-delay: 0.17s;
 }
 
 .button_primary span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, var(--action-color));
 }
 
 .button_primary:hover span:nth-child(4) {
  bottom: 100%;
  transition: 0.7s;
  transition-delay: 0.52s;
 }
 
 .button_primary:active {
  background: var(--action-color);
  background: var(--action-color);
  color: #bfbfbf;
  box-shadow: 0 0 8px var(--action-color), 0 0 8px var(--action-color), 0 0 8px var(--action-color);
  transition: 0.1s;
 }
 
 .button_primary:active span:nth-child(1) 
 span:nth-child(2) 
 span:nth-child(2) 
 span:nth-child(2) {
  transition: none;
  transition-delay: none;
}

/* mobile */
@media (max-width: 500px){
  .aboutImage{
    height: auto !important;
  }
  .Title_Font{
    font-size: 25px;
  }
  .Subtitle_Font{
    font-size: 20px;
  }
  .ContainerCopyRight{
    justify-content: center;
  }
  .cardsServ {
    padding-left: calc(var(--bs-gutter-x) / 2);
    padding-right: calc(var(--bs-gutter-x) / 2);
  }
  .cardsServ .cardServ {
    transform: none;
  }
  .cardsServ .cardServ:hover {
    transform: none;
  }
  #particles-js{
    display: none;
  }
  #about .years .display-1 {
    font-size: 6rem !important;
    line-height: 7rem !important;
  }
  #about .years h5 {
    letter-spacing: 25px;
    margin-right: -25px;
  }
  .portfolio .project_card{
    height: 250px !important;
  }
  #about .aboutYers::before{
    height: 8px !important;
  }

  #about .aboutYers span{
    top: -40px;
  }
}