@import url('./global.css');
/* Header Start */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-row {
  display: flex;
}

.header-right {
  width: 100%;
}
.header-mobile {
  display: none;
}
.header-left {
  min-width: 175px;
  background-color: var(--color-5);
  height: 100%;
  text-align: center;
  padding: 22px 22px 20px 22px;
  border-radius: 0 0 20px 20px;
}

.header-top {
  background-color: var(--color-1);
  display: flex;
  color: #fff;
  padding: 12px 20px;
  align-items: center;
}
.header-info-wrap {
  display: flex;
  column-gap: 20px;
}
.header-info-item {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.header-info-item:nth-last-child(n + 2) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding-right: 20px;
}
.header-info-icon {
  border: 1px solid #fff;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
}
.header-info-item:hover .header-info-icon {
  background-color: var(--color-2);
}
.header-info-title {
  color: #dadada;
  font-size: 12px;
}
.header-info-name {
  font-size: 14px;
  font-weight: 700;
}

.header-social-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.hamburger {
  display: none;
}
.header-social-wrap a {
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
}
.header-social-wrap a:hover {
  background-color: var(--color-2);
}
.header-bottom {
  display: flex;
  align-items: center;
  box-shadow: 1px 1px 6px 0 rgba(96, 90, 90, 0.25);
  border-radius: 0 0 20px 0;
  background-color: #fff;
}
.header-bottom .menu-nav > ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.header-bottom .menu-nav > ul > li > a {
  padding: 24px 28px;
  display: block;
  border-right: 1px solid #e1e1e1;
  position: relative;
  cursor: pointer;
}
.header-bottom .menu-nav ul li a::after {
  content: '';
  display: block;
  height: 4px;
  width: 0;
  transition: width 0.5s ease;
  background-color: var(--color-1);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header-bottom .menu-nav ul li a:hover::after {
  width: 90%;
}
.header-bottom .menu-nav ul li.current-menu-item a {
  font-weight: 700;
  color: var(--color-1);
}
.header-bottom .menu-nav .sub-menu {
  position: absolute;
  background-color: #fff;
  list-style-type: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.07);
  border-radius: 0 0 20px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: visibility 0.5s ease, transform 0.5s ease, transform 0.5s ease,
    opacity 0.5s ease;
  z-index: 13;
}
.header-bottom .menu-nav .sub-menu li a:hover {
  color: var(--color-1);
}
.header-bottom .menu-nav .sub-menu li a {
  padding: 12px 20px;
  display: block;
  position: relative;
}
.header-bottom .menu-nav .sub-menu li a:hover::after {
  width: 70%;
}
.header-bottom .menu-nav ul li.menu-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.header-bottom .button-wrap {
  margin-left: auto;
  margin-right: 20px;
}
/* Header END  */
/* breadcrumbs START  */
.breadcrumbs-wrap {
  background-color: #1f6db8;
  background-image: url('../images/breadcrumbs-bg.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  /* background-position: center 100%; */
  text-align: center;
  padding: 215px 0 90px 0;
  color: #fff;
}
.breadcrumbs-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
.breadcrumbs-wrap ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
}
/* breadcrumbs END  */
/* BANNER START */
.banner-wrap {
  background-image: url('../images/banner-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 300px;
  /* padding-top: 185px; */
  color: #fff;
}
.banner-row {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.banner-left {
  padding-bottom: 155px;
}
.banner-toptitle {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.banner-title {
  font-weight: 900;
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.2;
}
.banner-btn-row {
  display: flex;
  column-gap: 24px;
}

.banner-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.banner-right img {
  display: block;
  max-width: 600px;
}
.banner-desc {
  max-width: 500px;
  color: #dedcdc;
  margin-bottom: 40px;
}
.banner-desc p {
  margin-bottom: 0;
}
/* BANNER END */

/*features START  */
.features-row {
  display: flex;
  column-gap: 35px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #e3e3e3;
}

.features-item {
  display: flex;
  align-items: center;
  column-gap: 22px;
}
.features-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-1);
  border-radius: 100%;
  border: 1px sodid #000;
  min-width: 86px;
  width: 86px;
  height: 86px;
}
.features-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.features-desc {
  font-size: 14px;
  color: var(--color-text);
  max-width: 250px;
}
.features-desc p {
  margin-bottom: 0;
}
/*features END  */

/* about START  */
.about-row {
  display: flex;
  column-gap: 45px;
}
.about-left {
  max-width: 555px;
}
.about-num-wrap {
  border: 1px solid var(--color-1);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 450px;
}
.about-num-item {
  text-align: center;
  width: 48%;
  padding: 20px;
}
.about-num-item:nth-child(2n + 1) {
  border-right: 1px solid rgba(37, 129, 217, 0.35);
}
.about-num-item:nth-last-child(n + 3) {
  border-bottom: 1px solid rgba(37, 129, 217, 0.35);
}
.about-num-title {
  font-size: 50px;
  color: var(--color-1);
  font-weight: 700;
}
.about-num-desc {
  font-size: 16px;
  color: var(--color-text);
}
.about-image-wrap {
  display: flex;
  column-gap: 20px;
  height: 100%;
}
.about-image-wrap span {
  overflow: hidden;
  display: block;
  border-radius: 20px;
}
.about-image-wrap span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-wrap span:nth-child(1) {
  min-width: 154px;
  width: 154px;
}
.about-image-wrap span:nth-child(1) img {
  object-position: left top;
}
.about-image-wrap span:nth-child(2) {
  min-width: 260px;
  width: 260px;
}
.about-image-wrap span:nth-child(2) img {
  object-position: 68% top;
}
.about-image-wrap span:nth-child(3) {
  min-width: 75px;
  width: 75px;
}
.about-image-wrap span:nth-child(3) img {
  object-position: right top;
}
/* about END  */
/* ABOUT V_2 start  */
.about-v2-row {
  display: flex;
  column-gap: 30px;
}
.about-v2-image-wrap {
  display: flex;
  column-gap: 30px;
  /* position: relative; */
}
.about-v2-image-item {
  border-radius: 20px;
  overflow: hidden;
  min-width: 268px;
  width: 268px;
  height: 660px;
}

.about-v2-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-v2-left {
  position: relative;
  height: 100%;
}
.about-v2-exp {
  background-color: var(--color-1);
  color: #ffff;
  display: flex;
  align-items: center;
  column-gap: 16px;
  max-width: 237px;
  width: 100%;
  padding: 25px 32px;
  border-radius: 0 64px 64px 16px;
  position: absolute;
  bottom: 60px;
  left: -84px;
}
.about-v2-exp::before {
  content: '';
  display: block;
  background-color: #2673bc;
  width: 84px;
  height: 30px;
  position: absolute;
  bottom: 100%;
  left: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.about-v2-exp-bold {
  font-weight: 700;
  font-size: 50px;
}
.about-v2-exp-text {
  line-height: 1.5;
}
.about-v2-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  column-count: 2;
  border-bottom: 1px solid #dedede;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.about-v2-list li::before {
  content: '';
  vertical-align: middle;
  display: inline-block;
  background-image: url('../images/checkbox.svg');
  background-size: 9px 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-1);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-right: 12px;
}
.about-v2-list li {
  margin-bottom: 12px;
}
.director-row {
  display: flex;
  column-gap: 30px;
}
.director-image {
  width: 82px;
  min-width: 82px;
  height: 82px;

  background-position: center;
  position: relative;
}
.director-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--color-1);
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 100%;
}
.director-image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.director-name {
  font-size: 24px;
}
.director-spec {
  text-transform: uppercase;
}
.director-signature img {
  max-width: 136px;
}
/* ABOUT V_2 END  */
/* numbers START  */
.numbers-wrap {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  margin-top: 20px;
  /* margin-bottom: 100px; */
}
.numbers-row {
  display: flex;

  justify-content: center;
  padding: 35px 0;
}
.numbers-item {
  padding: 0 80px;
  text-align: center;
}
.numbers-item:nth-last-child(n + 2) {
  border-right: 1px solid #e3e3e3;
}
.numbers-title {
  font-size: 60px;
  color: var(--color-1);
  font-weight: 700;
}
.numbers-desc {
  font-size: 16px;
  color: var(--color-text);
}
/* numbers END  */
/* marquee-wrap START  */

