html {
  scroll-behavior: smooth;
}
body {
  background: #f7f9fe;
  font-family: "Gilroy", sans-serif;
}
*:focus {
  outline: none !important;
}
*,
::after,
::before {
  box-sizing: border-box;
}
:root {
  --cl1: 255, 162, 0;
  --cl2: 40, 42, 46;
}
a {
  color: #007bff;
  transition: 0.5s;
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0 0 30px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0 0 0px 0;
  padding: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
button:active,
button:focus,
.btn:active,
.btn:focus {
  box-shadow: none !important;
}
@font-face {
  font-family: gilroy;
  src: url(fonts/sGilroy-Regular.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: gilroy;
  src: url(fonts/sGilroy-Medium.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: gilroy;
  src: url(fonts/sGilroy-Semibold.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: gilroy;
  src: url(fonts/sGilroy-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: gilroy;
  src: url(fonts/sGilroy-Black.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1250px;
}
.wrapper {
  overflow: hidden;
  transition: 0.3s;
}
header {
  position: absolute;
  width: 100%;
  z-index: 2;
}
section.Intro {
  background: url(images/introBG.svg);
  background-size: cover;
  background-position: bottom;
  padding-bottom: 400px;
  position: relative;
  z-index: 1;
}
section.Intro.page {
  padding-bottom: 300px;
}
.mobileMenu {
  display: none;
}
.NSnavFlex {
  display: flex;
  padding: 15px 0;
  align-items: center;
}
.NSnavFlex .nav-items ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.NSnavFlex .logo img {
  height: 55px;
  width: auto;
  object-fit: cover;
}
.NSnavFlex .navArea {
  display: flex;
  width: 100%;
}
.NSnavFlex .nav-items ul li {
  list-style: none;
  padding: 25px 0;
}
.NSnavFlex .nav-items ul li a {
  color: #fff;
  padding: 5px 15px;
  position: relative;
  font-size: 18px;
}
.NSnavFlex .nav-items ul li a::after {
  content: "";
  position: absolute;
  left: calc(50%);
  bottom: -2px;
  height: 3px;
  width: 0px;
  border-radius: 5px;
  background: rgba(var(--cl1));
  transition: 0.3s;
}
.NSnavFlex .nav-items ul li.drop > a::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: calc(50% - 4px);
  margin-left: -5px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.NSnavFlex .nav-items ul li.drop:hover > a::before {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}
.NSnavFlex .nav-items ul li.active a::after,
.NSnavFlex .nav-items ul li:hover a:after {
  left: calc(50% - 12.5px);
  width: 25px;
}
.NSnavFlex .nav-items {
  border-left: 1px solid #ffffff15;
  margin-left: 25px;
  padding-left: 10px;
  height: 43px;
  display: flex;
  align-items: center;
}
.NSnavFlex .nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.nav-actions .offetBTN {
  color: #fff;
  background: rgba(var(--cl1));
  display: block;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 5px rgba(var(--cl1), 0.1);
  transition: cubic-bezier(0.08, 0.67, 0.92, 0.41), 0.4s;
}
.nav-actions .offetBTN:hover {
  box-shadow: 0 5px 25px rgba(var(--cl1), 0.4);
}
.nav-actions .offetBTN:hover {
  padding: 10px 28px;
}
.NSnavFlex .nav-actions .comp-detail .comp-ico {
  color: #fff;
  font-size: 26px;
  margin-left: 20px;
  cursor: pointer;
  transition: 0.2s;
}
.comp-ico.show {
  color: rgba(var(--cl1)) !important;
}
.NSnavFlex .dropMenu {
  position: absolute;
  z-index: 1;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 5px 30px rgb(var(--cl2), 0.2);
  padding: 20px;
  border-radius: 15px;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  max-width: 1220px;
  margin: 0 auto;
}
.NSnavFlex .nav-items ul li:hover .dropMenu {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}
.NSnavFlex .dropMenuList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
.NSnavFlex .dropMenuList .item {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f1f5f6;
  border: 1px solid transparent;
  padding: 20px;
  margin-right: 10px;
  transition: 0.2s;
  border-radius: 10px;
}
.NSnavFlex .dropMenuList .item .icon {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--cl2));
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.3s;
}
.NSnavFlex .dropMenuList .item:hover {
  z-index: 2;
  background-color: #fafbfc;
  border: 1px solid #edeeee;
}
.NSnavFlex .dropMenuList .item:hover .icon {
  border-radius: 10px;
}
.NSnavFlex .dropMenuList .item.hover {
  filter: blur(1px);
}
.NSnavFlex .dropMenuList .item:last-child {
  margin-right: 0;
}
.NSnavFlex .dropMenuList .item .thumb {
  text-align: center;
}
.NSnavFlex .dropMenuList .item .detail span {
  color: rgba(var(--cl2));
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.NSnavFlex .dropMenuList .item .detail {
  display: block;
  width: 100%;
  padding: 0;
}
.NSnavFlex .dropMenuList .item .detail {
  line-height: 18px;
}
.NSnavFlex .dropMenuList .item .detail p {
  color: #8894a5;
  font-weight: 300;
  margin: 0;
  font-size: 14px;
}
.NSnavFlex .dropMenuList a.item::after {
  content: none !important;
}
.NSnavFlex .dropMenuList .item.soon {
  position: relative;
}
.NSnavFlex .dropMenuList .item.soon::before {
  content: "Yak覺nda!";
  position: absolute;
  right: -6px;
  top: 10px;
  background: rgba(var(--cl1));
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 5px;
}
.NSnavFlex .dropMenuList .item.soon .icon,
.NSnavFlex .dropMenuList .item.soon .detail span {
  opacity: 0.5;
}
.IntroHead {
  padding-top: 150px;
  padding-bottom: 200px;
  display: flex;
  align-items: center;
  position: relative;
}
.IntroHead .content {
  max-width: 50%;
  position: relative;
  padding-top: 50px;
}
.IntroHead .content span.top {
  color: rgba(var(--cl1));
  font-weight: 500;
  font-size: 20px;
  position: relative;
}
.IntroHead .content span.top::after {
  content: "";
  position: absolute;
  right: -50px;
  top: calc(50% - 3px);
  height: 5px;
  width: 40px;
  border-radius: 10px;
  background: linear-gradient(to right, transparent, rgba(var(--cl1)));
}
.IntroHead .content h1 {
  font-size: 54px;
  font-weight: bold;
  color: #fff;
}
.IntroHead .content h1 span {
  color: rgba(var(--cl1));
}
.IntroHead .content p {
  color: #ffffffbf;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 300;
}
.IntroHead .cropAct {
  margin-top: 25px;
  position: relative;
  padding: 1px 25px;
  width: fit-content;
  border: 3px solid rgba(var(--cl1));
  min-height: 57px;
}
.IntroHead .cropAct .text {
  color: #fff;
  font-size: 32px;
  min-height: 40px;
  font-weight: 600;
  display: inline-block;
}
.IntroHead .cropAct .ico {
  position: absolute;
  bottom: -20px !important;
  left: 60%;
  font-size: 25px;
  color: #fff;
}
.IntroHead .cropAct [class*="dots"] {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #ffffff;
}
.IntroHead .cropAct .dots1 {
  left: -8px;
  top: -8px;
}
.IntroHead .cropAct .dots2 {
  left: -8px;
  bottom: -8px;
}
.IntroHead .cropAct .dots3 {
  right: -8px;
  top: -8px;
}
.IntroHead .cropAct .dots4 {
  right: -8px;
  bottom: -8px;
}
.IntroHead .ICbgdots img {
  position: absolute;
  left: -40px;
  top: 0;
  width: 350px;
  height: 350px;
  transform: rotate(12deg);
  z-index: -1;
  user-select: none;
  opacity: 0.5;
}
.homeBox {
  position: absolute;
  right: calc(34%);
  top: 450px;
  opacity: 0.1;
  z-index: -1;
}
.IntroHead .image {
  margin-left: auto;
}
.IntroHead .image img {
  max-width: 550px;
  height: auto;
  object-fit: cover;
  max-height: 463px;
}
section.StepUs {
  position: relative;
  margin-top: -450px;
}
.stepHead span {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(var(--cl2));
}
.stepHead p {
  color: #75808f;
}
.stepHead {
  padding-right: 40px;
}
.stepBoxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  position: relative;
  z-index: 1;
}
.stepBoxes .box:nth-child(even) {
  top: -50px;
  position: relative;
}
.stepBoxes .box {
  background: #fff;
  padding: 35px 30px;
  border-radius: 25px;
  box-shadow: 0 10px 30px #45536705;
}
.stepBoxes .box .number {
  background: rgba(var(--cl1), 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 80px;
  border-radius: 10px;
  font-size: 35px;
  font-weight: bold;
  color: rgba(var(--cl1));
  margin-bottom: 30px;
}
.stepBoxes .box .detail span {
  font-weight: bold;
  font-size: 22px;
  color: rgba(var(--cl2));
}
.stepBoxes .box .detail p {
  color: #7d8691;
  margin-bottom: 15px;
}
.stepBoxes .box.one {
  background: rgba(var(--cl1));
}
.stepBoxes .box.one .number {
  background: #ffffff20;
  color: #fff;
}
.stepBoxes .box.one .detail span {
  color: #fff;
}
.stepBoxes .box.one .detail p {
  color: #ffffff;
  font-weight: 300;
}
.stepContent {
  position: relative;
  z-index: 1;
  padding-top: 150px;
}
.headingTitle span {
  color: rgba(var(--cl1));
  font-weight: 500;
  font-size: 20px;
}
.headingTitle h2 {
  font-size: 36px;
  font-weight: 700;
  color: rgba(var(--cl2));
}
.headingTitle p {
  color: #6c7583;
  margin: 0;
}
.headingTitle.piq span {
  position: relative;
}
.headingTitle.piq span::after {
  content: "";
  position: absolute;
  right: -50px;
  top: calc(50% - 2px);
  height: 5px;
  width: 40px;
  border-radius: 10px;
  background: linear-gradient(to right, #ffffff00, rgba(var(--cl1)));
}
.headingTitle.white h2 {
  color: #fff;
}
.headingTitle.white p {
  color: #cad1dd;
  font-weight: 300;
}
.headingTitle.haveIcon {
  display: flex;
  align-items: flex-end;
}
.headingTitle.haveIcon .icon {
  font-size: 45px;
  color: rgba(var(--cl1));
  opacity: 0.5;
  margin-left: auto;
  display: flex;
}
.headingTitle.haveIcon.white .icon {
  color: #fff;
}
.headingTitle.haveIcon .text {
  max-width: 70%;
}
.stepContList,
.countDatas {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}
.countDatas {
  max-width: 90%;
}
.stepContList .item {
  color: rgba(var(--cl2));
  background: rgba(var(--cl1), 0.1);
  padding: 7px 10px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  font-weight: 500;
}
.stepContList .item i {
  color: rgba(var(--cl1));
  margin-right: 7px;
  font-size: 20px;
}
section.CountData {
  margin-top: 75px;
}
.countDatas .item {
  font-size: 22px;
  font-weight: 500;
  color: rgba(var(--cl2));
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding-bottom: 12px;
  border-radius: 5px;
  box-shadow: 2px 4px 15px rgb(0 0 0 / 5%);
}
.countDatas .item span {
  font-size: 60px;
  font-weight: bold;
  color: rgba(var(--cl1));
  display: block;
  margin-bottom: -18px;
}
.countDataContent {
  position: relative;
}
.countDataImage {
  position: relative;
}
.countDataImage img {
  height: auto;
  object-fit: cover;
}
.cDbgdots {
  position: absolute;
  left: 10%;
  bottom: 0;
  transform: rotate(5deg);
  animation: 3s infinite dots;
  z-index: -1;
}
.bmbBG {
  position: absolute;
  top: -22%;
  left: -22%;
  width: 100%;
  z-index: -1;
  transform: rotate(-5deg);
  user-select: none;
}
.bmbBG img {
  width: 130%;
}
section.AboutServices {
  margin-top: 50px;
}
.AboutServices .asContent {
  padding: 25px 0;
  background: rgba(var(--cl2));
}
.aboutServicesArea {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  position: relative;
  z-index: 1;
}
.aboutServicesArea .item {
  background: #fff;
  border-radius: 20px;
  padding: 45px 35px;
}
.aboutServicesArea .item .icon {
  min-width: 80px;
  width: 80px;
  height: 80px;
  background: rgba(var(--cl1));
  border-radius: 20px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.aboutServicesArea .item .icon i {
  font-size: 36px;
  color: #fff;
  transform: rotate(-45deg);
  transition: 0.2s;
  transition-delay: 0.2s;
}
.aboutServicesArea .item:hover {
  box-shadow: 0 0px 30px #ffffff75;
}
.aboutServicesArea .item:hover .icon {
  transform: rotate(0deg);
  box-shadow: 0 10px 25px rgba(var(--cl1), 0.4);
}
.aboutServicesArea .item:hover i {
  transform: rotate(0deg);
}
.aboutServicesArea .item .detail {
  margin-top: 25px;
}
.aboutServicesArea .item .detail span {
  font-size: 20px;
  font-weight: 700;
  color: rgba(var(--cl2));
}
.aboutServicesArea .item .detail p {
  color: #6c7889;
  margin-bottom: 0;
}
.servbord {
  position: absolute;
  top: 8%;
  z-index: -1;
  right: -4%;
  transform: rotate(-5deg);
}
.servbord img {
  width: 370px;
}
.seeMoreServices {
  text-align: right;
  position: relative;
  z-index: 1;
  top: 25px;
  padding: 0 10px;
}
.seeMoreServices a {
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  transition: 0.2s;
}
.seeMoreServices a i {
  margin-left: 7px;
  font-size: 21px;
  transition: 0.2s;
}
.seeMoreServices a:hover i {
  margin-left: 15px;
  position: relative;
  margin-top: -3px;
}
.seeMoreBlog {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  padding: 0 15px;
}
.seeMoreBlog a {
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: 0.2s;
}
.seeMoreBlog a i {
  margin-left: 10px;
  transition: 0.2s;
}
.seeMoreBlog a:hover i {
  margin-left: 15px;
}
section.Testimonial {
  position: relative;
  margin-top: -30px;
}
section.Testimonial::before {
  content: "";
  position: absolute;
  top: -200px;
  bottom: -200px;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: rgba(var(--cl1), 0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='352' height='352' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23E2ECFB' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23DFEBFB'%3E%3Ccircle cx='769' cy='229' r='7'/%3E%3Ccircle cx='539' cy='269' r='7'/%3E%3Ccircle cx='603' cy='493' r='7'/%3E%3Ccircle cx='731' cy='737' r='7'/%3E%3Ccircle cx='520' cy='660' r='7'/%3E%3Ccircle cx='309' cy='538' r='7'/%3E%3Ccircle cx='295' cy='764' r='7'/%3E%3Ccircle cx='40' cy='599' r='7'/%3E%3Ccircle cx='102' cy='382' r='7'/%3E%3Ccircle cx='127' cy='80' r='7'/%3E%3Ccircle cx='370' cy='105' r='7'/%3E%3Ccircle cx='578' cy='42' r='7'/%3E%3Ccircle cx='237' cy='261' r='7'/%3E%3Ccircle cx='390' cy='382' r='7'/%3E%3C/g%3E%3C/svg%3E");
}
.testimonialFlex {
  display: flex;
  align-items: center;
}
.testimonialFlex .bmbBG {
  top: -10%;
  left: -7%;
  transform: rotate(87deg);
}
.testimonialFlex .content {
  width: 100%;
  margin-left: 30px;
}
.testimonialFlex .image {
  position: relative;
  z-index: 1;
}
.testimonialFlex .image img {
  height: auto;
  object-fit: cover;
}
.testimonialSlider {
  margin-top: 35px;
}
.testimonialSlider .item {
  display: none;
}
.testimonialSlider .item.active {
  display: block;
}
.testimonialSlider .item .message {
  color: #6e7887;
}
.testimonialSlider .item .WhoIsThat {
  margin-top: 20px;
  padding-top: 20px;
  position: relative;
}
.testimonialSlider .item .WhoIsThat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background: rgba(var(--cl1));
}
.testimonialSlider .item .WhoIsThat span.person {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: rgba(var(--cl1));
}
.testimonialSlider .item .WhoIsThat span.job {
  color: rgba(var(--cl2), 0.7);
  margin-top: -3px;
  display: block;
}
.testimonialArrow {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.testimonialArrow button.testiaction {
  color: rgba(var(--cl1)) !important;
  background: #fff;
  box-shadow: 0 8px 20px rgba(var(--cl2), 0.1) !important;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonialArrow button.btn.testiafter {
  margin-left: 10px;
}
.testimonialArrow button.noaction {
  background: none;
  box-shadow: none !important;
  color: rgba(var(--cl2)) !important;
}
section.LatestBlog .before {
  z-index: -1;
  position: relative;
}
.lbArea {
  min-height: 200px;
  position: relative;
  margin-top: -30px;
  padding-bottom: 150px;
}
.lbArea::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: rgba(var(--cl2));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 75%);
  z-index: -1;
}
.latestBlogFlex {
  display: flex;
  position: relative;
}
.lbHEad {
  margin-right: 20px;
  background: rgba(var(--cl1));
  height: fit-content;
  min-height: 425px;
  padding: 25px 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lbList {
  width: 100%;
}
.lbHEad .top .title {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  font-size: 50px;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.lbHEad .top .title i {
  font-weight: 400;
  font-size: 30px;
  position: relative;
  top: -10px;
}
.lbHEad .bottom {
  margin-top: auto;
}
.lbHEad .bottom .arrow {
  display: flex;
  align-items: center;
}
.latestBlogFlex .lbDots {
  position: absolute;
  left: -5%;
  top: -10%;
  z-index: -1;
  transform: rotate(-5deg);
}
.lbHEad .bottom .arrow button {
  color: #fff;
  background: #ffffff30;
  padding: 14px 12px;
  margin: 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.lbHEad .bottom .arrow button:hover {
  color: rgba(var(--cl1));
  background: #fff;
}
.lbList .item .thumbnail {
  width: 100%;
  background: linear-gradient(45deg, black, rgba(var(--cl2)));
  border-radius: 25px;
  overflow: hidden;
  transition: 0.3s;
}
.lbList .item .thumbnail img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.6;
  transition: 0.3s;
}
.lbList .item:hover .thumbnail img {
  opacity: 1;
}
.lbList .item .detail {
  margin-top: 10px;
  padding: 0 6px;
}
.lbList .item {
  margin: 0 10px;
}
.lbList .splide__arrows {
  display: none;
}
.lbList .item .detail a h2 {
  font-size: 24px;
  font-weight: 600;
  color: rgba(var(--cl2));
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.lbList .item .detail p {
  color: #707a89;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.lbList .item .detail .top {
  color: #99a2af;
  padding-left: 34px;
  padding-right: 10px;
  margin-bottom: 5px;
  position: relative;
}
.lbList .item .detail .top::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
  width: 23px;
  height: 6px;
  background: rgba(var(--cl1));
  border-radius: 5px;
}
section.well {
  background: linear-gradient(to bottom, #282a2e, #282a2e);
  position: relative;
}
section.well::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15px;
  background: #f7f9fe4d;
}
.wellHead {
  padding: 170px 0 110px;
  display: flex;
  align-items: center;
}
.wellHead.light .title h1 {
  display: block;
  font-size: 45px;
  font-weight: bold;
  color: #323c4a;
  margin-top: -5px;
  width: fit-content;
  position: relative;
}
.wellHead.light .title span {
  font-size: 19px;
  font-weight: 400;
  color: #ffa200;
  width: fit-content;
  position: relative;
}
.wellHead.light .title h1::before {
  content: "";
  position: absolute;
  right: -15px;
  bottom: 0px;
  height: 50px;
  width: 172px;
  border-radius: 100px;
  background: #ffa200;
  z-index: -1;
  transform: rotate(-3deg);
}
.wellHead.light {
  width: 100%;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 130px 0 40px;
  position: relative;
}
.wellHead.light .title p {
  color: #6b7789;
}
.wellHead .icon {
  font-size: 45px;
  margin-right: 20px;
  margin-left: 0;
  background: #fff;
  min-width: 100px;
  height: 100px;
  border-radius: 20px;
  color: rgb(var(--cl2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.wellHead.light .icon {
  font-size: 41px;
  margin-left: auto;
  margin-right: 0;
  color: #ffffff;
  background: #ffa200;
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
}
.wellHead .title h1 {
  color: #fff;
  font-weight: bold;
  font-size: 36px;
}
.wellHead .title p {
  color: #d7dce9;
  font-weight: 300;
  margin-bottom: 0;
}
.wellHead .title {
  position: relative;
}
.aboutContent {
  display: flex;
}
.aboutContent .rightBar {
  min-width: 500px;
  margin-left: 50px;
}
.aboutContent .rightBar img {
  width: 100%;
}
.abomFlex .countDatas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 0;
  margin-top: 30px;
}
.abomFlex .countDatas .item {
  background: rgba(var(--cl1), 0.1);
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: none;
}
.abomFlex .countDatas .item span {
  font-size: 50px;
  margin-bottom: -12px;
}
.aboContent .list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.aboContent .list .box {
  padding: 25px;
  background: #ffffff;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 2px 4px 15px rgb(0 0 0 / 5%);
}
.aboContent .list .box {
  display: flex;
  align-items: center;
}
.aboContent .list .box .icon {
  min-width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--cl2));
  border-radius: 10px;
  font-size: 26px;
  color: #fff;
  margin-right: 15px;
}
.aboContent .list .box .detail span {
  font-weight: bold;
  font-size: 20px;
  color: rgb(var(--cl2));
}
.aboContent .list .box .detail p {
  margin: 0;
  color: #808a99;
}
section.aboContent .list {
  display: flex;
}
section.aboContent .aboutContent {
  margin: 60px 0 100px;
}
section.aboContent .content h2,
.serviceDetail .content h2 {
  color: rgb(var(--cl2));
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 10px;
}
section.aboContent .content p,
.serviceDetail .content p {
  color: #64707e;
}
.footer {
  margin-top: 0 !important;
  background: rgba(var(--cl2));
  padding-top: 40px !important;
}
.footerTop .powerful {
  background: #212529;
  padding: 30px 0;
  position: relative;
  z-index: 0;
}
.footerTop .before {
  margin-top: -220px;
}
.footerTop .area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footerTop .area .text {
  color: #fff;
  font-size: 30px;
}
.footerTop .area .action {
  display: flex;
  align-items: center;
}
.footerTop .area .action .pwrBTN { /* Teklif butonu normal rengi */
  color: #fff;
  font-size: 18px;
  padding: 12px 25px;
  background: #ffa200;
  box-shadow: 0 3px 20px rgba(var(--cl2), 0.2);
  border-radius: 10px;
  margin-left: 30px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.footerTop .area .action .pwrContBTN {
  color: #fff;
  font-size: 18px;
  padding: 12px 25px;
  background: rgba(var(--cl1));
  box-shadow: 0 3px 20px rgba(var(--cl1), 0.2);
  border-radius: 10px;
  margin-left: 15px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.footerTop .area .action .pwrBTN:hover { /* Teklif butonu üstüne gelince */
  background: #5584d3;
}
.footerTop .area .action .pwrContBTN:hover {
  background: #5584d3;
}
.footerTop .area .action .pwrBTN i,
.footerTop .area .action .pwrContBTN i {
  margin-left: 35px;
}
.footerTop .area .action .pwrBTN:hover {
  box-shadow: 0 10px 20px rgba(var(--cl2), 0.4);
}
.footFlex {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ffffff12;
}
.footFlex .info {
  flex: 1;
  margin-left: 50px;
}
.footFlex .fastMenu {
  width: 25%;
  margin-left: 40px;
}
.footFlex p {
  color: #d6d9df;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 0;
}
.fLogo img {
  width: auto;
}
.Footalert {
  max-width: 60%;
  display: flex;
  align-items: center;
}
.Footalert .icon {
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #a0a8b5;
  background: #ffffff10;
  border-radius: 10px;
}
.Footalert p {
  margin: 0;
  margin-left: 20px;
}
.footFlex .item {
  width: 100%;
  color: #d7dce3;
  font-weight: 300;
  background: #ffffff10;
  padding: 13px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.footFlex .item:last-child {
  margin-right: 0;
}
.footFlex .item i {
  margin-right: 7px;
}
.footFlex .item span.info {
  margin-left: auto;
  font-weight: 500;
  color: #fff;
  text-align: right;
}
.fastMenu {
  margin-bottom: 30px;
}
.footer .fastMenu span {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ffffff15;
}
.footer .fastMenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.footer .fastMenu ul li {
  list-style: none;
  margin-right: 15px;
  position: relative;
  font-weight: 300;
}
.footer .fastMenu ul li a {
  color: #fff;
  background: #ffffff10;
  padding: 10px 20px;
  border-radius: 3px;
  display: inline-block;
}
.footer .fastMenu ul li a:hover {
  background: #ffffff20;
}
.footerBottom {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  background: #00000014;
}
.footerBottom .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footerBottom .copyright {
  color: #fff;
}
.footerBottom .socialButton {
  display: flex;
  align-items: center;
}
.footerBottom .socialButton a {
  color: #fff;
  margin-left: 10px;
  font-size: 20px;
  transition: 0.3s;
}
.footerBottom .socialButton a:hover {
  color: rgba(var(--cl1));
}
.mobiletilt {
  transform: inherit !important;
}
.moMenuBTN {
  display: none;
}
.showStepBoxes {
  display: none;
  z-index: 1;
  position: relative;
}
.navAreaClose {
  display: none;
}
.compHeadDetail {
  position: fixed;
  top: 100px;
  right: -100%;
  background: #fff;
  box-shadow: 0 5px 20px #343e4d26;
  border-radius: 20px 0 0 20px;
  z-index: 99;
  max-width: 400px;
  padding: 35px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.compHeadDetail.show {
  right: 0%;
  opacity: 1;
  visibility: visible;
}
.compHeadDetail .content > span {
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--cl2));
}
.compHeadDetail .content ul {
  margin: 0;
  margin-top: 10px;
  padding: 0;
}
.compHeadDetail .content ul li {
  color: rgba(var(--cl2));
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  background: #00000005;
  padding: 10px;
  border-radius: 5px;
}
.compHeadDetail .close {
  color: #fff;
  background: rgba(var(--cl1));
  position: absolute;
  left: -15px;
  top: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}
section.contact {
  margin-bottom: 100px;
}
.wellHead.offer {
  padding-bottom: 70px;
}
.contactForm {
  background: #fff;
  box-shadow: 0 5px 30px rgb(var(--cl2), 0.1);
  padding: 40px 35px;
  border-radius: 12px;
  margin-top: -180px;
  z-index: 1;
  position: relative;
}
.chooseService {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin-bottom: 30px;
}
.chooseService .item {
  color: rgba(var(--cl2));
  background: #f1f3f6;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
}
.chooseService .item:last-child {
  margin-right: 0;
}
.form-control {
  color: #6d7a89;
  padding: 15px 20px;
  border: 1px solid #00000010;
  border-radius: 10px;
  box-shadow: none !important;
}
.form-control::placeholder {
  color: #d0d5dd !important;
}
.servicesGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
  margin-bottom: 75px;
}
.servicesGrid .item {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 2px 4px 12px rgb(0 0 0 / 8%);
  transition: all 0.2s cubic-bezier(0, 0, 0.5, 1);
  display: inline-flex;
  flex-direction: column;
  grid-column: 2 span;
}
.servicesGrid .item:hover {
  box-shadow: 2px 4px 16px rgb(0 0 0 / 16%);
  transform: scale3d(1.01, 1.01, 1.01);
}
.servicesGrid .item .content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.servicesGrid .item .title {
  padding: 20px;
}
.servicesGrid .item .title > span {
  background-image: linear-gradient(to right, #7794bf, #7963af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.servicesGrid .item .title a h1 {
  font-size: 1.55rem;
  font-weight: bold;
  color: rgb(var(--cl2));
  margin-bottom: 5px;
}
.servicesGrid .item .title > p {
  color: #7a8495;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.servicesGrid .item .content {
  padding: 20px;
  padding-bottom: 0;
  width: 100%;
}
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 99%;
  background-position-y: 50%;
}
.input-group-text {
  color: #65717c;
  background-color: #f8f9fb;
  border: 1px solid #efefef;
  border-radius: 10px;
}
.chooseService .item.selected {
    background: #ffeebc;
    border-color: #ffbf00;
}
label.f-label {
  font-weight: 500;
  padding-left: 2px;
  margin-bottom: 5px;
  color: #414e60;
}
.contactForm .action {
  display: flex;
  justify-content: end;
}
.formSend {
  color: #fff !important;
  background: rgba(var(--cl1));
  font-size: 16px;
  padding: 10px 20px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(var(--cl1), 0.3);
  transition: 0.3s;
}
.formSend:hover {
  min-width: 170px;
}
.stages {
  margin: 50px 0;
  padding-left: 30px;
  position: relative;
}
.stages::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 100%;
  background: rgba(var(--cl2), 0.1);
  border-radius: 5px;
}
.stages .step {
  background: #6d81a10f;
  border: 2px solid #43506314;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 15px;
  margin-right: 20px;
  position: relative;
}
.stages .step p {
  color: #6a7585;
  margin: 0;
}
.stages .step span {
  color: rgb(var(--cl2));
  font-weight: bold;
  font-size: 18px;
}
.stages .step::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -6px;
  margin-left: -3px;
  border-right: 8px solid #e1e5ec;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transition: 0.2s;
}
.stages .step::after {
  content: "";
  color: #ecf2fb;
  font-weight: 500;
  position: absolute;
  text-align: center;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -44px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  background: #404d60;
  border: 3px solid #adb4bf;
}
.stages .step:nth-child(1)::after {
  content: "1";
}
.stages .step:nth-child(2)::after {
  content: "2";
}
.stages .step:nth-child(3)::after {
  content: "3";
}
.contactContent {
  margin-top: 50px;
  margin-right: 20px;
  padding: 30px;
  background: #edf1f7;
  color: #343f4e;
  border-radius: 15px;
}
.contactContent ul {
  margin: 0;
  padding: 0;
}
.contactContent ul li {
  color: #515b6a;
  list-style: none;
  line-height: 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  background: #768bab1f;
  padding: 12px 15px;
  border-radius: 5px;
}
.contactContent > span {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* BLOG */
.blog-slider {
  position: relative;
  margin-bottom: 20px;
}
.blogslider {
  padding-top: 100px;
}
.blog-list {
  padding-top: 30px;
}
.blog-item {
  display: flex;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 7px 38px rgba(0, 0, 0, 0.1);
}
.bitem-img {
  width: 285px;
  height: 185px;
  margin: 15px;
}
.bitem-img a {
  width: 285px;
}
.bitem-img img {
  width: inherit;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.bitem-detail {
  align-self: center;
  padding: 20px;
  padding-left: 5px;
}
.bitem-detail h2 {
  color: rgb(var(--cl2));
  font-weight: bold;
  font-size: 22px;
}
.bitem-text p {
  color: #757e8d;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.bdetail-area {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.bdecate {
  color: #fff;
  background: #e91e63;
  font-weight: bold;
  padding: 2px 20px;
  border-radius: 24px;
  align-self: center;
}
.bdedate,
.bdeview,
.bdecomment {
  margin-left: 5px;
  font-size: 14px;
  color: rgb(var(--cl2));
  background: rgb(var(--cl2), 0.08);
  font-weight: 400;
  padding: 2px 15px;
  border-radius: 24px;
  align-self: center;
}
.slider-item {
  border-radius: 20px;
  overflow: hidden;
  margin: 0px 8px;
  position: relative;
  transition: 0.3s;
  height: 400px;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 30%, #29313dde 75%);
}
.slider-item:hover .slider-entry {
  bottom: 10px;
}
.slider-entry {
  position: absolute;
  padding: 0px 18px;
  padding-bottom: 25px;
  width: 100%;
  transition: 0.3s;
  bottom: 0;
  text-align: center;
}
.slider-entry h3 {
  font-size: 21px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: 0.3s;
}
.sli-category {
  color: #fff;
  background: rgb(var(--cl1));
  font-weight: 500;
  padding: 2px 20px;
  border-radius: 24px;
  align-self: center;
  width: fit-content;
  margin: 0 auto;
}
.blog-slider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #272f3a, #29313d);
  background-attachment: fixed;
  clip-path: polygon(0 0, 100% 0%, 100% 72%, 0 90%);
}
.blist-head {
  font-size: 17px;
  padding-left: 18px;
  position: relative;
  color: rgb(var(--cl2), 0.7);
  margin-bottom: 15px;
}
.blist-head::before {
  content: "";
  position: absolute;
  left: 2px;
  width: 7px;
  border-radius: 16px;
  height: 100%;
  background: rgb(var(--cl1));
}
.blist-head span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-top: -7px;
  color: rgb(var(--cl2));
}
.blist-head i {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
  color: rgb(var(--cl2));
}
.blist-style {
  position: absolute;
  grid-column-gap: 10px;
  display: flex;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.blist-style i {
  position: relative;
  transform: none;
  top: 0;
  font-size: 28px;
  transition: 0.3s;
  cursor: pointer;
  opacity: 0.4;
}
.blist-style i.i-op1 {
  opacity: 1;
  color: rgb(var(--cl2));
}
.b-items-list.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
}
.b-items-list.grid .blog-item {
  display: block;
}
.b-items-list.grid .blog-item .bitem-img {
  width: 100%;
  height: 250px;
  margin: 0;
  padding: 15px;
}
.b-items-list.grid .blog-item .bitem-img img {
  width: 100%;
}
.b-items-list.grid .blog-item .bitem-detail {
  text-align: center;
  padding: 15px;
  padding-top: 0;
}
.b-items-list.grid .bdeview {
  display: none;
}
.b-items-list.grid .bdecomment {
  display: none;
}
.b-items-list.grid .bdetail-area {
  justify-content: center;
  margin-bottom: 10px;
}
.sidebar-area {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 15px 20px 0 rgb(0 0 0 / 2%);
}
.most-popi-item {
  display: flex;
  margin-bottom: 20px;
}
.most-popi-item:nth-last-child(1) {
  margin-bottom: 0;
}
.mp-image img {
  width: 90px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
}
.mp-detail {
  padding-left: 13px;
  align-self: center;
}
.mp-detail span {
  color: #888;
  position: relative;
  top: -2px;
  font-size: 14px;
}
.mp-detail h5 {
  color: rgb(var(--cl2));
  font-size: 17px;
  position: relative;
  top: -4px;
  font-weight: bold;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.search-area {
  position: relative;
  margin-left: 20px;
}
.form-control.form-search {
  width: 290px;
  padding: 0px 20px;
  height: 39px;
  border: none;
  background: #ffffff;
  border-radius: 50px;
}
button.btn.btn-search {
  position: absolute;
  right: 3px;
  color: rgba(var(--cl1));
  top: 50%;
  transform: translateY(-48%);
}
.categories ul {
  padding: 0;
  margin: 0;
}
.categories ul li {
  list-style: none;
  padding: 3px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  transition: 0.3s;
  border-bottom: 1px solid #00000010;
  padding-left: 5px;
  font-weight: bold;
}
.categories ul li:hover {
  padding-left: 10px;
}
.categories ul li a {
  color: rgb(var(--cl2));
  text-decoration: none;
}
.categories ul li span {
  float: right;
  color: #ffffff;
  background: rgb(var(--cl1));
  padding: 0px 10px;
  border-radius: 27px;
  font-weight: 600;
  font-size: 14px;
}
.categories ul li:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.ilgi-item img {
  border-radius: 10px;
}
.ilgi-entry {
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: center;
}
.ilgi-entry h3 {
  font-size: 21px;
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
}
.ilgi-entry p {
  color: #888;
  font-weight: 300;
}
.content-view {
  background: #fff;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0px 15px 20px 0 rgb(0 0 0 / 2%);
}
.content-head {
  padding: 20px;
}
.ch-category {
  color: #fff;
  background: rgba(var(--cl1));
  font-size: 15px;
  display: inline-block;
  padding: 2px 15px;
  border-radius: 25px;
  margin-bottom: 9px;
}
.content-head h1 {
  color: rgb(var(--cl2));
  font-size: 34px;
  line-height: 2.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.content-head h2 {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  color: #777;
}
.content-head p {
  color: #7c8395;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.015rem;
  margin-bottom: 15px;
}
.content-detail {
  margin: 0px 5px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.author-box a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.author-box img {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  margin-right: 7px;
}
.author-box .aut-name {
  font-weight: 600;
  font-size: 17px;
  color: #666;
}
.content-view-comment {
  color: #7b8491;
  background: #5b739714;
  padding: 2px 20px;
  border-radius: 28px;
  font-size: 1rem;
}
.content-view-comment a {
  color: #7b8491;
  margin-left: 10px;
  text-decoration: none;
}
.content-image img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}
.content-text-area {
  color: #656e85;
  font-size: 18px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.015rem;
  padding: 20px 25px 30px;
}
.content-text-area p {
  margin-bottom: 10px;
}
.content-text-area p span {
  font-size: 18px !important;
}
.content-text-area a,
.content-text-area a b {
  color: #6599ef !important;
}
.content-text-area b {
  font-weight: 700;
  color: #373a4a;
}
.content-text-area h1,
.content-text-area h2,
.content-text-area h3 {
  font-weight: bold;
  color: #373a4a;
  margin-top: 25px;
  margin-bottom: 7px;
}
.content-text-area h4 {
  font-weight: bold;
  color: #373a4a;
  margin-top: 25px;
  margin-bottom: 5px;
}
.content-text-area h5 {
  font-weight: bold;
  color: #373a4a;
  margin-top: 25px;
  margin-bottom: 3px;
}
.content-text-area pre {
  padding: 10px 15px;
  background: #2a3442;
  color: #fff;
  border-radius: 7px;
}
.content-text-area pre h6 {
  text-transform: uppercase;
  font-weight: 500;
  font-family: "gilroy", sans-serif;
  border-bottom: 1px solid #ffffff10;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #6f9eeb;
}
.content-text-area ul,
.content-text-area ol {
  padding-left: 1.5rem;
}
.nsbadge {
  color: #fff;
  padding: 4px 12px;
  font-weight: 300;
  border-radius: 6px;
  display: inline-block;
  font-size: 16px;
}
.bg-light {
  color: rgba(var(--cl2));
}
.ilgili-urun {
  display: flex;
  background: #00000005;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
}
.ilgili-urun-image img {
  width: 260px;
  box-shadow: 0px 3px 15px #00000010;
  border-radius: 8px;
}
.ilgili-urun-detay {
  padding-left: 15px;
  align-self: center;
}
.ilgili-urun-detay h4 {
  font-size: 22px;
  margin-bottom: 4px;
}
.ilgili-urun-detay p {
  font-size: 15px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #888;
  margin-bottom: 10px;
}
.onerilen-yazi {
  display: flex;
  background: #00000005;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
}
.onerilen-yazi-image img {
  width: 260px;
  max-height: 150px;
  object-fit: cover;
  box-shadow: 0px 3px 15px #00000010;
  border-radius: 8px;
}
.onerilen-yazi-detay {
  padding-left: 15px;
  align-self: center;
}
.onerilen-yazi-detay h4 {
  font-size: 22px;
  text-decoration: none;
  margin-bottom: 4px;
}
.onerilen-yazi-detay p {
  font-size: 15px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #888;
  margin-bottom: 10px;
}
.onerilen-btn {
  color: #fff !important;
  background: rgba(var(--cl1));
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  padding: 2px 10px;
  margin-bottom: 7px;
}
.share-area {
  display: flex;
  align-items: center;
  background: #fff;
  overflow: hidden;
  padding: 15px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 7px 38px rgba(0, 0, 0, 0.1);
}
.share-title {
  font-weight: bold;
  font-size: 17px;
  color: #555;
}
.share-item a {
  font-size: 28px;
  color: rgba(var(--cl1));
  margin-left: 13px;
  display: grid;
}
.share-item a:hover {
  color: rgb(var(--cl2));
}
.share-web {
  position: fixed;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  text-align: center;
  background: #fff;
  overflow: hidden;
  padding: 20px 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  z-index: 99;
  box-shadow: 0 7px 38px rgb(43 51 72 / 10%);
}
.share-web .share-item {
  padding: 15px 0px;
}
.share-web .share-item a {
  margin-left: 0;
}
.comment-area {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0px 15px 20px 0 rgb(0 0 0 / 2%);
}
.content-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  background: ##fbfbfb;
  background-attachment: fixed;
  clip-path: polygon(0 0, 100% 0%, 100% 72%, 0 90%);
  z-index: -1;
}
.content-area.service::before {
  height: 630px;
}
.content-area.light::before {
  min-height: 600px;
  height: 65%;
  background-color: #ecf2ff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='254' height='254' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23DAE6FF' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23DAE6FF'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
}
.content-area.light::before {
  height: 500px;
}
section.content-area.light.about::before {
  min-height: 450px;
  height: 450px;
}
.content-area.light.dPage::before {
  height: 270px;
  min-height: 270px;
  clip-path: inherit;
  background-color: #eceff7;
}
.dPageHead {
  display: flex;
  align-items: center;
}
.dPageHead .avatar img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 16px;
  border: 3px solid #323c4a1a;
}
.dPageHead .detail .title h2 {
  font-weight: bold;
  color: #323c4a;
  font-size: 30px;
  margin-bottom: -2px;
}
.dPage .wellHead.light {
  margin-bottom: 55px;
}
.comment-item {
  display: flex;
  padding: 0px 5px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #00000010;
}
.comment-item:nth-last-child(1) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.comment-item .comDetailTop {
  display: flex;
  align-items: center;
}
.reply .comment-item {
  border-radius: 10px;
  background: #f6f7f9;
  padding: 10px 15px;
  margin-bottom: 10px;
  border: none;
  position: relative;
  border-radius: 5px;
}
.comment-area .reply .comment-item::before {
  content: "";
  position: absolute;
  top: 35px;
  width: 46px;
  left: -45px;
  height: 2px;
  background: linear-gradient(to right, #e2e5ed, #e2e5ed00);
}
.comment-item .com-root {
  display: inline-block;
  color: #724d4d;
  background: #f7bfbf;
  padding: 1px 10px;
  margin-left: 7px;
  margin-right: 4px;
  font-size: 12px;
  border-radius: 15px;
}
.comment-area .reply {
  margin-top: 15px;
  position: relative;
}
.comment-area .reply::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -45px;
  width: 1px;
  height: calc(100% + 50px);
  border-left: 2px solid #e2e5ed;
  z-index: 0;
}
.reply .com-img img {
  width: 50px;
  border-radius: 5px;
  position: relative;
  top: 2px;
  border: 2px solid #e2e5ed;
}
.reply .comment-item:last-child {
  margin-bottom: auto;
}
.comment-area.visitor-comment {
  padding: 20px;
  color: #666;
}
.com-img img {
  width: 55px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.com-detail {
  margin-left: 15px;
  position: relative;
}
.member-comment {
  display: flex;
}
.mcom-img img {
  width: 80px;
  border-radius: 10px;
}
.mcom-text {
  width: 100%;
  padding-left: 15px;
}
.mcom-text textarea {
  min-height: 80px;
}
.comFormArea {
  position: relative;
}
.comFormArea.tock .alert {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% - 50px);
  display: block;
}
.comFormArea.tock .form-control {
  filter: blur(2px);
}
.comFormArea .alert {
  display: none;
}
.comFormArea.tock.captcha .alert {
  background: #e7ebf1;
  border-color: #d0d5dd;
  display: flex;
  justify-content: center;
}
.comFormArea.tock.captcha .alert p {
  display: none;
}
.comFormArea.tock.captcha .alert .btn-close {
  display: none;
}
.btn-com-submit {
  color: #fff !important;
  transition: 0.3s;
  background: rgba(var(--cl1));
  font-weight: 500;
  box-shadow: 0px 5px 15px rgba(var(--cl1), 0.2);
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 12px;
  margin-bottom: 5px;
  float: right;
}
.btn-com-submit:hover {
  padding: 10px 25px;
}
.com-detail p {
  margin-bottom: 0;
  color: #7f8795;
  font-size: 17px;
}
.com-author {
  font-weight: bold;
  color: #535f74;
  font-size: 18px;
  display: inline-block;
}
.com-date {
  display: inline-block;
  margin-left: 7px;
  position: relative;
  font-size: 13px;
  color: #888;
}
.ns-pagi {
  justify-content: flex-end;
  margin-top: 25px;
  margin-bottom: 50px;
}
ul.ns-pagi li a {
  border: none;
  box-shadow: 0px 0px 10px #00000010;
  margin: 0px 3px;
}
ul.ns-pagi li a:active,
ul.ns-pagi li a:focus {
  box-shadow: 0px 0px 10px #00000010 !important;
}
.ns-pagi .page-link {
  color: #6c757d;
}
.ns-pagi .page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: rgb(var(--cl1));
  border-color: rgb(var(--cl1));
}
.create-blog {
  padding-top: 120px;
}
.create-area {
  background: #fff;
  padding: 25px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 7px 38px rgba(0, 0, 0, 0.1);
}
.create-label {
  font-weight: bold;
  color: #777;
  width: 100%;
}
.delete-item {
  float: right;
  position: relative;
  top: 2px;
  color: #e17b7b;
  cursor: pointer;
}
.create-add-item {
  margin-top: 20px;
  background: #0000000a;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
}
.citem-1 {
  width: 100%;
}
.citem-1 span {
  color: #777;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  padding-left: 3px;
}
.citem-add {
  display: flex;
}
.citem-btn {
  min-width: 100px;
  color: #fff !important;
  font-size: 18px;
  font-weight: 500;
  background: rgba(var(--cl1));
  border-radius: 10px;
  margin-left: 10px;
  box-shadow: 0px 5px 15px rgba(var(--cl1), 0.3);
  transition: 0.1s;
  position: relative;
  top: 0px;
}
.citem-btn:hover {
  position: relative;
  top: -3px;
}
.upload-image {
  text-align: center;
  padding: 50px;
  font-size: 50px;
  border: 2px dashed #999;
  color: #999;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}
.upload-image span {
  font-size: 15px;
  display: block;
  letter-spacing: 4px;
  position: relative;
  top: -5px;
}
.blogslider .splide__arrow svg {
  fill: rgb(var(--cl2));
  height: 1em;
  width: 1em;
}
.blogView {
  padding-top: 120px;
}
section.content-area header {
  background: #282a2e;
  box-shadow: 0 7px 38px rgb(0 0 0 / 10%);
}
.serviceHead {
  padding: 130px 0 0;
}
.serviceThumb {
  height: auto;
  position: relative;
}
.serviceThumb img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  aspect-ratio: 3/4;
}
.tagHash {
  display: inline-block;
  background: linear-gradient(to right, #6599ef1f, #6599ef61);
  padding: 5px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.tagHash span {
  background-image: linear-gradient(to right, #7794bf, #7963af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.serviceWell h1 {
  font-weight: bold;
  color: rgb(var(--cl2));
  margin-bottom: 10px;
}
.serviceWell p {
  color: #5a6678;
}
.serviceWell .action .butto-offer {
  color: #fff;
  background: rgba(var(--cl1));
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(var(--cl1), 0.3);
  transition: cubic-bezier(0.08, 0.67, 0.92, 0.41), 0.4s;
}
.serviceWell {
  padding-top: 25px;
}
.servicetools {
  position: absolute;
  width: 50px;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffffb5;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 3px 30px #29313d30;
  padding: 20px 10px;
  border-radius: 10px;
}
.servicetools i {
  font-size: 20px;
  margin-bottom: 20px;
  color: #536072;
  transition: 0.2s;
  position: relative;
}
.servicetools i:hover {
  transform: rotate(10deg);
}
.servicetools i:last-child {
  margin-bottom: 0;
}
.servicetools i.color {
  color: #6599ef;
}
.serviceType .item {
  background: #fff;
  padding: 20px 12px;
  border-radius: 15px;
  box-shadow: 0 10px 30px #45536705;
  margin: 0 5px;
}
.serviceType .item .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 10px;
}
.serviceType .item .icon img {
  width: 100%;
}
.serviceDetail {
  margin-top: -185px;
}
.serviceDetail .content {
  margin: 50px 0;
}
.serviceType .item .text {
  text-align: center;
}
.serviceType .item span {
  font-size: 18px;
  font-weight: bold;
  color: rgb(var(--cl2));
  margin-bottom: 0;
  display: block;
}
.serviceType .item .text p {
  margin: 0;
  color: #6e7a8f;
}
.serviceOptions {
  margin-top: 30px;
  margin-bottom: 50px;
}
.serviceOptions ul {
  margin: 0;
  padding: 0;
}
.serviceOptions ul li {
  list-style: none;
  color: rgb(var(--cl2));
  font-weight: 500;
  background: rgb(var(--cl1), 0.1);
  margin-bottom: 5px;
  padding: 8px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.serviceType .splide__arrows .splide__arrow--prev {
  left: -15px;
  background: #6599ef;
  border: 5px solid #f7f9fe;
  padding: 5px;
  width: 40px;
  height: 40px;
}
.serviceType .splide__arrows .splide__arrow--prev svg,
.serviceType .splide__arrows .splide__arrow--next svg {
  fill: #fff;
}
.serviceType .splide__arrows .splide__arrow--next {
  right: -15px;
  background: #6599ef;
  border: 5px solid #f7f9fe;
  padding: 5px;
  width: 40px;
  height: 40px;
}
.faqwell {
  margin-top: 20px;
  margin-bottom: 50px;
}
.faqwell .item {
  background: #fff;
  padding: 20px;
  padding-bottom: 18px;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}
.faqwell .item .fs-head {
  font-weight: 500;
  color: rgba(var(--cl2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faqwell .item .fs-head .plusminus .minus {
  display: none;
}
.faqwell .item .fs-content {
  padding-top: 12px;
  margin-top: 15px;
  border-top: 1px solid #00000010;
  display: none;
}
.fs-content p {
  color: #788391;
  margin: 0;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.lazy {
  opacity: 0;
  transition: opacity 0.5s;
}
.lazy.Load {
  opacity: 1;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@keyframes dots {
  0%,
  100% {
    transform: rotate(6deg);
  }
  50% {
    transform: rotate(-6deg);
  }
}
@keyframes logoIn {
  0% {
    z-index: 99;
    transform: scale(1);
  }
  30% {
    z-index: 100;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@media (min-width: 1000px) {
  body {
    font-size: 1.1em;
  }
}
@media (min-width: 1200px) {
  section.StepUs .row {
    --bs-gutter-x: 3rem;
  }
  .share-area {
    display: none !important;
  }
  .share-web {
    display: block !important;
  }
  .sticky-side {
    position: sticky;
    top: 30px;
  }
}
@media (max-width: 1300px) {
  .servicetools {
    right: -25px;
    left: inherit;
  }
}
@media (max-width: 1200px) {
  .aboutServicesArea {
    grid-gap: 15px;
  }
  .countDataImage img {
    width: 100%;
  }
  .IntroHead .image img {
    max-width: 100%;
  }
  .IntroHead .content {
    max-width: 100%;
  }
  .headingTitle.haveIcon {
    align-items: center;
  }
  section.StepUs {
    margin-top: -400px;
  }
  .share-web {
    display: none !important;
  }
}
@media (max-width: 1100px) {
  .aboutServicesArea .item {
    padding: 25px;
  }
  .aboutServicesArea .item .icon {
    margin: 10px;
  }
  .testimonialFlex .image img {
    width: 100%;
  }
  .testimonialFlex {
    padding: 60px 0;
  }
  .IntroHead .content h1 {
    font-size: 45px;
  }
  .homeBox {
    display: none;
  }

  .aboutContent {
    flex-direction: column;
  }
  .aboutContent .rightBar {
    min-width: 100%;
    margin-left: 0;
  }
  .aboutContent .rightBar img {
    display: none;
  }
  .serviceDetail {
    margin-top: -85px;
  }
}
@media (max-width: 1000px) {
  body.menu {
    overflow: hidden;
  }
  body.menu .mobileMenu {
    left: 0%;
    visibility: visible;
  }
  body.menu .wrapper {
    filter: blur(2px);
  }
  .mobileMenu {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: calc(100% - 80px);
    max-width: 550px;
    z-index: 999;
    background: #fff;
    padding: 30px;
    border-radius: 0 20px 20px 0;
    transition: 0.2s;
    visibility: hidden;
    display: block;
  }
  .aboutServicesArea {
    grid-template-columns: repeat(2, 1fr);
  }
  .IntroHead .content h1 {
    font-size: 40px;
  }
  .aboutServicesArea .item .icon {
    transform: inherit;
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
  .aboutServicesArea .item {
    display: flex;
    align-items: center;
    padding: 20px;
  }
  .aboutServicesArea .item .detail {
    margin-top: 0;
    margin-left: 15px;
  }
  .aboutServicesArea .item .icon i {
    font-size: 20px;
    transform: rotate(0deg);
  }
  .aboutServicesArea .item .detail span {
    font-size: 16px;
  }
  .aboutServicesArea .item .detail p {
    font-size: 15px;
    line-height: 19px;
  }
  .moMenuBTN {
    display: block;
    margin-left: auto;
    margin-top: -2px;
    z-index: 100;
  }
  .NSnavFlex .navArea {
    display: none;
  }
  .moMenuBTN .bar [class*="item"] {
    position: absolute;
    background: #fff;
    height: 4px;
    width: 25px;
    border-radius: 10px;
    transition: 0.2s;
  }
  .moMenuBTN .bar {
    position: relative;
    width: 25px;
    height: 22px;
  }
  .moMenuBTN .bar .item1 {
    top: 0;
  }
  .moMenuBTN .bar .item2 {
    top: calc(50% - 2px);
  }
  .moMenuBTN .bar .item3 {
    top: calc(100% - 4px);
  }
  .moMenuBTN.active {
    z-index: 100;
    margin-top: 0;
  }
  .moMenuBTN.active .bar .item1 {
    top: calc(50% - 2px);
    transform: rotate(45deg);
    transition-delay: 0.2s;
  }
  .moMenuBTN.active .bar .item2 {
    opacity: 0;
    visibility: hidden;
  }
  .moMenuBTN.active .bar .item3 {
    top: calc(50% - 2px);
    transform: rotate(-45deg);
    transition-delay: 0.1s;
  }
  .stepBoxes .box {
    padding: 20px;
  }
  .headingTitle h2 {
    font-size: 30px;
  }
  .latestBlogFlex {
    flex-direction: column;
  }
  .lbArea {
    margin-top: -3px;
  }
  .lbHEad {
    flex-direction: row;
    min-height: auto;
    justify-content: space-between;
    margin-right: 0;
    padding: 15px 20px;
    margin-bottom: 15px;
  }
  .lbHEad .top .title {
    writing-mode: inherit;
    transform: inherit;
    font-size: 30px;
  }
  .lbHEad .bottom {
    margin-top: inherit;
    margin-left: 10px;
  }
  .lbHEad .top .title i {
    top: 0;
    margin-right: 10px;
  }
  .lbHEad .bottom .arrow button {
    padding: 10px 12px;
  }
  .NSnavFlex .logo {
    z-index: 9;
    transition-delay: 0.3s;
  }
  .NSnavFlex .logo.special {
    animation: 0.6s ease logoIn;
    z-index: 100;
  }
  .NSnavFlex .nav-items {
    display: block;
    height: auto;
    margin-left: 0;
    border-left: none;
    padding: 10px;
    border-top: 1px solid #ffffff10;
  }
  .NSnavFlex .nav-items ul {
    flex-direction: column;
  }
  .NSnavFlex .nav-items ul li {
    padding: 10px 0;
  }
  .NSnavFlex .nav-items ul li a {
    padding: 10px;
    padding-left: 25px;
  }
  .NSnavFlex .nav-items ul li a::after {
    left: 0 !important;
    top: calc(50% - 4px);
    height: 8px;
    width: 8px;
  }
  .NSnavFlex .nav-items ul li.active a::after,
  .NSnavFlex .nav-items ul li:hover a:after {
    width: 18px;
  }
  .mobileMenu .nav-items ul {
    padding: 0;
    margin: 0;
  }
  .mobileMenu .nav-items ul li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #00000010;
    position: relative;
  }
  .mobileMenu .nav-items ul li a {
    color: rgba(var(--cl2));
    font-weight: 500;
    padding-left: 20px;
  }
  .mobileMenu .nav-items ul li .dropMenu {
    display: none;
  }
  .mobileMenu .nav-items ul li.drop::after {
    content: "\f078";
    position: absolute;
    font-family: fontawesome;
    color: rgba(var(--cl2));
    font-size: 14px;
    right: 5px;
    top: 13px;
    transition: 0.2s;
  }
  .mobileMenu .nav-items ul li.drop.active::after {
    transform: rotateX(180deg);
  }
  .mobileMenu .nav-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobileMenu .dropMenuList {
    margin-top: 12px;
  }
  .mobileMenu .dropMenuList a.item {
    background: #f1f5f6;
    padding: 10px 15px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
  }
  .mobileMenu .dropMenuList .item .detail p {
    display: none;
  }
  .mobileMenu .dropMenuList a.item .icon {
    width: 30px;
    text-align: right;
  }
  .mobileMenu .nav-items ul li.drop > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    transition: 0.2s;
  }
  .mobileMenu .nav-items ul li.drop > a i {
    transition: 0.2s;
  }
  .mobileMenu .nav-items ul li.drop.active > a i {
    transform: rotateX(180deg);
  }
  .mobileMenu .nav-items ul li:last-child {
    border-bottom: none;
  }
  .mobileMenu .nav-actions .comp-detail .comp-ico {
    color: rgba(var(--cl2));
    font-size: 28px;
  }
  .mobileMenu .nav-items ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    height: 8px;
    width: 8px;
    background: rgba(var(--cl2), 0.4);
    border-radius: 10px;
    transition: 0.3s;
  }
  .mobileMenu .nav-items ul > li.active::before {
    background: rgba(var(--cl2), 1);
  }
  .navAreaClose {
    position: absolute;
    right: -20px;
    top: 25px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252d38;
    background: #fff;
    border-radius: 50px;
    border: 3px solid #252d38;
    cursor: pointer;
  }
  .comp-detail,
  .compHeadDetail {
    display: none;
  }
  .chooseService {
    grid-template-columns: repeat(1, 1fr);
  }
  .stages {
    margin-left: 15px;
  }
  .blog-item {
    flex-flow: wrap;
  }
  .bitem-img,
  .bitem-img a {
    width: 100%;
    height: 250px;
  }
  .bitem-detail {
    padding-left: 20px;
    padding-top: 0px;
    text-align: center;
  }
  .bdeview {
    display: none;
  }
  .bdecomment {
    display: none;
  }
  .bdetail-area {
    justify-content: center;
  }
  .blog-list {
    padding-top: 10px;
  }
  .content-head {
    padding: 20px 15px;
  }
  .ilgili-urun,
  .onerilen-yazi {
    flex-direction: column;
  }
  .onerilen-yazi-detay {
    padding-left: 0;
  }
  .ilgili-urun-image {
    margin-bottom: 10px;
  }
  .onerilen-yazi-image {
    margin-bottom: 15px;
  }
  .ilgili-urun-image img,
  .onerilen-yazi-image img {
    width: 100%;
  }
  .ilgili-urun-image,
  .onerilen-yazi-image {
    padding-left: 0;
  }
  .onerilen-yazi-detay p {
    -webkit-line-clamp: 5;
  }
  .ns-pagi {
    justify-content: center;
  }
  .b-items-list.grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .blist-style {
    display: none;
  }
  .content-head h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .servicesGrid .item {
    grid-column: 3 span;
  }
  .servicesGrid .item:nth-child(even) {
    flex-direction: column;
  }
  .servicesGrid .item:nth-child(even) .content {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .servicesGrid .item:nth-child(4) {
    grid-column: 3 span;
    flex-direction: column;
    align-items: initial;
  }
  .servicesGrid .item:nth-child(4) .content {
    padding: 20px;
    width: 100%;
    padding-bottom: 0;
  }
  .servicesGrid .item:nth-child(4) .content img {
    height: 400px;
  }
  .countDatas {
    width: 100%;
  }
  .lbList .item .thumbnail img {
    aspect-ratio: 4/4;
  }
}
@media (max-width: 900px) {
  .IntroHead {
    flex-direction: column;
    padding-top: 125px;
  }
  .aboutServicesArea {
    grid-template-columns: repeat(1, 1fr);
  }
  .footerTop .area,
  .footerBottom .content {
    flex-direction: column;
  }
  .countDatas .item span {
    font-size: 30px;
    margin-bottom: -10px;
  }
  .countDatas .item {
    font-size: 16px;
    text-align: center;
    background: rgba(var(--cl1), 0.1);
    padding: 7px;
    padding-bottom: 10px;
    border-radius: 5px;
    box-shadow: none;
  }
  .headingTitle h2 {
    font-size: 28px;
  }
  .IntroHead .image {
    display: none;
  }
  .IntroHead .ICbgdots img {
    position: absolute;
    left: calc(50% - 165px);
    top: -20%;
    width: 330px;
    height: 330px;
    transform: rotate(5deg);
  }
  .headingTitle.haveIcon .text {
    max-width: 100%;
  }
  .headingTitle {
    position: relative;
  }
  .IntroHead .content {
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
  }
  .IntroHead .content h1 {
    font-size: 30px;
  }
  .headingTitle h2 {
    font-size: 28px;
  }
  .IntroHead .cropAct {
    margin: 0 auto;
    margin-top: 30px;
  }
  section.Intro {
    padding-bottom: 165px;
  }
  section.StepUs {
    margin-top: -230px;
  }
  .stepContent {
    padding-top: 65px;
  }
  .stepBoxes .box .number {
    width: 45px;
    height: 50px;
    font-size: 26px;
    margin-bottom: 15px;
  }
  .stepContList .item {
    font-size: 14px;
  }
  .stepContList {
    grid-gap: 10px;
  }
  .bmbBG {
    opacity: 0.4;
    top: -15%;
  }
  .headingTitle.haveIcon .icon {
    opacity: 0.1;
  }
  .footerTop .area .action {
    margin: 0 auto;
    margin-top: 20px;
  }
  .footFlex .item span.ww {
    display: none;
  }
  .footFlex .item span.info {
    text-align: right;
  }
  .footer .fastMenu ul li a {
    margin-bottom: 10px;
    padding: 7px 12px;
  }
  .headingTitle.white.piq span::before {
    background: linear-gradient(to left, #45536700, rgba(var(--cl1)));
  }
  .headingTitle.white.piq span::after {
    background: linear-gradient(to right, #45536700, rgba(var(--cl1)));
  }
  .chooseService {
    grid-template-columns: repeat(1, 1fr);
  }
  .stages {
    margin-left: 15px;
  }
  section.contact .row {
    flex-direction: column-reverse;
  }
  .contactForm {
    margin-top: -70px;
  }
  .wellHead.offer {
    padding-bottom: 120px;
  }
  .contactContent {
    margin-right: 0;
  }
  .mcom-img {
    display: none;
  }
  .mcom-text {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  section .before,
  section .after {
    overflow: hidden;
  }
  section .before svg,
  section .after svg {
    transform: scale(1.02);
  }
  .IntroHead .content span.top::after {
    right: -40px;
    top: calc(50% - 2px);
  }
  .IntroHead .content span.top::before {
    content: "";
    position: absolute;
    left: -40px;
    top: calc(50% - 2px);
    height: 5px;
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(to left, transparent, rgba(var(--cl1)));
  }
  .NSnavFlex .logo img {
    height: 44px;
    position: relative;
    top: 2px;
  }
  .NSnavFlex .nav-actions {
    justify-content: space-between;
    margin: 10px 0;
  }
  section.Intro {
    padding-bottom: 325px;
  }
  .IntroHead .ICbgdots img {
    width: 280px;
    height: 280px;
    top: -30px;
    left: calc(50% - 140px);
    transform: rotate(-12deg);
    position: absolute;
    opacity: 0.3;
  }
  .IntroHead .image {
    display: block;
    margin-top: 60px;
    margin-bottom: -90px;
    text-align: center;
  }
  .IntroHead {
    padding-bottom: 0;
  }
  .IntroHead .cropAct .text {
    font-size: 26px;
    min-height: 32px;
  }
  .IntroHead .cropAct {
    min-height: 47px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .headingTitle.haveIcon .icon {
    position: absolute;
    left: calc(50% - 24px);
    top: -15px;
    transform: rotate(5deg);
    opacity: 0.2;
  }
  .testimonialFlex {
    flex-direction: column;
  }
  .testimonialFlex .content {
    margin-top: 30px;
    margin-left: 0;
  }
  .stepBoxes {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
  .stepBoxes .box {
    display: flex;
    align-items: center;
    position: relative;
  }
  .stepBoxes .box .number {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    transform: rotate(7deg);
    width: 50px;
    height: 60px;
    font-size: 22px;
    opacity: 0.5;
  }
  .stepBoxes .box:nth-child(even) {
    top: 0;
  }
  .stepBoxes .box .detail p {
    margin-bottom: 0;
  }
  section.StepUs {
    margin-top: -300px;
  }
  .homeBox {
    display: none;
  }
  .IntroHead .image img {
    max-width: 82% !important;
  }
  section.CountData .row {
    flex-direction: column-reverse;
  }
  .stepContent {
    padding-top: 50px;
  }
  .stepContList {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
  .countDataImage img {
    width: 100%;
  }
  .testimonialFlex .image img {
    width: 250px;
  }
  .servbord {
    display: none;
  }
  .latestBlogFlex .lbDots img {
    width: 280px;
    height: 280px;
  }
  .latestBlogFlex .lbDots {
    top: -20px;
    left: calc(50% - 140px);
  }
  .testimonialFlex .bmbBG {
    display: none;
  }
  .cDbgdots {
    bottom: -15px;
  }
  .cDbgdots img {
    width: 280px;
  }
  .stepContList .item {
    border-radius: 5px;
    padding: 10px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .stepContList .item i {
    margin: 0;
  }
  .lbList .item {
    margin: 0;
  }
  .CountData .bmbBG {
    display: none;
  }
  .showStepBoxes {
    display: block;
    text-align: center;
    color: #858a93;
  }
  .showStepBoxes span {
    display: block;
  }
  .stepBoxes .box {
    padding: 35px 30px;
    transition: 0.2s;
  }
  .stepBoxes {
    margin-bottom: -10px;
  }
  .stepBoxes.show {
    margin-bottom: 15px;
  }
  .showStepBoxes.active i {
    position: relative;
    transform: rotateX(180deg);
  }
  .stepBoxes .box:nth-child(2) {
    margin-top: -140px;
    transform: scale(0.9) !important;
    opacity: 1;
    z-index: -1;
    transition-delay: 0.4s;
  }
  .stepBoxes .box:nth-child(3) {
    margin-top: -140px;
    transform: scale(0.8) !important;
    opacity: 0.8;
    z-index: -2;
    transition-delay: 0.2s;
  }
  .stepBoxes .box:nth-child(4) {
    margin-top: -140px;
    transform: scale(0.7) !important;
    opacity: 0.6;
    z-index: -3;
  }
  .stepBoxes.show .box {
    transform: scale(1) !important;
    margin-top: 0;
    opacity: 1;
  }
  .headingTitle {
    text-align: center;
  }
  .headingTitle h2 {
    font-size: 24px;
  }
  .headingTitle.haveIcon {
    display: block;
  }
  .headingTitle.piq span::before {
    content: "";
    position: absolute;
    left: -50px;
    top: calc(50% - 3px);
    height: 5px;
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(to left, #ffffff00, rgba(var(--cl1)));
  }
  .AboutServices .asContent {
    padding: 75px 0;
  }
  section.CountData {
    margin-top: 50px;
    margin-bottom: 80px;
  }
  .countDataImage {
    margin-bottom: 30px;
  }
  .countDatas {
    max-width: 100%;
    grid-gap: 10px;
  }
  .testimonialSlider {
    text-align: center;
  }
  .testimonialSlider .item .WhoIsThat::before {
    left: calc(50% - 50px);
  }
  .testimonialArrow {
    justify-content: center;
  }
  .lbArea {
    margin-top: -2px;
    padding-top: 20px;
  }
  .headingTitle.haveIcon .icon {
    opacity: 0.1;
  }
  .footFlex {
    flex-direction: column;
  }
  .footFlex .item {
    margin: 0;
    margin-bottom: 10px;
  }
  .Footalert {
    max-width: 100%;
    order: 2;
  }
  .Footalert .icon {
    display: none;
  }
  .footFlex .fLogo {
    margin-left: 0 !important;
    margin-right: auto;
    margin-bottom: 20px;
    order: 1;
  }
  .Footalert p {
    margin-left: 0;
  }
  .footerTop .area .action .pwrBTN {
    margin-left: 0;
    font-size: 16px;
    padding: 12px 20px;
  }
  .footerTop .area .action .pwrContBTN {
    font-size: 16px;
    padding: 12px 20px;
  }
  .footerTop .area .text {
    font-size: 23px;
  }
  .wellHead {
    flex-direction: column;
    padding: 120px 0 70px;
  }
  .wellHead .icon {
    margin-right: 0;
    margin-bottom: 20px;
    min-width: 80px;
    height: 80px;
    font-size: 35px;
  }
  .wellHead .title {
    text-align: center;
  }
  .wellHead .title h1 {
    font-size: 30px;
  }
  section.aboContent .list {
    display: grid;
  }
  .blog-item {
    flex-flow: wrap;
  }
  .bitem-img {
    width: 100%;
    height: 195px;
  }
  .bitem-detail {
    padding-left: 20px;
    padding-top: 0px;
    text-align: center;
  }
  .bdeview {
    display: none;
  }
  .bdecomment {
    display: none;
  }
  .bdetail-area {
    justify-content: center;
  }
  .blog-list {
    padding-top: 10px;
  }
  .footer-inside {
    padding: 90px 0px 35px;
  }
  .copyright {
    text-align: center;
    margin-bottom: 45px;
  }
  .foot-cool {
    padding-top: 10px;
    flex-flow: wrap;
    justify-content: center;
    padding-bottom: 15px;
  }
  .social-media a {
    color: #fff;
    font-size: 35px;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 10px;
  }
  .logo.logob img {
    height: 45px;
    margin-top: 4px;
  }
  .mobile-nav-button {
    margin-top: 3px;
    color: #fff;
    position: absolute;
    right: -4px;
  }
  .blogslider {
    padding-top: 90px;
  }
  .slider-item {
    height: 300px;
  }
  .splide.service .splide__arrows {
    display: inherit;
  }
  .splide__arrow--next,
  .splide__arrow--prev {
    bottom: 7px !important;
    top: auto !important;
  }
  .serviceType .splide__arrows .splide__arrow--prev {
    left: 15px;
    top: 60px !important;
  }
  .serviceType .splide__arrows .splide__arrow--next {
    right: 15px;
    top: 60px !important;
  }
  .blogView {
    padding-top: 90px;
  }
  .content-area::before {
    background: #404854;
    min-height: 350px !important;
    height: 350px !important;
  }
  .com-img img {
    width: 40px;
    border-radius: 5px;
    margin-top: 5px;
  }
  .serviceDetail {
    margin-top: -85px;
  }
  .servicetools {
    top: -25px;
    transform: translateX(-50%);
    left: 50%;
    flex-direction: row;
    height: 50px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  }
  .servicetools i {
    margin-right: 20px;
    margin-bottom: 0;
  }
  .servicetools i:last-child {
    margin-right: 0;
  }
  .serviceThumb img {
    aspect-ratio: 4/3;
  }
  .serviceWell {
    padding: 0 3px;
    padding-top: 30px;
  }
  .serviceDetail {
    margin-top: 0px;
  }
  .servicesGrid .item .content img {
    height: 225px !important;
  }
  .servicesGrid .item {
    grid-column: 6 span !important;
  }
  .servicesGrid .item .content img {
    height: 225px;
  }
  .wellHead.light {
    padding-top: 110px;
    padding-bottom: 25px;
  }
  .wellHead.light .title {
    text-align: left;
  }
  .content-area.light::before {
    background: #eaedf5;
    height: 450px !important;
  }
  .wellHead.light .title h1 {
    font-size: 35px;
  }
  .wellHead.light .title h1::before {
    height: 35px;
    width: 135px;
  }
  .wellHead.light .icon {
    display: none;
  }
  .aboContent .list .box .icon {
    position: absolute;
    right: -10px;
    top: -10px;
    margin: 0;
    transform: rotate(-15deg);
    opacity: 0.1;
  }
  .aboContent .list .box {
    position: relative;
    overflow: hidden;
  }
  section.aboContent .aboutContent {
    margin: 40px 0 100px;
  }
  .comment-item .comDetailTop {
    flex-direction: column;
    align-items: baseline;
  }
  .reply .comment-item {
    flex-direction: column;
  }
  .reply .com-detail {
    margin: 0;
  }
  .reply .comment-item .com-root {
    margin: 0;
    margin-bottom: 4px;
  }
  .reply .com-date {
    margin: 0;
    margin-bottom: 7px;
  }
  .reply .com-img {
    position: absolute;
    right: 12px;
    top: 8px;
  }
  .reply .com-img img {
    top: 10px;
    width: 38px;
  }
  .reply .com-author {
    font-size: 16px;
  }
  .reply .comment-item .comDetailTop {
    max-width: calc(100% - 45px);
  }
  .reply .com-detail p {
    font-size: 16px;
  }
  .dPage .wellHead.light {
    justify-content: flex-end;
    margin-bottom: 10px;
  }
  .dPageHead .detail .title h2 {
    font-size: 26px;
  }
  .dPageHead .avatar img {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 590px) {
  .latestBlogFlex {
    flex-direction: column;
  }
}