@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  line-height: 140%;
}
*::-webkit-scrollbar {
  width: 7px;
  height: 2px;
  background-color: #0968df;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
  background-color: #0a254d;

  border-radius: 4px;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  background-color: #ffffff;
}

/* HEADER START */

header {
  width: 100%;
  height: 5vw;
  display: flex;
  align-items: center;
  padding: 0vw 10vw;
  position: relative;
  z-index: 5;
  transition: all 0.3s linear;
}
header.sticky {
  width: 100%;
  height: 5vw;
  position: fixed;
  background-color: #0a254d;
  transition: all 0.3s linear;
}
.header-content {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 10vw;
  height: fit-content;
}

.logo img {
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-list {
  display: flex;
  align-items: center;
}

.menu-li {
  display: inline-flex;
}

.menu-a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85vw;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s linear;
  position: relative;
  padding: 0.5vw 1vw;
  border-radius: 0.5vw;
}

.menu-a:hover {
  border: 1px solid #fff;
  border-radius: 1vw;
  background-color: #025add;
}

.contack-item {
  display: flex;
  /* align-items: center; */
  gap: 1vw;
}

.wp-tg-box {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.wp-tg-box a {
  width: 1.3vw;
  height: 1.3vw;
  transition: all 0.3s linear;
}
.wp-tg-box a:hover {
  transform: scale(1.4);
}
.wp-tg-box a img {
  width: 100%;
  height: 100%;
}

.contack-box {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  justify-content: space-evenly;
}

.contack-box a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s linear;
  position: relative;
}

.tel-a {
  font-size: 1.3vw;
}

.mail-a {
  font-size: 0.85vw;
}
.contack-box a:hover {
  color: #025add;
}

.menu-icon {
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  height: 24px; /* 3 spans * (2px height + 6px gap) */
  width: 30px;
}

.menu-icon span {
  display: block;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
  transform-origin: left center;
}

.menu-icon span:nth-child(3) {
  transform-origin: left center;
}

.menu-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(1px, -6px);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 4px);
}

/* LANGUE START */
.langue-select {
  position: fixed;
  display: inline-block;
  right: 1vw;
  top: 22vw;
  z-index: 444;
}

.langue-select .selected-flags {
  display: inline-block;
  width: 2vw;
  height: 2vw;
  background-size: cover;
  cursor: pointer;
}

.langue-select .dropdowns {
  display: none;
  position: absolute;
  box-shadow: 0 8px 0.85vw rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 2vw;
}

.langue-select .dropdowns a {
  display: block;
}

.langue-select .dropdowns img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

/* LANGUE END */

/* HEADER END */

/* BANNER START */

.banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  margin-top: -5vw;
  overflow: hidden;
}