.marquee-wrap {
  background-color: var(--color-3);
}
.marquee-row {
  display: flex;
  align-items: center;
  column-gap: 42px;
  padding: 30px 0;
  /* animation: stroke 15s linear infinite; */
}
@keyframes stroke {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.marquee-item {
  font-size: 65px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-text-stroke: 1px var(--color-black);
  color: transparent;
  line-height: 1.2;
}

.marquee-item::after {
  content: '+';
  display: inline-block;
  margin-left: 20px;
}
/* marquee-wrap END  */
/* services START  */

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 60px;
  row-gap: 40px;
}
.services-item {
  width: calc(25% - 45px);
  border-right: 1px solid #e3e3e3;
  padding-right: 40px;
}
.services-item:nth-child(4n) {
  border-right: none;
}
.services-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-4);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-bottom: 25px;
  transition: all 0.5 ease;
}
.services-item:hover .services-icon {
  transform: scaleX(-1);
}
.services-icon img {
  display: block;
  max-width: 40px;
}
.services-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  margin-bottom: 12px;
}
.services-desc {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--color-text);
}
.services-readmore {
  display: flex;
  align-items: center;
  column-gap: 23px;
  color: var(--color-1);
  font-weight: 700;
}
.services-readmore:hover span:nth-child(2) img {
  transform: translateX(10px);
}
.services-readmore span:nth-child(2) img {
  display: block;
  transition: transform 0.5s ease;
}
/* services END  */
/* services v2  START  */
.services-row {
  display: flex;
  column-gap: 55px;
}
.services-left {
  border-radius: 20px;
  overflow: hidden;
  height: 800px;
  width: 525px;
}
.services-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-right {
  max-width: 585px;
}

.swiper-services {
  overflow: visible;
  width: 700px;
  left: -200px;
}
.swiper-services .swiper-slide {
  width: 290px;
  height: 375px;
}

.services-v2-item {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 2px 16.1px 5px rgba(55, 50, 50, 0.1);
  padding: 30px;
}

