.dandik,
.bamdik {
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.dandik:hover,
.bamdik:hover {
  color: var(--white);
  background: var(--heading);
}
.dandik {
  top: 50%;
  right: -15px;
}
.bamdik {
  top: 50%;
  left: -15px;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .dandik {
    right: 0px;
  }
  .bamdik {
    left: 0px;
  }
}
.service-card {
  margin-bottom: 30px;
  background: var(--white);
  text-align: center;
  padding: 60px 30px 50px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.service-card:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.service-card:hover::after {
  -webkit-clip-path: circle(75%);
  clip-path: circle(75%);
}
.service-card:hover i {
  visibility: hidden;
}
.service-card:hover h4,
.service-card:hover p {
  color: var(--white);
}
.service-card::after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--primary);
  -webkit-clip-path: circle(20% at 100% 0%);
  clip-path: circle(20% at 100% 0%);
  z-index: -1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.service-card h3 {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
  position: absolute;
  top: 5px;
  right: 5px;
}
.service-card span {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 80px;
  line-height: 80px;
  color: var(--service-icon);
}
.service-card i {
  color: var(--primary);
  font-size: 50px;
  line-height: 50px;
  display: inline-block;
  margin-bottom: 18px;
}
.service-card h4 {
  color: var(--heading);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 35px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.service-card p {
  margin-bottom: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.service-card a {
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 8px;
  color: var(--primary);
  background: var(--white);
  text-transform: capitalize;
}
.service-ghape {
  margin-top: -80px;
}
@media (max-width: 991px) {
  .service-ghape {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .service-card {
    padding: 50px 14px 55px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-card {
    padding: 60px 34px 65px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card {
    padding: 60px 30px 65px;
  }
}
.resume-card {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
  padding: 50px 45px 45px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 8px 35px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 35px 0px rgba(0, 0, 0, 0.15);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.resume-card:hover {
  background: var(--primary);
}
.resume-card:hover .resume-icon i {
  color: var(--white);
}
.resume-card:hover .resume-meta h4,
.resume-card:hover .resume-meta h5 {
  color: var(--white);
}
.resume-card:hover .resume-meta h6 {
  background: var(--white);
}
.resume-card:hover .resume-text p {
  color: var(--white);
}
.resume-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.resume-icon i {
  font-size: 50px;
  color: var(--primary);
  margin-right: 30px;
  margin-top: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.resume-meta h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.resume-meta h5 {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.resume-meta h6 {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  text-transform: capitalize;
  color: var(--primary);
  background: rgba(216, 83, 43, 0.15);
  margin-bottom: 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
@media (max-width: 575px) {
  .resume-card {
    padding: 35px 25px;
  }
  .resume-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .resume-icon i {
    margin: 0px 0px 20px 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .resume-card {
    padding: 35px 25px;
  }
  .resume-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .resume-icon i {
    margin: 0px 0px 20px 0px;
  }
}
.refer-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.refer-img {
  border-radius: 50%;
  border: 5px solid var(--primary);
  -webkit-box-shadow: 0px 0px 60px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 60px 3px rgba(0, 0, 0, 0.15);
}
.refer-img img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 5px solid var(--white);
}
.refer-content {
  width: 100%;
  text-align: center;
  padding: 35px 45px;
  border-radius: 8px;
  background: var(--white);
  -webkit-box-shadow: 0px 0px 60px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 60px 3px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  position: relative;
}
.refer-content h4 {
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.refer-content p {
  font-weight: 500;
}
.refer-content p span {
  display: block;
}
.refer-contact {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 105px;
}
.refer-contact li {
  display: inline-block;
  margin: 0px 5px;
}
.refer-contact .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.port-card {
  margin: 0px 15px;
  border-radius: 8px;
  position: relative;
}
.port-card:hover .port-oly {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center;
  transform-origin: center;
}
.port-img img {
  width: 100%;
  border-radius: 8px;
}
.port-oly {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.port-btn {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 160px;
}
.port-btn .btn {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 25px;
  margin: 12px 0px;
  border-radius: 5px;
  letter-spacing: 0.3px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.port-btn .btn-inline {
  color: var(--primary);
  background: var(--white);
}
.port-btn .btn-inline:hover {
  color: #fff;
  background: var(--primary);
}
.port-text {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  padding: 0px 25px;
}
.port-text h6 {
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  margin-left: 15px;
  position: relative;
}
.port-text h6::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -15px;
  width: 3px;
  height: 100%;
  background: var(--primary);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .port-card {
    width: 270px;
    margin: 0px 8px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .port-part .container {
    max-width: 570px;
  }
  .port-card {
    margin: 0px 8px;
  }
}
.skills-card {
  background: var(--white);
  text-align: center;
  border-radius: 5px;
  padding: 30px 0px 0px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.15);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.skills-card:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  background: var(--primary);
}
.skills-card:hover .skills-img {
  background: var(--white);
  -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
}
.skills-card:hover .skills-img img {
  height: 35px;
}
.skills-card:hover .skills-name p {
  color: var(--white);
}
.skills-img {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  margin: 0px auto 30px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.skills-img img {
  width: auto;
  height: 60px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.skills-name {
  border-top: 1px solid var(--border);
}
.skills-name p {
  color: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 0px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
@media (max-width: 767px) {
  .skills-parent .col-6 {
    padding: 0px 10px;
  }
  .skills-card {
    margin-bottom: 20px;
  }
}
.counter-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.counter-card i {
  font-size: 70px;
  line-height: 70px;
  margin-right: 25px;
}
.count-1 i {
  background: -webkit-linear-gradient(#38ef7d, #35df76);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.count-2 i {
  background: -webkit-linear-gradient(#fc4a1a, #f7b733);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.count-3 i {
  background: -webkit-linear-gradient(#add100, #a1c004);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter-info h3 {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 13px;
}
.counter-info p {
  font-size: 18px;
  color: var(--white);
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .counter-card {
    width: 235px;
    margin: 0 auto 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .counter-card i {
    font-size: 55px;
    line-height: 55px;
  }
  .count-3 {
    margin-bottom: 0px;
  }
  .counter-info h3 {
    font-size: 35px;
    line-height: 43px;
    margin-bottom: 8px;
  }
  .counter-info p {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .counter-card i {
    font-size: 50px;
    line-height: 50px;
  }
  .counter-info h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0px;
  }
  .counter-info p {
    font-size: 14px;
  }
}
.pricing-card {
  text-align: center;
  border-radius: 10px;
  margin: 0px 8px;
  padding: 30px 50px 30px;
  -webkit-box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.pricing-card:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  background: var(--primary);
}
.pricing-card:hover h3,
.pricing-card:hover h4,
.pricing-card:hover p,
.pricing-card:hover .pricing-list li {
  color: var(--white);
}
.pricing-card:hover p::before {
  background: var(--light-white);
}
.pricing-card:hover .pricing-btn .btn-inline {
  color: var(--primary);
  background: var(--white);
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 80px;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.pricing-card h3::before {
  position: absolute;
  content: "";
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  height: 130px;
  background: var(--pricing-gdnt);
  z-index: -1;
  border-radius: 30px 0px 50% 50%;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}
.pricing-card h4 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -2px;
  color: var(--heading);
  margin-bottom: 3px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.pricing-card p {
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 45px;
  position: relative;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.pricing-card p::before {
  position: absolute;
  content: "";
  bottom: -23px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: var(--border);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.pricing-list {
  text-align: left;
  list-style: disc;
  margin-bottom: 35px;
  display: inline-block;
}
.pricing-list li {
  color: var(--text);
  text-transform: capitalize;
  padding-left: 10px;
  margin-bottom: 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.pricing-list li:last-child {
  margin-bottom: 0px;
}
.pricing-btn .btn {
  color: var(--white);
  background: var(--heading);
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.pricing-recom {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  background: var(--primary);
}
.pricing-recom:hover {
  -webkit-transform: scale(1.1) translateY(-3px);
  transform: scale(1.1) translateY(-3px);
}
.pricing-recom h3,
.pricing-recom h4,
.pricing-recom p,
.pricing-recom .pricing-list li {
  color: var(--white);
}
.pricing-recom p::before {
  background: var(--light-white);
}
.pricing-recom .pricing-btn .btn-inline {
  color: var(--primary);
  background: var(--white);
}
@media (max-width: 991px) {
  .pricing-card {
    margin: 0 auto 50px;
    padding: 30px 30px;
  }
  .pricing-recom {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .pricing-recom:hover {
    -webkit-transform: scale(1) translateY(-3px);
    transform: scale(1) translateY(-3px);
  }
}
@media (min-width: 400px) and (max-width: 767px) {
  .pricing-card {
    width: 350px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing-btn .btn {
    font-size: 13px;
    padding: 16px 23px;
  }
}
.testi-card {
  margin: 0px 15px;
  padding: 45px 30px 40px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: var(--testi-card);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.testi-card:hover {
  background: var(--primary);
}
.testi-card:hover .testi-quote p,
.testi-card:hover .testi-meta h5,
.testi-card:hover .testi-meta p {
  color: var(--white);
}
.testi-card i {
  position: absolute;
  bottom: 10px;
  right: -50px;
  font-size: 150px;
  color: var(--testi-star);
}
.testi-quote {
  margin-bottom: 30px;
}
.testi-quote p {
  font-size: 18px;
  color: var(--text);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.testi-meta h5 {
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--heading);
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.testi-meta p {
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--heading);
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.testi-meta a {
  border-radius: 50%;
  border: 2px solid var(--primary);
}
.testi-meta a img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--white);
}
.blog-card {
  border-radius: 10px;
  margin-bottom: 50px;
}
.blog-card:hover .blog-oly {
  background: rgba(0, 0, 0, 0.3);
}
.blog-card:hover .blog-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-card:hover .blog-text h4 a {
  color: var(--primary);
}
.blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 22px;
}
.blog-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.blog-oly {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.blog-oly p {
  position: absolute;
  top: 25px;
  left: 25px;
  padding: 4px 12px;
  background: var(--primary);
  border-radius: 5px;
  color: var(--white);
  font-size: 13px;
  line-height: 22px;
  text-transform: capitalize;
}
.blog-content {
  padding: 0px 15px;
}
.blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 12px;
}
.blog-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.blog-meta li i {
  margin-right: 8px;
}
.blog-meta li p {
  font-size: 15px;
  text-transform: capitalize;
}
.blog-text {
  margin-bottom: 20px;
}
.blog-text h4 {
  font-weight: 500;
}
.blog-text h4 a {
  color: var(--heading);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.blog-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blog-link li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.blog-link li i {
  font-size: 18px;
  margin-right: 10px;
}
.blog-link li p {
  font-size: 15px;
  text-transform: capitalize;
}
.blog-link li a {
  font-size: 13px;
  line-height: 20px;
  padding: 6px 25px;
}
@media (max-width: 767px) {
  .blog-card {
    margin-bottom: 45px;
  }
  .blog-text h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card {
    margin-bottom: 45px;
  }
  .blog-text h4 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-text h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
.blog-suggest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.suggest-img a img {
  width: 100px;
  height: auto;
  border-radius: 10px;
  margin-right: 15px;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}
.suggest-title {
  margin-bottom: 18px;
}
.suggest-title h6 {
  font-weight: 600;
  line-height: 24px;
}
.suggest-title h6 a {
  color: var(--heading);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.suggest-title h6 a:hover {
  color: var(--primary);
}
.suggest-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.suggest-date i {
  margin-right: 10px;
}
.suggest-date p {
  font-size: 14px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .suggest-title {
    margin-bottom: 8px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .suggest-title {
    margin-bottom: 10px;
  }
}
.contact-address {
  text-align: center;
}
.contact-address:hover .address-icon i {
  color: var(--white);
  background: var(--primary);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.address-icon {
  margin-bottom: 28px;
}
.address-icon i {
  width: 48px;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--white);
  background: var(--heading);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.address-text h4 {
  line-height: 20px;
  margin-bottom: 22px;
  text-transform: capitalize;
}
.address-text p {
  color: var(--heading);
  line-height: 24px;
}
.address-text p span {
  display: block;
  margin-top: 8px;
}
.contact-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .contact-part .mb-5 {
    margin-bottom: 10px !important;
  }
  .contact-address {
    margin-bottom: 30px;
  }
  .contact-img {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .address-text p {
    font-size: 15px;
  }
}
.banner-part {
  background: var(--banner-bg);
  overflow: hidden;
  position: relative;
}
.banner-part .container {
  position: relative;
}
.banner-bg {
  background: url(../../images/assets/banner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0px;
}
.circle-shape {
  position: absolute;
  top: 93px;
  right: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
  height: auto;
  opacity: 0.5;
  -webkit-animation: hasan 4s linear infinite;
  animation: hasan 4s linear infinite;
}
@-webkit-keyframes hasan {
  0% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
}
@keyframes hasan {
  0% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
}
.star-shape {
  position: absolute;
  right: 0px;
  bottom: -135px;
  width: auto;
  height: 120px;
  opacity: 0.5;
  -webkit-animation: miron 4s linear infinite;
  animation: miron 4s linear infinite;
}
@-webkit-keyframes miron {
  0% {
    -webkit-transform: rotate(180deg) scale(1.2);
    transform: rotate(180deg) scale(1.2);
  }
  50% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(-180deg) scale(1.2);
    transform: rotate(-180deg) scale(1.2);
  }
}
@keyframes miron {
  0% {
    -webkit-transform: rotate(180deg) scale(1.2);
    transform: rotate(180deg) scale(1.2);
  }
  50% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  100% {
    -webkit-transform: rotate(-180deg) scale(1.2);
    transform: rotate(-180deg) scale(1.2);
  }
}
.banner-img img {
  width: auto;
  height: 450px;
}
.banner-icon {
  margin-bottom: 45px;
}
.banner-icon li {
  display: inline-block;
  margin-right: 18px;
}
.banner-text {
  margin-bottom: 55px;
}
.banner-text span {
  font-size: 22px;
  font-weight: 500;
  color: var(--heading);
  text-transform: capitalize;
  margin-bottom: 13px;
}
.banner-text h1 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .banner-bg {
    padding: 40px 0px 50px;
    background-position: right;
  }
  .circle-shape {
    display: none;
  }
  .banner-img {
    margin-bottom: 45px;
  }
  .banner-img img {
    width: 100%;
    height: auto;
  }
  .banner-content {
    text-align: center;
  }
  .banner-icon li {
    margin: 0px 5px;
  }
  .banner-text {
    margin-bottom: 35px;
  }
  .banner-text h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-img img {
    width: 100%;
    height: auto;
  }
  .banner-icon li {
    margin-right: 15px;
  }
  .banner-text {
    margin-bottom: 40px;
  }
  .banner-text h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .banner-btn .btn {
    padding: 14px 22px;
    margin-right: 10px;
  }
  .banner-btn .btn:nth-child(2) {
    margin-right: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-img img {
    width: 100%;
    height: auto;
  }
}
.resume-cate-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.resume-cate-btn li {
  margin: 15px 25px;
}
.cate-btn {
  border: none;
  width: 130px;
  padding: 30px 0px;
  border-radius: 8px;
  text-align: center;
  color: var(--text);
  background: var(--white);
  -webkit-box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.2);
}
.cate-btn i {
  font-size: 22px;
  margin-bottom: 10px;
}
.cate-btn span {
  display: block;
  text-transform: capitalize;
}
.cate-btn.active {
  color: var(--white);
  background: var(--primary);
}
@media (max-width: 767px) {
  .resume-heading h2 {
    width: 100%;
  }
  .resume-cate-btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .resume-cate-btn li {
    margin: 10px;
  }
  .cate-btn {
    width: 107px;
    padding: 25px 0px;
  }
  .cate-btn i {
    font-size: 20px;
  }
  .cate-btn p {
    font-size: 15px;
  }
}
.about-summery {
  margin-bottom: 50px;
}
.about-summery h3 {
  font-weight: 600;
  margin-bottom: 38px;
}
.about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 55px;
}
.about-list ul:first-child {
  margin-right: 80px;
}
.about-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.about-list li:last-child {
  margin-bottom: 0px;
}
.about-list li h6 {
  text-transform: capitalize;
  font-weight: 600;
  margin-right: 15px;
}
.about-list li p {
  font-weight: 500;
}
.about-img img {
  width: auto;
  height: 450px;
  margin-left: 50px;
}
.exper-part,
.edu-part,
.refer-part {
  padding: 80px 0px 0px;
  display: none;
}
@media (max-width: 767px) {
  .about-summery {
    margin-bottom: 30px;
  }
  .about-summery h3 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 18px;
  }
  .about-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .about-list ul {
    margin-bottom: 18px;
  }
  .about-img img {
    display: none;
  }
  .refer-card {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .refer-content {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-img img {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-list ul:nth-child(1) {
    margin-right: 45px;
  }
  .about-list ul li h6 {
    font-size: 15px;
    margin-right: 8px;
  }
  .about-list ul li p {
    font-size: 15px;
  }
  .about-img img {
    width: 100%;
    height: auto;
    margin-left: 0px;
  }
  .refer-img img {
    width: 215px;
    height: 215px;
  }
  .refer-content {
    padding: 35px 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .about-img img {
    width: 100%;
    height: auto;
    margin-left: 0px;
  }
}
.service-part .section-heading {
  margin-bottom: 130px;
}
.service-btn {
  text-align: center;
}
@media (max-width: 991px) {
  .service-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .service-part .section-heading {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-part .section-heading {
    margin-bottom: 40px;
  }
}
.coding-content h3 {
  color: #555;
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 20px;
}
.coding-content h3 span {
  font-weight: 700;
}
.coding-content p {
  width: 420px;
  margin-bottom: 45px;
}
.coding-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 25px;
}
.coding-list li:last-child {
  margin-bottom: 0px;
}
.coding-list li p {
  font-size: 18px;
}
.coding-round {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 25px;
  background: var(--primary);
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.3);
  position: relative;
}
.coding-round::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
}
.coding-img img {
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 575px) {
  .coding-content h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .coding-content p {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .coding-content h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
.port-slider:hover .dandik,
.port-slider:hover .bamdik {
  visibility: visible;
  opacity: 1;
}
.port-slider .dandik,
.port-slider .bamdik {
  right: 33%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
}
.port-slider .bamdik {
  left: 33%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
}
.port-show-btn {
  text-align: center;
  margin-top: 60px;
}
.discuss-part {
  -webkit-transform: translateY(42%);
  transform: translateY(42%);
}
.discuss-oly {
  background: var(--primary);
  border-radius: 10px;
  padding: 0px 15px;
  -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
}
.discuss-bg {
  background: url(../../images/assets/intro.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 70px;
  border-radius: 10px;
}
.discuss-content h3 {
  color: var(--white);
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 22px;
}
.discuss-content p {
  color: var(--white);
  font-size: 18px;
}
.discuss-btn {
  text-align: right;
}
.discuss-btn .btn {
  font-size: 16px;
  padding: 16px 40px;
  margin-top: 25px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}
.discuss-btn .btn-inline {
  color: var(--primary);
  background: var(--white);
}
.discuss-btn .btn-inline:hover {
  color: var(--white);
  background: var(--heading);
}
@media (max-width: 767px) {
  .discuss-part {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  .discuss-bg {
    padding: 45px 15px;
  }
  .discuss-content {
    text-align: center;
    margin-bottom: 15px;
  }
  .discuss-content h3 {
    font-size: 35px;
    line-height: 43px;
  }
  .discuss-btn {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .discuss-part {
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  .discuss-content p {
    font-size: 17px;
  }
  .discuss-btn .btn {
    margin-top: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .discuss-part {
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
  }
}
.counter-part {
  background: var(--heading);
}
.counter-bg {
  background: url(../../images/assets/counter.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 205px 0px 90px;
}
@media (max-width: 767px) {
  .counter-bg {
    padding: 100px 0px 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .counter-bg {
    padding: 120px 0px 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .counter-bg {
    padding: 180px 0px 90px;
  }
}
.pricing-part .section-heading {
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .pricing-part .section-heading {
    margin-bottom: 50px;
  }
}
.faq-part {
  padding: 150px 0px 0px;
}
.faq-child {
  margin-bottom: 30px;
  background: var(--white);
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}
.faq-child:hover .faq-que button {
  color: var(--primary);
}
.faq-child:last-child {
  margin-bottom: 0px;
}
.faq-que {
  cursor: pointer;
  padding: 18px 25px;
}
.faq-que button {
  border: none;
  outline: none;
  background: none;
  text-align: left;
  color: var(--heading);
  font-size: 16px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.faq-ans p {
  font-size: 14px;
  line-height: 26px;
  padding: 20px 25px;
  border-top: 1px solid var(--border);
}
@media (max-width: 767px) {
  .faq-part {
    padding: 20px 0px 0px;
  }
  .faq-parent {
    margin-bottom: 30px;
  }
  .faq-heading h2 {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq-part {
    padding: 30px 0px 0px;
  }
}
.testi-btn {
  text-align: center;
  margin-top: 50px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .testi-part .container {
    max-width: 570px;
  }
}
.blog-btn {
  text-align: center;
  margin-top: 20px;
}
