@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap');


:root {  
  
  --bg-tem-1:#4baf47;
  --bg-tem-2:#ff5722;
   --bg-tem-3:#007bff;

  --color-white-ten:#fff8ff; 
  --white:#fff;
  --black: #060606;
  
  --hover-tranzitipn: all .5s cubic-bezier(.3,1,.35,1) 0s;  
}

.container-section{ 
  width: 100%;
  padding-left: 12px;
  padding-right: 12px; 
  margin: 0 auto; 
  
}

body{    
  direction: ltr;
  font-family: 'Arvo', sans-serif !important;
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 1.5; 
   
}
 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
  list-style: none;
  cursor: pointer;
}           
input:focus, textarea:focus, select:focus {
  outline: none;
}
h2{
font-size: clamp(19px,4vw,33px)!important;
}
img, video{
  max-width: 100%;
}
ul{
  list-style: none;               
}
[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
.header-menu{
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.07);
}
.header-top{
  background: #061e22;
  padding:7px 0;
}
.hero-wrapper{
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  padding: 222px 0 102px;
}
.row{
  display: flex;
  flex-wrap: wrap;
  
}
.gap-20{
gap: 20px;
}
.justify-content{
  justify-content: center;
}
.hwader-box{
  align-items: center;
  justify-content: start;
}
.col-auto{  
  width: auto;
}
.top-header-logo{
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  img{
    height:  29px;
    object-fit: contain;
  }
}
.header-nav_list{
  display: flex;  
  flex-wrap: wrap;
  justify-content: center;
}
.header-nav_list-link{
  color: #fff;
  padding: 19px;
  display: block;
  font-size: 17px;
  transition: all ease 0.5s;
}
.header-nav_list li:hover .header-nav_list-link{
  color: var(--bg-tem-2);
}
.top-contact-list{
  display: flex;
  flex-wrap: wrap;
  justify-content:  center;
  gap: 34px;
}
.top-contact-list li{
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
}
.cont-svg{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  svg{
    width: 12px;
    height: 12px;
    fill: var(--bg-tem-2);
    
  }
}
.top-link{
  color: #fff;
  transition: all ease 0.5s;
}
.top-contact-list li:hover .top-link{
  color: var(--bg-tem-2);
}
.blok-row{
  display: flex;
  gap: 45px;
  flex-direction: row-reverse;
}
.flex-element{
  flex: 1;
}
.hero-img-box{
  
  position: relative;
  display: flex;
 align-items: center;
 justify-content: center;
  z-index: 1;
  img{
    border-radius: 28px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 520px;
  }
}
.hero-img-box::before,.hero-img-box::after{
  content: "";
  position: absolute;   
  border: 3px solid var(--bg-tem-2);
  transform: rotate(-45deg);    
  border-radius: 28px;
  animation: spin 15s linear infinite;
   -webkit-animation: spin 15s linear infinite;
  -moz-animation: spin 15s linear infinite;
  z-index: -1;
  inset: 20px;
  will-change: transform;
}
@keyframes spin {
  0% {
    transform: rotate(0);
}

100% {
    transform: rotate(360deg);
}
}
.hero-img-box::after{
  z-index: 1;
  border-color: #fff;
  animation: spin2 15s linear infinite;
  -webkit-animation: spin2 15s linear infinite;
  -moz-animation: spin2 15s linear infinite;
  will-change: transform;
}
@keyframes spin2 {
  0% {
    transform: rotate(0);
}
100% {
    transform: rotate(-360deg);
}
}
.slog{
  color: var(--bg-tem-2);
}
.hero-content{
  padding: 19px;
  display: flex;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.slider-line{
  width: 100%;
  height: 2px;
  background-color: #6c716c;
  position: relative;
  margin-bottom: 34px;
 
}
.slider-line::before,.slider-line::after{
  content: "";
  height: 7px;
  width: 7px;
  position: absolute;
  background:var(--bg-tem-2);
  top: -3px;
  border-radius: 34px;
}
.slider-line::before{
  inset-inline-start:0;
}
.slider-line::after{
  inset-inline-end: 0;
}
.ball{
  height: 7px;
  width: 7px;
  background-color: var(--bg-tem-2);
  border-radius: 50%;
  position: absolute;
  animation: moveBall 5s linear infinite;
  -webkit-animation:moveBall 5s linear infinite;;
  -moz-animation:moveBall 5s linear infinite;;
  will-change: left;
  top: -3px
}
@keyframes moveBall {
  0% {
    left: 0;
}
50% {
    left: 100%;
}
100% {
    left: 0;
}
}
.slider-line .ball:nth-child(2){
  animation-delay:7s
  -webkit-animation-delay:7s;
  -moz-animation-delay:7s;
}
.slider-line .ball:nth-child(3){
  animation-delay:9s;
  -webkit-animation-delay:9s;
  -moz-animation-delay:9s;
  
}
.hero-title{
  font-size: 19px;
  text-indent: 3ch; 
}
.pad-sect{
  padding: 102px 0;
}
.about-tumb{
  margin: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
 
  height: 100%;
}
.about-tumb::before, .about-tumb::after{
  content: "";
  position: absolute;
  right: -34px;
  top: 0;
  height: 50%;
  width: 13px;
  display: block;
  background: var(--bg-tem-2);
} 
.about-tumb::after{
  right: auto;
  left: -34px;
  top: auto;
  bottom: 0;
}
.box-video{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 28px;
}
.box-video video{
  width: 100%;
  height: 313px;
  object-fit: cover;  
}
.title-box{
  text-align:  center;
  color: var(--bg-tem-2);
  text-transform: inherit; 
  margin-bottom: 20px;
}
.about-list{
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.about-list li{
  display: flex;
  gap:  20px;
}
.about-svg{
  flex: 0 0 auto;
  background-color: var(--bg-tem-2);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0%;
  svg{
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: var(--bg-tem-2);
  }
}
.about-btn{
  margin-top: 45px;
}
.titl-section{
  position: relative;
  padding: 122px 0 182px;
  background-image: url(pic/icons_header_68f8da4a533586.54303755.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.titl-section::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #060606c4;
}
.box-center{
  text-align: center;
  position: relative;

}
.img-title{
  color: #fff;
}
.servis-section{
  margin-top: -102px;
  padding-bottom: 102px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.servis-list{
  display: flex;
  flex-direction:  column-reverse;
  gap: 28px;
}
.servis-element{
  flex: 1;
  gap: 28px;
  display: flex;flex-direction: row;
}
.servis-cart{
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  height: 420px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
}
.service-card_content{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: 0.5s;
  padding: 12px 20px;
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 20px;
 
  font-size: 17px;
  color: #fff;
 
  background-color: #060606ba ;
  h3{
 text-align: center;
 font-size: 17px;
  }
}
.service-card-hover{
  padding: 28px 19px;
  transition: 0.5s;
  transform: translate(100%, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  bottom: 0;
  left: 0;
  top: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 19px;
  background: linear-gradient(190deg, var(--bg-tem-2) 3.68%, rgba(75, 175, 71, 0.7) 42.03%, rgba(75, 175, 71, 0.41) 80.38%, rgba(75, 175, 71, 0) 101.86%);

}
.servis-cart:hover .service-card_content{
  opacity: 0;
  transform: translate(50%, 0);
}
.servis-cart:hover .service-card-hover{
  opacity: 1;
  transform: translate(0, 0);
}
.card-hover_title{
  color: #fff;
  font-size: inherit;
}
.col{
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin-top: 20px;
}
.team-card{
  border-radius: 28px;
  background: linear-gradient(187deg, var(--bg-tem-2) -5.64%, #24231d 65.54%);
  text-align: center;
  padding: 34px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.team-img{
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 220px;
  width: 220px;
  border-radius: 0%;    
  border: 10px solid #fff;
  img{
    height: 100%;
    width: 100%;
    object-fit: cover;
   
    transition: 0.5s;
  }
}
.team-card:hover .team-img img{
      transform: scale(1.1);
}
.team-card-content{
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  h3{
    font-size: 24px;
    font-weight: 600;
    color: inherit; 
    transition: all ease 0.5s;       
  }
  p{
    font-size: 13px;
    font-weight: 300;
    opacity: 0.9;
  }
}
.team-card-content h3:hover{
  color: var(--bg-tem-2);
}
.footer{
  background:#061e22;
}
.copyright-wrap{
  padding: 15.5px 0;
  border-top: 2px solid #454441;
}
.copyright{
  display: flex;
  gap: 7px;
  color: #e3e3e3;
  align-items: center;
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap:  12px;  
  justify-content: center;
}
.footer-links li{
  display: inline-block;
  border-inline-end: 1px solid #e3e3e3;
  padding-inline-end: 12px;
  margin-inline-end: 10px;
}
.footer-links li:last-child{
  margin-inline-end: 0;
  padding-inline-end: 0;
  border-inline-end: 0;
}
.privacy-link{
  color: #e3e3e3;
  transition: all ease 0.5s;
}
.footer-links li:hover .privacy-link{
  color: var(--bg-tem-2);
}
.footer-bottom{
  justify-content: center;
}
.plan-item{
  height: 100%;
  padding: 3rem 0rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
   border-radius: 28px;
  border-bottom: 10px solid var(--bg-tem-2);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  background: linear-gradient(187deg, var(--bg-tem-2) -5.64%, #24231d 65.54%);
}
.plan-icon{
  height: 105px;
  width: 105px;
  color: #fff;
  border-radius: 0%;
  background-color: var(--bg-tem-2);
  display: flex;
  align-items: center;
  justify-content: center;
  svg{
    width: 28px;
    height: 28px;
    stroke:#fff;
    transition: 0.4s;
    fill: var(--bg-tem-2);
  }
}
.plan-item:hover .plan-icon svg{
  transform: rotateY(180deg);
}
.plan-name{
  color: #fff;
  padding: 19px  12px;
  font-size: 28px;
  font-weight: 600;
  text-transform: inherit;
}
.plan-price{
  padding: 12px 0;
  color: #fff;
  width: 100%;
  background-color: var(--bg-tem-2);
  font-size: 33px;
}
.plan-list{
  padding: 19px  28px;
  display: flex;
  flex-direction: column;  
}
.plan-list li{
  display: flex;
  gap: 7px;
  align-items: center;
  text-align: left;
  color: #e6e6e6;
  svg{
    stroke:var(--bg-tem-2);
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
  }
}
.plan-btn{
  margin-top: auto;
}
.bg-white{
  background-color: #fff8ff;
}
.bg-grey{
  background-color: #00000009;
}
.bg-opas{
  background-image: url( content/images/bg-overlay-1600x9000.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-opas-2{
  background-image: url( content/images/bg-overlay-1600x9001.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.feature-image{
  position: relative;
  border-radius: 28px;
  float: right;
  width: 39%;
  height:320px;
  margin: 28px; 
  margin-right: 0;
  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
} 
.feature-image::after,.feature-image::before{
  content: "";
  position: absolute; 
  display: block; 
  height: 13px;
  width: 50%;
  background: var(--bg-tem-2);
}
.feature-image::after{
  right: 0;
  top: -28px;
}
.feature-image::before{
  left: 0;
  bottom: -28px;

}

.feature-content {
  p{
   margin-bottom: 12px;
   text-indent: 3ch;
  }
  
}
.feature-content  ul,ol{
  list-style: inside;
} 
 
.kwiz-bg{
  padding: 80px 0;
  position: relative; 
  background-image: url(pic/visuals_header_68f8da4a533665.79856804.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.kwiz-wrapper{
  position: relative;
  width: 80%;  
  text-align: center;
  margin:  0 auto;
  color: #fff;
  
}
.text-kwiz{
  font-size: 24px;
  margin-bottom: 60px;
}
.survey-container {  
  height: 100%;
}

.question {
  display: none;
  h3{
    margin-bottom: 28px;
    font-size:  28px;
  }
}

.question.current-step {
  display: block;
  padding: 28px;
  background: rgba( 255, 255, 255, 0.25 );
  box-shadow: 0 7px 34px 0 rgba( 75, 175, 71, 0.37 );
  backdrop-filter: blur( 5px );
  -webkit-backdrop-filter: blur(7px);
  border-radius:  28px;
  border: 2px solid rgba( 255, 255, 255, 0.18 );
  border-bottom: 10px solid var(--bg-tem-2);
}

.options label {
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 19px;
  margin-bottom: 28px;
  position: relative;
}

.options input[type="radio"] {
  display: none;
}

.options input[type="radio"] + label:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  border: 3px solid var(--bg-tem-2);
  border-radius: 50%; 
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 0 0 auto;
}

.options input[type="radio"]:checked + label:before {
  background-color: var(--bg-tem-2);
  border-color: transparent;
  transform: scale(0.8);
  box-shadow: 0 0 20px var(--bg-tem-2)80;
}


.error-message {
  color: var(--bg-tem-2);
  display: none;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 17px;
}

.kwiz-thx{
  color: var(--bg-tem-2);
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-color{
  background-color: var(--bg-tem-2);
}
.cont-wrapper{
  display: flex;
  gap: 82px;
  flex-direction: column;
}
.contact-info{
  display: flex;
  gap:  20px;
  border-radius: 7px;
  padding: 28px 34px;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  box-shadow: 0px 42.04px 42.48px rgba(0, 0, 0, 0.053);
  border-bottom: 5px solid var(--bg-tem-2);
}
.media-body{
  text-align: center;
}
.contact-info_icon{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  svg{
    width: 45px;
    height: 45px;
    stroke:var(--bg-tem-2);
  }
}
.contact-info_title{
  font-size:  24px;
  line-height: 34px;
  margin-bottom: 7px;
  color: var(--black);
}
.contact-info_link{
  color: #878680;
  word-wrap: break-word;
  font-size: 17px;
}
.form-flex{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.input-group{
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.form-input,.form-textarea{
  background: transparent;
  color: #878680;
  padding: 19px 20px;
  border: 2px solid #e3e3e3;
  border-bottom: 2px solid var(--bg-tem-2);
  width: 100%;
  outline: none;
  border-radius: 7px;
}
.grup-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-check{
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  font-size: 14px;
 color: #878680;
}
.form-check a{
  color: inherit;
}
.form-title{
  margin-bottom: 33px;
}
.map-box{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-shadow: 0px 42.04px 42.48px rgba(0, 0, 0, 0.053);
  iframe{
    width: 100%;
    height: 100%;
  }
}
.feature-price{
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--bg-tem-2);
  padding-bottom:12px;
  font-weight: 800;
  font-size: 24px;
  border-bottom: 5px solid var(--bg-tem-2);
}
.about-img{
  width: 100%;
  height: 100%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
  }

}
.container-statis .skill-box {
  width: 100%;
  margin: 28px 0;
}

.skill-box .stats-title {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: #000;
}

.skill-box .skill-bar {
  height: 7px;
  width: 100%;
  border-radius: 7px;
  margin-top: 28px;
  background: rgba(0, 0, 0, 0.1);
}

.skill-bar .skill-per {
  position: relative;
  display: block;
  height: 100%;
  width: 90%;
  border-radius: 7px;
  background: var(--bg-tem-2);
  animation: progress 0.5s ease-in-out forwards;
  opacity: 0;
}

.skill-per.html { 
  
  animation-delay: 0.1s;
}

.skill-per.css { 
  
  animation-delay: 0.1s;
}

.skill-per.javascript { 
  
  animation-delay: 0.2s;
}

.skill-per.nodejs {  
  
  animation-delay: 0.3s;
}

@keyframes progress {
  0% {
    width: 0;
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.skill-per .tooltip {
  position: absolute;
  inset-inline-end: -15px;
  top: -28px;
  font-size: 9px;
  font-weight:  300;
  color: #fff;
  padding: 3px 7px;
  border-radius: 3px;
  background: var(--bg-tem-2);

  z-index: 1;
}

.tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 12px;
  width: 12px;
  z-index: -1;
  background: var(--bg-tem-2);
  transform: translateX(-50%) rotate(45deg);
}
.sektion {
  word-break: break-word;
  overflow: hidden;
  }
  .blok-privacy p{
  margin-bottom: 12px;
  text-indent: 3ch; 
  
  }
  .blok-privacy h1{
  font-weight: 800;
  text-align: center;
  color: var(--black);
  margin-bottom:  22px;
  }
  .blok-privacy h2{
  font-weight: 600;
  text-align: center;
  color: var(--black);
  margin-bottom:19px ;
  }
  .blok-privacy table,.blok-privacy a{
  word-break: break-word;
  color: inherit;
  }
  .blok-privacy li{
  list-style: inside;
  }

.box-form-title{
  padding: 122px 0 152px;
  background-color: var(--bg-tem-2);
  color: #fff;
}
.box-form-wrapper{
  margin-top: -102px;
  padding-bottom: 82px;
  overflow: hidden;
}
.form-box{
  padding: 82px;
  border-radius:28px;
  background-color: #f8f7f0;
}
.contact-thumb{
  padding: 0 20px;
  width: 100%;
  height: 100%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
  }
}
.input-main__wrapper-block,.textarea-main__wrapper-block{
  width: 100%;
  outline: none;
  padding: 20px 28px;
  background-color: #ffffff;
  color: #878680;
  border: 2px solid transparent;
  border-radius: 7px;
}
.textarea-main__wrapper-block{
  min-height: 120px;
}
.blog-list{
  display: flex;
  gap: 35px;
  flex-direction: column;
  
}
.blog-group-box{
  display: flex;
  flex-direction: column-reverse;
  gap: 35px;
}
.blog-card{
  background: transparent;
  position: relative;
  border-radius: 19px;
  overflow: hidden;
}
.blog-card::before,.blog-card::after{
  content: "";
  position: absolute;
  height: 100%;
  border: 2px dotted var(--bg-tem-2);
  z-index: -3;
  transition: 0.5s;
  background: transparent;
  border-radius: 20px;
  left: 60px;
  bottom: 0;
  right: 12px;
}
.blog-card::after{
  background: linear-gradient(101deg, rgba(75, 175, 71, 0) 27.63%, #0e570b 86.97%);
  opacity: 0;
}
.blog-img{
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  position: relative;
  a{
    position: relative;
    display: block;
  }
  img{
    width: 100%;
    opacity: 1;
    height: 362px;
    transform: scale(1.02);
    transition: 0.5s ease-in-out;
    min-height: 282px;
    object-fit: cover;
  }
}
.blog-img a::before{
  content: "";
  background: linear-gradient(3deg, var(--bg-tem-2) 2.46%, rgba(75, 175, 71, 0) 141.27%);
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 20px;
  transition: 0.5s;
  z-index: 1;
}
.blog-content{
  border-bottom: 5px solid transparent;
  border-top: 5px solid var(--bg-tem-2);
  border-radius: 20px;
  margin-bottom: 20px;
  margin-right:  28px;
  margin-left:  28px;
  margin-top: -120px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  background:#ffffff;
  box-shadow: 12px 12px 45px rgba(0, 0, 0, 0.0784313725);
  padding:  28px;
}

.date-svg{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  svg{
    width: 12px;
    height: 12px;
    stroke:#fff;
  }
}
.blog-meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -0.5em;
  margin-bottom: 20px;
  gap: 12px 28px;
  justify-content: space-between;
}
.autor .date-svg svg{
  stroke:var(--bg-tem-2);
}
.autor{
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--bg-tem-2);
}
.blog-title a{
  font-size: 19px;
  color: var(--black);
  font-weight: 600;
  transition: all ease 0.5s;

}
.blog-title:hover a{
  color: var(--bg-tem-2);
}

.blog-card:hover:before{
opacity: 0;
}
.blog-card:hover:after{
  opacity: 1;
  border: 0;
}
.blog-card:hover .blog-img a::before{
  opacity: 1;
}
.blog-card:hover .blog-img img{
  transform: scale(1.08);
}
.blog-card:hover .blog-content{
      border-top: 5px solid transparent;
    border-bottom: 5px solid var(--bg-tem-2);
}

.group-section{
  display: flex;
  flex-direction: column;
}




.base-btn{
  margin-top: 34px;
  display: inline-block;
  padding: 12px 34px; 
  width: fit-content;
  font-size: 13px; 
  font-weight: 800; 
  text-align: center;
  text-decoration: none;
  cursor: pointer; 
  outline: none;
  border-radius: 0px; 
  transition: background-color 0.3s ease; 
}
.btn-blog{
  width: 100%;
}

.btn-5 {
  cursor: pointer;
  padding: 19px 45px 19px 45px;
  border-radius: 0px;
  border-style: double;
  font-weight:  600;
  background-image: linear-gradient(
    rgb(54, 53, 53),
    rgb(0, 0, 0),
    rgb(54, 54, 54)
  );
  color: rgb(164, 164, 162);
 
  border-color: rgb(0, 0, 0);
  transition: 400ms;
}

.btn-5:hover {
  transition: 400ms;
  border-style: double;
  border-color: rgb(208, 207, 207);
  color: rgb(219, 216, 216);
  font-size: 13px; 
  text-shadow: 2px 10px 5px rgb(61, 61, 61);
}

.btn-4 {  
  background: var(--bg-tem-2);
  border: solid 2px #fff;
  transition: all linear 250ms; 
  text-align: center;
  color: #fff;
  padding: 19px 28px;
 }

.btn-4:focus,.btn-4:hover{
  background:#393737;
  color: #fff;
}

.btn-3 {
  display: inline-flex;
  justify-content: center; 
  border: 2px solid var(--bg-tem-2);
  position: relative;
  overflow: hidden;  
  padding: 12px 28px;
  color: #FFF;
  font-weight:  600;
  text-transform: uppercase;
  background:var(--bg-tem-2);
  transition: box-shadow 0.3s, transform 0.3s;
   
}
.btn-3:hover,
.btn-3:active,
.btn-3:focus {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
  color: #FFF;
}
.btn-3:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, transparent, rgba(191, 226, 255, 0.3), transparent);
  transition: left 0.7s;
}
.btn-3:hover:before,
.btn-3:active:before,
.btn-3:focus:before {
  left: 100%;
}
.btn-2 {
  width: fit-content;
 display: inline-block;
 padding: 12px 20px;
 background-color: var(--bg-tem-2);
 border: 2px solid var(--bg-tem-2);
 border-radius: 0px; 
 transition: all 0.2s ease-in;
 position: relative;
 overflow: hidden;
 font-size: 13px;
 color: #fff;
 
 z-index: 1;
}

.btn-2:before {
 content: "";
 position: absolute;
 left: 50%;
 transform: translateX(-50%) scaleY(1) scaleX(1.25);
 top: 100%;
 width: 140%;
 height: 180%;
 background-color: var(--black);
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}

.btn-2:after {
 content: "";
 position: absolute;
 text-align: center;
 left: 55%;
 transform: translateX(-50%) scaleY(1) scaleX(1.45);
 top: 180%;
 width: 160%;
 height: 190%;
 background-color: var(--black);
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}

.btn-2:hover {
 color: #ffffff;
 
}

.btn-2:hover:before {
 top: -35%;
 background-color: var(--black);
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-2:hover:after {
 top: -45%;
 background-color: var(--black);
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-1 {
  background:var(--bg-tem-2);   
  display: inline-flex;
  position: relative;    
  color:#fff;    
  text-transform: uppercase; 
  text-align: center;
  border:  2px solid #fff;
  overflow: hidden;
  justify-content: center;
  z-index: 1;
}
.btn-1::after{
  background-color: var(--black);  
  backface-visibility: hidden;
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 102%;
  left: 0;
  position: absolute;
  top: -2px;
  transform: translateZ(0);
  transition: clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-clip-path 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  border-radius: 0px;
  z-index: -1;
}
.btn-1:hover{
  outline: none;
  box-shadow: none;
  color: #fff;
}
.btn-1:hover:after{
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}
@media screen and (min-width: 575px){

}

@media screen and (max-width: 575px){
 .top-contact-list{
  justify-content: center;
 }
 .title-box{
  text-align:center;
 }
 
 .hwader-box{
  flex-direction: column;
  gap: 0;
 }
 .slog,.hero-title{
  text-align: center;
 }
 .about-tumb{
    margin: 28px 0px;
 }
 .about-tumb::before, .about-tumb::after{
    height: 13px;
    width: 50%;

 }
 .about-tumb::before{
  top: -28px;
  right: 0;
 }
 .about-tumb::after{
  left: 0;
  bottom: -30px;
 }
 .about-list li{
  flex-direction: column;
  align-items: center;
 }
 .box-video video{
  height: 320px;
 }
 .servis-element{
  flex-direction:  column;
 }
 .servis-cart{
  flex: auto;
 }
 .col{
  padding: 0;
 }
 .plan-name{
  font-size: 24px;
 }
 .plan-price{
  font-size: 28px;
 }
 .plan-list{
  padding: 28px 19px;
 }
 .team-img{
  width: 150px;
  height: 150px;
 }
 .feature-image,.feature-image img{
    height: auto;
  }
  .contact-info_title{
    font-size: 20px;
  }
  .media-body{
    text-align: center;
  }
  .contact-info{
    padding: 28px 20px;
    flex-direction:  column;
  }
  .input-group{
    flex-direction: column;
  }
  .pad-sect{
    padding: 60px 0;
  }
  .footer-bottom{
    justify-content: center;
  }
  .question.current-step,.form-box {
    padding: 28px 12px;
  }
  .question h3,.text-kwiz{
    font-size: 20px;
  }
  .options label {
    font-size: 17px;
  }
   .contact-thumb{
    padding: 0;
   }
   .blog-content{
    margin-bottom: 12px;
    margin-right: 19px;
    margin-left: 19px;
    padding: 19px;
   }
   .blog-title a{
    font-size: 17px;
   }
   .hero-wrapper{
    padding-top: 250px;
   }
   .base-btn{
    width: 100%;
   }
  
} 
@media screen and (min-width: 768px){
  .col-md-6{
    width: 50%;
    flex: 0 0 auto;
  }
}  


@media screen and (max-width: 768px){
 .hwader-box{
  justify-content: center;
 }
 .feature-image {
  float: none;
  width:100%;
  margin-right: 0;
  margin-left: 0; 
    
}
.feature-content{
  padding-top: 20px;
}
.kwiz-wrapper{
  width: 100%;
}
}

@media (min-width: 768px) and (max-width: 1199px){
  

 
}
@media (min-width: 992px){
.col-lg-4{
  width: 33.3333333333%;
  flex: 0 0 auto;
}

}
@media (max-width: 992px){
.blok-row{
  flex-direction:  column;
}
.hero-img-box{
  margin: 28px auto;
}
.hero-img-box img{
  height: 350px;
}
.servis-list{
  flex-direction:  column;
}
.map-box,.about-img,.contact-thumb {
  height: 320px;
}
.blog-group-box{
  flex-direction: column;
}

 
}
@media (max-width: 1199px){
 
}



@media (min-width: 1200px){
 .container-section{
  max-width: 1170px;
 }
 .hero-img-box::before,.hero-img-box::after{
  inset: 0px;
 }
 .hero-wrapper {
      padding: 220px 0 152px;
 }
 
}