/* services v2  END  */
/* services-details  start  */
.page-row {
  display: flex;
  column-gap: 40px;
}
.page-left {
  width: 100%;
}
.page-right {
  min-width: 380px;
  width: 380px;
}
.service-thumb {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 420px;
  margin-bottom: 40px;
}
.service-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-icon {
  position: absolute;
  background-color: var(--color-1);
  left: 0;
  bottom: 0;
  padding: 20px;
  border-radius: 0px 20px;
}
.service-icon img {
  filter: brightness(10);
  width: 38px;
  height: 38px;
}
.service-content p {
  color: var(--color-text);
}
.content-row {
  display: flex;
  column-gap: 40px;
}
.service-content ul,
.service-content ol {
  padding: 0;
  margin: 0 0 20px 0;
  list-style-type: none;
}
.service-content ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--color-1);
  vertical-align: middle;
  margin-right: 10px;
}
.service-content ul li:nth-last-child(n + 2) {
  margin-bottom: 10px;
}
.service-content ol li:nth-last-child(n + 2) {
  margin-bottom: 10px;
}
.service-content ol {
  counter-reset: num;
}
.service-content ol li {
  counter-increment: num;
}
.service-content ol li::before {
  content: counter(num);
  display: inline-block;
  color: var(--color-1);
  vertical-align: middle;
  font-weight: 700;
  margin-right: 10px;
}
.pricing-plan {
  margin-bottom: 35px;
}
.pricing-plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #b4b4b4;
}
.pricing-plan-val {
  font-weight: 700;
  color: var(--color-1);
}
.image-50 {
  display: flex;
  column-gap: 20px;
  margin-bottom: 20px;
}
.image-50 img {
  width: 50%;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
}
.video {
  width: 100%;
  border-radius: 20px;
}
/* services-details  END  */
/* SIDEBAR START  */
.widget {
  background-color: #cfebff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}
.widget-title {
  font-size: 24px;
  margin-bottom: 40px;
  position: relative;
}
.widget-title::before {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  background-color: #c2d1e0;
  border-radius: 20px;
  bottom: -15px;
  position: absolute;
}
.widget-title::after {
  content: '';
  display: block;
  height: 4px;
  width: 35px;
  background-color: var(--color-1);
  border-radius: 20px;
  bottom: -15px;
  position: absolute;
}
.widget__search form {
  display: flex;
  position: relative;
}
.widget__search form input {
  border-radius: 10px;
}
.widget__search form button {
  border-radius: 10px;
  background-color: var(--color-1);
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.widget__search form button img {
  max-width: 17px;
  width: 100%;
}
.widget__services ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.widget__services ul li a {
  background-color: #fff;
  padding: 14px 18px;
  display: block;
  border-radius: 5px;
  position: relative;
}
.widget__services ul li a::after {
  content: '';
  display: inline-block;
  background-image: url('../images/Arrow_Next.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 19px;
  height: 19px;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}
.widget__services ul li:nth-last-child(n + 2) a {
  margin-bottom: 15px;
}
.widget__pricelist ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.widget__pricelist ul li a {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-radius: 5px;
}
.widget__pricelist ul li a:hover {
  background-color: #d4cccc;
}
.widget__pricelist ul li:nth-last-child(n + 2) {
  margin-bottom: 15px;
}
.pricelist-left {
  display: flex;
  column-gap: 10px;
}
.pricelist-icon {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}
.pricelist-right {
  width: 22px;
  height: 22px;
}
/* SIDEBAR END  */
/* why START  */

.why-wrap {
  background-color: var(--color-3);
}
.why-row {
  display: flex;
  column-gap: 75px;
  align-items: center;
}
.why-left {
  max-width: 535px;
}
.progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.progress-item {
  margin-bottom: 20px;
}
.progress-line {
  height: 10px;
  background-color: #f1f1f1;
  border-radius: 30px;
  overflow: hidden;
}
.progress-drag {
  width: 0%;
  height: 100%;
  background-color: var(--color-1);
}
.why-right {
  width: 590px;
  border-radius: 20px;
  overflow: hidden;
}
/* why END  */
/* /team START */
.team-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.team-item {
  box-shadow: 0 4px 18px 3px rgba(133, 123, 123, 0.14);
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  width: calc(25% - 16.5px);
}

.team-thumb {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 290px;
}
.team-image,
.team-image img {
  display: block;
}
.team-image {
  height: 100%;
}
.team-image img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-social {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  column-gap: 8px;
  opacity: 0;
  transition: all 0.5s ease;
}
.team-item:hover .team-social {
  bottom: 16px;
  opacity: 1;
}
.team-social a {
  background-color: #fff;
  width: 27px;
  height: 27px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
}
.team-social a:hover {
  background-color: var(--color-1);
}
.team-social a:hover img {
  filter: brightness(10);
}
.team-body {
  text-align: center;
  padding: 18px 0 28px 0;
}
.team-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
}
.team-spec {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-text);
}
/* /team END */
/* TEAM page START  */
.team-about-row {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.team-about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.team-about-item {
  width: calc(50% - 10px);
  border: 1px solid #d9cfcf;
  border-radius: 20px;
  padding: 22px 22px 30px 22px;
}
.team-about-icon {
  background-color: var(--color-1);
  width: 70px;
  min-width: 70px;
  height: 70px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.team-about-icon img {
  max-width: 34px;
}
.team-about-title {
  font-size: 18px;
  margin-bottom: 16px;
}
.team-about-desc {
  color: var(--color-text);
}
.team-about-desc p {
  margin-bottom: 0;
}

.team-about-right {
  height: 758px;
  border-radius: 20px;
  width: 550px;
  min-width: 550px;
  overflow: hidden;
}
.team-about-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-text-wrap {
  text-align: center;
  max-width: 973px;
  margin: 0 auto;
  color: var(--color-text);
}
.team-text-wrap p {
  margin-bottom: 0;
}

/* TEAM page END  */

/* team-details-page START  */
.team-details-row {
  display: flex;
  column-gap: 40px;
}
.team-details-left {
  min-width: 380px;
  width: 380px;
  min-height: 505px;
  position: sticky;
  top: 15px;
  height: 100%;
}
.team-details-image {
  border-radius: 20px;
  height: 500px;
  min-height: 450px;
  margin-bottom: 35px;
  overflow: hidden;
}
.team-details-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-personal-title {
  font-size: 28px;
  margin-bottom: 20px;
}
.team-personal-item {
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.team-personal-key {
  font-weight: 700;
}
.team-personal-social {
  display: flex;
  column-gap: 20px;
}
.team-personal-social a {
  background-color: #f1eeee;
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-personal-social a img {
  max-width: 13px;
}
.team-personal-social a:hover {
  background-color: var(--color-1);
}
.team-details-right h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.team-details-right p {
  color: var(--color-text);
}
.team-details-right h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.team-details-spec {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.team-details-wrap .progress-item {
  margin-bottom: 25px;
}
.team-details-wrap .progress-wrap {
  margin-bottom: 35px;
}
.team-details-exp ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 35px;
}
.team-details-exp ul li:nth-last-child(n + 2) {
  margin-bottom: 20px;
}
.team-details-exp ul li::before {
  content: '';
  display: inline-block;
  background-color: var(--color-1);
  background-image: url('../images/checkbox.svg');
  background-repeat: no-repeat;
  background-size: 9px 9px;
  background-position: center center;
  width: 21px;
  min-width: 21px;
  height: 21px;
  border-radius: 100%;
  vertical-align: middle;
  transform: translateY(-2px);
  margin-right: 10px;
}
.team-working {
  column-count: 2;
  margin-bottom: 40px;
}
.working-item {
  background-color: #d0eafd;
  background-image: url('../images/calendar.svg');
  background-repeat: no-repeat;
  background-size: 28px 38px;
  background-position: right 30px top 30px;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
}
.team-working-week {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.team-working-time {
  font-size: 14px;
}
.team-appointment {
  background-color: #fff;
  border: 1px solid #cecdcd;
  border-radius: 20px;
  padding: 36px 40px 57px 40px;
  position: relative;
}
.team-appointment::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-1);
  width: 70px;
  height: 70px;
  background-image: url('../images/appointment-icon.svg');
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center center;
  border-radius: 0 19px 0 19px;
}
.team-appointment-title {
  text-align: center;
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 30px;
}
.team-appointment input {
  background-color: #ecf9fe;
  border: none;
}
.team-appointment button {
  font-family: var(--font);
  font-size: 14px;
  width: 100%;
  background-color: var(--color-1);
  color: #ffff;
  text-align: center;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  padding: 18px;
  cursor: pointer;
}
/* team-details-page END  */

/* faq START  */
.faq-wrap {
  position: relative;
  z-index: 1;
}
.faq-row {
  background-color: var(--color-2);
  padding: 50px;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
}

.faq-left {
  max-width: 502px;
}
.faq-item {
  background-color: #fff;
  padding: 24px 50px 24px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  width: 575px;
  cursor: pointer;
}
.faq-item.is-active .faq-question::after {
  transform: rotate(45deg);
}
.faq-question {
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.faq-question::after {
  content: '+';
  font-size: 32px;
  font-weight: 300;
  position: absolute;
  right: -20px;
  top: 0;
  line-height: 0.8;
  transition: all 0.4s ease;
}
.faq-answer {
  margin-top: 12px;
  padding-top: 18px;
  color: var(--color-text);
  border-top: 1px solid gray;
  display: none;
}
.faq-answer p {
  margin-bottom: 0;
}
/* faq END  */
/* testimonials START  */
.testimonials-wrap {
  position: relative;
  z-index: 0;
  padding-bottom: 50px;
}
.testimonials-wrap::before {
  content: '';
  background-image: url('../images/background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 1300px;
  position: absolute;
  top: -418px;
  left: 0;
  z-index: -1;
}
.testimonials-row {
  display: flex;
  column-gap: 40px;
}
.testimonials-images {
  border-radius: 20px;
  overflow: hidden;
  width: 545px;
}
.testimonials-images img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-right {
  max-width: 600px;
  /* margin-left: auto; */
}
.swiper-testimonials {
  overflow: visible;
}
.review-item {
  background-color: #fff;
  padding: 0 35px 110px 35px;
  border-radius: 20px;
  position: relative;
}
.review-top {
  display: flex;
  column-gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}
.review-text {
  color: var(--color-text);
  margin-bottom: 20px;
}
.review-quote {
  background-color: var(--color-1);
  padding: 12px 12px;
  border-radius: 0 0 10px 10px;
}
.review-quote img {
  display: block;
}
.review-footer {
  background-color: var(--color-1);
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  column-gap: 25px;
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 70px);
}
.review-avatar {
  border-radius: 10px;
  width: 122px;
  min-width: 132px;
  height: 132px;
  overflow: hidden;
}
.review-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.review-spec {
  font-weight: 500;
  margin-bottom: 10px;
}
.review-social {
  display: flex;
  column-gap: 12px;
  margin-bottom: 10px;
}
.review-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #fff;
  transition: all 0.5s ease;
}
.review-social a:hover {
  background-color: var(--color-2);
}
.review-social a img {
  max-width: 14px;
}
/* testimonials END  */
/* testimonials v2 START  */

.review-v2-item {
  background-color: #fff;
  padding: 0 25px 110px 25px;
  border-radius: 20px;
  position: relative;
  border: 1px solid #dfd4d4;
}
.review-v2-top {
  display: flex;
  column-gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}
.review-v2-text {
  color: var(--color-text);
  margin-bottom: 20px;
}
.review-v2-quote {
  background-color: var(--color-1);
  padding: 8px;
  border-radius: 0 0 10px 10px;
}
.review-v2-quote img {
  display: block;
}
.review-v2-footer {
  background-color: var(--color-1);
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  column-gap: 25px;
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 50px);
}
.swiper-testimonials-v2 .swiper-pagination {
  margin-top: 90px;
}
.review-v2-avatar {
  border-radius: 10px;
  width: 122px;
  min-width: 132px;
  height: 132px;
  overflow: hidden;
}
.review-v2-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-v2-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.review-v2-spec {
  font-weight: 500;
  margin-bottom: 10px;
}
.review-v2-social {
  display: flex;
  column-gap: 12px;
  margin-bottom: 10px;
}
.review-v2-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #fff;
  transition: all 0.5s ease;
}
.review-v2-social a:hover {
  background-color: var(--color-2);
}
.review-v2-social a img {
  max-width: 14px;
}
/* testimonials v2 END  */
/* OFFER START  */
.offer-wrap {
  /* background: linear-gradient(90deg, #00afff 0.5%, #18b1f7 100%); */
  background-image: url('../images/bg-offer.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.offer-row {
  display: flex;
  column-gap: 40px;
  align-items: center;
}
.offer-right img {
  display: block;
}
.offer-btn-row {
  display: flex;
  column-gap: 16px;
  align-items: center;
}
.offer-btn-timer {
  background-color: #ffff;
  padding: 16px 30px;
  display: inline-block;
  border-radius: 30px;
  font-weight: 700;
  color: var(--color-1);
}
/* OFFER END  */
/* pricing START  */
.pricing-table {
  display: flex;
  border: 1px solid #d4cccc;
  border-radius: 20px;
  background-color: #fff;
}
.pricing-card {
  width: 33.3%;
}
.pricing-card:nth-child(2) {
  background-color: #f4f4f4;
}
.pricing-title {
  padding: 16px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-price {
  background-color: var(--color-2);
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  line-height: 1;
}
.pricing-card:nth-child(2) .pricing-price {
  background-color: var(--color-1);
}
.pricing-big {
  font-size: 35px;
  font-weight: 700;
}
.pricing-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.pricing-item {
  padding: 15px 30px;
  border-bottom: 1px solid #e0dada;
  display: flex;
  align-items: center;
  column-gap: 11px;
}

.pricing-item::before {
  content: '';
  display: inline-block;
  background-image: url('../images/checkbox.svg');
  width: 21px;
  min-width: 21px;
  height: 21px;
  background-size: 9px 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--color-1);
  border-radius: 100%;
}
.pricing-item.pricing-off {
  color: #b5afaf;
}
.pricing-item.pricing-off::before {
  background-color: #b5afaf;
}
.pricing-footer {
  text-align: center;
  padding: 25px;
}
/* pricing END  */
/* video START  */
.video-wrap {
  position: relative;
  z-index: 1;
}
.video-item a {
  position: relative;
  display: block;
  height: 580px;
  overflow: hidden;
  border-radius: 20px;
  border: 8px solid var(--color-2);
}
.video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 127px;
  height: 127px;
  background-color: var(--color-2);
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* video END  */
/* gallery start  */
.gallery-wrap {
  position: relative;
}
.gallery-wrap::before {
  content: '';
  background-color: var(--color-3);
  background-image: url('../images/stars_circles.svg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 1380px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.gallery-item {
  height: 526px;
  overflow: hidden;
  display: block;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-title {
  position: absolute;
  background-color: rgba(48, 118, 184, 0.9);
  width: 90%;
  height: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}
.gallery-item:hover .gallery-title {
  opacity: 1;
}
.gallery-magnify {
  text-align: center;
}
.gallery-title-item {
  border: 4px solid #ffff;
  border-radius: 16px;
  width: 85%;
  height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-magnify img {
  display: inline-block;
  width: 45px;
  height: 45px;
}
.gallery-text {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.gallery-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.gallery-v2-grid .gallery-item {
  border-radius: 20px;
  height: 420px;
}
/* gallery END  */
/* blog-row START  */
.blog-wrap {
  background-color: #faf8f8;
}
.blog-row {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 35px;
}
.blog-left {
  min-width: 400px;
}
.blog-right {
  width: 100%;
}
.swiper-news .swiper-wrapper {
  max-width: 1050px;
  margin: 0 auto;
}

.swiper-news .swiper-wrapper .swiper-slide {
  width: 335px;
  max-height: 559px;
}

.blog-item {
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-image {
  display: block;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-thumb {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.blog-date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: var(--color-1);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
}
.blog-date strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  margin-bottom: 4px;
}
.blog-body {
  padding: 24px 22px;
}
.blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-excerpt {
  color: var(--color-text);
  margin-bottom: 20px;
}
.blog-readmore {
  padding: 20px 30px;
  display: block;
  font-weight: 700;
  color: var(--color-1);
  background-color: #f6f4f4;
  border-radius: 86px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.blog-readmore:hover {
  color: #fff;
}

.blog-readmore::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-1);
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.5s ease;
}
.blog-readmore:hover::before {
  transform: none;
}
.swiper-blog {
  padding-right: 270px;
}
.blog-readmore::after {
  content: '';
  display: inline-block;
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.blog-readmore::after {
  filter: brightness(10);
}
.blog-details-content .article-thumb {
  border-radius: 20px;
  margin-bottom: 25px;
}
.blog-details-title {
  font-size: 32px;
  margin-bottom: 18px;
}
.blog-details-content p {
  color: var(--color-text);
}
.blog-details-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.blog-details-tags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 50px;
  padding: 20px 30px;
  margin-top: 40px;
}
.blog-tags-ul {
  column-gap: 12px;
  row-gap: 12px;
  flex-wrap: wrap;
}
.blog-tags-social {
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.blog-tags-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: #f3f3f3;
  border: 1px solid #d8d8d8;
}
.blog-tags-social a img {
  width: 16px;
  height: 16px;
}
.blog-tags-ul li a {
  background-color: var(--color-1);
  color: #fff;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.blog-tags-title {
  margin-bottom: 0;
  margin-right: 28px;
  font-size: 20px;
}
.blog-details-tags ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
/* blog-row END  */
/* comments- start  */
.comments-wrap {
  margin-top: 50px;
}
.comments-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.comments-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.comments-info-text {
  color: var(--color-text);
  margin-bottom: 18px;
}
.comments-info-date {
  color: var(--color-text);
}
.comments-info-text p {
  margin-bottom: 0;
}
.comments-body {
  display: flex;
  column-gap: 25px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.comment-children {
  list-style: none;
  padding-left: calc(86px + 25px);
}
.comments-thumb {
  border-radius: 10px;
  overflow: hidden;
  min-width: 86px;
  width: 86px;
  height: 86px;
}
.comments-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comments-info-top {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 10px;
}
.comments-info-title {
  margin-bottom: 0;
}
.comments-info-btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 7px 24px;
}
.comments-info-btn a {
  border: 1px solid #8f8d8d;
  border-radius: 20px;
  padding: 6px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
  color: #8f8d8d;
  font-weight: 700;
}
.comments-info-btn a img {
  vertical-align: text-top;
}
.comments-form input,
.comments-form textarea {
  background-color: #f1e8e8;
  border: 1px solid #8a8a8a;
  border-radius: 5px;
  margin-bottom: 20px;
}
.comments-form button {
  font-family: var(--font);
  background-color: var(--color-1);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 30px;
  border: none;
  outline: none;
  cursor: pointer;
}
.comments-form button:hover {
  background-color: var(--color-2);
}
.comments-form textarea {
  height: 130px;
}
/* comments- ebd  */
/* contact START  */

.contact-card {
  background-color: var(--color-3);
  padding: 40px 65px 40px 40px;
  border-radius: 20px;
  display: flex;
  column-gap: 40px;
  position: relative;
}
.contact-card::after {
  content: '';
  display: block;
  background-image: url('../images/icons/Group.svg');
  background-repeat: no-repeat;
  background-color: var(--color-1);
  background-position: center center;
  background-size: 24px 24px;
  width: 70px;
  height: 70px;
  border-radius: 0 20px 0 20px;
  position: absolute;
  top: 0;
  right: 0;
}
.contact-left {
  background-color: var(--color-1);
  color: #fff;
  padding: 40px 35px;
  border-radius: 20px;
  width: 450px;
  min-width: 450px;
}
.contact-left-title {
  font-size: 35px;
  font-weight: 700;
}
.contact-info-title {
  margin-bottom: 0;
  font-size: 24px;
}
.contact-left-desc p {
  color: var(--color-text);
  margin-bottom: 30px;
}
.contact-info-item {
  display: flex;
  column-gap: 12px;
  margin-bottom: 20px;
}

.contact-info-title {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1;
}
.contact-info-text {
  margin-bottom: 0;
  font-size: 18px;
  color: #ded9d9;
}
.contact-social-wrap {
  display: flex;
  column-gap: 14px;
}
.contact-social-wrap a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #fff;
  justify-content: center;
  align-items: center;
}
.contact-social-wrap a img:hover {
  filter: invert(1);
}
.contact-right {
  width: 100%;
  padding-top: 40px;
}
.contact-right-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-right-desc {
  color: var(--color-text);
  max-width: 341px;
}
.contact-right textarea {
  min-height: 185px;
}
/* contact  END  */
/* widget__recent START  */
.widget__recent ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.widget__recent ul li {
  display: flex;
  column-gap: 15px;
  margin-bottom: 20px;
}

.recent-left {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
}
.recent-left a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-title {
  line-height: 1.2;
  /* margin-bottom: 10px; */
}
.recent-date-icon {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.recent-date-icon img {
  position: relative;
  top: 4px;
}
.recent-date {
  display: flex;
  column-gap: 8px;
  align-items: flex-start;
}
/* widget__recent END  */
/* widget widget__categories start  */
.widget__categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.widget__categories ul li a::before {
  content: '';
  display: inline-block;
  background-image: url('../images/arrow-right.svg');
  width: 14px;
  height: 14px;
  vertical-align: middle;
  padding-right: 4px;
  transform: translateY(-2px);
}
.widget__categories ul li a:hover {
  color: var(--color-1);
  text-decoration: underline;
}
.widget__categories ul li:not(:last-child) {
  margin-bottom: 15px;
}
/* widget widget__categories end  */
/* widget__tagcloud START  */
.widget__tagcloud ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.widget__tagcloud ul li {
  display: inline-block;
}
.widget__tagcloud ul li a {
  display: inline-block;
  text-transform: uppercase;
  background-color: #fff;
  color: #483e3e;
  padding: 11px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
/* widget__tagcloud END  */
/* blog-pagination start  */

.blog-pagination ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  list-style-type: none;
  width: 100%;
}
.blog-pagination ul li.pagination-current-item {
  background-color: var(--color-1);
  border-radius: 5px;
  padding: 13px 21px;
  display: inline-block;
}
.blog-pagination ul li a {
  background-color: #ebebeb;
  border-radius: 5px;
  padding: 13px 21px;
  display: inline-block;
}
.blog-pagination ul li a:hover {
  background-color: var(--color-2);
}
/* blog-pagination end  */
/* Article Start  */
.blog-article {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  margin-bottom: 40px;
}
.article-thumb {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.article-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px 19px 0 0;
}
.article-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-1);
  color: #fff;
  padding: 18px 40px;
  border-radius: 0 20px 0 0;
  display: flex;
  align-items: center;
  column-gap: 23px;
  flex-wrap: wrap;
}
.article-meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 9px;
}
.article-meta-icon img {
  max-width: 16px;
  width: 100px;
}
.article-body {
  padding: 25px 40px 30px 40px;
}
.acticle-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.article-except {
  color: var(--color-text);
  margin-bottom: 20px;
}
.article-except p {
  margin-bottom: 0;
}
.article-button {
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
  --font: 'Roboto';
  --color-1: #2581d9;
  --color-1-hover: #2671b7;
  --color-2: #41bef7;
  --color-2-hover: #1a7fae;
  --color-text: #636060;
  --color-3: #bceafe;
  --color-4: #f6ecff;
  --color-5: #024260;
  --color-black: #000;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  padding: 20px 30px;
  display: block;
  max-width: 275px;
  font-weight: 700;
  color: var(--color-1);
  background-color: #f6f4f4;
  border-radius: 86px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.article-button::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-1);
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.5s ease;
}
.article-button:hover {
  color: #fff;
}
.article-button:hover::before {
  transform: none;
}
.article-button::after {
  content: '';
  display: inline-block;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
/* Article END  */
/* appointment STRT  */
.appointment-wrap {
  background-color: var(--color-3);
  position: relative;
  background-image: url('../images/stars_circles.svg');
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.appointment-row {
  display: flex;
  column-gap: 45px;
  align-items: center;
}
.appointment-left {
  border-radius: 20px;
  overflow: hidden;
  min-width: 470px;
  width: 470px;
  height: 700px;
}
.appointment-left img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.input-row {
  display: flex;
  column-gap: 16px;
  margin-bottom: 16px;
}
.appointment-form textarea {
  height: 111px;
  margin-bottom: 16px;
}
.appointment-form button {
  background-color: var(--color-1);
  color: #ffff;
  padding: 16px 30px;
  border-radius: 30px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.4s ease;
  border: none;
  cursor: pointer;
}
.appointment-form button:hover {
  background-color: var(--color-1-hover);
}
/* appointment END  */
/* partners START  */
.partners-wrap {
  padding: 80px 0;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 29px;
}
.partners-item {
  background-color: var(--color-1);
  border-radius: 20px;
  padding: 38px 28px;
  height: 200px;
  min-width: 176px;
  width: 17px;
  display: flex;
  justify-content: center;
  align-items: end;
}
/* partners END  */
/* newsletter START  */
.newsletter-wrap {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.newsletter-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-1);
  opacity: 0.9;
  z-index: -1;
}
.newsletter-row {
  display: flex;
  align-items: center;
  padding: 15px 0;
}
.newsletter-right {
  margin-left: auto;
}
.newsletter-right img {
  display: block;
  max-width: 355px;
}
.newsletter-left .title-left-white {
  margin-bottom: 25px;
}
.newsletter-from {
  display: flex;
  align-items: center;
}
.newsletter-from {
  border: 1px solid #f1e8e8;
  border-radius: 50px;
  background: rgba(233, 224, 224, 0.21);
}
.newsletter-from input {
  border: none;
  background: none;
  color: #fff;
}
.newsletter-from input::placeholder {
  color: #fff;
}
.newsletter-from button {
  background-color: var(--color-1);
  color: #ffff;
  padding: 0 30px;
  height: 40px;
  border-radius: 30px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.4s ease;
  border: none;
  cursor: pointer;
  margin-right: 7px;
}
.newsletter-from button:hover {
  background-color: var(--color-1-hover);
}
/* newsletter END  */
/* footer START  */
.footer {
  background-color: #1f568b;
  padding-top: 40px;
  color: #fff;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.footer-info-wrap {
  display: flex;
  column-gap: 36px;
}
.footer-info-item {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.footer-info-icon {
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
}
.footer-info-item:hover .footer-info-icon {
  background-color: var(--color-2);
}
.footer-info-title {
  color: #dadada;
  font-size: 12px;
}
.footer-info-name {
  font-size: 14px;
  font-weight: 700;
  color: #dadada;
}
.footer-row {
  display: flex;
  column-gap: 70px;
}
.footer-left {
  max-width: 430px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 70px 10px 0;
}
.footer-desc {
  color: #dad5d5;
  margin-bottom: 50px;
}
.footer-social-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.footer-social-wrap a {
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
}
.footer-social-wrap a:hover {
  background-color: var(--color-2);
}
.footer-right {
  display: flex;
  column-gap: 50px;
}
.footer-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
}
.footer-nav ul li {
  color: #e0e0e0;
}
.footer-nav ul li:not(:last-child) {
  margin-bottom: 12px;
}
/* footer end  */
.footer-copy {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 25px 0;
}
.footer-copy p {
  margin-bottom: 0;
}

/* RESPONSIVE START  */
@media screen and (max-width: 1340px) {
  /* about v2 1340 STart  */
  .about-v2-exp {
    left: -35px;
  }
  .about-v2-exp::before {
    width: 38px;
  }
  /* about v2 1340 END  */
}
@media screen and (max-width: 1200px) {
  /* HEader 1200 STart */
  .header-left {
    min-width: 135px;
    width: 135px;
    height: 155px;
  }
  .header-info-item {
    column-gap: 10px;
  }
  .header-info-item:nth-last-child(n + 2) {
    padding-right: 10px;
  }
  .header-left img {
    max-width: 100%;
  }

  /* HEader 1200 END */

  /* Banner 1200 START   */
  .banner-right img {
    max-width: 550px;
  }

  /* Banner 1200 END   */

  /* ABOUT 1200  START  */
  .about-image-wrap span:nth-child(1) {
    width: 130px;
    max-width: 130px;
  }
  .about-image-wrap span:nth-child(2) {
    width: 200px;
    max-width: 200px;
  }
  .about-image-wrap span:nth-child(2) img {
    object-position: 75% top;
  }
  /* ABOUT 1200  END  */
  /* ABOUT v2 1200 start  */
  .about-v2-image-item {
    width: 220px;
  }
  .about-v2-exp {
    display: none;
  }
  /* ABOUT v2 1200 END  */
  /* why-wrap 1200 START  */
  .why-left {
    max-width: 450px;
  }

  /* why-wrap 1200 end   */
  /* .faq 1200 START   */
  .faq-item {
    width: 480px;
  }
  /* .faq 1200 END   */
  /* testimonial 1200 START  */
  .testimonials-right {
    max-width: 500px;
  }
  /* testimonial 1200 end   */
  /* NUMBERS 1200 START  */
  .numbers-item {
    padding: 0 70px;
  }
  .numbers-title {
    font-size: 50px;
  }
  /* NUMBERS 1200 END  */
  /* blog 1200 START  */
  .blog-left {
    min-width: 300px;
  }
  /* blog 1200 END  */

  /* partners 1200 START  */
  .partners-wrap {
    padding: 40px 20px;
    overflow-x: scroll;
  }
  /* partners 1200 END  */
  /* service-details 1200 START  */
  .page-row {
    flex-direction: column;
    row-gap: 40px;
  }
  .page-right {
    width: 100%;
    min-width: auto;
  }
  /* service-details 1200 END  */
  /* team-wrap 1200 START  */
  .team-about-right {
    height: 650px;
  }
  /* team-wrap 1200 END  */
  /* footer 1200 START  */
  .footer-row {
    column-gap: 50px;
  }
  .footer-left {
    max-width: 300px;
    padding: 10px 50px 10px 0;
  }
  .footer-right {
    column-gap: 30px;
  }
  /* footer 1200 end  */
}
@media screen and (max-width: 1120px) {
  /* testimonial 1120 START  */
  .testimonials-right {
    max-width: 400px;
  }
  /* testimonial 1120 end   */
}
@media screen and (max-width: 992px) {
  /* HEader 992 STart */
  .header {
    background-color: var(--color-1);
    height: 70px;
    box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.14);
  }
  .header-info-wrap,
  .header-social-wrap,
  .header-bottom {
    display: none;
  }
  .header-top {
    background: none;
    padding: 0;
  }
  .header-left {
    height: auto;
    width: 100px;
    min-width: 100px;
    padding: 10px;
  }

  .hamburger {
    display: block;
    margin-left: auto;
    margin-top: 15px;
  }
  .header-mobile {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.5s ease;
  }
  .header-mobile.is-active {
    transform: none;
  }
  .header-mobile-top {
    background-color: var(--color-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
  .header-mobile-logo img {
    max-width: 130px;
  }
  .mobile-menu-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu-nav ul li {
    position: relative;
  }
  .mobile-menu-nav ul li a {
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid #dbd5d5;
  }
  .mobile-menu-nav ul > li.current-menu-item > a {
    font-weight: 700;
    color: var(--color-1);
  }
  .mobile-menu-nav .menu-item-plus {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: #e7e6e6;
    border-radius: 100%;
    transition: all 0.5s ease;
  }
  .mobile-menu-nav ul li.menu-has-children.is-active .menu-item-plus {
    background-color: var(--color-1);
    color: #fff;
    transform: rotate(45deg);
  }
  .mobile-menu-nav .sub-menu {
    padding-left: 20px;
    display: none;
  }
  .header-mobile-footer {
    padding: 36px 20px;
  }
  .mobile-info-wrap {
    margin-bottom: 30px;
  }
  .mobile-info-item {
    display: flex;
    align-items: center;
    column-gap: 12px;
  }
  .mobile-info-item:not(:last-child) {
    margin-bottom: 25px;
  }

  .mobile-info-icon {
    background-color: #dce8f4;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-info-title {
    color: #dadada;
    font-size: 12px;
  }
  .mobile-info-name {
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-social-wrap {
    margin-left: auto;
    display: flex;
    align-items: center;
    column-gap: 14px;
    margin-bottom: 35px;
  }

  .mobile-social-wrap a {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dce8f4;
  }

  .mobile-info-title {
    color: #b4abab;
    font-size: 12px;
  }
  .mobile-info-name {
    color: #362f2f;
    font-size: 14px;
  }

  /* HEader 992 END */
  /* team-wrap 992 START  */
  .team-about-row {
    flex-direction: column;
    row-gap: 40px;
  }
  .team-about-left {
    order: 1;
  }
  .team-about-right {
    width: 100%;
    min-width: auto;
  }
  /* team-wrap 992 END  */
  /* banner 992 START  */
  .banner-row {
    flex-direction: column;
  }
  .banner-wrap {
    padding-top: 100px;
  }

  .banner-left {
    background-color: var(--color-2);
    border-radius: 20px;
    padding: 40px 30px;
    position: static;
    z-index: 1;
    margin: -120px auto 80px auto;
    order: 1;
  }
  .banner-toptitle {
    font-size: 16px;
  }
  .banner-title {
    font-size: 46px;
  }
  .banner-btn-row .button-v2 {
    background-color: #ffffff;
    color: var(--color-1);
  }
  .banner-right {
    position: static;
  }
  /* banner 992 END  */

  /* features 992 START  */
  .features-row {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 30px;
  }
  .features-item {
    flex-direction: column;
    text-align: center;
    row-gap: 20px;
  }
  /* features 992 END  */

  /* ABOUT 992  START  */
  .about-row {
    flex-direction: column;
  }
  .about-left {
    margin-bottom: 30px;
  }
  .about-left,
  .about-right {
    max-width: none;
  }
  .about-num-wrap {
    max-width: none;
  }
  .about-image-wrap span:nth-child(1),
  .about-image-wrap span:nth-child(3) {
    display: none;
  }

  .about-image-wrap span:nth-child(2) {
    display: block;
    width: 100%;
  }
  .about-image-wrap span:nth-child(2) img {
    max-width: 100%;
    object-fit: cover;
  }
  /* ABOUT 992  end  */

  /* ABOUT v2 992 start  */
  .about-v2-row {
    flex-direction: column;
  }
  .about-v2-image-wrap {
    margin-bottom: 30px;
  }
  .about-v2-image-item {
    width: calc(50% - 15px);
    height: 590px;
  }

  /* ABOUT v2 992 END  */
  /* SERVICES 992 start  */
  .services-item {
    width: calc(33.33% - 40px);
  }
  .services-item:nth-child(4n) {
    border-right: 1px solid #e3e3e3;
  }
  .services-item:nth-child(3n) {
    border-right: none;
  }
  /* SERVICES 992 END  */
  /* contact 992 start  */
  .contact-card {
    padding: 0;
    flex-direction: column;
  }
  .contact-card::after {
    display: none;
  }
  .contact-left {
    width: 100%;
    min-width: auto;
  }
  .contact-right{
    padding: 40px;
  }
  /* contact 992 end  */
  /* why-wrap 992 START  */

  .why-row {
    flex-direction: column;
    row-gap: 45px;
  }
  .why-left {
    order: 1;
    max-width: 590px;
  }
  /* why-wrap 992 end   */

  /* team 992  START */
  .team-item {
    width: calc(50% - 11px);
  }
  .team-thumb {
    height: 400px;
  }
  /* team 992 end  */
  /* team-details 992 START  */
  .team-details-row {
    flex-direction: column;
  }
  .team-details-left {
    position: static;
    margin-bottom: 40px;
    width: 100%;
  }
  .team-details-image img {
    object-position: top center;
  }
  .team-details-image {
    width: 100%;
    height: 650px;
  }
  /* team-details 992 END  */
  /* .faq 992 START   */
  .faq-row {
    flex-direction: column;
  }
  .faq-left {
    padding: 80px 0;
    max-width: none;
  }
  .faq-right {
    width: 100%;
  }
  .faq-item {
    width: 100%;
  }
  /* .faq 992 END   */
  /* testimonial 992 START  */
  .testimonials-row {
    flex-direction: column;
  }
  .testimonials-images {
    width: 100%;
    margin-bottom: 30px;
  }
  .testimonials-right {
    max-width: none;
  }
  /* testimonial 992 end   */
  /* blog 992 START  */
  .blog-row {
    flex-direction: column;
    row-gap: 40px;
  }
  .blog-wrap .title-left,
  .blog-left {
    text-align: center;
  }
  .swiper-news {
    padding-right: 0;
  }
  .swiper-news .swiper-slide {
    width: 100%;
  }

  /* blog 992 END  */
  /* appointment 992 START  */
  .appointment-row {
    flex-direction: column;
    row-gap: 50px;
  }
  .appointment-left {
    width: 100%;
    min-width: auto;
    margin-bottom: 30px;
  }
  .appointment-left img {
    object-position: center top;
  }
  /* appointment 992 end  */
  /* partners 992 START  */
  .partners-wrap {
    padding: 40px 20px;
  }
  .partners-item {
    padding: 20px;
  }
  /* partners 992 END  */
  /* newsletter-wrap 992 START  */
  .newsletter-row {
    padding: 60px 0;
  }
  .newsletter-right {
    display: none;
  }
  /* newsletter-wrap 992 end  */
  /* services-v2 992 start  */
  .services-v2-wrap {
    padding: 0;
  }
  .services-v2-right {
    width: 100%;
  }
  .services-left {
    width: 100%;
  }
  .swiper-services {
    /* width: 955px; */
    width: auto;
    left: 0;
  }
  .services-row {
    flex-direction: column;
    row-gap: 40px;
  }
  /* services-v2 992 end  */
  /* timer 992 start   */
  .offer-wrap {
    padding: 60px 0;
  }
  .offer-right {
    display: none;
  }
  /* timer 992 end   */
  /* NUMBERS 992 START  */
  .numbers-item {
    padding: 0 50px;
  }

  /* NUMBERS 992 END  */
  /* footer 992 START  */
  .footer-top {
    flex-direction: column;
    row-gap: 30px;
  }
  .footer-row {
    flex-direction: column;
    row-gap: 40px;
  }
  .footer-left {
    max-width: none;
  }
  .footer-desc {
    margin-bottom: 20px;
  }
  /* footer 992 end  */
}

@media screen and (max-width: 768px) {
  /* global 768 strat  */
  .title-row {
    flex-direction: column;
    text-align: center;
  }
  .title-row-left {
    margin-bottom: 20px;
  }
  .title-row-left,
  .title-row-right {
    width: 100%;
  }
  /* global 768 end  */
  /* SERVICES 768 start  */
  .services-item {
    width: calc(50% - 20px);
  }
  .services-item:nth-child(2n) {
    border-right: none;
  }
  .services-item:nth-child(3n) {
    border-right: 1px solid #e3e3e3;
  }
  /* SERVICES 768 END  */
  /* blog-details 768 start  */
  .blog-tags-social {
    width: 100%;
  }
  /* blog-details 768 end  */
  /* why-wrap 768 START  */

  .why-right {
    max-width: 590px;
    width: 100%;
  }
  /* why-wrap 768 end   */
  /* team 768  START */

  .team-thumb {
    height: 300px;
  }

  /* team 768  end  */
  /* pricing 768 START   */
  .pricing-table {
    flex-direction: column;
  }
  .pricing-card {
    width: 100%;
  }
  .title-row {
    margin-bottom: 40px;
  }
  /* pricing 768 END   */
  /* video 768 START  */
  .video-item a {
    height: 450px;
  }
  /* video 768 END  */
  .partners-wrap {
    padding: 20px 20px;
  }
  /* NUMBERS 768 START  */
  .numbers-row {
    flex-wrap: wrap;
    padding: 0;
  }
  .numbers-item {
    width: 50%;
    padding: 20px 32px;
  }
  .numbers-item:nth-child(2) {
    border-right: none;
  }
  .numbers-item:nth-last-child(n + 3) {
    border-bottom: #e3e3e3;
  }
  /* NUMBERS 768 END  */

  /* GALLARY 992 START  */
  .gallery-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* GALLARY 992 END  */
  /* footer 768 START  */
  .footer-top {
    border-bottom: none;
  }
  .footer-left {
    border-right: none;
  }
  .footer-info-wrap {
    flex-direction: column;
    row-gap: 30px;
  }
  .footer-right {
    column-gap: 50px;
    row-gap: 40px;
    flex-wrap: wrap;
  }
  .footer-nav {
    width: calc(50% - 25px);
  }
  .footer-copy {
    position: relative;
    padding: 17px;
    font-size: 14px;
    left: -20px;
    width: calc(100% + 40px);
  }
  /* footer 768 end  */
}
@media screen and (max-width: 575px) {
  /* banner 575 start  */
  .banner-title {
    font-size: 34px;
  }
  .banner-desc {
    margin-bottom: 30px;
  }
  .banner-right img {
    max-width: 100%;
  }
  .banner-btn-row {
    flex-direction: column;
    row-gap: 15px;
  }

  /* banner 575 end  */
  /* features 575 start  */
  .features-item {
    flex-direction: row;
    text-align: left;
  }
  /* features 575 end  */

  /* about 575 strat  */
  /* global 575 start  */
  .title {
    font-size: 18px;
  }
  .py-100 {
    padding: 60px 0;
  }
  .subtitle {
    font-size: 34px;
  }
  /* global end  */
  .about-left .title-left {
    text-align: center;
  }
  .about-num-title {
    font-size: 42px;
  }
  .about-num-desc {
    font-size: 14px;
  }
  /* about 575 end  */
  /* ABOUT v2 575 start  */

  .about-v2-image-item {
    height: 320px;
  }

  .about-v2-list ul {
    column-count: 1;
  }

  /* ABOUT v2 575 END  */
  /* SERVICES 575 start  */

  .services-item {
    border-right: none !important;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    padding-right: 0;
  }
  .services-icon {
    margin: 0 auto 25px auto;
  }
  .services-item:nth-last-child(n + 2) {
    border-bottom: 1px solid #e3e3e3;
  }
  .services-readmore {
    justify-content: center;
  }

  /* SERVICES 575 END  */
  /* team-wrap 575 START  */

  .team-about-right {
    height: 400px;
  }
  .team-about-grid {
    flex-direction: column;
  }
  .team-about-item {
    width: 100%;
  }
  .team-text-wrap {
    padding: 0;
  }
  /* team-wrap 575 END  */
  /* why-wrap 575 START  */

  .progress-text {
    font-size: 18px;
    margin-bottom: 12px;
  }
  /* why-wrap 575 end   */
  /* .article 575 start  */
  .article-meta {
    width: 100%;
    border-radius: 20px 20px 0 0;
    justify-content: center;
    row-gap: 15px;
    padding: 18px 20px;
  }
  .article-thumb {
    height: 300px;
  }
  .article-body {
    padding: 20px 20px 30px 20px;
  }
  .acticle-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .article-button {
    max-width: none;
  }
  /* .article 575 end  */
  /* team 575  START */

  .team-item {
    width: 100%;
  }

  /* team 575  end  */
  /* FAQ 575 STArt */
  .faq-row {
    padding: 50px 30px;
  }
  .faq-question,
  .faq-answer {
    font-size: 16px;
  }
  /* FAQ 575 END */
  /* testimonial 575 START  */

  .testimonials-left {
    display: none;
  }
  .review-item {
    padding: 0 20px 110px 20px;
  }
  .review-footer {
    width: calc(100% - 50px);
    column-gap: 16px;
  }
  .review-avatar {
    width: 100px;
    min-width: 100px;
  }
  /* testimonial 575 end   */

  /* video 575 START  */
  .video-item a {
    height: 280px;
  }
  .video-play {
    width: 80px;
    height: 80px;
  }
  .video-play img {
    width: 40%;
  }

  /* video 575 END  */
  /* appointment 575 START  */

  .input-row {
    flex-direction: column;
    row-gap: 20px;
  }

  /* appointment 575 end  */
  /* service-details 575 START  */
  .service-thumb {
    height: 215px;
  }
  .image-50 {
    width: 100%;
    flex-direction: column;
    row-gap: 40px;
  }
  .content-row {
    flex-direction: column;
    row-gap: 40px;
  }
  .image-50 img {
    width: 100%;
  }
  /* service-details 575 END  */
  /* team-details 575 START  */
  .team-details-image {
    height: 450px;
    width: 100%;
  }
  .team-details-spec {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .team-working {
    column-count: 1;
  }
  .team-appointment-title {
    text-align: left;
    font-size: 23px;
    margin-bottom: 30px;
  }
  .team-appointment {
    padding: 20px 28px 50px 20px;
  }
  .team-appointment::before {
    width: 58px;
    height: 58px;
    background-size: 24px 24px;
  }
  /* team-details 575 END  */
  /* GALLARY 575 START  */
  .gallery-v2-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .gallery-v2-grid .gallery-item {
    height: 370px;
  }
  /* GALLARY 575 END  */
  /* blog details 575 start  */
  .article-meta {
    border-radius: 0 0 20px 20px;
  }
  .blog-tags-title {
    display: none;
  }
  .comments-info-top {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
  .comments-thumb {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }
  .comments-body {
    column-gap: 14px;
  }
  .comment-children {
    padding-left: 50px;
  }
  /* blog details 575 end  */
  /* contact 575 start  */
  .contact-right{
    padding: 40px 20px;
  }
  .contact-left{
    padding: 35px 30px;
  }
  .contact-left-title{
    font-size: 30px;
  }
  /* contact 575 end  */
}
@media screen and (max-width: 350px) {
  .comment-children {
    padding-left: 30px;
  }
}
