* {
  box-sizing: border-box;
}
@font-face {
  font-family: "Raleway Regular";
  src: url("../fonts/Raleway-Regular.ttf");
}
@font-face {
  font-family: "Raleway Light";
  src: url("../fonts/Raleway-Light.ttf");
}
@font-face {
  font-family: "Raleway Bold";
  src: url("../fonts/Raleway-Bold.ttf");
}
@font-face {
  font-family: "Montserrat Regular";
  src: url("../fonts/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "Montserrat Light";
  src: url("../fonts/Montserrat-Light.ttf");
}
@font-face {
  font-family: "Montserrat Bold";
  src: url("../fonts/Montserrat-Bold.ttf");
}
body,
html {
  margin: 0;
  position: relative;
  font-family: "Montserrat Regular" !important;
}
:root {
  --darkgreen: #3c6255;
  --lightgreen: #61876e;
  --lightestgreen: #58ad73;
  --darkblue: #192630;
  --lightblue: #354a5a;
}
button:hover {
  background-color: #458d5c;
  transition: 0.4s;
}
a:hover,
button:hover {
  cursor: pointer;
}
.header {
  position: sticky;
  transition: 0.4s;
  z-index: 99999;
  background-color: #fff;
  top: 3%;
  left: 3%;
  width: 94%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 100px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-links {
  font-size: 16px;
  color: #00031a;
  text-decoration: none;
}
.active-header {
  color: black;
  font-family: "Montserrat Bold";
}
.links {
  width: 80%;
  text-align: right;
  display: flex;
  justify-content: right;
  gap: 50px;
}
.links a {
  font-size: 16px;
  color: #00031a;
  text-decoration: none;
}
.line {
  object-fit: scale-down;
}
.home {
  margin-top: 50px;
}
.landing-home {
  width: 94%;
  margin-left: 3%;
  border-radius: 48px;
  background-color: var(--lightestgreen);
  padding: 5% 7% 5% 7%;
  position: relative;
}
.landing-home-title {
  font-size: 44px;
  color: #fff;
  width: 30%;
  margin-top: 0;
}
.landing-home-description {
  font-size: 18px;
  width: 30%;
  color: #fff;
  padding-left: 10px;
  font-family: "Montserrat Light";
  border-left: 2px solid rgba(255, 255, 255, 0.4);
}
.pattern {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  object-fit: scale-down;
}
.not-found {
  display: flex;
  height: 60vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 32%;
}
.not-found-title {
  font-size: 40px;
  color: #000000;
  line-height: 20px;
}
.not-found-text {
  font-size: 18px;
  color: #000000;
  text-align: center;
}
.button-404 {
  background: #354a5a;
  border-radius: 10px;
  padding: 12px 100px;
  gap: 10px;
  color: white;
  font-size: 16px;
}
.small-circle {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100%;
  background-color: #fff;
  width: 16px;
  height: 16px;
}
.medium-circle {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 5%;
  top: 45%;
  background-color: #fff;
  border-radius: 100%;
}
.big-circle {
  position: absolute;
  width: 26px;
  height: 26px;
  left: 45%;
  top: 50%;
  background-color: #fff;
  border-radius: 100%;
}
.home-landing-image {
  position: absolute;
  right: 10%;
  bottom: -10%;
  object-fit: cover;
  height: 100%;
  border-radius: 30px;
}
.home-landing-button {
  background-color: var(--lightblue);
  color: #fff;
  padding: 12px 100px 12px 100px;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
  font-family: "Montserrat Light";
}
.services-home {
  margin-top: 8%;
  padding-inline: 7%;
}
.services-entry {
  font-size: 14px;
  color: #000031;
  text-decoration: underline;
  text-decoration-color: #333360;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
  font-family: "Montserrat Light";
}
.services-home {
  display: flex;
  gap: 10%;
  margin-bottom: 4%;
}
.left-services {
  width: 45%;
}
.services-header {
  font-size: 42px;
  color: #00031a;
  font-family: "Raleway Regular";
}
.services-paragraph {
  font-size: 16px;
  font-family: "Montserrat Regular";
  color: #000031;
  width: 80%;
}
.right-services {
  width: 45%;
}
.service-home {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  padding-left: 5%;
  border-radius: 20px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  height: 130px;
  position: relative;
}
.green-right {
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 20% 100%);
  width: 26.5%;
  height: 100%;
  position: absolute;
  right: 0;
  transition: 1s;
  background-color: #58ad73;
  border-radius: 20px;
  border-bottom-left-radius: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.green-right p {
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  transition-delay: 0.1s;
}
.hidden-text {
  color: #fff !important;
}
.service-home:hover .green-right {
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  border-bottom-left-radius: 20px;
}
.service-home:hover .green-right p {
  visibility: visible;
  opacity: 1;
}

.second-g {
  width: 31.5%;
}
.third-g {
  width: 37.8%;
}
.fourth-g {
  width: 45%;
}
.fifth-g {
  width: 54%;
}
.sixth-g {
  width: 65%;
}

.service-home p {
  font-size: 14px;
  text-align: left;
  color: #00031a;
  padding-inline: 5%;
  font-family: "Montserrat Regular";
}

.stats {
  padding-inline: 7%;
  margin-top: 5%;
  margin-bottom: 5%;
}
.stats-main {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}
.left-stats {
  width: 47.5%;
}

.stats-header {
  font-family: "Raleway Regular";
  font-size: 42px;
  color: #00031a;
}
.w80 {
  width: 80%;
}
.right-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  width: 47.5%;
}
.stats-paragraph {
  font-size: 16px;
  color: #00031a;
}
.stat {
  width: 40%;
}
.stat-number {
  font-size: 62px;
  color: var(--lightblue);
  margin-bottom: 0;
  font-family: "Montserrat Bold";
}
.blog-home {
  padding-inline: 7%;
}
.blog-welcome-title {
  font-size: 42px;
  color: var(--lightblue);
  font-family: "Raleway Bold";
}
.blog-title {
  font-size: 20px;
  color: #00031a;
  font-family: "Montserrat Bold";
}
.blog-wrapper {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}
.blog img {
  width: 100%;
  height: 300px;
  border-radius: 40px;
  object-fit: cover;
}
.blog-description {
  font-size: 16px;
  color: #00031a;
  font-family: "Montserrat Light";
}
.blog {
  width: 48.5%;
}
.contact-part {
  padding-inline: 7%;
  margin-top: 5%;
  padding-bottom: 5%;
}
.input-flex {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}
.input {
  width: 47.5%;
}
input {
  width: 100%;
  background-color: #f2f2f2;
  border-radius: 10px;
  border: none;
  padding: 15px;
}
textarea {
  width: 100%;
  background-color: #f2f2f2;
  border: none;
  border-radius: 12px;
  height: 100px;
  padding: 15px;
}
.w-100 {
  width: 100%;
}
.contact-header {
  font-size: 42px;
  color: #192630;
  margin-bottom: 0;
  font-family: "Montserrat Bold";
}
.contact-paragraph {
  font-size: 16px;
  color: #192630;
  font-family: "Montserrat Light";
}
.input-header {
  font-size: 14px;
  color: #192630;
}
.home-landing-button:hover {
  background-color: #02421695;
}
.contact-button-footer:hover {
  background-color: #02421695;
}
.contact-button {
  background-color: var(--lightblue);
  color: #fff;
  padding: 12px 100px 12px 100px;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
  font-family: "Montserrat Light";
}
.contact-button-footer {
  background-color: var(--lightblue);
  color: #fff;
  padding: 12px 100px 12px 100px;
  border: none;
  border-radius: 12px;
  margin-top: 20px;
  font-family: "Montserrat Light";
}
.footer {
  display: flex;
  gap: 20%;
  background-color: #58ad73;

  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5% 8% 5% 8%;
}
.footer-section {
  width: 28.3333%;
}
.footer-section:last-child {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer-line {
  width: 20%;
  background-color: #fff;
  height: 3px;
  margin-top: 20px;
}
.footer-text {
  font-size: 16px;
  color: #fff;
  font-family: "Montserrat Light";
}
.c-para {
  color: #22713a;
  font-size: 18px;
}

.logo-contact {
  display: flex;
  gap: 5px;
  color: #fff;
  font-size: 16px;
}
.footer-links {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.landing-about {
  padding-inline: 10%;
  display: flex;
  gap: 5%;
  width: 100%;
  align-items: center;
  height: 85vh;
}
.landing-left-about {
  width: 45%;
  position: relative;
  text-align: left;
}
.landing-right-about {
  width: 45%;
}
.green-absolute {
  position: absolute;
  left: 25%;
  top: -10%;
  width: 60%;
  transform: translateX(-50%);
}
.landing-home-photo {
  position: relative;
  width: 95%;
  margin-left: 40px;
  border-radius: 25px;
}
.small-title-about {
  font-size: 14px;
  color: #00031a;
}
.big-title-about {
  font-size: 42px;
  color: #00031a;
}
.description-about {
  font-size: 16px;
  color: #00031a;
}
.profile-section {
  padding: 5% 10% 5% 10%;
  display: flex;
  gap: 5%;
  width: 100%;
  align-items: center;
  height: auto;
  background: #192630;
}
.profile-picture {
  display: flex;
  width: 30%;
}
.profile-text {
  width: 65%;
}
.profile-desc {
  font-size: 35px;
  color: #fff;
}
.qeli-about {
  width: 100%;
  margin-left: 40px;
}
.third-section-about {
  display: flex;
  width: 100%;
  height: auto;
  padding: 3% 10%;
  justify-content: center;
  flex-direction: column;
}
.third-section-title {
  display: flex;
  align-items: center;
  font-size: 42px;
  color: #00031a;
}
.third-section-text {
  display: flex;
  align-items: center;
  color: #00031a;
  margin-bottom: 4%;
}
.ratings-section {
  width: 100%;
  height: 87vh;
  position: relative;
  background: #192630;
}
.carousel-control-next,
.carousel-control-prev {
  z-index: 99999;
  top: 275px !important;
}
.text-section {
  padding: 10%;
  display: flex;
  gap: 10%;
  align-items: center;
  width: 100%;
  height: 20vh;
}
.rating-title {
  width: 45%;
  font-size: 48px;
  color: #fff;
}
.rating-text {
  width: 45%;
  font-size: 18px;
  color: #fff;
}
/* .slider {
  width: 100%;
  height: 380px;
  padding-top: 32px;
  position: relative;
  overflow: hidden;

  border-radius: 15px;
}
.slide {
  width: 100%;
  position: absolute;
  transition: all 0.5s;
  display: flex;
  gap: 1%;
  padding-inline: 10%;
} */
.card-gjoni {
  background-color: #f5f5f8;
  height: auto;
  width: 33%;
  border-radius: 32px;
  position: relative;
}
/* .slide img {
  object-fit: cover;
} */
.stars img {
  width: 20px;
  height: 20px;
}
.img-text-card {
  display: flex;
  gap: 25px;
  padding-top: 20px;
  justify-content: center;
  position: relative;
  top: -50px;
}
.card-mobile {
  display: none;
}
.pergezime {
  text-align: center;
  font-size: 14px;
  color: #181945;
  padding: 0% 5% 0% 5%;
}

.circular-image {
  width: 88px;
  height: auto;
  object-fit: cover;
  border-radius: 100%;
  border: 5px solid #192630;
}
.carousel-item-flex {
  display: flex !important;
  justify-content: space-between !important;
  gap: 25px;
}
.prev-next {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  position: relative;
  z-index: 10;
}
#carouselExampleControls {
  padding-inline: 10%;
}
.carousel-item-flex {
  padding-top: 50px;
  padding-bottom: 50px;
}
.btn {
  position: absolute;
  width: 40px;
  height: auto;
  padding: 10px;
  border: none;
  border-radius: 50%;
  z-index: 10px;

  cursor: pointer;
  background-color: #fff;
  font-size: 18px;
}

.btn:active {
  transform: scale(1.1);
}

.btn-prev {
  top: 45%;
  left: 2%;
  rotate: 180deg;
}

.btn-next {
  top: 45%;
  right: 2%;
}
.text-header {
  text-align: center;
  font-size: 18px;
  color: #181945;
}

.text-image {
  display: flex;
  position: relative;
  top: -50px;
  flex-direction: column;
}
.stars {
  display: flex;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
}
.slider-mobile {
  display: none;
}
.service-first-section {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: auto;
  flex-direction: column;
  padding: 4% 24% 6% 24%;
}
.service-small-title {
  font-size: 14px;
  color: #00031a99;
  position: relative;
  top: 40px;
}
.services-title {
  font-size: 42px;
  color: #00031a;
  position: relative;
  top: 30px;
}
.services-desc {
  font-size: 16px;
  color: #00031a;
  position: relative;
  margin-top: 25px;
}
.service-vija {
  position: relative;
  top: 40px;
}
.borgir {
  display: none;
}
a {
  text-decoration: none;
}
.blue-tabs {
  width: 100%;
  display: flex;
  gap: 4%;
  row-gap: 40px;
  height: auto;
  padding-inline: 8%;
  flex-wrap: wrap;
}
.service-tab {
  width: 48%;
  background: #192630;
  border-radius: 32px;

  padding: 1% 2% 1% 2%;
}
.service-tab-mobile {
  width: 48%;
  background: #192630;
  border-radius: 32px;

  padding: 1% 2% 1% 2%;
}
.small-number {
  font-size: 18px;
  color: #ffffff;
}
.tab-title {
  font-size: 36px;
  color: #ffffff;
}
.tab-desc {
  font-size: 18px;
  color: #ffffff;
}
.tabvija {
  width: 100%;
  border: none;
}
.service-third-section {
  display: flex;
  padding-inline: 10%;
  gap: 9%;
  width: 100%;
  align-items: center;
  height: auto;
  padding-top: 5%;
  padding-bottom: 15%;
}
.services-left {
  width: 45%;
  position: relative;
  text-align: left;
}
.service-green {
  position: absolute;
  height: auto;
}
.service-image-landing {
  position: relative;
  width: 80%;
  margin-left: 99px;
  top: 90px;
}
.service-right {
  width: 45%;
}
.service-third-title {
  font-size: 42px;
  color: #00031a;
}
.service-third-desc {
  font-size: 16px;
  color: #00031a;
}
.reach-service {
  display: flex;
  background: #354a5a;
  border-radius: 10px;
  color: #fff;
  padding: 12px 64px;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  border: none;
}
.blog-section {
  padding-top: 5%;
  height: auto;
  padding-inline: 10%;
  display: flex;
  width: 100%;
  gap: 3%;
  padding-bottom: 3%;
  row-gap: 30px;
  flex-wrap: wrap;
}
.blog-section-home {
  height: auto;
  display: flex;
  width: 100%;
  gap: 3%;
  row-gap: 8px;
  flex-wrap: wrap;
}

.blog-title {
  font-size: 20px;
  color: #00031a;
  padding: 0% 3% 0 3%;
}
.blog-text {
  font-size: 16px;
  color: #00031a;
  padding: 0% 3% 0 3%;
}
.blog-img {
  width: 100%;
  object-fit: cover;
}
.single-blog {
  display: flex;
  flex-direction: column;
  padding: 5% 10% 5% 10%;
}
.single-blog-title {
  font-size: 48px;
  color: #181945;
  padding-inline: 4%;
}
.blog-first-text {
  font-size: 16px;
  color: #000000;
  line-height: 32px;
  padding-inline: 4%;
}
.single-blog-img {
  width: 100%;
  object-fit: cover;
  border-radius: 2%;
}
.contact-us {
  padding-inline: 20%;
  padding-top: 4%;
  padding-bottom: 4%;
}
.contact-single {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
  padding-bottom: 3%;
}
.contact-first-text {
  font-size: 16px;
  color: #192630;
}
.contact-first-title {
  font-size: 42px;
  color: #192630;
  margin-bottom: 20px;
}
.single-contact-input {
  width: 47.5%;
}
.single-contact-input input {
  width: 100%;
  background-color: #f2f2f2;
  border: none;
  border-radius: 10px;
  padding: 15px 20px 15px 20px;
}
.contact-header-msg {
  color: #525252;
  font-size: 18px;
  margin-bottom: 22px;
  font-family: "Inter Regular";
  text-align: center;
  width: 100%;
}
textarea {
  width: 100%;
  background-color: #f2f2f2;
  border: none;
  border-radius: 10px;
  padding: 15px 20px 15px 20px;
}
.w-100 {
  width: 100%;
}
.submit {
  padding: 12px 100px;
  gap: 10px;
  background: #354a5a;
  border-radius: 10px;
  margin-top: 3%;
  border: none;
  color: #ffffff;
}
.blue-section-homepage {
  display: flex;
  background-color: #192630;
  height: auto;
  gap: 5%;
  width: 100%;
  align-items: center;
}
.blue-section-left {
  width: 45%;
  padding: 4% 3% 4% 15%;
}
.blue-section-right {
  width: 45%;
  padding: 4% 11% 4% 2%;
}
.blue-section-title {
  font-size: 36px;
  color: #ffffff;
}
.blue-section-desc {
  font-size: 16px;
  color: #ffffff;
}
.hide-desktop {
  display: none !important;
}
.hide-mobile {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .landing-about {
    padding-inline: 10%;
    display: flex;
    gap: 5%;
    width: 100%;
    align-items: center;
    height: auto;
    flex-direction: column;
  }
  .hide-desktop {
    display: block !important;
  }
  .hide-mobile {
    display: none !important;
  }
  .landing-home-title {
    font-size: 32px;
    width: 100%;
  }
  .small-circle,
  .medium-circle,
  .big-circle {
    display: none;
  }
  .landing-home-description {
    width: 100%;
  }
  .services-home {
    flex-direction: column;
  }
  .links {
    flex-direction: column;
    text-align: left;
    margin-top: 20px;
    gap: 20px;
  }
  .line {
    display: none;
  }
  .not-found {
    display: flex;
    height: 60vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
    padding-inline: 5px;
  }
  .not-found-title {
    font-size: 25px;
    color: #000000;
    line-height: 20px;
  }
  .not-found-text {
    font-size: 15px;
    color: #000000;
    text-align: center;
  }
  .services-paragraph {
    width: 100%;
  }
  .button-404 {
    background: #354a5a;
    border-radius: 10px;
    padding: 7px 64px;
    gap: 10px;
    color: white;
    font-size: 14px;
  }
  .home {
    margin-top: 0%;
  }
  .footer-section {
    width: 100%;
  }
  .footer-text {
    width: 100%;
  }
  .left-stats,
  .right-stats {
    width: 100%;
  }
  .contact-button-footer {
    width: 100%;
  }
  .stat {
    width: 47.5%;
  }
  .right-stats {
    flex-direction: row;
  }
  .stats-header {
    width: 100%;
  }
  .stat-number {
    font-size: 32px;
  }
  .stats-paragraph {
    width: 100%;
  }
  .blue-section-left {
    padding: 0;
    margin-top: 5%;
  }
  .blue-section-right {
    padding-inline: 5%;
    width: 100%;
  }
  .left-services,
  .right-services {
    width: 100%;
  }
  .hide-mobile-flex {
    display: none !important;
  }
  .home-landing-image {
    height: 50vh;
    width: 100%;
    left: auto;
    right: auto;
    position: relative;
    margin-top: 50px;
  }
  .landing-home {
    border-radius: 0;
    width: 100%;
    margin-left: 0;
  }
  .blue-section-homepage {
    flex-direction: column;
  }
  .blue-section-homepage img {
    width: 100%;
  }
  .stars {
    display: flex;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
  .header {
    display: block;
    padding: 0;
    height: 90px;
    padding-top: 25px;
    padding-left: 15px;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 0;
  }
  .header .logo {
    width: 50%;
  }
  .stats-main {
    flex-direction: column;
  }
  .footer {
    flex-direction: column;
  }
  .contact-us {
    padding-inline: 10%;
  }
  .borgir {
    display: block;
    position: absolute;
    top: 45px;
    right: 15px;
    transform: translateY(-50%);
  }
  .submit {
    width: 100%;
  }
  .landing-left-about {
    width: 100%;
    margin-top: 30%;
    position: relative;
    text-align: center;
  }
  .card-gjoni {
    width: 100%;
  }
  .landing-right-about {
    width: 100%;
  }
  .profile-section {
    padding: 10% 10% 5% 10%;
    display: flex;
    gap: 5%;
    width: 100%;
    align-items: center;
    height: auto;
    background: #192630;
    flex-direction: column;
  }
  .single-contact-input {
    width: 100%;
  }
  .blog-first-text {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    padding-inline: 4%;
  }
  .qeli-about {
    width: 100%;
    margin-left: 0%;
  }
  .service-home p {
    font-size: 11px;
    color: #00031a;
    font-family: "Montserrat Regular";
  }
  .profile-picture {
    display: flex;
    width: 100%;
  }
  .profile-desc {
    font-size: 24px;
    color: #fff;
  }
  .profile-text {
    width: 100%;

    text-align: center;
  }
  .vija-profile {
    width: 60%;
  }
  .home-landing-button {
    width: 100%;
  }
  .third-section-about {
    display: flex;
    width: 100%;
    height: auto;
    padding-inline: 10%;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 7%;
  }
  .ratings-section {
    height: auto;
    padding-bottom: 20%;
  }
  .text-section {
    padding: 10%;
    display: flex;
    gap: 10%;
    align-items: center;
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .rating-title {
    width: 100%;
    font-size: 32px;
    color: #fff;
    text-align: center;
  }
  .rating-text {
    width: 100%;
    font-size: 14px;
    color: #fff;
    text-align: center;
  }

  .slider {
    display: none;
  }

  .prev-next {
    display: none;
  }
  .card-mobile {
    background-color: #f5f5f8;
    height: auto;
    width: 33%;
    border-radius: 32px;
  }
  .card-mobile {
    background-color: #f5f5f8;
    height: auto;
    display: block;

    width: 100%;
    border-radius: 32px;
  }
  .small-title-about {
    margin-bottom: 0;
    margin-top: 50px;
  }
  .service-first-section {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding: 5% 10% 5% 10%;
    flex-direction: column;
  }
  .blue-tabs {
    width: 100%;
    display: flex;
    gap: 5%;
    row-gap: 34px;
    /* height: auto; */
    padding-inline: 7%;
    flex-direction: column;
  }
  .tab-title {
    font-size: 24px;
  }
  .small-number {
    font-size: 18px;
  }
  .hajti {
    height: 100vh !important;
  }
  .tab-desc {
    font-size: 14px;
  }
  .service-tab {
    width: 100%;
    background: #192630;
    border-radius: 32px;
    height: auto;
    padding: 1% 6% 1% 6%;
  }
  .service-third-title {
    font-size: 32px;
  }
  .tabvija {
    width: 100%;
  }
  .service-third-desc {
    font-size: 14px;
  }
  .service-third-section {
    padding-inline: 10%;
    display: flex;
    padding-bottom: 10%;
    /* gap: 5%; */
    width: 100%;
    align-items: center;
    height: auto;
    flex-direction: column;
  }
  .service-left {
    width: 100%;
    margin-top: 30%;
    position: relative;
    text-align: center;
  }
  .service-right {
    width: 100%;
  }
  .service-third-title {
    font-size: 30px;
  }
  .service-image-landing {
    position: relative;
    width: 65%;
    margin-left: 42px;
    top: -21px;
  }
  .service-green {
    top: -25%;
    width: 50%;
  }
  .service-tab-mobile {
    display: none;
  }
  .blog-section {
    padding-top: 5%;
    height: auto;
    padding-inline: 10%;
    display: flex;
    width: 100%;
    gap: 3%;
    row-gap: 50px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .blog {
    width: 100%;
  }
  .single-blog {
    padding: 5%;
    display: flex;
    flex-direction: column;
  }
  .single-blog-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 786px) and (max-width: 1367px) {
  .vija-profile {
    width: 80%;
  }

  .landing-about {
    height: auto;
  }
  .profile-section {
    gap: 15%;
  }
  .profile-desc {
    font-size: 25px;
  }
  .big-title-about {
    font-size: 32px;
  }
  .third-section-title {
    font-size: 32px;
  }
  .rating-title {
    font-size: 32px;
  }
  .ratings-section {
    height: 56vh;
  }
  .services-title {
    font-size: 37px;
    color: #00031a;
    position: relative;
    top: 30px;
    text-align: center;
  }
  .service-first-section {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 10% 24% 10% 24%;
  }
  .service-tab-mobile {
    display: none;
  }
  .service-tab {
    width: 100%;
  }
  .service-left {
    width: 100%;
    margin-top: 30%;
    position: relative;
    text-align: center;
  }

  .service-right {
    width: 100%;
    padding-bottom: 5%;
  }
  .service-green {
    position: absolute;
    width: 90%;
    top: -130%;
  }
  .service-image-landing {
    position: relative;
    width: 80%;
    margin-left: 45px;
    top: -95px;
  }
}