.banner-content {
  width: 100%;
  position: relative;
  background: url(../img/bg.png);
  background-size: 100% 100%;
  background-position: center center;
  height: 100%;
  min-height: 53vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background-attachment: fixed;
  padding: 0 10vw;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-item {
  width: 55%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 2vw;
}

.banner-title {
  /* width: 100%; */
  /* height: 8vw; */
  font-size: 3.5vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.banner-service {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.banner-service p {
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.banner-service a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
  transition: all 0.3s linear;
}

.banner-service a:hover {
  color: #025add;
}

.banner-service a img {
  width: 2.2vw;
  height: auto;
}

.banner-btn-item {
  display: flex;
  align-items: center;
  gap: 3vw;
}
.banner-l {
  font-weight: 500;
  font-size: 0.85vw;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0.8vw 1.2vw;
  border-radius: 2.6vw;
  transition: all 0.3s linear;
  color: #fff;
  background: linear-gradient(45deg, #025add, #0c6de0);
  cursor: pointer;
}

.banner-l:hover {
  background: #fff;
  color: #025add;
}

/* BANNER END */

/* SERVICES ABOUT START */

.services-about-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.services-about-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  gap: 3vw;
}

.services-about-text {
  display: flex;
  flex-direction: column;
  gap: 1.3vw;
}

.services-about-text h3 {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.services-about-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.services-about-text h4 {
  font-size: 1.2vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.services-about-text li {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
  list-style: disc;
}

/* SERVICES ABOUT END */

/* SERVICES START */
.services-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.services-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.services-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.services-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3vw;
  gap: 2%;
}

.services-card {
  width: 23.5%;
  height: 18vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw 1.3vw;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 0.5vw;
  transition: all 0.3s ease-in-out;
  margin-bottom: 2%;
}
.services-card:hover {
  transform: scale(1.05);
}
.services-card-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}

.services-card-img {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-card-img img {
  width: 4.5vw;
  height: auto;
}

.services-card-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
}

.services-card-text h3 {
  font-size: 1.2vw;
  color: #025add;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}

.services-card-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

.note {
  font-size: 0.9vw;
  color: #3a3a3a;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 120%;
  margin-top: 2vw;
}

/* SERVICES END */

/* US START */

.us-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.us-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.us-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.us-title h2 {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.us-title p {
  font-size: 0.9vw;
  color: #3a3a3a;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 120%;
}

.us-item {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3vw;
  gap: 2%;
}

.us-right,
.us-left {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  flex-shrink: 0;
}

.us-box {
  display: flex;
  gap: 0.5vw;
  align-items: flex-start;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 1vw;
  border-radius: 1vw;
}

.us-text {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.us-text h4 {
  font-size: 1.2vw;
  color: #025add;
  font-weight: 600;
  line-height: 120%;
}
.us-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 120%;
}
.us-img {
  width: 4vw;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}
.us-img img {
  width: 100%;
  height: auto;
}

.us-img-item {
  width: 32%;
  height: fit-content;
}

.us-img-item img {
  width: 100%;
  height: auto;
}

/* US END */

/* PROJE START */

.proje-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.proje-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.proje-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.proje-button-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8vw;
  margin-top: 3vw;
}

.proje-btn {
  font-weight: 500;
  font-size: 0.85vw;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0.8vw 1vw;
  border-radius: 2vw;
  transition: all 0.3s linear;
  color: #025add;
  cursor: pointer;
  background: #f5f5f5;
}
.proje-btn.active {
  background: linear-gradient(45deg, #025add, #0c6de0);
  color: #fff;
}
.proje-btn:hover {
  background: linear-gradient(45deg, #025add, #0c6de0);
  color: #fff;
}

.proje-item-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.proje-item {
  width: 100%;
  height: fit-content;
  display: none;
}

.proje-item.active {
  display: flex;
}

.proje-slider {
  width: 100%;
  height: fit-content;
  position: relative;
  margin-top: 3vw;
}

.proje-slider .owl-nav {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 35%;
  left: 0;
}

.proje-slider.owl-carousel .owl-nav .owl-next,
.proje-slider.owl-carousel .owl-nav .owl-prev {
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5vw;
  background: #025add;
  border-radius: 50%;
  transition: all 0.3s linear;
  border: 1px solid #025add;
}

.proje-slider.owl-carousel .owl-nav .owl-next:hover,
.proje-slider.owl-carousel .owl-nav .owl-prev:hover {
  color: #025add;
  background: #fff;
}
.proje-slider.owl-carousel .owl-nav .owl-next {
  margin-right: -1.3vw;
}

.proje-slider.owl-carousel .owl-nav .owl-prev {
  margin-left: -1.3vw;
}

.proje-slider-card {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 1vw;
  overflow: hidden;
}
.proje-card-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  border: 1px solid rgba(60, 64, 67, 0.3);
}

.proje-card-img {
  width: 100%;
  height: 22vw;
  overflow: hidden;
  position: relative;
}

.proje-card-img img {
  width: 100%;
  transition: transform 12s linear;
  transform: translateY(0);
  position: absolute;
  top: 0;
  left: 0;
}

.proje-slider-card:hover .proje-card-img img {
  top: auto;
  transform: translateY(-100%);
}

.proje-card-text {
  width: 100%;
  height: 9vw;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  padding: 1vw;
}

.proje-card-text h3 {
  font-size: 1.2vw;
  color: #025add;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.proje-card-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.proje-all-link {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  padding: 0.8vw 1vw;
  border-radius: 1.3vw;
  border: 1px solid #0081cc;
  cursor: pointer;
  position: relative;
  transition: transform 0.175s ease-in, -webkit-transform 0.175s ease-in;
  background-image: linear-gradient(-90deg, #006eae 0%, #029df7 100%);
  margin: 2vw auto 0 auto;
  position: relative;
}

.proje-all-link span {
  font-weight: 500;
  font-size: 0.85vw;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.proje-all-link:after {
  -webkit-transition: width 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  transition: width 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  border-radius: 1.3vw;
  background-image: linear-gradient(-90deg, #029df7 0%, #006eae 100%);
}
.proje-all-link:hover::after {
  width: 100%;
}

/* PROJE END */

/* TEL FORM START  */

.tel-form-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a254d;
  margin-top: 10vw;
}

.tel-form-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6vw 10vw;
}

.tel-form {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3vw;
}
.tel-form-title {
  font-size: 2vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.tel-form-item {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.tel-form-ctrl {
  width: 20vw;
  height: 4vw;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 1vw;
}
/* .tel-form-ctrl input {
  border: 1px solid #fff;
} */
.tel-form-ctrl input::placeholder,
.tel-form-ctrl input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
  border-radius: 1vw;
  padding-left: 1vw;
  border-radius: 1vw;
}

.tel-form-ctrl .iti {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.tel-form-ctrl .iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 0.2vw solid transparent;
  border-right: 0.2vw solid transparent;
  border-top: 0.35vw solid #fff;
}
.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 1vw;
}
.iti input,
.iti input[type="text"]:focus,
.iti input[type="tel"]:focus {
  border: none;
  outline: none;
}
.tel-form-ctrl button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 1vw;
  background-color: #025add;
  transition: all 0.3s linear;
}

.tel-form-ctrl button:hover {
  background: #006eae;
}
.tel-form-p {
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
  text-align: center;
}
.iti__country-list {
  position: absolute;
  z-index: 9;
  list-style: none;
  text-align: left;
  padding: 0px;
  margin: 0px 0px 0px -1px;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 4px;
  background-color: white;
  border: 1px solid rgb(204, 204, 204);
  white-space: nowrap;
  max-height: 15vw;
  overflow-y: scroll;
}
.iti__country-name,
.iti__dial-code {
  font-size: 1vw;
}
/* TEL FORM END */

/* REFERANS START */

.referans-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.referans-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.referans-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.referans-slider {
  width: 100%;
  height: fit-content;
  display: flex;
  margin-top: 3vw;
}

.referans-slider-item {
  width: 100%;
  height: fit-content;
}

.referans-slider-item img {
  width: auto;
  height: auto;
}

/* REFERANS END */

/* AMPANY INFO START */

.campany-info-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a254d;
  margin-top: 10vw;
}

.campany-info-content {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  gap: 3vw;
  padding: 6vw 10vw;
}

.campany-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
.campany-info-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.campany-info-img img {
  width: 6vw;
  height: auto;
  transition: all 0.3s linear;
}
.campany-info-item:hover .campany-info-img img {
  transform: scale(1.1);
}

.campany-info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
.cam-n {
  font-size: 2.5vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.cam-t1 {
  font-size: 1.2vw;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 120%;
}

.cam-t2 {
  font-size: 1.2vw;
  color: #025add;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 120%;
}

/* CAMPANY INFO END */

/* WEB INFO START */
.web-info-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.web-info-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.web-info-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.web-info-item {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-top: 3vw;
}

.web-infi-box {
  width: 49%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 1vw;
  padding: 2vw 1vw;
  gap: 1vw;
  margin-bottom: 2%;
}

.web-infi-box h3 {
  font-size: 1.2vw;
  color: #025add;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 120%;
}
.web-infi-box li,
.web-infi-box p {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 120%;
  list-style-type: disc;
}

/* WEB INFO END */

/* CMS START */

.cms-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.cms-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.cms-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.cms-item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3vw;
  gap: 6.5%;
}

.cms-link {
  width: 20%;
  height: fit-content;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
  padding: 0.5vw;
}

.cms-link img {
  width: 100%;
  height: auto;
}
.cms-link:hover {
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
}

/* CMS END */

/* PRICE START  */

.price-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.price-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.price-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.price-slider {
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 3vw;
}

.price-slider .owl-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 35%;
  left: 0;
}

.price-slider.owl-carousel .owl-nav .owl-next,
.price-slider.owl-carousel .owl-nav .owl-prev {
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5vw;
  background: #025add;
  border-radius: 50%;
  transition: all 0.3s linear;
  border: 1px solid #025add;
}

.price-slider.owl-carousel .owl-nav .owl-next:hover,
.price-slider.owl-carousel .owl-nav .owl-prev:hover {
  color: #025add;
  background: #fff;
}
.price-slider.owl-carousel .owl-nav .owl-next {
  margin-right: -1.3vw;
}

.price-slider.owl-carousel .owl-nav .owl-prev {
  margin-left: -1.3vw;
}

.price-slider-card {
  width: 100%;
  height: 45vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(60, 64, 67, 0.3);
  padding: 2vw 1vw;
  border-radius: 1vw;
  gap: 1vw;
}
.price-slider-card-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
.price-slider-img {
  width: 6vw;
  height: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-type {
  font-size: 1.3vw;
  color: #025add;
  font-weight: 600;
  line-height: 120%;
}
.site-day {
  display: flex;
  align-items: center;
  gap: 0.5vw;
}
.site-day p {
  font-size: 1.5vw;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
}
.site-day span {
  font-size: 1.5vw;
  color: #025add;
  font-weight: 500;
  line-height: 120%;
}

.site-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6vw;
}

.site-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}

.site-detail-link {
  font-size: 1vw;
  color: #025add;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}

.price-slider-card-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}

.site-price {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.site-price p {
  font-size: 2vw;
  color: #025add;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

.site-price span {
  font-size: 2vw;
  color: #025add;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

.site-button {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 1vw;
  align-items: center;
  justify-content: center;
}

.site-btn-link {
  width: 100%;
  height: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3vw;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 1vw;
  transition: all 0.3s linear;
}

.site-form-btn {
  background-color: #025add;
  color: #fff;
}

.site-calc-link {
  border: 1px solid #025add;
  color: #025add;
}

.site-btn-link:hover {
  background: #006eae;
  color: #fff;
}
/* PRICE END */

/* WEB DO START */

.web-do-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.web-do-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  gap: 3vw;
}
.web-do-top {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.web-do-title {
  width: 100%;
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.web-do-text {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  font-size: 1vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.web-do-text li {
  list-style-type: disc;
  padding-left: 1vw;
}
.web-do-list {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.web-do-list-box {
  display: flex;
  flex-direction: column;
  padding: 1vw;
  background-color: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-radius: 0.5vw;
}

.web-do-list-title {
  width: 100%;
  height: 4vw;
  height: fit-content;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 1vw;
}

.web-do-list-title i {
  border-radius: 50%;
  background: #025add;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4vw;
  color: #fff;
  font-size: 1vw;
  flex-shrink: 0;
}

.web-do-list-title h3 {
  width: 100%;
  font-size: 1.2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  transition: all.3s linear;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.web-do-list-title h3::after {
  content: "\f107";
  font-family: FontAwesome;
  transition: all.3s linear;
}
.web-do-list-title.active h3::after {
  transform: rotate(180deg);
}
.web-do-list-text {
  width: 100%;
  height: 0;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  overflow: hidden;
  transition: all 0.3s linear;
}
.web-do-list-text.active {
  margin-top: 4vw;
  height: fit-content;
}

.web-do-list-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}

/* WEB DO END */

/* CONTACK START */

.contack-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0a254d;
  margin-top: 10vw;
}

.contack-content {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vw 10vw;
  gap: 6vw;
}

.contack-text {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.contack-text h3 {
  font-size: 2vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.contack-text p {
  font-size: 1.3vw;
  color: #fff;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.contack-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vw 2vw;
  font-size: 1.3vw;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 1vw;
  transition: all 0.3s linear;
  background-color: #025add;
  flex-shrink: 0;
}

.contack-btn:hover {
  background-color: #029df7;
}

/* CONTACK END */

/* TEAM START */
.team-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.team-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0vw 10vw;
  gap: 3vw;
}

.team-title {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.team-title h2 {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.team-title p {
  font-size: 0.85vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.team-slider {
  width: 100%;
  display: flex;
  position: relative;
}
.team-slider .owl-dots {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  margin-top: 2vw;
}

.team-slider.owl-carousel button.owl-dot span {
  display: none;
}
.team-slider.owl-carousel button.owl-dot {
  background: #3a3a3a;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  width: 1.5vw;
  height: 0.3vw;
  margin-top: 1vw;
  border-radius: 20%;
}
.team-slider.owl-carousel button.owl-dot.active {
  background: #006eae;
}
.team-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1vw;
  gap: 1vw;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
}

.team-img img {
  max-width: 100%;
  height: auto;
}

.team-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  padding-bottom: 2vw;
}
.team-name {
  font-size: 1.2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.team-mis {
  font-size: 0.85vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}
/* TEAM END */

/* FAQ START */

.faq-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.faq-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  gap: 3vw;
}

.faq-title {
  width: 100%;
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.faq-list {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 2%;
}

.faq-list-box {
  width: 49%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 1vw;
  background-color: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-radius: 0.5vw;
  margin-bottom: 2%;
}

.faq-list-title {
  width: 100%;
  height: 2.5vw;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 1vw;
}

.faq-list-title i {
  border-radius: 50%;
  background: #025add;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4vw;
  color: #fff;
  font-size: 1vw;
  flex-shrink: 0;
}

.faq-list-title h3 {
  width: 100%;
  font-size: 1vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  transition: all.3s linear;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list-title h3::after {
  content: "\f107";
  font-family: FontAwesome;
  transition: all.3s linear;
}
.faq-list-title.active h3::after {
  transform: rotate(180deg);
}

.faq-list-text {
  width: 100%;
  height: 0;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  overflow: hidden;
  transition: all 0.3s linear;
}
.faq-list-text.active {
  margin-top: 2vw;
  height: fit-content;
}

.faq-list-text h3 {
  font-size: 1.2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.faq-list-text li,
.faq-list-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
  list-style: disc;
  padding-left: 1vw;
}

.faq-list-text p a {
  color: #029df7;
}

/* FAQ END */

/* COMMENT START */

.comment-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.comment-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.comment-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.comment-slider {
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 3vw;
}

.comment-slider .owl-dots {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  margin-top: 2vw;
}

.owl-carousel button.owl-dot span {
  display: none;
}

.comment-slider.owl-carousel button.owl-dot {
  background: #3a3a3a;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  width: 1.5vw;
  height: 0.3vw;
  margin-top: 1vw;
  border-radius: 20%;
}

.comment-slider.owl-carousel button.owl-dot.active {
  background: #006eae;
}

.comment-card {
  width: 100%;
  height: 30vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  border-radius: 1vw;
  padding: 2vw 1vw;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #9b9b9b;
}

.comment-card-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.comment-card-top img {
  width: 100%;
  height: auto;
}

.campany-name {
  font-size: 1.3vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 500;
}

.campany-type {
  font-size: 1vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.comment-stars {
  display: flex;
  align-items: center;
}

.comment-stars i {
  color: #ffc107;
}

.comment-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.comment-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* COMMENT END */

/* CONTACK FORM START */

.contack-form-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.contack-form-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0vw 10vw;
}
.contack-form-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.form-item {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  margin-top: 3vw;
}

.contack-adres {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  flex-shrink: 0;
}

.adres-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  border-radius: 1vw;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 1vw;
}

.adres-box h3 {
  font-size: 1.3vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.adres-box a {
  font-size: 1vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 500;
  transition: all 0.3s linear;
}

.adres-box .tel-c-a {
  font-size: 1.3vw;
}

.adres-box a:hover {
  color: #025add;
}

.form-contack {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2vw;
}

.contack-form-item {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 1vw;
}

.contack-form-ctrl {
  width: 30vw;
  display: flex;
  height: fit-content;
}
.contack-form-message textarea,
.contack-form-ctrl input {
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  display: flex;
  padding: 1vw 2vw;
  border: none;
  border-radius: 1vw;
  outline: none;
  transition: all 0.3s linear;
  cursor: pointer;
}
.contack-form-message textarea,
.contack-form-ctrl input::placeholder,
.contack-form-ctrl input {
  font-size: 1vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.contack-form-ctrl .iti {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.contack-form-ctrl .iti__arrow {
  margin-left: 0;
  width: 0;
  height: 0;
  border-left: 0.2vw solid transparent;
  border-right: 0.2vw solid transparent;
  border-top: 0.35vw solid #fff;
}
.contack-form-message {
  width: 100%;
  min-height: 10vw;
  display: flex;
}

.contack-send {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vw 2vw;
  border-radius: 1vw;
  transition: all 0.3s linear;
  background: #025add;
  font-size: 1.3vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 500;
}
.contack-send:hover {
  background-color: #029df7;
}

/* CONTACK FORM END */

/* FOOTER START */

footer {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a254d;
  margin-top: 10vw;
}

.footer-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 5vw 10vw 2vw 10vw;
}

.footer-top {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2%;
}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 1.3vw;
}
.f-logo {
  width: 20vw;
}
.f-menu {
  width: 10vw;
}
.f-info {
  width: 13vw;
}
.f-contack {
  width: 22vw;
}

.footer-logo {
  width: 10vw;
  display: flex;
  align-items: flex-start;
}

.footer-logo img {
  width: 10vw;
  height: auto;
}

.footer-text {
  font-size: 0.85vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 500;
}

.footer-form-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vw 2vw;
  font-size: 1.3vw;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 1vw;
  transition: all 0.3s linear;
  background-color: #025add;
  flex-shrink: 0;
}

.footer-form-btn:hover {
  background-color: #029df7;
}
.footer-policy {
  font-size: 0.85vw;
  letter-spacing: 0.7px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: #025add;
  border-radius: 1vw;
  padding: 0.5vw 1vw;
  transition: all 0.3s linear;
}

.footer-policy:hover {
  background-color: #029df7;
}
.footer-title {
  font-size: 1.5vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.footer-info,
.footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.footer-info-li,
.footer-menu-li {
  display: inline-flex;
}
.footer-info-a,
.footer-menu-a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85vw;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s linear;
  position: relative;
}
.footer-info-a:hover,
.footer-menu-a:hover {
  color: #025add;
}

.footer-adres {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.footer-adres a {
  font-size: 0.85vw;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s linear;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.5vw;
}
.footer-adres a:hover {
  color: #025add;
}

.f-wp-tg-box {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.f-wp-tg-box a {
  width: 1.3vw;
  height: 1.3vw;
  transition: all 0.3s linear;
}
.f-wp-tg-box a:hover {
  transform: scale(1.4);
}
.f-wp-tg-box a img {
  width: 100%;
  height: 100%;
}
.footer-bottom {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5vw;
  gap: 0.3vw;
}

.footer-bottom span {
  font-size: 0.85vw;
  font-weight: 500;
  transition: all 0.3s linear;
  color: #b9b9b9;
}

.footer-bottom a {
  font-size: 0.85vw;
  font-weight: 500;
  transition: all 0.3s linear;
  color: #025add;
}
.footer-bottom a:hover {
  color: #fff;
}

/* FOOTER END */

/* MODAL FORM START */

/* MODAL FORM START CODE */

.modal-form-container {
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background: #000000d6;
  z-index: 9999;
  overflow: hidden;
  transition: all 0.5s linear;
}
.modal-form-container.open {
  width: 100vw;
  height: 100vh;
}

.modal-form-content {
  width: 50vw;
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 1vw;
  overflow: hidden;
}

.modal-form-close {
  display: flex;
  width: 3.2vw;
  height: 3.2vw;
  padding: 0px 0.5vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: #025add;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 0;
  transition: all 0.5s linear;
  cursor: pointer;
}

.modal-form-close:hover {
  background: #0a254d;
}

.modal-form-close svg {
  transition: all 0.5s linear;
}
.modal-form-close:hover svg {
  transform: rotate(180deg);
}

.modal-form {
  width: 25vw;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  padding: 1.5vw 1vw 1vw 1vw;
  background: #fff;
  gap: 30px;
}

.form-title {
  color: #025add;
  font-size: 2vw;
  font-style: normal;
  font-weight: 600;
  line-height: 98%; /* 27.44px */
}

.modal-form-text {
  color: #3a3a3a;
  font-size: 0.75vw;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}
.modal-form .iti,
.modal-form .modal-form-inp {
  display: flex;
  padding: 20px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 0.5vw;
  border: 1px solid #eaeaea;
  background: rgba(255, 255, 255, 0.56);
  color: #202020;
  font-size: 0.85vw;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.modal-form .modal-form-inp::placeholder {
  color: #3a3a3a;
  font-size: 0.85vw;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.modal-form-send {
  display: flex;
  height: 3.2vw;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  border: 2px solid #025add;
  background: #fff;
  color: #3a3a3a;
  text-align: center;
  font-size: 1vw;
  font-style: normal;
  font-weight: 400;
  line-height: 90%; /* 18px */
  cursor: pointer;
  transition: all 0.5s linear;
  border-radius: 0.5vw;
}

.modal-form-send:hover {
  background: #025add;
  color: #fff;
  border: none;
}

.modal-form-checkbox-box {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal-form-checkbox-box label {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  color: #3a3a3a;
  font-size: 0.7vw;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 15.4px */
  gap: 0.8vw;
}

.modal-form-checkbox-box label input {
  width: 1vw;
  height: 1vw;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #025add;
  border-radius: 0.1vw;
  flex-shrink: 0;
}

.modal-form-checkbox-box label input::before {
  content: "";
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: url(../img/Checkbox.jpg);
  opacity: 0;
  transition: all 0.5s linear;
  transform: rotate(360deg);
  flex-shrink: 0;
  background-position: center;
}

.modal-form-checkbox-box label input:checked::before {
  opacity: 1;
  transform: rotate(0deg);
}

.modal-form-personal-box {
  width: 25vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.modal-form-personal-box img {
  width: 100%;
  height: 100%;
}
.modal-form-personal-item {
  display: inline-flex;
  padding: 0.6vw 1vw;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3vw;
  border-radius: 2px;
  background: rgba(2, 25, 87, 0.753);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  position: absolute;
  left: 0;
  bottom: 0;
}

.modal-form-personal-item h3 {
  color: #fff;
  font-size: 1.5vw;
  font-style: normal;
  font-weight: 600;
  line-height: 98%; /* 23.52px */
}
.modal-form-personal-item p {
  color: #fff;
  font-size: 0.7vw;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}
/* MODAL FORM END */

/* ! ABOUT PAGE START */

/* P BANNER START */
.p-banner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -5vw;
}
.p-banner-content {
  width: 100%;
  height: fit-content;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  position: relative;
  overflow: hidden;
  padding: 15vw 10vw;
}

.p-banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.p-banner-bg-color {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background: #0a254daf;
}
.p-banner-item {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  position: relative;
  z-index: 2;
}

.p-banner-item h3 {
  font-size: 2.5vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}

.p-banner-item p {
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

.p-banner-btn {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-top: 2vw;
}

.p-banner-btn button {
  font-weight: 500;
  font-size: 1vw;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1vw 2vw;
  border-radius: 2.6vw;
  transition: all 0.3s linear;
  color: #fff;
  background: linear-gradient(45deg, #025add, #0c6de0);
  cursor: pointer;
}
.p-banner-btn button:hover {
  background: #fff;
  color: #025add;
}

/* P BANNER END */

/* P-BANNER START */

.page-pagination-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 6vw;
  z-index: 3;
}

.page-pagination-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  padding: 0 10vw 1vw 10vw;
}

.page-pagination-content a {
  font-size: 0.85vw;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  transition: all 0.3s linear;
}
.page-pagination-content a::after {
  content: "/";
  display: inline-flex;
}
.page-pagination-content p {
  font-size: 0.85vw;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  font-style: normal;
}
.page-pagination-content a:hover {
  color: #0968df;
}
/* P-BANNER END */

/* ABOUT START */

.about-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.about-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 10vw;
}

.about-top {
  width: 100%;
  display: flex;
  gap: 3vw;
}
.about-item {
  width: 50%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 1vw;
  flex-shrink: 0;
}
.about-item h3,
.about-bottom h3 {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  margin-bottom: 2vw;
}
.about-bottom p,
.about-item p {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.about-img {
  width: 50%;
  height: fit-content;
  border-radius: 1vw;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: auto;
}

.about-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 5vw;
  gap: 1vw;
}

.about-box-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 3vw;
}
.about-box {
  width: 31.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 1vw;
  margin-bottom: 3%;
  transition: all 0.3s linear;
  position: relative;
  z-index: 1;
  background: #fff;
}

.about-box-line1 {
  width: 0;
  height: 0;
  position: absolute;
  top: -0.3vw;
  right: -0.3vw;
  display: block;
  background: #025add;
  border-radius: 1vw;
  z-index: -1;
  transition: all 0.3s linear;
}

.about-box-line2 {
  width: 0;
  height: 0;
  position: absolute;
  bottom: -0.3vw;
  left: -0.3vw;
  display: block;
  background: #025add;
  border-radius: 1vw;
  z-index: -1;
  transition: all 0.3s linear;
}

.about-box:hover .about-box-line1,
.about-box:hover .about-box-line2 {
  width: 50%;
  height: 50%;
}

.about-box-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 1vw;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1vw;
  padding: 1vw;
}
.about-box-text img {
  width: 5vw;
  height: auto;
}
.about-box-text h4 {
  font-size: 1.2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}

.about-box-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 500;
  text-align: center;
}

/* ABOUT END */

/* ! ABOUT PAGE END */

/* !DEVELOMENT PAGE START */

/* DEVELOPER START  */

.dev-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.dev-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  gap: 3vw;
}
.dev-title {
  width: 100%;
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.dev-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.dev-card {
  width: 23.5%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 1vw;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  margin-bottom: 2%;
}

.dev-card-link {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.dev-img {
  width: 100%;
  height: 27vw;
  position: relative;
  overflow: hidden;
}
.dev-img img {
  width: 100%;
  transition: transform 20s linear;
  transform: translateY(0);
  position: absolute;
  top: 0;
  left: 0;
}

.dev-card:hover .dev-img img {
  top: auto;
  transform: translateY(-100%);
}

.dev-bottom {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  padding: 1vw;
}
.dev-type {
  font-size: 1.3vw;
  color: #025add;
  font-weight: 600;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dev-not,
.dev-day,
.dev-price {
  font-size: 0.85vw;
  color: #3a3a3a;
  font-weight: 600;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* DEVELOPER END */

/* DEV TEXT START */

.dev-text-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.dev-text-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  gap: 2vw;
}
.dev-text-content h3 {
  width: 100%;
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.dev-text-content p,
.dev-text-content li {
  font-size: 0.85vw;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
  list-style-type: disc;
}
.dev-text-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  padding-left: 2vw;
}
.dev-text-content p a {
  color: #025add;
  font-size: 1vw;
  font-weight: 600;
  line-height: 120%;
}
/* DEV TEXT END */

/* !DEVELOMENT PAGE END */

/* !SUUPORT PAGE START */

/* SUPPORT INFO START */
.sport-info-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10vw;
}

.support-info-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  gap: 3vw;
}

.support-info-title {
  font-size: 2vw;
  color: #025add;
  font-weight: 600;
}

.support-info-item {
  width: 100%;
  display: flex;
  gap: 3vw;
}

.support-info-left {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.support-info-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 1vw;
  border-radius: 1vw;
  gap: 1vw;
  margin-bottom: 2%;
}

.support-info-box h3 {
  font-size: 1.3vw;
  color: #025add;
  font-weight: 600;
}
.support-info-box li,
.support-info-box p {
  font-size: 0.85vw;
  color: #3a3a3a;
  font-weight: 500;
}
.support-info-box li {
  padding-left: 1vw;
  list-style-type: disc;
}
.support-info-box li a,
.support-info-box p a {
  color: #025add;
  font-weight: 600;
}
.support-info-right {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.support-info-right-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 1vw;
  position: sticky;
  top: 6vw;
}

.support-info-img {
  width: 100%;
}

.support-info-img img {
  width: 100%;
}

.support-info-price {
  width: fit-content;
  display: flex;
  flex-direction: column;
  padding: 3vw 2vw;
  gap: 3vw;
  margin: 0 auto;
}

.support-info-price-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3vw;
}

.sp-info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.5vw solid #025add;
  padding: 1vw 2vw;
  border-radius: 1vw;
}

.sp-info-box p {
  font-size: 1vw;
  color: #3a3a3a;
  font-weight: 600;
}

.sp-info-box span {
  font-size: 2.5vw;
  color: #025add;
  font-weight: 800;
}

.sp-info-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
  color: #fff;
  border-radius: 1vw;
  background-color: #025add;
  padding: 1.3vw 2vw;
}

.sp-info-link:hover {
  background: #006eae;
}

.support-info-price-not {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.support-info-price-not p {
  font-size: 1vw;
  color: #025add;
  font-weight: 600;
  text-align: center;
}

/* SUPPORT INFO END  */

/* SP SERVICE START */

.sp-service-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.sp-service-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0vw 10vw;
  gap: 3vw;
}
.sp-service-title {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.sp-service-title h2 {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.sp-service-title p {
  font-size: 1.2vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.sp-service-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.sp-service-box {
  width: 49%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 1vw;
  border-radius: 1vw;
  gap: 1vw;
  margin-bottom: 2%;
}

.sp-service-box h3 {
  font-size: 1.3vw;
  color: #025add;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.sp-service-box p {
  font-size: 0.85vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 500;
}

/* SP SERVICE END */

/* SP ABOUT START */

.sp-about-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.sp-about-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0vw 10vw;
  gap: 3vw;
}
.sp-about-content h2 {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.sp-about-text {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.table-item p,
.sp-about-text li,
.sp-about-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
  list-style-type: disc;
}

.sp-about-text span {
  font-size: 1vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.sp-about-text li a,
.sp-about-text p a {
  color: #025add;
  font-weight: 600;
}

.sp-about-text h3 {
  font-size: 1.3vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.sp-about-text h4 {
  font-size: 1.1vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.sp-slider-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.sp-slider-item h3 {
  font-size: 1.2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.sp-ceo-slider {
  width: 100%;
  height: fit-content;
  position: relative;
}

.sp-ceo-slider .owl-nav {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 35%;
  left: 0;
}

.sp-ceo-slider.owl-carousel .owl-nav .owl-next,
.sp-ceo-slider.owl-carousel .owl-nav .owl-prev {
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5vw;
  background: #025add;
  border-radius: 50%;
  transition: all 0.3s linear;
  border: 1px solid #025add;
}

.sp-ceo-slider.owl-carousel .owl-nav .owl-next:hover,
.sp-ceo-slider.owl-carousel .owl-nav .owl-prev:hover {
  color: #025add;
  background: #fff;
}
.sp-ceo-slider.owl-carousel .owl-nav .owl-next {
  margin-right: -1.3vw;
}

.sp-ceo-slider.owl-carousel .owl-nav .owl-prev {
  margin-left: -1.3vw;
}

.sp-ceo-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
}

.sp-ceo-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sp-ceo-img {
  width: 100%;
  height: 24vw;
  display: block;
}
.sp-ceo-img img {
  width: 100%;
  height: 100%;
}
.sp-ceo-text {
  width: 100%;
  height: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  background: #292b2d96;
  transition: all 0.5s linear;
  overflow: hidden;
}

.sp-ceo-card:hover .sp-ceo-text {
  height: 100%;
  gap: 1vw;
  padding: 1vw;
  bottom: 0;
}
.sp-ceo-text h4 {
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.sp-ceo-text p {
  font-size: 0.85vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.table-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.table-item h3 {
  font-size: 1.2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.table-item h3 {
  font-size: 1.2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.custom-table {
  flex-direction: column;
  border-collapse: collapse;
  margin-bottom: 1vw;
}

.custom-table th,
.custom-table td {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  padding: 0.7vw;
}

.custom-table td a {
  color: #025add;
  font-weight: 600;
}

.custom-table td i {
  font-size: 1vw;
}
.custom-table th {
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
  background-color: #025add;
}
.custom-table th[rowspan] {
  background-color: #025add;
  vertical-align: middle;
  text-align: start;
}
.custom-table th[colspan] {
  background-color: #0a254d;
  color: #fff;
}
.custom-table tbody tr {
  background-color: #fff;
}
.custom-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
.custom-table tbody tr th {
  color: #fff;
  text-align: left;
  padding-left: 0.8vw;
}
.custom-table td.check {
  background-color: #025add;
  color: #fff;
  border-color: #fff;
}

.custom-table tbody tr:hover {
  background-color: #0a254d;
  color: #fff;
}

.custom-table tbody tr:hover td.check {
  background-color: #0a254d;
  color: #fff;
}

.custom-table tbody tr:hover td {
  background-color: #0a254d;
  color: #fff;
}

.custom-table tbody tr:hover td a {
  color: #fff;
}

/* SP ABOUT END */

/* CATAGORY SERVICE START */

.catagory-service-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.catagory-service-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.catagory-service-title {
  width: 100%;
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.catagory-slider {
  width: 100%;
  position: relative;
  margin-top: 3vw;
}

.catagory-slider .owl-nav {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 35%;
  left: 0;
}

.catagory-slider.owl-carousel .owl-nav .owl-next,
.catagory-slider.owl-carousel .owl-nav .owl-prev {
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5vw;
  background: #025add;
  border-radius: 50%;
  transition: all 0.3s linear;
  border: 1px solid #025add;
}

.catagory-slider.owl-carousel .owl-nav .owl-next:hover,
.catagory-slider.owl-carousel .owl-nav .owl-prev:hover {
  color: #025add;
  background: #fff;
}
.catagory-slider.owl-carousel .owl-nav .owl-next {
  margin-right: -1.3vw;
}

.catagory-slider.owl-carousel .owl-nav .owl-prev {
  margin-left: -1.3vw;
}
.catagory-slider .owl-dots {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  margin-top: 2vw;
}

.catagory-slider.owl-carousel button.owl-dot {
  background: #3a3a3a;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  width: 1.5vw;
  height: 0.3vw;
  margin-top: 1vw;
  border-radius: 20%;
}

.catagory-slider.owl-carousel button.owl-dot.active {
  background: #006eae;
}

.catagory-card {
  width: 100%;
  height: 26vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  border-radius: 1vw;
  padding: 2vw 1vw;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #9b9b9b;
}

.catagory-card-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.catagory-card-img {
  width: 100%;
  height: fit-content;
}

.catagory-card-img img {
  width: 100%;
  height: 15vw;
}

.catagory-card-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}
.catagory-card-text h3 {
  font-size: 1.1vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.catagory-card-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}

/* CATAGORY SERVICE END */

/* WORK PLAN START */

.work-plan-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.work-plan-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  gap: 3vw;
}
.work-plan-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4vw;
}
.work-plan-left {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.work-plan-title {
  width: 100%;
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.work-plan-text {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  font-size: 1vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.work-plan-text li {
  list-style-type: disc;
  padding-left: 1vw;
}

.work-plan-right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.work-plan-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 1vw;
  gap: 1vw;
  padding: 1vw;
  margin-bottom: 2%;
}

.work-plan-box h3 {
  width: 100%;
  font-size: 1vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.work-plan-box li,
.work-plan-box p {
  width: 100%;
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}

/* WORK PLAN END */

/* !SUUPORT PAGE END */

/* !PORTFOLIO START */

/* portfolio START */

.portfolio-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.portfolio-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
}

.portfolio-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.portfolio-button-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8vw;
  margin-top: 3vw;
}

.portfolio-btn {
  font-weight: 500;
  font-size: 0.85vw;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0.8vw 1vw;
  border-radius: 2vw;
  transition: all 0.3s linear;
  color: #025add;
  cursor: pointer;
  background: #f5f5f5;
}
.portfolio-btn.active {
  background: linear-gradient(45deg, #025add, #0c6de0);
  color: #fff;
}
.portfolio-btn:hover {
  background: linear-gradient(45deg, #025add, #0c6de0);
  color: #fff;
}

.portfolio-item-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  margin-top: 3vw;
}

.portfolio-item {
  width: 100%;
  height: fit-content;
  display: none;
  flex-wrap: wrap;
  gap: 2%;
}

.portfolio-item.active {
  display: flex;
}

.portfolio-card {
  width: 23.5%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 1vw;
  overflow: hidden;
  margin-bottom: 2%;
}
.portfolio-card-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  border: 1px solid rgba(60, 64, 67, 0.3);
}

.portfolio-card-img {
  width: 100%;
  height: 22vw;
  overflow: hidden;
  position: relative;
}

.portfolio-card-img img {
  width: 100%;
  transition: transform 12s linear;
  transform: translateY(0);
  position: absolute;
  top: 0;
  left: 0;
}

.portfolio-card:hover .portfolio-card-img img {
  top: auto;
  transform: translateY(-100%);
}

.portfolio-card-text {
  width: 100%;
  height: 9vw;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  padding: 1vw;
}

.portfolio-card-text h3 {
  font-size: 1.2vw;
  color: #025add;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-card-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* portfolio END */
/* !PORTFOLIO END */

/* !HESAP PAGE START */

/* hesapULATE START */

.hesap-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.hesap-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  gap: 3vw;
  padding: 0 10vw;
}

.hesap-title {
  font-size: 2vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.hesap-row {
  display: flex;
  gap: 5vw;
  justify-content: space-between;
  position: relative;
}
.hesap-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 3vw;
}
.hesap-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.hesap-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 0.5vw;
  padding: 1vw;
}

.hesap-box h3 {
  font-size: 1.1vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.hesap-box-item1 {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
}

.hesap-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5vw;
  margin-bottom: 1vw;
}

.hesapbox {
  width: 1vw;
  height: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  outline: none;
  border: 1px solid #006eae;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 0.1vw;
  cursor: pointer;
}
.hesapbox::before {
  content: "";
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #006eae;
  border-radius: 50%;
  transition: all 0.3s linear;
  opacity: 0;
}

.hesapbox:checked::before {
  opacity: 1;
}
.hesap-check label {
  font-size: 0.9vw;
  color: #3d3d3d;
  letter-spacing: 0.7px;
  font-weight: 600;
  transition: all 0.3s linear;
  cursor: pointer;
}

.hesapbox:checked + label {
  color: #025add;
}

.hesap-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  margin-top: 2vw;
}

.hesap-text h3 {
  font-size: 1.3vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.hesap-text li,
.hesap-text p {
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.hesap-text h4 {
  font-size: 1.1vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 500;
}
.hesap-text li {
  padding-left: 1vw;
  list-style-type: disc;
}

.hesap-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.hesap-total {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 4px;
  border-radius: 1vw;
  padding: 2vw 1vw;
  gap: 1vw;
  position: sticky;
  top: 7vw;
}

.hesap-total-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1vw;
  padding: 1vw;
  gap: 1vw;
}
.hesap-total-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  font-size: 2.5vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  background: #025add;
  border-radius: 1vw;
  padding: 1vw;
}

.hesap-price-note {
  font-size: 0.85vw;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
  text-align: center;
}

.hesap-tel-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
.hesap-tel-form-title {
  font-size: 1.5vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}

.hesap-tel-form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
  gap: 2vw;
}

.hesap-tel-form-ctrl {
  width: 100%;
  height: 4vw;
  display: flex;
  align-items: center;
}
.hesap-tel-form-ctrl input {
  border: 1px solid #3a3a3a;
}
.hesap-tel-form-ctrl input::placeholder,
.hesap-tel-form-ctrl input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 1vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
  border-radius: 1vw;
  padding-left: 1vw;
  border-radius: 1vw;
}

.hesap-tel-form-ctrl button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 1vw;
  background-color: #025add;
  transition: all 0.3s linear;
}

.hesap-tel-form-ctrl button:hover {
  background: #006eae;
}

.hesap-tel-form-ctrl .iti {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.hesap-tel-form-ctrl .iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 0.2vw solid transparent;
  border-right: 0.2vw solid transparent;
  border-top: 0.35vw solid #3a3a3a;
}

/* hesapULATE END */
/* !HESAP PAGE END */

/* !DETAIL PAGE START */
/* DETAIL START */

.site-detail-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.site-detail-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  gap: 3vw;
}

.detail-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.detail-top p {
  font-size: 0.85vw;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
  list-style-type: disc;
}

.detail-top p a {
  font-weight: 600;
  color: #025add;
}

.site-type-box,
.site-app {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.site-type-box h3,
.site-app h3 {
  width: 100%;
  font-size: 1.4vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.site-app p,
.site-type-box li {
  font-size: 0.85vw;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
  list-style-type: disc;
}

.site-detail-btn {
  display: flex;
  align-items: center;
  gap: 3vw;
}

.site-detail-form-btn,
.live-site-link {
  font-weight: 500;
  font-size: 0.85vw;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1vw 2vw;
  border-radius: 2vw;
  transition: all 0.3s linear;
  color: #fff;
  cursor: pointer;
  background: #025add;
}

.site-detail-form-btn:hover,
.live-site-link:hover {
  color: #025add;
  background: #f8f8f8;
  border: 1px solid #025add;
}

.site-img-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.site-detail-fancy-link {
  width: 32%;
  height: 30vw;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 1vw;
  background: #fff;
  overflow: hidden;
  padding: 1vw;
  gap: 1vw;
  margin-bottom: 3%;
  align-items: stretch;
  position: relative;
}

.site-detail-fancy-link span {
  display: flex;
  flex-shrink: 0;
  font-size: 1.3vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}
.site-detail-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.site-detail-fancy-link img {
  width: 100%;
  transition: transform 12s linear;
  transform: translateY(0);
  position: absolute;
  top: 0;
  left: 0;
}

.site-detail-fancy-link:hover .site-detail-img img {
  top: auto;
  transform: translateY(-100%);
}

/* DETAIL END */

/* !DETAIL PAGE END */

/* !POLICY PAGE START */

/* POLCIY START */

.policy-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vw;
}

.policy-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  gap: 3vw;
}
.policy-item {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.policy-item h3 {
  width: 100%;
  font-size: 1.3vw;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.policy-item li,
.policy-item p {
  width: 100%;
  font-size: 0.85vw;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.w.policy-item p a {
  color: #025add;
  font-weight: 600;
}
/* POLCIY END */

/* !POLICY PAGE END */

/* !EROR PAGE START */
/* EROR START  */

.eror-banner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -5vw;
}
.eror-banner-content {
  width: 100%;
  height: fit-content;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  position: relative;
  overflow: hidden;
  padding: 15vw 10vw;
}

.eror-banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.eror-banner-bg-color {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background: #0a254daf;
}

.eror-banner-item {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  position: relative;
  z-index: 2;
}

.eror-banner-item h3 {
  font-size: 2.5vw;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}

.eror-banner-item p {
  font-size: 1vw;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

.eror-back-link {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-top: 2vw;
}

.eror-back-link {
  font-weight: 600;
  font-size: 1.2vw;
  letter-spacing: 1px;
  display: inline-block;
  padding: 1vw 2vw;
  border-radius: 2.6vw;
  transition: all 0.3s linear;
  color: #fff;
  background: linear-gradient(45deg, #025add, #0c6de0);
  cursor: pointer;
}
.eror-back-link:hover {
  background: #fff;
  color: #025add;
}

/* EROR END */
/* !EROR PAGE END */

/* !MEDIA START */

@media only screen and (max-width: 1440px) {
  header {
    width: 100%;
    height: 7vw;
    display: flex;
    align-items: center;
    padding: 0vw 5vw;
    position: relative;
    z-index: 5;
    transition: all 0.3s linear;
  }
  header.sticky {
    width: 100%;
    height: 7vw;
    position: fixed;
    background-color: #0a254d;
    transition: all 0.3s linear;
  }
  .logo {
    width: 13vw;
    height: fit-content;
  }

  .menu-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1vw;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s linear;
    position: relative;
    padding: 0.5vw 1vw;
    border-radius: 0.5vw;
  }

  .wp-tg-box a {
    width: 1.6vw;
    height: auto;
    transition: all 0.3s linear;
  }

  .tel-a {
    font-size: 1.5vw;
  }

  .mail-a {
    font-size: 1vw;
  }

  .banner-content {
    width: 100%;
    position: relative;
    background: url(../img/bg.png);
    background-size: 100% 100%;
    background-position: center center;
    height: 100%;
    min-height: 53vw;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background-attachment: fixed;
    padding: 0 5vw;
  }

  .banner-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    margin-top: -7vw;
    overflow: hidden;
  }

  .banner-title {
    /* width: 100%; */
    /* height: 8vw; */
    font-size: 3.8vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .banner-service p {
    font-size: 1.3vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
  }

  .banner-service a img {
    width: 2.5vw;
    height: auto;
  }

  .banner-service a {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5vw;
    font-size: 1.3vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
    transition: all 0.3s linear;
  }

  .banner-l {
    font-weight: 500;
    font-size: 1.2vw;
    letter-spacing: 1px;
    display: inline-block;
    padding: 1.1vw 1.5vw;
    border-radius: 1.5vw;
    transition: all 0.3s linear;
    color: #fff;
    background: linear-gradient(45deg, #025add, #0c6de0);
    cursor: pointer;
  }

  .langue-select .selected-flags {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: cover;
    cursor: pointer;
  }

  .langue-select .dropdowns {
    display: none;
    position: absolute;
    box-shadow: 0 8px 0.85vw rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 30px;
  }

  .services-about-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
    gap: 3vw;
  }

  .services-about-text h3 {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }
  .services-about-text li,
  .services-about-text p {
    font-size: 1.1vw;
    color: #3a3a3a;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
  }

  .services-about-text h4 {
    font-size: 1.6vw;
    color: #3a3a3a;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .services-about-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .services-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .services-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
  }
  .services-title {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .services-card-img img {
    width: 5.5vw;
    height: auto;
  }

  .services-card {
    width: 23.5%;
    height: 21vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vw 1.3vw;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border-radius: 0.5vw;
    transition: all 0.3s ease-in-out;
    margin-bottom: 2%;
  }

  .services-card-text h3 {
    font-size: 1.5vw;
    color: #025add;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
  }

  .services-card-text p {
    font-size: 1.1vw;
    color: #3a3a3a;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
  }

  .note {
    font-size: 1.3vw;
    color: #3a3a3a;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 120%;
    margin-top: 2vw;
  }

  .us-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
  }
  .us-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
  }

  .us-title h2 {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .us-title p {
    font-size: 1.1vw;
    color: #3a3a3a;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
  }

  .us-box {
    display: flex;
    gap: 0.5vw;
    align-items: flex-start;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    padding: 1.3vw;
    border-radius: 1vw;
  }

  .us-text h4 {
    font-size: 1.5vw;
    color: #025add;
    font-weight: 600;
    line-height: 120%;
  }

  .us-text p {
    font-size: 1.1vw;
    color: #3a3a3a;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
  }

  .us-img {
    width: 5vw;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .proje-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }
  .proje-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
  }

  .proje-title {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .proje-btn {
    font-weight: 500;
    font-size: 1.1vw;
    letter-spacing: 1px;
    display: inline-block;
    padding: 1vw 1.2vw;
    border-radius: 2vw;
    transition: all 0.3s linear;
    color: #025add;
    cursor: pointer;
    background: #f5f5f5;
  }

  .proje-card-text h3 {
    font-size: 1.5vw;
    color: #025add;
    font-weight: 500;
    line-height: 120%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .proje-card-text p {
    font-size: 1.1vw;
    color: #3a3a3a;
    font-weight: 500;
    line-height: 120%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .proje-card-img {
    width: 100%;
    height: 24vw;
    overflow: hidden;
    position: relative;
  }

  .proje-card-text {
    width: 100%;
    height: 11vw;
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    padding: 1vw;
  }

  .proje-all-link {
    width: fit-content;
    height: fit-content;
    display: inline-block;
    padding: 1vw 1.3vw;
    border-radius: 1.3vw;
    border: 1px solid #0081cc;
    cursor: pointer;
    position: relative;
    transition: transform 0.175s ease-in, -webkit-transform 0.175s ease-in;
    background-image: linear-gradient(-90deg, #006eae 0%, #029df7 100%);
    margin: 2.5vw auto 0 auto;
    position: relative;
  }

  .proje-all-link span {
    font-weight: 500;
    font-size: 1.1vw;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    z-index: 1;
  }

  .hesap-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .hesap-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    gap: 3vw;
    padding: 0 5vw;
  }

  .hesap-title {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .hesap-box h3 {
    font-size: 1.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .hesap-check label {
    font-size: 1.1vw;
    color: #3d3d3d;
    letter-spacing: 0.7px;
    font-weight: 600;
    transition: all 0.3s linear;
    cursor: pointer;
  }

  .hesapbox {
    width: 1.3vw;
    height: 1.3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    outline: none;
    border: 1px solid #006eae;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 0.1vw;
    cursor: pointer;
  }

  .hesap-price-note {
    font-size: 1.1vw;
    color: #3a3a3a;
    letter-spacing: 0.7px;
    font-weight: 400;
    text-align: center;
  }

  .hesap-tel-form-title {
    font-size: 1.8vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    text-align: center;
  }

  .hesap-text h3 {
    font-size: 1.6vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }
  .hesap-text li,
  .hesap-text p {
    font-size: 1.1vw;
    color: #3a3a3a;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
  }

  .hesap-tel-form-ctrl input::placeholder,
  .hesap-tel-form-ctrl input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1.3vw;
    color: #3a3a3a;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
    border-radius: 1vw;
    padding-left: 1vw;
    border-radius: 1vw;
  }

  .hesap-tel-form-ctrl button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 1vw;
    background-color: #025add;
    transition: all 0.3s linear;
  }
  .hesap-tel-form-ctrl {
    width: 100%;
    height: 5vw;
    display: flex;
    align-items: center;
  }
  .tel-form-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8vw 5vw;
  }

  .tel-form-title {
    font-size: 2.5vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .tel-form-ctrl input::placeholder,
  .tel-form-ctrl input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1.3vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
    border-radius: 1vw;
    padding-left: 0;
    border-radius: 1vw;
  }

  .tel-form-ctrl button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 1vw;
    background-color: #025add;
    transition: all 0.3s linear;
  }

  .tel-form-ctrl {
    width: 25vw;
    height: 5vw;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 1vw;
  }

  .tel-form-p {
    font-size: 1.3vw;
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
    text-align: center;
  }

  .referans-title {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .referans-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .referans-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
  }

  .campany-info-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a254d;
    margin-top: 12vw;
  }

  .campany-info-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    gap: 3vw;
    padding: 6vw 5vw;
  }

  .campany-info-img img {
    width: 7vw;
    height: auto;
    transition: all 0.3s linear;
  }

  .cam-n {
    font-size: 3vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .cam-t1 {
    font-size: 1.5vw;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
  }

  .cam-t2 {
    font-size: 1.2vw;
    color: #025add;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
  }

  .web-info-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .web-info-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
  }

  .web-info-title {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .web-infi-box li,
  .web-infi-box p {
    font-size: 1.1vw;
    color: #3a3a3a;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 120%;
    list-style-type: disc;
  }

  .web-infi-box h3 {
    font-size: 1.5vw;
    color: #025add;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 120%;
  }

  .cms-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .cms-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
  }

  .cms-title {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .price-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .price-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
  }

  .price-title {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .price-slider-img {
    width: 7vw;
    height: 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-type {
    font-size: 1.8vw;
    color: #025add;
    font-weight: 600;
    line-height: 120%;
  }

  .site-day p {
    font-size: 1.8vw;
    color: #3a3a3a;
    font-weight: 400;
    line-height: 120%;
  }

  .site-day span {
    font-size: 1.8vw;
    color: #025add;
    font-weight: 500;
    line-height: 120%;
  }

  .site-text p {
    font-size: 1.1vw;
    color: #3a3a3a;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
  }

  .site-detail-link {
    font-size: 1.5vw;
    color: #025add;
    font-weight: 400;
    line-height: 120%;
    text-align: center;
  }
  .site-price p {
    font-size: 2.5vw;
    color: #025add;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
  }

  .site-price span {
    font-size: 2.5vw;
    color: #025add;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
  }
  .site-btn-link {
    width: 100%;
    height: 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6vw;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 1vw;
    transition: all 0.3s linear;
  }
  .price-slider-card {
    width: 100%;
    height: 55vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(60, 64, 67, 0.3);
    padding: 2vw 1vw;
    border-radius: 1vw;
    gap: 1vw;
  }

  .site-calc-link {
    border: 1px solid #025add !important;
    color: #025add;
  }

  .web-do-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }
  .web-do-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
    gap: 3vw;
  }

  .web-do-title {
    width: 100%;
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .web-do-text {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    font-size: 1.3vw;
    color: #3a3a3a;
    letter-spacing: 0.7px;
    font-weight: 400;
  }

  .web-do-list-title i {
    border-radius: 50%;
    background: #025add;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4vw;
    color: #fff;
    font-size: 1.5vw;
    flex-shrink: 0;
  }
  .web-do-list-title h3 {
    width: 100%;
    font-size: 1.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    transition: all.3s linear;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .web-do-list-text p {
    font-size: 1.1vw;
    color: #3a3a3a;
    letter-spacing: 0.7px;
    font-weight: 400;
  }

  .contack-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a254d;
    margin-top: 12vw;
  }

  .contack-content {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8vw 5vw;
    gap: 6vw;
  }

  .contack-text h3 {
    font-size: 2.5vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .contack-text p {
    font-size: 1.5vw;
    color: #fff;
    letter-spacing: 0.7px;
    font-weight: 400;
  }

  .contack-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2vw 2.5vw;
    font-size: 1.5vw;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 1vw;
    transition: all 0.3s linear;
    background-color: #025add;
    flex-shrink: 0;
  }
  .team-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .team-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0vw 5vw;
    gap: 3vw;
  }
  .team-title h2 {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .team-title p {
    font-size: 1.1vw;
    color: #3a3a3a;
    letter-spacing: 0.7px;
    font-weight: 400;
  }

  .team-name {
    font-size: 1.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }
  .team-mis {
    font-size: 1.1vw;
    color: #3a3a3a;
    letter-spacing: 0.7px;
    font-weight: 400;
  }
  .faq-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .faq-title {
    width: 100%;
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .faq-list-title i {
    border-radius: 50%;
    background: #025add;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4vw;
    color: #fff;
    font-size: 1.5vw;
    flex-shrink: 0;
  }

  .faq-list-title h3 {
    width: 100%;
    font-size: 1.3vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    transition: all.3s linear;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .faq-list-box {
    width: 49%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 1.5vw;
    background-color: #f8f8f8;
    border: 1px solid #e2e2e2;
    border-radius: 0.5vw;
    margin-bottom: 2%;
  }

  .faq-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
    gap: 3vw;
  }

  .faq-list-text li,
  .faq-list-text p {
    font-size: 1.1vw;
    color: #3a3a3a;
    letter-spacing: 0.7px;
    font-weight: 400;
    list-style: disc;
    padding-left: 1vw;
  }

  .comment-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .comment-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
  }

  .comment-title {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .comment-card {
    width: 100%;
    height: 38vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    border-radius: 1vw;
    padding: 2vw 1vw;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #9b9b9b;
  }

  .campany-name {
    font-size: 1.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 500;
  }

  .campany-type {
    font-size: 1.3vw;
    color: #3a3a3a;
    letter-spacing: 0.7px;
    font-weight: 400;
  }

  .comment-text p {
    font-size: 1.1vw;
    color: #3a3a3a;
    letter-spacing: 0.7px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contack-form-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12vw;
  }

  .contack-form-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0vw 5vw;
  }

  .contack-form-title {
    font-size: 2.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .adres-box h3 {
    font-size: 1.5vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .adres-box a {
    font-size: 1.3vw;
    color: #3a3a3a;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 500;
    transition: all 0.3s linear;
  }

  .contack-form-message textarea,
  .contack-form-ctrl input::placeholder,
  .contack-form-ctrl input {
    font-size: 1.3vw;
    color: #3a3a3a;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
  }

  .contack-send {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.3vw 2.5vw;
    border-radius: 1vw;
    transition: all 0.3s linear;
    background: #025add;
    font-size: 1.5vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 500;
  }
  .form-contack {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5vw;
  }

  .form-contack {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5vw;
  }

  footer {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a254d;
    margin-top: 12vw;
  }
  .footer-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 7vw 5vw 4vw 5vw;
  }
  .footer-logo img {
    width: 15vw;
    height: auto;
  }

  .footer-text {
    font-size: 1.1vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 500;
  }
  .f-logo {
    width: 25vw;
  }

  .footer-form-btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.3vw 2.5vw;
    font-size: 1.4vw;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 1vw;
    transition: all 0.3s linear;
    background-color: #025add;
    flex-shrink: 0;
  }
  .footer-policy {
    font-size: 1.1vw;
    letter-spacing: 0.7px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: #025add;
    border-radius: 1vw;
    padding: 1vw 1.3vw;
    transition: all 0.3s linear;
  }

  .footer-title {
    font-size: 1.8vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .footer-info-a,
  .footer-menu-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1vw;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s linear;
    position: relative;
  }

  .footer-adres a {
    font-size: 1.1vw;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s linear;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.5vw;
  }

  .f-wp-tg-box a {
    width: 2vw;
    height: auto;
  }

  .f-wp-tg-box {
    display: flex;
    align-items: center;
    gap: 1.3vw;
  }

  .footer-adres {
    display: flex;
    flex-direction: column;
    gap: 1.3vw;
  }

  .footer-bottom span {
    font-size: 1.1vw;
    font-weight: 500;
    transition: all 0.3s linear;
    color: #b9b9b9;
  }

  .footer-bottom a {
    font-size: 1.1vw;
    font-weight: 500;
    transition: all 0.3s linear;
    color: #025add;
  }
  .f-contack {
    width: 25vw;
  }

  .modal-form-content {
    max-width: 80%;
    width: fit-content;
    display: flex;
    align-items: center;
    position: relative;
    background: #fff;
    border-radius: 1vw;
    overflow: hidden;
  }
  .modal-form {
    max-width: 40vw;
    width: fit-content;
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    padding: 30px 20px;
    background: #fff;
    gap: 30px;
    flex-shrink: 0;
  }
  .form-title {
    color: #025add;
    font-size: 2.5vw;
    font-style: normal;
    font-weight: 600;
    line-height: 98%;
  }
  .modal-form-text {
    color: #3a3a3a;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .modal-form .iti,
  .modal-form .modal-form-inp {
    display: flex;
    padding: 1vw;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 0.5vw;
    border: 1px solid #eaeaea;
    background: rgba(255, 255, 255, 0.56);
    color: #202020;
    font-size: 1.1vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }

  .modal-form .modal-form-inp::placeholder {
    color: #3a3a3a;
    font-size: 1.1vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  .modal-form-send {
    display: flex;
    height: 4.2vw;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border: 2px solid #025add;
    background: #fff;
    color: #3a3a3a;
    text-align: center;
    font-size: 1.5vw;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    cursor: pointer;
    transition: all 0.5s linear;
    border-radius: 0.5vw;
  }

  .modal-form-checkbox-box label {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: flex-start;
    color: #3a3a3a;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    gap: 0.8vw;
  }

  .modal-form-checkbox-box label input {
    width: 15px;
    height: 15px;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #025add;
    border-radius: 0.1vw;
    flex-shrink: 0;
  }

  .modal-form-close {
    display: flex;
    width: 50px;
    height: 50px;
    padding: 0px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    background: #025add;
    position: absolute;
    z-index: 3;
    right: 0;
    top: 0;
    transition: all 0.5s linear;
    cursor: pointer;
  }

  .modal-form-personal-box {
    width: 30vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .modal-form-personal-item h3 {
    color: #fff;
    font-size: 1.8vw;
    font-style: normal;
    font-weight: 600;
    line-height: 98%;
  }
  .modal-form-personal-item p {
    color: #fff;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .modal-form-personal-item {
    display: inline-flex;
    padding: 10px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 2px;
    background: rgba(2, 25, 87, 0.753);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .modal-form-personal-box {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .tel-form-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
  }

  .tel-form-ctrl {
    width: 33%;
    height: 5vw;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 1vw;
  }

  .tel-form-ctrl input::placeholder,
  .tel-form-ctrl input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1.3vw;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
    border-radius: 1vw;
    padding: 15px;
    border-radius: 1vw;
  }


  .eror-banner-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -7vw;
}

.eror-banner-item h3 {
  font-size: 50px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}

.eror-banner-item p {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}
.eror-back-link {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 20px;
  transition: all 0.3s linear;
  color: #fff;
  background: linear-gradient(45deg, #025add, #0c6de0);
  cursor: pointer;
}

.eror-banner-content {
  width: 100%;
  height: fit-content;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  position: relative;
  overflow: hidden;
  padding: 15vw 5vw;
}
.p-banner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -7vw;
}
.p-banner-item h3 {
  font-size: 50px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
  line-height: 120%;
}
.page-pagination-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 5vw 10px 5vw;
}
.page-pagination-content a {
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s linear;
}
.page-pagination-content p {
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  font-style: normal;
}

.p-banner-item p {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}



.p-banner-btn button {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 20px;
  transition: all 0.3s linear;
  color: #fff;
  background: linear-gradient(45deg, #025add, #0c6de0);
  cursor: pointer;
}




.p-banner-content {
  width: 100%;
  height: fit-content;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  position: relative;
  overflow: hidden;
  padding: 15vw 5vw;
}

.about-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0px 5vw;
}


.about-item h3, .about-bottom h3 {
  font-size: 50px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-item {
  width: 50%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 20px;
  flex-shrink: 0;
}

.about-bottom p, .about-item p {
  font-size: 15px;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}



.about-box-text img {
  width: 90px;
  height: auto;
}

.about-box-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 20px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1vw;
  padding: 20px;
}



.about-box-text h4 {
  font-size: 18px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}

.about-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}


.support-info-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
  gap: 30px;
}


.support-info-title {
  font-size: 50px;
  color: #025add;
  font-weight: 600;
}

.support-info-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 20px;
  border-radius: 20px;
  gap: 20px;
  margin-bottom: 2%;
}

.support-info-box li, .support-info-box p {
  font-size: 16px;
  color: #3a3a3a;
  font-weight: 500;
}

.sport-info-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
}

.support-info-box h3 {
  font-size: 20px;
  color: #025add;
  font-weight: 600;
}
.sp-info-box p {
  font-size: 16px;
  color: #3a3a3a;
  font-weight: 600;
}
.sp-info-box span {
  font-size: 40px;
  color: #025add;
  font-weight: 800;
}
.sp-info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.5vw solid #025add;
  padding: 10px 20px;
  border-radius: 20px;
}

.sp-info-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  border-radius: 20px;
  background-color: #025add;
  padding: 15px 25px;
}

.support-info-price-not p {
  font-size: 14px;
  color: #025add;
  font-weight: 600;
  text-align: center;
}
.support-info-price-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}
.sp-service-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.sp-service-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0vw 20px;
  gap: 30px;
}

.sp-service-title h2 {
  font-size: 35px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 120%;
}

.sp-service-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.sp-service-box {
  width: 49%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 15px;
  border-radius: 20px;
  gap: 15px;
  margin-bottom: 2%;
}
.sp-service-box h3 {
  font-size: 20px;
  color: #025add;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.sp-service-box p {
  font-size: 16px;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 500;
}

.sp-about-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.sp-about-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0vw 5vw;
  gap: 30px;
}

.sp-about-content h2 {
  font-size: 40px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.sp-about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.table-item p, .sp-about-text li, .sp-about-text p {
  font-size: 15px;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
  list-style-type: disc;
  line-height: 120%;
}

.sp-about-text h3 {
  font-size: 20px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.table-item h3 {
  font-size: 20px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.custom-table th {
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
  background-color: #025add;
}

.custom-table th, .custom-table td {
  font-size: 14px;
  /* color: #3a3a3a; */
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  padding: 0.7vw;
}

.custom-table td i {
  font-size: 14px;
}
.work-plan-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.work-plan-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
  gap: 30px;
}

.work-plan-title {
  width: 100%;
  font-size: 40px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.work-plan-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.work-plan-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 1vw;
  gap: 20px;
  padding: 20px;
  margin-bottom: 2%;
}

.work-plan-box h3 {
  width: 100%;
  font-size: 18px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.work-plan-box li, .work-plan-box p {
  width: 100%;
  font-size: 15px;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.catagory-service-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.catagory-service-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
}

.catagory-service-title {
  width: 100%;
  font-size: 35px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.catagory-slider {
  width: 100%;
  position: relative;
  margin-top: 30px;
}
.catagory-slider.owl-carousel .owl-nav .owl-next, .catagory-slider.owl-carousel .owl-nav .owl-prev {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  background: #025add;
  border-radius: 50%;
  transition: all 0.3s linear;
  border: 1px solid #025add;
}
.catagory-card-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catagory-card {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 1vw;
  padding: 20px 10px;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #9b9b9b;
}
.catagory-card-text h3 {
  font-size: 16px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.catagory-card-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catagory-card-text p {
  font-size: 15px;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.catagory-slider.owl-carousel button.owl-dot {
  background: #3a3a3a;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  width: 20px;
  height: 4px;
  margin-top: 20px;
  border-radius: 20%;
}
.sp-service-title p {
  font-size: 15px;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.sp-about-text h4 {
  font-size: 18px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.dev-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.dev-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
  gap: 30px;
}

.dev-title {
  width: 100%;
  font-size: 45px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}



.dev-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.dev-type {
  font-size: 20px;
  color: #025add;
  font-weight: 600;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dev-not, .dev-day, .dev-price {
  font-size: 15px;
  color: #3a3a3a;
  font-weight: 600;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dev-card {
  width: 23.5%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  margin-bottom: 2%;
}

.dev-img {
  width: 100%;
  height: 30vw;
  position: relative;
  overflow: hidden;
}

.dev-text-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}
.dev-text-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
  gap: 20px;
}
.dev-text-content h3 {
  width: 100%;
  font-size: 45px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 120%;
}
.dev-text-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}
.dev-text-content p, .dev-text-content li {
  font-size: 15px;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
  list-style-type: disc;
}
.dev-text-content p a {
  color: #025add;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}
.policy-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.policy-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
  gap: 30px;
}

.policy-item h3 {
  width: 100%;
  font-size: 20px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.policy-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.policy-item li, .policy-item p {
  width: 100%;
  font-size: 16px;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}


.portfolio-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.portfolio-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
}
.portfolio-title {
  font-size: 40px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.portfolio-button-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.portfolio-btn {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s linear;
  color: #025add;
  cursor: pointer;
  background: #f5f5f5;
}



.portfolio-card-text {
  width: 100%;
  height: 12vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
.portfolio-card-text h3 {
  font-size: 18px;
  color: #025add;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-card-text p {
  font-size: 15px;
  color: #3a3a3a;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.portfolio-card-img {
  width: 100%;
  height: 30vw;
  overflow: hidden;
  position: relative;
}

.portfolio-item-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
}

.sp-slider-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sp-slider-item h3 {
  font-size: 18px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}


.sp-ceo-slider.owl-carousel .owl-nav .owl-next, .sp-ceo-slider.owl-carousel .owl-nav .owl-prev {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  background: #025add;
  border-radius: 50%;
  transition: all 0.3s linear;
  border: 1px solid #025add;
}

.sp-ceo-img {
  width: 100%;
  height: 30vw;
  display: block;
}

.site-detail-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}


.site-detail-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
  gap: 30px;
}

.detail-top p {
  font-size: 16px;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
  list-style-type: disc;
}



.site-type-box, .site-app {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-type-box h3, .site-app h3 {
  width: 100%;
  font-size: 20px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.site-app p, .site-type-box li {
  font-size: 16px;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
  list-style-type: disc;
}
.site-detail-form-btn, .live-site-link {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 15px;
  transition: all 0.3s linear;
  color: #fff;
  cursor: pointer;
  background: #025add;
}


.site-detail-fancy-link {
  width: 32%;
  height: 40vw;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  padding: 10px;
  gap: 10px;
  margin-bottom: 3%;
  align-items: stretch;
  position: relative;
}


.site-detail-fancy-link img {
  width: 100%;
  transition: transform 12s linear;
  transform: translateY(0);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}
.site-detail-fancy-link span {
  display: flex;
  flex-shrink: 0;
  font-size: 16px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}

.site-detail-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 30px;
}

.detail-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}














.sp-about-text span {
  font-size: 15px;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}










}

@media only screen and (max-width: 1250px) {
  .banner-container {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    margin-top: -7vw;
    overflow: hidden;
  }
  .banner-content {
    width: 100%;
    position: relative;
    background: url(../img/bg.png);
    background-size: 100% 100%;
    background-position: center;
    height: fit-content;
    min-height: 53vw;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background-attachment: fixed;
    padding: 13vw 5vw;
  }

  .menu-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1vw;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s linear;
    position: relative;
    padding: 0.5vw 1vw;
    border-radius: 0.5vw;
  }

  .wp-tg-box a img {
    width: 100%;
    height: auto;
  }

  .wp-tg-box a {
    width: 2vw;
    height: auto;
    transition: all 0.3s linear;
  }

  .banner-service {
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
  }
  .services-about-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .menu-a {
    /* font-size: 1.3vw; */
  }

  .tel-a {
    font-size: 1.5vw;
  }

  .mail-a {
    font-size: 1.2vw;
  }

  .banner-title {
    font-size: 3.8vw;
  }

  .banner-service p {
    font-size: 1.5vw;
  }

  .banner-service a {
    font-size: 1.4vw;
  }

  .banner-l {
    font-size: 1.5vw;
  }

  .services-about-text h3 {
    font-size: 2.8vw;
  }

  .services-about-text li,
  .services-about-text p {
    font-size: 1.4vw;
  }

  .services-about-text h4 {
    font-size: 1.9vw;
  }

  .services-title {
    font-size: 2.8vw;
  }

  services-card-text h3 {
    font-size: 1.8vw;
  }

  .services-card-text p {
    font-size: 1.4vw;
  }

  .note {
    font-size: 1.6vw;
  }

  .us-title h2 {
    font-size: 2.8vw;
  }

  .us-title p {
    font-size: 1.4vw;
  }

  .us-text h4 {
    font-size: 1.8vw;
  }

  .us-text p {
    font-size: 1.4vw;
  }

  .proje-title {
    font-size: 2.8vw;
  }

  .proje-btn {
    font-size: 1.4vw;
  }

  .proje-card-text h3 {
    font-size: 1.8vw;
  }

  .proje-card-text p {
    font-size: 1.4vw;
  }

  .proje-all-link span {
    font-size: 1.4vw;
  }

  .hesap-title {
    font-size: 2.8vw;
  }

  .hesap-box h3 {
    font-size: 1.8vw;
  }

  .hesap-check label {
    font-size: 1.4vw;
  }

  .hesap-price-note {
    font-size: 1.4vw;
  }

  .hesap-tel-form-title {
    font-size: 2.1vw;
  }

  .hesap-text h3 {
    font-size: 1.9vw;
  }

  .hesap-text li,
  .hesap-text p {
    font-size: 1.4vw;
  }

  .hesap-tel-form-ctrl input::placeholder,
  .hesap-tel-form-ctrl input {
    font-size: 1.6vw;
  }

  .hesap-tel-form-ctrl button {
    font-size: 1.6vw;
  }

  .tel-form-title {
    font-size: 2.8vw;
  }

  .tel-form-ctrl input::placeholder,
  .tel-form-ctrl input {
    font-size: 1.6vw;
  }

  .tel-form-ctrl button {
    font-size: 1.6vw;
  }

  .tel-form-p {
    font-size: 1.6vw;
  }

  .referans-title {
    font-size: 2.8vw;
  }

  .web-info-title {
    font-size: 2.8vw;
  }

  .web-infi-box li,
  .web-infi-box p {
    font-size: 1.4vw;
  }

  .web-infi-box h3 {
    font-size: 1.8vw;
  }

  .cms-title {
    font-size: 2.8vw;
  }

  .price-title {
    font-size: 2.8vw;
  }

  .site-type {
    font-size: 2.1vw;
  }

  .site-day p {
    font-size: 2.1vw;
  }

  .site-day span {
    font-size: 2.1vw;
  }

  .site-text p {
    font-size: 1.4vw;
  }

  .site-detail-link {
    font-size: 1.8vw;
  }

  .site-price p {
    font-size: 2.8vw;
  }

  .site-price span {
    font-size: 2.8vw;
  }

  .site-btn-link {
    font-size: 1.6vw;
  }

  .web-do-title {
    font-size: 2.8vw;
  }

  .web-do-text {
    font-size: 1.6vw;
  }

  .web-do-list-title i {
    font-size: 1.8vw;
  }

  .web-do-list-title h3 {
    font-size: 1.8vw;
  }

  .web-do-list-text p {
    font-size: 1.4vw;
  }

  .contack-text h3 {
    font-size: 2.8vw;
  }

  .contack-text p {
    font-size: 1.8vw;
  }

  .contack-btn {
    font-size: 1.8vw;
  }

  .team-title h2 {
    font-size: 2.8vw;
  }

  .team-title p {
    font-size: 1.4vw;
  }

  .team-name {
    font-size: 1.8vw;
  }

  .team-mis {
    font-size: 1.4vw;
  }

  .faq-title {
    font-size: 2.8vw;
  }

  .faq-list-title i {
    font-size: 1.8vw;
  }

  .faq-list-title h3 {
    font-size: 1.6vw;
  }

  .faq-list-text li,
  .faq-list-text p {
    font-size: 1.4vw;
  }

  .comment-title {
    font-size: 2.8vw;
  }

  .campany-name {
    font-size: 1.8vw;
  }

  .campany-type {
    font-size: 1.6vw;
  }

  .comment-text p {
    font-size: 1.4vw;
  }

  .contack-form-title {
    font-size: 2.8vw;
  }

  .adres-box h3 {
    font-size: 1.8vw;
  }

  .adres-box a {
    font-size: 1.6vw;
  }

  .contack-form-message textarea,
  .contack-form-ctrl input::placeholder,
  .contack-form-ctrl input {
    font-size: 1.6vw;
  }

  .contack-send {
    font-size: 1.8vw;
  }

  .footer-text {
    font-size: 1.4vw;
  }

  .footer-form-btn {
    font-size: 1.7vw;
  }

  .footer-policy {
    font-size: 1.3vw;
  }

  .footer-title {
    font-size: 2.1vw;
  }

  .footer-info-a,
  .footer-menu-a {
    font-size: 1.4vw;
  }

  .footer-adres a {
    font-size: 1.4vw;
  }

  .footer-bottom span {
    font-size: 1.4vw;
  }

  .footer-bottom a {
    font-size: 1.4vw;
  }

  .services-card-text h3 {
    font-size: 1.8vw;
    color: #025add;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
  }

  .proje-slider.owl-carousel .owl-nav .owl-next,
  .proje-slider.owl-carousel .owl-nav .owl-prev {
    width: 3.5vw;
    height: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8vw;
    background: #025add;
    border-radius: 50%;
    transition: all 0.3s linear;
    border: 1px solid #025add;
  }

  .proje-card-text {
    width: 100%;
    height: 13vw;
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    padding: 1vw;
  }

  .proje-card-img {
    width: 100%;
    height: 30vw;
    overflow: hidden;
    position: relative;
  }

  .services-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .banner-item {
    width: 60%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 2;
    gap: 2vw;
  }

  .form-title {
    color: #025add;
    font-size: 3vw;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .modal-form-text {
    color: #3a3a3a;
    font-size: 1.3vw;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .modal-form .iti,
  .modal-form .modal-form-inp {
    display: flex;
    padding: 15px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 0.5vw;
    border: 1px solid #eaeaea;
    background: rgba(255, 255, 255, 0.56);
    color: #202020;
    font-size: 1.4vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }

  .modal-form .modal-form-inp::placeholder {
    color: #3a3a3a;
    font-size: 1.4vw;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }

  .modal-form-send {
    display: flex;
    height: 55px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border: 2px solid #025add;
    background: #fff;
    color: #3a3a3a;
    text-align: center;
    font-size: 1.8vw;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    cursor: pointer;
    transition: all 0.5s linear;
    border-radius: 0.5vw;
  }
  .modal-form-checkbox-box label {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: flex-start;
    color: #3a3a3a;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    gap: 0.8vw;
  }

  .modal-form-personal-item h3 {
    color: #fff;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 98%;
  }

  .modal-form-personal-item p {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .modal-form-personal-item {
    display: inline-flex;
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 2px;
    background: rgba(2, 25, 87, 0.753);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .services-card {
    width: 32%;
    height: 21vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vw 1.3vw;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border-radius: 0.5vw;
    transition: all 0.3s ease-in-out;
    margin-bottom: 2%;
  }

  .hesap-row {
    display: flex;
    gap: 2vw;
    justify-content: space-between;
    position: relative;
  }

  .price-slider-card {
    width: 100%;
    height: 70vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(60, 64, 67, 0.3);
    padding: 3vw 1vw;
    border-radius: 1vw;
    gap: 1vw;
  }

  .faq-list-box {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 2vw;
    background-color: #f8f8f8;
    border: 1px solid #e2e2e2;
    border-radius: 0.5vw;
    margin-bottom: 2%;
  }

  .faq-list-title {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 2vw;
  }

  .comment-card {
    width: 100%;
    height: 42vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    border-radius: 1vw;
    padding: 2vw 1vw;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #9b9b9b;
  }
  .form-item {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    margin-top: 3vw;
  }

  .contack-adres {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    flex-shrink: 0;
  }
  .form-contack {
    width: 62%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3vw;
  }

  .footer-top {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2vw;
  }
  .f-logo {
    width: 25vw;
  }
  .footer-logo img {
    width: 20vw;
    height: auto;
  }
  .f-contack {
    width: 22vw;
  }


  .hesap-text h4 {
    font-size: 1.4vw;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 500;
}



.dev-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 30px;
}

.dev-title {
  width: 100%;
  font-size: 35px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}


.dev-card {
  width: 32%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  margin-bottom: 2%;
}
.dev-img {
  width: 100%;
  height: 40vw;
  position: relative;
  overflow: hidden;
}

.dev-text-content h3 {
  width: 100%;
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 120%;
}


.dev-text-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 20px;
}














}

@media only screen and (max-width: 1040px) {
  header {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 445;
    transition: all 0.3s linear;
  }

  header.sticky {
    width: 100%;
    height: 70px;
    position: fixed;
    background-color: #0a254d;
    transition: all 0.3s linear;
  }

  .banner-container {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    margin-top: -70px;
    overflow: hidden;
  }

  .logo {
    width: 130px;
    height: fit-content;
  }

  .contack-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-evenly;
  }

  .wp-tg-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .wp-tg-box a {
    width: 20px;
    height: auto;
    transition: all 0.3s linear;
  }

  .tel-a {
    font-size: 15px;
  }

  .mail-a {
    font-size: 14px;
  }

  .menu-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
  }

  nav {
    width: fit-content;
    min-width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #0a254d;
    position: absolute;
    top: -500px;
    right: 0;
    transition: all 0.5s linear;
    z-index: 1;
    border: 1px solid white;
  }
  nav.active {
    top: 70px;
  }

  .menu-list {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .menu-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: all 0.3s linear;
    position: relative;
    padding: 0.5vw 1vw;
    border-radius: 0.5vw;
  }

  .banner-content {
    width: 100%;
    position: relative;
    background: url(../img/bg.png);
    background-size: 100% 100%;
    background-position: center center;
    height: fit-content;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background-attachment: fixed;
    padding: 100px 20px;
  }

  .banner-title {
    width: 90%;
    font-size: 30px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .banner-service {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .banner-service p {
    font-size: 15px;
  }

  .banner-service a {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 400;
    transition: all 0.3s linear;
  }

  .banner-service a img {
    width: 25px;
    height: auto;
  }

  .banner-l {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 1.5vw;
    transition: all 0.3s linear;
    color: #fff;
    background: linear-gradient(45deg, #025add, #0c6de0);
    cursor: pointer;
  }

  .banner-item {
    width: 65%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 2;
    gap: 20px;
  }

  .services-about-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }

  .services-about-text h3 {
    font-size: 30px;
  }

  .services-about-text li,
  .services-about-text p {
    font-size: 15px;
  }

  .services-about-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .services-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .services-title {
    font-size: 30px;
  }

  .services-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 2%;
  }

  .services-card-img img {
    width: 55px;
    height: auto;
  }

  .services-card-text h3 {
    font-size: 18px;
    color: #025add;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
  }
  .services-card-text p {
    font-size: 15px;
  }

  .services-card-text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .services-card {
    width: 32%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 2%;
  }

  .note {
    font-size: 13px;
    color: #3a3a3a;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 120%;
    margin-top: 25px;
  }

  .us-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .us-title h2 {
    font-size: 30px;
  }

  .us-title p {
    font-size: 15px;
  }

  .us-item {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 2%;
  }
  .us-text h4 {
    font-size: 18px;
  }

  .us-box {
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    padding: 15px;
    border-radius: 10px;
    flex-direction: column;
  }

  .us-text p {
    font-size: 14px;
  }

  .us-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    order: 2;
  }

  .us-img {
    width: 60px;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .us-img-item {
    width: 36%;
    height: fit-content;
  }
  .us-right,
  .us-left {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    flex-shrink: 0;
  }

  .proje-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .proje-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .proje-title {
    font-size: 30px;
  }

  .proje-button-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }

  .proje-btn {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s linear;
    color: #025add;
    cursor: pointer;
    background: #f5f5f5;
  }
  .proje-slider {
    width: 100%;
    height: fit-content;
    position: relative;
    margin-top: 30px;
  }

  .proje-slider.owl-carousel .owl-nav .owl-next,
  .proje-slider.owl-carousel .owl-nav .owl-prev {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: #025add;
    border-radius: 50%;
    transition: all 0.3s linear;
    border: 1px solid #025add;
  }

  .proje-card-text h3 {
    font-size: 18px;
  }
  .proje-card-text p {
    font-size: 14px;
  }
  .proje-card-text {
    width: 100%;
    height: 140px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }
  .proje-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
  }

  .proje-card-link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(60, 64, 67, 0.3);
  }

  .proje-all-link {
    width: fit-content;
    height: fit-content;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 1.3vw;
    border: 1px solid #0081cc;
    cursor: pointer;
    position: relative;
    transition: transform 0.175s ease-in, -webkit-transform 0.175s ease-in;
    background-image: linear-gradient(-90deg, #006eae 0%, #029df7 100%);
    margin: 30px auto 0 auto;
    position: relative;
  }
  .proje-all-link span {
    font-size: 15px;
  }

  .hesap-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .hesap-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
  }

  .hesap-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    position: relative;
  }

  .hesap-title {
    font-size: 30px;
  }

  .hesap-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border-radius: 10px;
    padding: 15px;
  }

  .hesap-box h3 {
    font-size: 18px;
  }

  .hesapbox {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    outline: none;
    border: 1px solid #006eae;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 2px;
    cursor: pointer;
  }

  .hesap-box-item1 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hesap-check {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 10px;
  }
  .hesap-check label {
    font-size: 14px;
  }

  .hesap-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hesap-right {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
  }

  .hesap-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 1;
    gap: 30px;
  }

  .hesap-total-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 25px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    background: #025add;
    border-radius: 10px;
    padding: 10px;
  }

  .hesap-total-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
  }

  .hesap-price-note {
    font-size: 13px;
  }

  .hesap-total {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 4px;
    border-radius: 10px;
    padding: 20px 10px;
    gap: 10px;
    position: sticky;
    top: 70px;
  }

  .hesap-tel-form-title {
    font-size: 18px;
  }
  .hesap-tel-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .hesap-tel-form-ctrl input::placeholder,
  .hesap-tel-form-ctrl input {
    font-size: 15px;
  }

  .hesap-tel-form-ctrl {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
  }

  .hesap-tel-form-ctrl .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #3a3a3a;
  }
  .hesap-tel-form-ctrl button {
    font-size: 16px;
  }

  .tel-form-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a254d;
    margin-top: 100px;
  }

  .tel-form-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
  }

  .tel-form {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .tel-form-title {
    font-size: 30px;
  }

  .tel-form-ctrl input::placeholder,
  .tel-form-ctrl input {
    font-size: 15px;
  }

  .tel-form-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .tel-form-ctrl {
    width: 48%;
    height: 55px;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 1vw;
  }

  .tel-form-ctrl .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #fff;
  }

  .tel-form-p {
    font-size: 15px;
  }

  .referans-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .referans-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .referans-slider {
    width: 100%;
    height: fit-content;
    display: flex;
    margin-top: 30px;
  }

  .referans-title {
    font-size: 30px;
  }

  .campany-info-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a254d;
    margin-top: 100px;
  }

  .campany-info-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
  }
  .campany-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .campany-info-img img {
    width: 60px;
    height: auto;
    transition: all 0.3s linear;
  }

  .campany-info-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .cam-n {
    font-size: 30px;
    color: #025add;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
  }

  .cam-t1 {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
  }
  .cam-t2 {
    font-size: 12px;
    color: #025add;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
  }
  .web-info-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }
  .web-info-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .web-info-item {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin-top: 30px;
  }
  .web-info-title {
    font-size: 30px;
  }

  .web-infi-box li,
  .web-infi-box p {
    font-size: 14px;
  }

  .web-infi-box h3 {
    font-size: 18px;
  }

  .web-infi-box {
    width: 49%;
    display: flex;
    flex-direction: column;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border-radius: 10px;
    padding: 20px 10px;
    gap: 10px;
    margin-bottom: 2%;
  }
  .cms-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }
  .cms-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .cms-item {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
    justify-content: space-between;
  }

  .cms-link {
    width: 22%;
    height: fit-content;
    display: flex;
    align-items: center;
    transition: all 0.3s linear;
    padding: 0.5vw;
  }

  .cms-title {
    font-size: 30px;
  }

  .price-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .price-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .price-slider {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 30px;
  }

  .price-title {
    font-size: 30px;
  }

  .price-slider-img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .price-slider-card-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .site-type {
    font-size: 20px;
  }

  .site-day span {
    font-size: 20px;
  }
  .site-day p {
    font-size: 20px;
  }

  .site-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .site-text p {
    font-size: 14px;
  }

  .price-slider-card-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .site-detail-link {
    font-size: 18px;
  }
  .site-price p {
    font-size: 30px;
  }
  .site-btn-link {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
  }

  .price-slider.owl-carousel .owl-nav .owl-next,
  .price-slider.owl-carousel .owl-nav .owl-prev {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: #025add;
    border-radius: 50%;
    transition: all 0.3s linear;
    border: 1px solid #025add;
  }

  .price-slider-card {
    width: 100%;
    height: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(60, 64, 67, 0.3);
    padding: 20px 10px;
    border-radius: 10px;
    gap: 10px;
  }
  .site-button {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
  .web-do-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }
  .web-do-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .web-do-top {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .web-do-title {
    font-size: 30px;
  }

  .web-do-text {
    font-size: 15px;
  }

  .web-do-list {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .web-do-list-title {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
  }

  .web-do-list-title i {
    border-radius: 50%;
    background: #025add;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
  }

  .web-do-list-title h3 {
    font-size: 16px;
  }

  .web-do-list-box {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
  }

  .web-do-list-text p {
    font-size: 14px;
  }

  .contack-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a254d;
    margin-top: 100px;
  }

  .contack-content {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 50px;
  }

  .contack-text h3 {
    font-size: 30px;
  }

  .contack-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contack-text p {
    font-size: 14px;
  }

  .contack-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
    background-color: #025add;
    flex-shrink: 0;
  }

  .team-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0vw 20px;
    gap: 30px;
  }

  .team-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .team-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .team-title h2 {
    font-size: 30px;
  }

  .team-title p {
    font-size: 14px;
  }

  .team-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
  }

  .team-name {
    font-size: 18px;
  }

  .team-mis {
    font-size: 14px;
  }

  .team-slider .owl-dots {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
  }

  .team-slider.owl-carousel button.owl-dot {
    background: #3a3a3a;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 15px;
    height: 5px;
    margin-top: 0;
    border-radius: 20%;
  }
  .faq-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }
  .faq-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .faq-title {
    font-size: 30px;
  }

  .faq-list-box {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #e2e2e2;
    border-radius: 0.1px;
    margin-bottom: 2%;
  }

  .faq-list-title i {
    border-radius: 50%;
    background: #025add;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
  }

  .faq-list-title {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
  }

  .faq-list-title h3 {
    font-size: 16px;
  }
  .faq-list-text li,
  .faq-list-text p {
    font-size: 14px;
  }
  .comment-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .comment-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .comment-slider {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 30px;
  }

  .comment-title {
    font-size: 30px;
  }

  .comment-card-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .campany-name {
    font-size: 18px;
  }

  .campany-type {
    font-size: 16px;
  }

  .comment-card {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    padding: 20px 10px;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #9b9b9b;
  }

  .comment-text p {
    font-size: 14px;
  }

  .comment-slider .owl-dots {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
  }

  .comment-slider.owl-carousel button.owl-dot {
    background: #3a3a3a;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 15px;
    height: 5px;
    margin-top: 0;
    border-radius: 20%;
  }

  .contack-form-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0vw 20px;
  }

  .contack-form-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .form-item {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }
  .contack-form-title {
    font-size: 30px;
  }

  .adres-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    padding: 10px;
  }

  .adres-box h3 {
    font-size: 16px;
  }

  .adres-box a {
    font-size: 13px;
  }

  .adres-box .tel-c-a {
    font-size: 14px;
  }

  .form-contack {
    width: 62%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .contack-form-ctrl {
    width: 49%;
    height: 50px;
    display: flex;
  }

  .contack-form-message textarea,
  .contack-form-ctrl input::placeholder,
  .contack-form-ctrl input {
    font-size: 15px;
  }

  .contack-form-item {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 2%;
  }

  .contack-form-message {
    width: 100%;
    min-height: 100px;
    display: flex;
  }

  .contack-form-ctrl .iti__arrow {
    margin-left: 0;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #fff;
  }

  .contack-send {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s linear;
    background: #025add;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 500;
  }

  footer {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a254d;
    margin-top: 100px;
  }

  .footer-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 60px 40px 30px 40px;
  }

  .footer-top {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px;
  }

  .f-logo {
    width: 100%;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
  }
  .footer-logo {
    width: 220px;
    display: flex;
    align-items: flex-start;
  }
  .footer-logo img {
    width: 100%;
    height: auto;
  }

  .footer-text {
    width: 80%;
    font-size: 14px;
    text-align: center;
  }
  .footer-form-btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
    background-color: #025add;
    flex-shrink: 0;
  }

  .footer-policy {
    font-size: 14px;
    letter-spacing: 0.7px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: #025add;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all 0.3s linear;
  }
  .footer-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .f-menu {
    width: fit-content;
  }

  .f-info {
    width: fit-content;
  }

  .f-contack {
    width: fit-content;
    max-width: 35%;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-info,
  .footer-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-info-a,
  .footer-menu-a {
    font-size: 14px;
  }

  .footer-adres a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s linear;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-adres a i {
    font-size: 18px;
  }

  .footer-adres {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .f-wp-tg-box {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .f-wp-tg-box a {
    width: 25px;
    height: auto;
  }

  .footer-bottom {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 5px;
  }
  .footer-bottom span {
    font-size: 14px;
  }
  .footer-bottom a {
    font-size: 14px;
  }

  .modal-form-content {
    max-width: 95%;
    width: fit-content;
    display: flex;
    height: 100%;
    max-height: 500px;
    align-items: center;
    position: relative;
    background: #fff;
    border-radius: 1vw;
    overflow: hidden;
  }

  .modal-form {
    max-width: 50%;
    width: fit-content;
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    padding: 30px 20px;
    background: #fff;
    gap: 30px;
    flex-shrink: 0;
  }

  .form-title {
    color: #025add;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .modal-form-text {
    color: #3a3a3a;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .modal-form .iti,
  .modal-form .modal-form-inp {
    display: flex;
    padding: 15px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    background: rgba(255, 255, 255, 0.56);
    color: #202020;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }

  .modal-form-send {
    display: flex;
    height: 55px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border: 2px solid #025add;
    background: #fff;
    color: #3a3a3a;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    cursor: pointer;
    transition: all 0.5s linear;
    border-radius: 10px;
  }
  .modal-form .modal-form-inp::placeholder {
    color: #3a3a3a;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }

  .tel-form-ctrl button {
    font-size: 16px;
  }
  .footer-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 60px 20px 30px 20px;
  }




  .eror-banner-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -70px;
}



.eror-banner-item {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  position: relative;
  z-index: 2;
}

.eror-banner-item h3 {
  font-size: 50px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

.eror-banner-item {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}


.eror-banner-content {
  width: 100%;
  height: fit-content;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  position: relative;
  overflow: hidden;
  padding: 130px 20px 50px 20px;
}














.eror-banner-item h3 {
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

.p-banner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -70px;
}

.p-banner-content {
  width: 100%;
  height: fit-content;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  position: relative;
  overflow: hidden;
  padding: 130px 20px 50px 20px;
}

.p-banner-item h3 {
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
  line-height: 120%;
}

.p-banner-item {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.page-pagination-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 0px 20px;
}
.hesap-text h3 {
  font-size: 18px;
}
.hesap-text li, .hesap-text p {
  font-size: 16px;
}

.hesap-text h4 {
  font-size: 17px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 500;
}

.hesap-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.page-pagination-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50px;
  z-index: 3;
}

.about-box-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-top: 30px;
}


.about-box {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 1vw;
  margin-bottom: 3%;
  transition: all 0.3s linear;
  position: relative;
  z-index: 1;
  background: #fff;
}

.about-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 20px;
}
.about-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0px 20px;
}


.about-item h3, .about-bottom h3 {
  font-size: 40px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  margin-bottom: 10px;
}

.iti__country-list {
  position: absolute;
  z-index: 9;
  list-style: none;
  text-align: left;
  padding: 0px;
  margin: 0px 0px 0px -1px;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 4px;
  background-color: white;
  border: 1px solid rgb(204, 204, 204);
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
}
.iti__country-name, .iti__dial-code {
  font-size: 15px;
}


.support-info-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 30px;
}


.support-info-title {
  font-size: 40px;
  color: #025add;
  font-weight: 600;
  line-height: 120%;
}


.sp-service-title h2 {
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 120%;
}

.catagory-service-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}


.catagory-service-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}


.work-plan-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 30px;
}

.work-plan-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.sp-about-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0vw 20px;
  gap: 30px;
}

.sp-about-content h2 {
  font-size: 35px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 120%;
}
.sp-about-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}


.sport-info-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}


.sp-info-box span {
  font-size: 30px;
  color: #025add;
  font-weight: 800;
}
.support-info-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 20px 10px;
  border-radius: 20px;
  gap: 20px;
  margin-bottom: 2%;
}
.policy-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 30px;
}

.portfolio-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.portfolio-card {
  width: 32%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 1vw;
  overflow: hidden;
  margin-bottom: 2%;
}
.portfolio-card-img {
  width: 100%;
  height: 35vw;
  overflow: hidden;
  position: relative;
}

.portfolio-title {
  font-size: 35px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.catagory-card {
  width: 100%;
  height: 340px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 1vw;
  padding: 20px 10px;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #9b9b9b;
}


.catagory-card-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-around;
}

.sp-ceo-img {
  width: 100%;
  height: 300px;
  display: block;
}








}

@media only screen and (max-width: 900px) {
  .form-item {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
  }

  .contack-adres {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2vw;
    flex-shrink: 0;
  }

  .form-contack {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .contack-form-message {
    width: 100%;
    height: 100px;
    min-height: 100px;
    display: flex;
  }




























}

@media only screen and (max-width: 768px) {
  .banner-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 2;
    gap: 20px;
  }

  .services-card {
    width: 49%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 2%;
  }

  .us-item {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .us-right,
  .us-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 4%;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .us-box {
    width: 48%;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    padding: 15px;
    border-radius: 10px;
    flex-direction: column;
  }
  .us-right .us-box:last-child,
  .us-left .us-box:last-child {
    width: 100%;
    margin-top: 4%;
  }
  .us-img-item {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .us-img-item img {
    width: 60%;
    height: auto;
  }

  .hesap-row {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
  }

  .hesap-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
    align-items: center;
  }

  .hesap-total {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 4px;
    border-radius: 10px;
    padding: 20px 10px;
    gap: 20px;
    position: sticky;
    top: 70px;
  }
  .hesap-total-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 30px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    background: #025add;
    border-radius: 10px;
    padding: 10px;
  }

  .hesap-total-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px;
    gap: 20px;
  }

  .hesap-price-note {
    font-size: 16px;
  }

  .hesap-tel-form-title {
    font-size: 22px;
  }

  .hesap-tel-form-ctrl {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
  }

  .hesap-tel-form-ctrl input::placeholder,
  .hesap-tel-form-ctrl input {
    font-size: 16px;
  }

  .hesap-tel-form-ctrl button {
    font-size: 20px;
  }

  .services-card-text h3 {
    font-size: 20px;
    color: #025add;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
  }

  .us-text h4 {
    font-size: 20px;
  }

  .us-text p {
    font-size: 16px;
  }

  .proje-card-text h3 {
    font-size: 20px;
  }

  .proje-card-text p {
    font-size: 16px;
  }

  .proje-all-link span {
    font-size: 17px;
  }

  .proje-all-link {
    width: fit-content;
    height: fit-content;
    display: inline-block;
    padding: 15px 20px;
    border-radius: 1.3vw;
    border: 1px solid #0081cc;
    cursor: pointer;
    position: relative;
    transition: transform 0.175s ease-in, -webkit-transform 0.175s ease-in;
    background-image: linear-gradient(-90deg, #006eae 0%, #029df7 100%);
    margin: 30px auto 0 auto;
    position: relative;
  }

  .hesap-box h3 {
    font-size: 20px;
  }

  .hesapbox {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    outline: none;
    border: 1px solid #006eae;
    border-radius: 50%;
    flex-shrink: 0;
    padding: 2px;
    cursor: pointer;
  }

  .hesap-check label {
    font-size: 16px;
  }

  .tel-form-ctrl input::placeholder,
  .tel-form-ctrl input {
    font-size: 16px;
  }

  .tel-form-p {
    font-size: 16px;
  }

  .cam-t1 {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
  }

  .cam-t2 {
    font-size: 14px;
    color: #025add;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
  }
  .web-info-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }

  .web-infi-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border-radius: 10px;
    padding: 20px 10px;
    gap: 20px;
    margin-bottom: 0%;
  }
  .web-infi-box li,
  .web-infi-box p {
    font-size: 16px;
  }
  .web-infi-box h3 {
    font-size: 20px;
  }
  .cms-link {
    width: 40%;
    height: fit-content;
    display: flex;
    align-items: center;
    transition: all 0.3s linear;
    padding: 0.5vw;
  }

  .web-do-text {
    font-size: 16px;
  }

  .web-do-list-title i {
    border-radius: 50%;
    background: #025add;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
  }

  .web-do-list-title h3 {
    font-size: 18px;
  }

  .web-do-list-text p {
    font-size: 16px;
  }

  .contack-text p {
    font-size: 16px;
  }

  .us-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}
.eror-banner-item h3 {
  font-size: 30px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

.eror-banner-item p {
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

.eror-back-link {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s linear;
  color: #fff;
  background: linear-gradient(45deg, #025add, #0c6de0);
  cursor: pointer;
}

.p-banner-item h3 {
  font-size: 30px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
  line-height: 120%;
}
.p-banner-item p {
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}
.p-banner-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.hesap-text h3 {
  font-size: 20px;
}
.hesap-text h4 {
  font-size: 18px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 500;
}


.about-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 20px;
  flex-shrink: 0;
}


.about-img {
  width: 100%;
  height: fit-content;
  border-radius: 20px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  display: flex;
}


.about-item h3, .about-bottom h3 {
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  margin-bottom: 10px;
}


.support-info-item {
  width: 100%;
  display: flex;
  gap: 40px;
  flex-direction: column;
}

.support-info-left {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.support-info-right {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sp-info-box span {
  font-size: 35px;
  color: #025add;
  font-weight: 800;
}

.sp-info-box span {
  font-size: 35px;
  color: #025add;
  font-weight: 800;
}

.sp-about-content h2 {
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}


.table-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.support-info-title {
  font-size: 30px;
  color: #025add;
  font-weight: 600;
}



.sp-service-box h3 {
  font-size: 18px;
  color: #025add;
  letter-spacing: 0.7px;
  font-weight: 600;
}


.sp-service-box p {
  font-size: 15px;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 500;
}


.work-plan-title {
  width: 100%;
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}


.catagory-service-title {
  width: 100%;
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.catagory-card-img img {
  width: 100%;
  height: 150px;
}

.catagory-card-text p {
  font-size: 14px;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.dev-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}


.dev-card {
  width: 48%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  margin-bottom: 4%;
}
.dev-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}

.dev-img {
  width: 100%;
  height: 360px;
  position: relative;
  overflow: hidden;
}



.dev-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 10px;
}


.dev-text-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.policy-item h3 {
  width: 100%;
  font-size: 18px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}



.policy-item li, .policy-item p {
  width: 100%;
  font-size: 15px;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.portfolio-title {
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.portfolio-item {
  width: 100%;
  height: fit-content;
  display: none;
  flex-wrap: wrap;
  gap: 4%;
}
.portfolio-card {
  width: 48%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 1vw;
  overflow: hidden;
  margin-bottom: 4%;
}

.portfolio-card-text {
  width: 100%;
  height: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}


.portfolio-card-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}



.sp-ceo-img {
  width: 100%;
  height: 260px;
  display: block;
}




.site-detail-fancy-link {
  width: 49%;
  height: 420px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  padding: 10px;
  gap: 10px;
  margin-bottom: 20px;
  align-items: stretch;
  position: relative;
}

.detail-top p {
  font-size: 15px;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
  list-style-type: disc;
}

.site-type-box h3, .site-app h3 {
  width: 100%;
  font-size: 18px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}











}

@media only screen and (max-width: 650px) {
  .mail-a {
    display: none !important;
  }

  .header-content {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 60px;
    position: relative;
  }

  .menu-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
    position: absolute;
    right: 0;
  }

  .banner-content {
    width: 100%;
    position: relative;
    background: #0a254d;
    background-size: 100% 100%;
    background-position: center center;
    height: fit-content;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background-attachment: fixed;
    padding: 100px 20px 50px 20px;
  }

  .services-about-text h4 {
    font-size: 15px;
  }

  .hesap-total {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 4px;
    border-radius: 10px;
    padding: 20px 10px;
    gap: 30px;
    position: static;
    top: 70px;
  }

  .hesap-tel-form-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    gap: 20px;
  }

  .tel-form-ctrl {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 1vw;
  }

  .tel-form-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .cam-t1 {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
  }

  .campany-info-content {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    flex-wrap: wrap;
  }

  .campany-info-item {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .price-slider-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(60, 64, 67, 0.3);
    padding: 20px 10px;
    border-radius: 10px;
    gap: 10px;
  }
  .site-btn-link {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
  }

  .contack-content {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 50px;
    flex-direction: column;
  }

  .contack-btn {
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
    background-color: #025add;
    flex-shrink: 0;
  }

  .team-title p {
    font-size: 16px;
  }

  .contack-adres {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-shrink: 0;
    flex-wrap: wrap;
  }

  .adres-box {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    padding: 10px;
  }

  .adres-box h3 {
    font-size: 20px;
  }

  .adres-box a {
    font-size: 16px;
  }

  .adres-box .tel-c-a {
    font-size: 16px;
  }

  .contack-form-message {
    width: 100%;
    height: 120px;
    min-height: 100px;
    display: flex;
  }

  .f-contack {
    width: fit-content;
    max-width: 45%;
  }

  .footer-info-a,
  .footer-menu-a {
    font-size: 12px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-bottom span {
    font-size: 12px;
  }

  .footer-bottom a {
    font-size: 12px;
  }
  nav.active {
    top: 60px;
}

.modal-form-content {
  max-width: 90%;
  width: fit-content;
  display: flex;
  height: fit-content;
  max-height: fit-content;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  flex-direction: column-reverse;
  padding: 30px 20px;
  gap: 30px;
}



.modal-form {
  max-width: 100%;
  width: fit-content;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  padding: 0;
  background: #fff;
  gap: 20px;
  flex-shrink: 0;
}


.modal-form-personal-box {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 30px;
}


.modal-form-personal-box img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.modal-form-personal-item {
  display: inline-flex;
  padding: 15px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 2px;
  background: rgba(2, 25, 87, 0.753);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  position: static;
  left: 0;
  bottom: 0;
}

.modal-form-personal-item h3 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 98%;
}
.modal-form-personal-item p {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
.modal-form-send {
  display: flex;
  height: 55px;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  border: 2px solid #025add;
  background: #fff;
  color: #3a3a3a;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  cursor: pointer;
  transition: all 0.5s linear;
  border-radius: 10px;
}
.hesap-box h3 {
  font-size: 16px;
}

.page-pagination-content a {
  font-size: 12px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s linear;
}



.page-pagination-content p {
  font-size: 12px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  font-style: normal;
}


.about-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}


.menu-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}


.portfolio-button-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 30px;
  overflow: hidden;
  overflow-x: auto;
  padding-bottom: 20px;
}

.portfolio-btn {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s linear;
  color: #025add;
  cursor: pointer;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.portfolio-button-item::-webkit-scrollbar {
  width: 7px;
  height: 4px;
  background-color: #0968df;
  border-radius: 4px;
}

.portfolio-button-item::-webkit-scrollbar-thumb {
  background-color: #0a254d;

  border-radius: 4px;
}



.proje-button-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 30px;
  overflow: hidden;
  overflow-x: auto;
  padding-bottom: 20px;
}

.proje-btn {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s linear;
  color: #025add;
  cursor: pointer;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.proje-button-item::-webkit-scrollbar {
  width: 7px;
  height: 4px;
  background-color: #0968df;
  border-radius: 4px;
}

.proje-button-item::-webkit-scrollbar-thumb {
  background-color: #0a254d;

  border-radius: 4px;
}





.site-detail-fancy-link {
  width: 49%;
  height: 400px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  padding: 10px;
  gap: 10px;
  margin-bottom: 20px;
  align-items: stretch;
  position: relative;
}

.site-detail-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}


.custom-table th, .custom-table td {
  font-size: 10px;
  /* color: #3a3a3a; */
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  padding: 0.7vw;
}








}
@media only screen and (max-width: 550px){



  nav {
    width: fit-content;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #0a254d;
    position: absolute;
    top: -500px;
    right: 0;
    transition: all 0.5s linear;
    z-index: 1;
    border: none;
}



.banner-btn-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.banner-l {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 1.5vw;
  transition: all 0.3s linear;
  color: #fff;
  background: linear-gradient(45deg, #025add, #0c6de0);
  cursor: pointer;
}


.services-about-text h3 {
  font-size: 25px;
}

.modal-form-personal-box img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.hesap-check label {
  font-size: 15px;
}

.hesap-tel-form-ctrl button {
  font-size: 18px;
}


.tel-form-p {
  font-size: 15px;
}

.hesap-price-note {
  font-size: 15px;
}

.web-infi-box li, .web-infi-box p {
  font-size: 15px;
}

.web-infi-box li, .web-infi-box p {
  font-size: 15px;
}

.web-do-list-text p {
  font-size: 15px;
}

.web-do-list-text.active {
  margin-top: 30px;
  height: fit-content;
}

.web-do-list-title h3 {
  font-size: 16px;
}
.contack-text p {
  font-size: 15px;
}
.team-title p {
  font-size: 15px;
}

.team-name {
  font-size: 16px;
text-align: center;
}
.faq-list-text.active {
  margin-top: 30px;
  height: fit-content;
}

.adres-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 10px;
}


.contack-form-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}



.contack-form-ctrl {
  width: 100%;
  height: 50px;
  display: flex;
}


.contack-send {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border-radius: 10px;
  transition: all 0.3s linear;
  background: #025add;
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 500;
}


.footer-top {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

.footer-info, .footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}


.f-menu {
  width: fit-content;
  align-items: center;
}

.footer-title {
  font-size: 25px;
  text-align: center;
}

.footer-info-a, .footer-menu-a {
  font-size: 15px;
}

.f-contack {
  width: fit-content;
  max-width: 100%;
}
.contack-box {
  display: none;
  flex-direction: row;
  gap: 10px;
  justify-content: space-evenly;
}


.wp-tg-box a {
  width: 25px;
  height: auto;
  transition: all 0.3s linear;
}


.wp-tg-box {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.about-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 1vw;
  margin-bottom: 3%;
  transition: all 0.3s linear;
  position: relative;
  z-index: 1;
  background: #fff;
}

.support-info-title {
  font-size: 30px;
  color: #025add;
  font-weight: 600;
  text-align: center;
}

.sp-service-title h2 {
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}

.sp-service-title p {
  font-size: 15px;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}
.sp-about-text h3 {
  font-size: 20px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}
.table-item h3 {
  font-size: 20px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}

.custom-table th, .custom-table td {
  font-size: 12px;
  /* color: #3a3a3a; */
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  padding: 0.7vw;
  line-height: 100%;
}
.custom-table td i {
  font-size: 12px;
}

.faq-title {
  font-size: 30px;
  text-align: center;
}


.work-plan-title {
  width: 100%;
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}



.catagory-service-title {
  text-align: center;
  width: 100%;
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.catagory-service-title {
  width: 100%;
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}


.catagory-card {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 1vw;
  padding: 20px 10px;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #9b9b9b;
}

.sp-about-content h2 {
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}
.support-info-box li, .support-info-box p {
  font-size: 15px;
  color: #3a3a3a;
  font-weight: 500;
}

.support-info-price-not p {
  font-size: 13px;
  color: #025add;
  font-weight: 600;
  text-align: center;
}

.sp-service-title h2 {
  font-size: 25px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}


.sp-service-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 15px;
  border-radius: 20px;
  gap: 15px;
  margin-bottom: 0;
}

.sp-service-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.faq-title {
  font-size: 25px;
  text-align: center;
}


.work-plan-title {
  width: 100%;
  font-size: 25px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}
.work-plan-box h3 {
  width: 100%;
  font-size: 16px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.work-plan-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 10px;
  gap: 20px;
  padding: 20px 10px;
  margin-bottom: 2%;
}

.work-plan-box li, .work-plan-box p {
  width: 100%;
  font-size: 14px;
  color: #3a3a3a;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.sp-service-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 20px 10px;
  border-radius: 10px;
  gap: 15px;
  margin-bottom: 0;
}
.sp-service-box h3 {
  font-size: 16px;
  color: #025add;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.sp-service-box p {
  font-size: 14px;
  color: #3a3a3a;
  letter-spacing: 0.7px;
  font-weight: 500;
}


.dev-title {
  width: 100%;
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 120%;
}


.dev-img {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.dev-type {
  font-size: 18px;
  color: #025add;
  font-weight: 600;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dev-not, .dev-day, .dev-price {
  font-size: 14px;
  color: #3a3a3a;
  font-weight: 600;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



.dev-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px 10px;
}

.dev-card {
  width: 48%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  margin-bottom: 4%;
}

.dev-text-content h3 {
  width: 100%;
  font-size: 25px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  line-height: 120%;
}

.portfolio-card {
  width: 49%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.portfolio-item {
  width: 100%;
  height: fit-content;
  display: none;
  flex-wrap: wrap;
  gap: 2%;
}

.portfolio-btn {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s linear;
  color: #025add;
  cursor: pointer;
  background: #f5f5f5;
}

.portfolio-card-text h3 {
  font-size: 16px;
  color: #025add;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



.portfolio-card-text p {
  font-size: 13px;
  color: #3a3a3a;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



.portfolio-card-text {
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.portfolio-card-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.site-detail-fancy-link {
  width: 49%;
  height: 350px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  padding: 10px;
  gap: 10px;
  margin-bottom: 20px;
  align-items: stretch;
  position: relative;
}

.custom-table th, .custom-table td {
  font-size: 9px;
  /* color: #3a3a3a; */
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  padding: 0.7vw;
  line-height: 100%;
}



}


@media only screen and (max-width: 450px){



  .services-card {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
}



.services-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 20px;
}

.us-right, .us-left {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}

.us-box {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  padding: 15px;
  border-radius: 10px;
  flex-direction: column;
}

.campany-info-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.campany-info-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}


.cms-link {
  width: 47%;
  height: fit-content;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
  padding: 10px;
}
.services-about-text h3 {
  font-size: 25px;
  text-align: center;
}

.proje-title {
  font-size: 25px;
  text-align: center;
}

.hesap-title {
  font-size: 25px;
  text-align: center;
}
.services-title {
  font-size: 25px;
  text-align: center;
}
.referans-title {
  font-size: 30px;
  text-align: center;
}

.web-info-title {
  font-size: 30px;
  text-align: center;
}

.cms-title {
  font-size: 30px;
  text-align: center;
}

.price-title {
  font-size: 30px;
  text-align: center;
}

.web-do-title {
  font-size: 30px;
  text-align: center;
}

.team-title h2 {
  font-size: 30px;
  text-align: center;
}

.faq-title {
  font-size: 30px;
  text-align: center;
  line-height: 120%;
}

.comment-title {
  font-size: 30px;
  text-align: center;
}

.contack-form-title {
  font-size: 30px;
  text-align: center;
}


.modal-form-personal-box {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 10px;
}


.modal-form-personal-item h3 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 98%;
}



.custom-table th, .custom-table td {
  font-size: 9px;
  /* color: #3a3a3a; */
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  padding: 0.7vw;
}


.catagory-card {
  width: 100%;
  height: 310px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 1vw;
  padding: 20px 10px;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #9b9b9b;
}

.catagory-card-img img {
  width: 100%;
  height: 170px;
}


.support-info-title {
  font-size: 25px;
  color: #025add;
  font-weight: 600;
  text-align: center;
}

.dev-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  margin-bottom: 30px;
}
.dev-img {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.dev-text-content h3 {
  width: 100%;
  font-size: 25px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
  line-height: 120%;
}




.dev-title {
  width: 100%;
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
  line-height: 120%;
}

.portfolio-title {
  font-size: 30px;
  color: #025add;
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-align: center;
}



.portfolio-card {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(60, 64, 67, 0.3);
  background: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: contain;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.portfolio-card-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}



.portfolio-card-text {
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 10px;
}



.portfolio-card-text h3 {
  font-size: 18px;
  color: #025add;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.portfolio-card-text p {
  font-size: 14px;
  color: #3a3a3a;
  font-weight: 500;
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.faq-list-title h3 {
  font-size: 15px;
}

.site-detail-fancy-link {
  width: 100%;
  height: 450px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  padding: 10px;
  gap: 10px;
  margin-bottom: 20px;
  align-items: stretch;
  position: relative;
}

.site-app p, .site-type-box li {
  font-size: 15px;
  color: #3a3a3a;
  font-weight: 400;
  line-height: 120%;
  list-style-type: disc;
}
.custom-table th, .custom-table td {
  font-size: 7px;
  /* color: #3a3a3a; */
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  padding: 0.7vw;
  line-height: 100%;
}

}