:root {
  --color-primary: #27ccc0;
  --color-primary-lite: #98ebe6;
  --color-primary-extra-dark: #004c3a;
  --color-primary-dark: #018e6d;
  --color-secondary: #4a5157;
  --color-secondary-lite: #a4aab1;
}
@font-face {
  font-family: "Gilroy-Heavy";
  src: url("../fonts/Gilroy-Heavy.ttf");
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.ttf");
}
@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("../fonts/Gilroy-Bold.ttf");
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-ExtraBold.ttf");
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy-Medium.ttf");
}
@font-face {
  font-family: "Gilroy-Light";
  src: url("../fonts/Gilroy-Light.ttf");
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("../fonts/Satoshi-Regular.woff2");
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("../fonts/Satoshi-Black.woff2");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  position: relative;
  font-family: "Gilroy-Regular", sans-serif;
  color: #000;
  line-height: 1.9;
}
ul {
  list-style: none;
}

:root {
  --designTop: 500;
  --designLeft: 140;
  --technologyTop: 860;
  --technologyLeft: -430;
}

/*==========================================
Header
===========================================*/
.desktop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 30px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}
.desktop-header .desktop-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img {
  display: flex;
  align-items: center;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  transition: all 0.3s ease-in-out;
}
.nav li {
  position: relative;
  height: 100%;
  padding: 0 25px;
  line-height: 70px;
}
.nav li:last-of-type {
  padding-right: 0;
}
.nav li a {
  font-size: 16px;
  color: #000;
  font-family: "Gilroy-Regular", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}
.nav li:hover a {
  color: var(--color-primary);
}
.drop-sec,
.mobile-drop-sec {
  position: initial !important;
  padding-right: 20px;
  cursor: pointer;
}
.drop-sec a,
.mobile-drop-sec a {
  position: relative;
}
.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 5px 0 16px;
  background: #fff;
  box-shadow: 0 30px 28px rgb(0 0 0 / 5%);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.menu-row {
  display: flex;
  flex-wrap: wrap;
}
.menu-col {
  width: 33.33%;
  padding: 0 8px;
}
.drop-menu ul {
  max-width: 1088px;
  margin: auto;
}
.drop-menu ul li {
  margin-right: 0;
}
.drop-sec .dropdown-arrow::before,
.drop-sec .dropdown-arrow::after,
.mobile-drop-sec .dropdown-arrow::before,
.mobile-drop-sec .dropdown-arrow::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.drop-sec:hover .dropdown-arrow::before,
.drop-sec:hover .dropdown-arrow::after,
.mobile-menu-trigger.active .dropdown-arrow::before,
.mobile-menu-trigger.active .dropdown-arrow::after {
  width: 2px;
  height: 7px;
  border-radius: 0;
  top: 50%;
  right: -10px;
}
.drop-sec:hover .dropdown-arrow::before,
.mobile-menu-trigger.active .dropdown-arrow::before {
  transform: rotate(-45deg) translateY(-50%);
}
.drop-sec:hover .dropdown-arrow::after,
.mobile-menu-trigger.active .dropdown-arrow::after {
  transform: rotate(45deg) translateY(-50%);
}
.drop-sec:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: 100%;
}
.drop-sec:hover::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 37px;
  bottom: -5px;
  left: 0;
  z-index: 10;
}
.fixed-header .drop-sec:hover::after {
  height: 30px;
}
.fixed-header .nav {
  height: 60px;
}
.fixed-header .nav li {
  line-height: 60px;
}

.desktop-header.fixed-header {
  height: 60px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.drop-cont {
  position: relative;
  padding: 20px;
  height: 100%;
  border-radius: 7px;
  text-transform: initial;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.drop-cont::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 30px);
  background-size: 100%;
  opacity: 0.1;
  transition: all 0.7s ease-in-out;
}

.drop-cont:hover:after {
  background-position: 100% 180% !important;
  top: -100%;
  background-size: 200% !important;
}
.drop-cont > div {
  position: relative;
  z-index: 1;
}
.drop-cont h3 {
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 38px;
  color: #000;
  line-height: 1;
  margin-bottom: 10px;
}

.drop-cont .content-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.drop-cont p {
  font-family: "Gilroy-Light", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-bottom: 0;
}
.content-flex p {
  width: 100%;
}

.content-flex img {
  margin-bottom: 5px;
  width: 30px;
  transform: translateX(-10px);
  transition: all 0.3s ease-in-out;
}

.drop-cont:hover .content-flex img {
  transform: translateX(0);
}
.drop-cont.bg1 {
  background: #d6fff5;
}
.drop-cont.bg2 {
  background: #d6fff5;
}
.drop-cont.bg3 {
  background: #d6fff5;
}
.drop-cont.bg1::after {
  background: transparent
    url(https://ik.imagekit.io/2eribsa8w/wave1_i45hfFaDzg.svg) repeat-x 0 80%;
  background-size: 120%;
}
.drop-cont.bg2::after {
  background: transparent
    url(https://ik.imagekit.io/2eribsa8w/wave2_nfEiloOkqq.svg) repeat-x 0 80%;
  background-size: 120%;
}
.drop-cont.bg3::after {
  background: transparent
    url(https://ik.imagekit.io/2eribsa8w/wave3_zvDm6IWxql.svg) repeat-x 0 80%;
  background-size: 120%;
}
.header-design .design-link,
.header-about .about-link,
.header-career .about-link,
.header-technology .technology-link,
.header-business .business-link,
.header-contact .contact-link {
  color: var(--color-primary);
}
.menu-icon {
  display: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  padding: 20px;
  background: #fff;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.mobile-menu.in {
  overflow-y: auto;
  right: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu h4 {
  display: block;
  font-size: 18px;
  color: #f00;
  font-family: "Gilroy-Bold", sans-serif;
  text-transform: uppercase;
  margin: 5px 0;
}
.mobile-menu ul {
  padding-top: 20px;
}
.mobile-menu ul li {
  margin-bottom: 15px;
  padding: 0;
}
.mobile-menu ul li a {
  display: block;
  font-size: 24px;
  color: #000;
  font-family: "Gilroy-SemiBold", sans-serif;
  text-transform: uppercase;
}
.mobile-menu-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.mobile-menu-close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.mobile-menu-close span::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  transform: translate(15px, 0) rotate(45deg);
}
.mobile-menu-close span::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  transform: translate(15px, -30px) rotate(-45deg);
}
.mobile-drop-sec .mobile-menu-trigger {
  display: inline-block;
}
.mobile-menu-box {
  display: none;
}
.mobile-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.mobile-overlay.in {
  opacity: 0.9;
  visibility: visible;
}

/*===================================
Home Page
====================================*/

/* SECTION ONE */

.section-one {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
}
.section-one .section-one-anim-trigger {
  position: absolute;
  top: 90%;
}
.section-one-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.animation-img,
.banner-content-box {
  position: relative;
  width: 50%;
  padding: 0 15px;
}
#iwayy-animation {
  position: relative;
  width: 90%;
}

.section-one__content h3 {
  font-size: 72px;
  font-family: "Gilroy-Bold", sans-serif;
  color: var(--color-primary-extra-dark);
  line-height: 1.1;
  margin: 0;
}

.section-one__content ul {
  display: flex;
  flex-wrap: wrap;
  margin: 25px 0 0;
}
.section-one__container ul li {
  display: inline-block;
  position: relative;
  margin-right: 16px;
  margin-top: 10px;
  font-size: 24px;
  font-family: "Gilroy-Medium", sans-serif;
  color: var(--color-primary-extra-dark);
  vertical-align: middle;
}

/* SECTION THREE */
.section-three {
  position: relative;
}
.arrow-animation {
  max-width: 786px;
  margin: 0 auto;
  position: relative;
  margin: 10px auto 50px;
  height: 291px;
}
#circle-arrow-anim {
  max-width: 100%;
  margin: 0 auto;
}
.section-three .section-three-container,
.section-four .section-four-container,
.section-five .exp-container {
  padding: 0 94px;
  /* padding: 0 135px; */
}

.section-three__title .about-h4 {
  font-size: 36px;
  font-weight: 900;
}
.section-three .section-three__title .title_content {
  font-family: "Gilroy-Medium", sans-serif;
  font-size: 36px;
  line-height: 1.4;
  color: var(--color-primary-extra-dark);
}

/* SECTION FOUR */

.section-four {
  position: relative;
  padding: 50px 0;
  height: 100%;
  margin: auto;
}
.section-four .section-four-container {
  position: relative;
  height: 100%;
}
.section-four .title-section-1 {
  height: 120vh;
}
.section-four .title-section {
  height: 110vh;
}
.section-four .title-section .title,
.section-four .title-section h1 {
  position: relative;
  font-size: 72px;
  font-family: "Gilroy-Bold", sans-serif;
  color: var(--color-primary-extra-dark);
  padding: 20px 0;
  padding-left: 120px;
  margin-bottom: 0;
  line-height: 1.3;
}
.section-four .title-section .title:nth-last-of-type(2) {
  top: 120px;
}
.section-four .title-section .title:nth-last-of-type(1) {
  top: 240px;
}
.section-four .title-section ul li {
  opacity: 0;
  margin-left: -50px;
}
.section-four .title-section .title {
  position: absolute;
}
.section-four .title-section .hide-title {
  opacity: 0;
  visibility: hidden;
}
.section-four .title-section .title-content {
  position: sticky;
  top: 100px;
}

.section-four .title-section .title .dot,
.section-four .title-section h1 .dot {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section-four .title .dot::before,
.section-four h1 .dot::before {
  content: "";
  position: absolute;
  left: -15px;
  top: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border-radius: 50%;
  background: url("../images/round.svg") no-repeat center center / contain;
  animation: rotating 5s linear infinite;
}
.section-four .title-section .title .dot .dot-class,
.section-four .title-section h1 .dot .dot-class {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  vertical-align: middle;
}
.section-four .title-section .title .dot .dot-1,
.section-four .title-section h1 .dot .dot-1 {
  background: #22c8a2;
}
.section-four .title-section h1 .dot .dot-2,
.section-four .title-section .title .dot .dot-2 {
  background: #018e6e;
}
.section-four .title-section h1 .dot .dot-3,
.section-four .title-section .title .dot .dot-3 {
  background: #004c3a;
}
.section-four .title-section .services {
  position: sticky;
  top: 100px;
  padding-left: 120px;
}
.section-four .title-section .services > li {
  margin-bottom: 5px;
  font-family: "Gilroy-Bold", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-primary-extra-dark);
}
.section-four .img-box {
  position: absolute;
  top: 0;
  right: 15px;
  height: 100%;
  width: calc(40% - 15px);
}
.section-four .img-box .img-box-up {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: calc(50% - 440px / 2);
  height: 350px;
  width: 550px;
}
.section-four .img-box .svg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.img-box-up-mob {
  display: none;
}

/* SECTION FIVE */
.section-five {
  position: relative;
  padding: 100px 0 180px;
}
.exp-sec {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
}
.exp-box {
  top: 110px;
}
.section-five h4 {
  font-size: 56px;
  color: #000;
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: "Gilroy-Bold", sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.section-five h5 {
  font-size: 32px;
  color: #000;
  line-height: 1.3;
  margin-bottom: 0;
  font-family: "Gilroy-Medium", sans-serif;
  text-align: center;
}
.section-five .about-h6 {
  text-align: center;
}
.map-img {
  text-align: center;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
.map-img svg {
  height: 100%;
}
.exp-img {
  position: relative;
  max-width: 786px;
  height: 367px;
  margin: 100px auto 100px;
}
#map-animation {
  width: 100%;
  height: 100%;
}
.exp-dot {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.exp-img .exp-dot.exp-dot-1 {
  top: 25px;
  left: 244px;
  background: var(--color-primary-extra-dark);
}
.exp-img .exp-dot.exp-dot-2 {
  top: 25px;
  left: 50%;
  /* background: var(--color-primary-dark); */
  transform: translate(-50%, 0);
}
.exp-img .exp-dot.exp-dot-3 {
  top: 25px;
  right: 250px;
  background: var(--color-primary-extra-dark);
}
.section-five ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-five ul li {
  font-size: 42px;
  font-family: "Gilroy-SemiBold", sans-serif;
  color: var(--color-primary-extra-dark);
  line-height: 1;
  padding-bottom: 3px;
  margin-bottom: 40px;
  text-transform: uppercase;
  cursor: default;
  transition: all 0s ease-in-out;
}

/* SECTION SEVEN */
.section-seven {
  position: relative;
  padding: 100px 0;
  background: -webkit-linear-gradient(top, #12a57e 0, #bdefe3 100%);
}
.section-seven::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: -webkit-linear-gradient(top, #084d3b 0, #76ddc5 100%);
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
.section-seven .quote-container {
  position: relative;
  max-width: 90rem;
  margin: auto;
  text-align: center;
  z-index: 3;
}
.section-seven .quote-container h3 {
  font-family: "Gilroy-SemiBold", sans-serif;
  font-size: 5.4rem;
  line-height: 1.2;
  margin-bottom: 50px;
  color: #fff;
}
.section-seven .quote-container .quote-btn {
  display: inline-block;
  position: relative;
  font-size: 20px;
  width: 270px;
  height: 60px;
  padding: 1px 6px;
  font-family: "Gilroy-SemiBold", sans-serif;
  vertical-align: middle;
  text-align: center;
  border-radius: 8px;
  border: 0;
  outline: none;
  overflow: hidden;
  cursor: pointer;
}
.section-seven .quote-container .quote-btn:hover em {
  top: 50%;
}
.section-seven .quote-container .quote-btn:hover span {
  top: -120%;
}
.section-seven .quote-container .quote-btn::before {
  content: "";
  background: var(--color-primary-extra-dark);
  /* background: linear-gradient(to right, #cf72e8 0, #5857f9 100%); */
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.section-seven .quote-container .quote-btn::after {
  content: "";
  display: block;
  position: absolute;
  background: transparent
    url(https://ik.imagekit.io/2eribsa8w/button-white-layer_LCV335qaeq.png)
    repeat-x 0 80%;
  left: 0;
  top: 0;
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  border-radius: 7px;
  transition: all 0.5s ease-in-out;
}
.section-seven .quote-container .quote-btn:hover:after {
  background-position: 100% 180%;
}

.section-seven .quote-container .quote-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  z-index: 9;
  background: linear-gradient(to right, #084d3b 20%, #76ddc5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translate(0, -50%);
  transition: all 0.5s ease-in-out;
}
.section-seven .quote-container .quote-btn em {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 130%;
  z-index: 9;
  color: #fff;
  font-style: normal;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: all 0.5s ease-in-out;
}
.generate {
  transition: all 0.5s ease-in-out;
}
.generate::before {
  height: 100%;
}
.generate .quote-container h3 {
  color: #fff;
}

/*======================================
Footer
=======================================*/

.width-25 {
  position: relative;
  width: 25%;
  padding: 0 15px;
}
.width-30 {
  position: relative;
  width: 30%;
  padding: 0 15px;
}
.width-20 {
  position: relative;
  width: 20%;
  padding: 0 15px;
}

footer {
  position: relative;
  padding: 50px 0;
  z-index: 1;
}
footer h2 {
  font-size: 17px;
  line-height: 1;
  color: var(--color-primary-extra-dark);
  font-family: "Gilroy-Bold", sans-serif;
  margin-bottom: 1rem;
}
footer h4 {
  font-size: 18px;
  line-height: 1;
  color: var(--color-primary-extra-dark);
  font-family: "Gilroy-Bold", sans-serif;
  margin-bottom: 10px;
}
.similar {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-primary-extra-dark);
  font-family: "Gilroy-Medium", sans-serif;
  margin: 20px 0 0;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li:last-of-type {
  margin: 0;
}
footer ul li a {
  font-size: 16px;
  line-height: 1;
  color: var(--color-primary);
  text-decoration: none;
}
footer ul li a:hover {
  color: var(--color-primary-dark);
}
ul.social-ul {
  display: flex;
}
ul.social-ul li {
  margin-right: 15px;
  margin-bottom: 0;
}
ul.social-ul li img {
  width: 25px;
  height: 25px;
}
ul.social-ul li:last-of-type {
  margin-right: 0;
}
.footer-column-2 span {
  display: none;
}
.lap-footer {
  padding-bottom: 80px;
}

/*==========================================
Common
===========================================*/
.about-container,
.design-container,
.technology-container,
.contact-page-container,
.parent-section {
  position: relative;
  z-index: 9;
}
.section-one__container,
.about-content-container,
.about-more-container,
.design-section-1-container,
.our-service-container,
.design-ideal-box,
.tools-section-container,
.contact-container,
.section-one__container,
.section-three-container,
.section-four-container,
.desktop-container,
.exp-container,
.career-container {
  max-width: 1088px;
  /* max-width: 1250px; */
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.breadcrumbs {
  padding-left: 0;
}
.breadcrumb {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Satoshi-Regular", sans-serif;
  font-weight: 500;
  padding: 0;
  margin-bottom: 24px;
  background: transparent;
}
.breadcrumb:hover a {
  color: var(--color-primary-extra-dark);
}
.breadcrumb:not(:last-child) {
  padding-right: 14px;
  margin-right: 14px;
}
.breadcrumb:not(:last-child) a {
  color: var(--color-secondary-lite);
}
.breadcrumb:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 40%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-secondary-lite);
}
.breadcrumb:last-child {
  cursor: none;
}
.breadcrumb:last-child span {
  color: var(--color-primary-extra-dark);
}
.breadcrumb:last-child:hover span {
  color: var(--color-primary-extra-dark);
}
.width-100 {
  width: 100%;
  padding: 0 15px;
}
.text-field {
  position: relative;
  margin-bottom: 1.3rem;
  height: auto;
}

/*==========================================
About Page
===========================================*/
.about-banner-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
  text-align: center;
  overflow-x: hidden;
}
/* .about-banner-section .about-banner-1,
.about-banner-section .about-banner-2 {
  position: absolute;
} */
.about-banner-section__content {
  position: relative;
  top: -70px;
}
.about-banner-section__content h4,
.about-banner-section__content h6 {
  position: relative;
}
.about-h4 {
  font-size: 42px;
  color: var(--color-primary-extra-dark);
  line-height: 1.4;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
}
.about-h6,
.design-h6 {
  font-size: 22px;
  color: var(--color-primary);
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  margin-bottom: 35px;
  text-transform: capitalize;
}
.about-banner-1 {
  max-width: 35vw;
}
.about-banner-2 {
  max-width: 30vw;
}
.about-banner-1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.about-banner-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.padding-section {
  position: relative;
  padding: 150px 0;
}
.about-content-container p {
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-primary-extra-dark);
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 700;
}
.about-content-container p span {
  display: block;
  font-family: "Satoshi-Regular", sans-serif;
  font-size: 25px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.about-content-container p span b {
  display: block;
  font-size: 62px;
  line-height: 1;
  color: var(--color-primary-extra-dark);
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  margin-top: 30px;
}
.about-content-container p span:last-of-type {
  margin-bottom: 0;
}
.about-content-container #more {
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin-bottom: 0;
}
#read-more {
  display: inline-block;
  height: 42px;
  font-size: 18px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  text-transform: capitalize;
  margin-top: 20px;
  color: var(--color-primary-dark);
  border: 0;
  line-height: 42px;
  background: transparent;
  border-bottom: 1px dashed var(--color-primary-dark);
  cursor: pointer;
}
.vision-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1088px;
  /* max-width: 1250px; */
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.iwayy-vision--left {
  width: 320px;
  position: sticky;
  top: 0;
  padding-top: 100px;
}
.iwayy-vision--left ul {
  opacity: 1;
}
.iwayy-vision--left ul li {
  margin-bottom: 25px;
}
.iwayy-vision--left ul li a {
  font-size: 48px;
  color: var(--color-primary-lite);
  line-height: 1;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  text-transform: capitalize;
}
.iwayy-vision--left ul li a.link-vision-1.active {
  color: var(--color-primary);
}
.iwayy-vision--left ul li a.link-vision-2.active {
  color: var(--color-primary-dark);
}
.iwayy-vision--left ul li a.link-vision-3.active {
  color: var(--color-primary-extra-dark);
}
.iwayy-vision--right {
  max-width: 630px;
  flex: 1;
}
.about-vision-content {
  padding-top: 100px;
  padding-bottom: 200px;
  min-height: 100vh;
}
.about-vision-content#about-vision-content-3 {
  min-height: 50vh;
}
.about-vision-content h3 {
  display: none;
}
.about-vision-content h4 {
  color: var(--color-primary-extra-dark);
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 13px;
}
#about-vision-content-3 {
  padding-bottom: 100px;
}
.about-more-container .about-h6 {
  text-align: center;
}
.about-more-section,
.design-ideal-container,
.tools-section {
  position: relative;
  padding: 50px 0;
}
.about-flex {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.about-flex a {
  width: 50%;
  text-decoration: none;
}
.about-flex h3#more-about-title {
  font-family: "Satoshi-Medium", sans-serif;
}
.about-flex .content-flex p#more-about-content {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 700;
}
.about-container .quote-container h3 {
  font-family: "Satoshi-Medium", sans-serif;
}

/*==========================================
Design Page
===========================================*/
.design-section-1 {
  position: relative;
  height: 200vh;
}
.design-service-box {
  position: sticky;
  top: 0;
  padding: 100px 0;
}
.design-section-1-container {
  position: relative;
  height: 100%;
}
.design-content-box {
  position: absolute;
  max-width: 530px;
  right: 0;
  margin-top: 30px;
}
.design-service-h3 {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  font-size: 62px;
  line-height: 68px;
  color: var(--color-primary-extra-dark);
  margin-bottom: 0;
}
.design-service-h4 {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 52px;
  color: var(--color-primary-extra-dark);
  margin-bottom: 0;
  opacity: 0;
}
.design-image-circle {
  position: absolute;
}
.design-image-circle,
.design-circle-dotted {
  width: 480px;
  height: 480px;
}
.design-image-circle.left {
  left: 0;
  bottom: 0;
}
.design-image-circle img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}
.design-image-circle .design-brain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.design-image-circle .innovation {
  max-width: 60%;
  max-height: 60%;
}
.design-circle-dotted {
  position: absolute;
  top: 0;
  left: 0;
}
.circle-dot.dot-color {
  background: var(--color-primary-extra-dark);
}
.design-circle-dotted .round-1 {
  top: 40px;
}
.design-circle-dotted .round-2 {
  bottom: 40px;
}
.circle-dot {
  display: block;
  position: absolute;
  width: 49px;
  height: 49px;
  border-radius: 50%;
}
.round-1 {
  top: 90px;
  left: 50px;
}
.round-2 {
  bottom: 90px;
  right: 50px;
}
.design-trigger {
  display: block;
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #000;
  bottom: -100px;
  left: 0;
}
.design-trigger-done {
  display: block;
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #000;
  top: 500px;
  left: 0;
}
.design-trigger,
.design-trigger-done {
  opacity: 0;
}
.our-service-section {
  position: relative;
  padding: 0 0 50px 0;
}
.our-service-box {
  position: relative;
  z-index: 1;
}
.our-service-box .about-h4 {
  margin-bottom: 100px;
}
.our-offer-dot {
  display: inline-block;
  position: absolute;
  width: 400px;
  height: 400px;
  left: 150px;
  background: var(--color-primary-dark);
  border-radius: 50%;
  opacity: 0;
}
.join-dot {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #000;
  margin: -110px auto 0;
}
.our-offer-list,
.contact-row,
.footer-row {
  display: flex;
  flex-wrap: wrap;
}
.our-offer-list ul {
  width: 33.333333%;
}
.our-offer-list ul li {
  margin-bottom: 30px;
  padding-right: 10px;
}
.our-offer-list ul li:last-of-type {
  margin-bottom: 0;
}
.our-offer-list ul li p {
  width: fit-content;
  font-size: 28px;
  color: var(--color-primary-extra-dark);
  line-height: 1;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  text-transform: capitalize;
  background: transparent
    url(https://ik.imagekit.io/2eribsa8w/dots_lX3YUgQRrH.svg) repeat-x bottom;
  padding-bottom: 3px;
  transition: all 1s ease-in-out;
}
.our-offer-list ul li p:hover {
  background-position: 80% 100%;
}
.design-ideal-box .about-h4,
.design-ideal-box .about-h6,
.tools-section-container .about-h6 {
  text-align: center;
}
.design-row,
.tools-row,
.contact-row,
.contact-detail {
  display: flex;
  flex-wrap: wrap;
}
.contact-detail .contact-section:nth-last-of-type(1) {
  margin-top: 20px;
}
.contact-detail .contact-section:nth-last-of-type(2) {
  margin-top: 20px;
}
.design-content-icon {
  position: relative;
  width: 50%;
  padding: 0 15px;
}
.design-content-icon:nth-last-of-type(5) .design-image {
  width: 180px;
  height: 180px;
  margin-bottom: 0;
}
.design-content-section {
  margin-bottom: 60px;
  padding-right: 10%;
}
.design-content-section .design-image {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
}
.design-h4 {
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--color-primary);
}
.design-content-section .design-h4 {
  margin-bottom: 20px;
  font-size: 24px;
}
.design-content-para {
  font-family: "Satoshi-Regular", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-primary-dark);
}
.tools-row {
  gap: 40px;
  justify-content: center;
}
.tools-box {
  padding: 15px 25px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 20px;
}
.tools-image {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.tools-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.our-offer-list-technology {
  margin-bottom: 50px;
}

/*==========================================
Technology Page
===========================================*/

.technology-content-box {
  position: absolute;
  max-width: 630px;
  left: 0;
  padding: 0 20px;
}
.design-image-circle.right {
  right: 0;
  top: 50%;
  transform: translateY(-35%);
}
.our-service-container .tech-service {
  margin-top: 100px;
}
.our-offer-list.grid ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.our-offer-list.grid ul li {
  width: 33.333333%;
}

/*==========================================
Career Page
===========================================*/
.career-box {
  display: flex;
  align-items: center;
  height: 100vh;
}
.career-padding {
  position: relative;
  padding: 100px 0;
}
.career-content .career-h2 {
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 62px;
  font-weight: 900;
  padding: 0;
  line-height: 67px;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.career-content .career-h3 {
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
}
.career-box .career-image {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30%;
  transform: translate(-50%, -50%);
}

/*==========================================
Contact Page
===========================================*/

.contact-padding {
  height: 95vh;
  padding: 0;
}
.contact-row {
  justify-content: space-between;
}
.contact-left,
.contact-right {
  position: relative;
  width: 50%;
  /* padding: 0 15px; */
}
.contact-form {
  position: relative;
  padding: 0;
  margin-top: 30px;
  flex: 0 0 100%;
  width: 100%;
  height: 550px;
}
.contact-form .about-h4 {
  font-size: 72px;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--color-primary-extra-dark);
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  text-transform: capitalize;
  letter-spacing: 0;
  transition: all 0.3s linear;
  opacity: 1;
}
.contact-form .contact-para {
  font-family: "Satoshi-Medium";
  font-weight: 900;
  font-size: 24px;
  color: var(--color-primary-extra-dark);
  transition: all 0.3s linear;
  text-align: left;
  margin: 0;
  width: auto;
}
.contact-no.contact-list,
.contact-no.contact-list.small-screen {
  display: none;
}
.contact-no {
  position: absolute;
  bottom: 65px;
  float: right;
  right: 16px;
}
.contact-no ul {
  display: inline-block;
  font-size: 18px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 35px;
}
.contact-no ul li {
  display: block;
  width: auto;
  margin-top: 8px;
  text-align: right;
}
.contact-no ul li strong {
  margin-right: 2px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  color: var(--color-secondary-lite);
}
.contact-no ul li a {
  color: var(--color-primary-extra-dark);
}
.contact-no ul .mail a {
  color: var(--color-primary-dark);
  text-decoration: underline;
}
.contact-no ul .mail a:hover {
  text-decoration: none;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 100%;
  height: 130px;
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
  transition: all 0.3s linear;
}
.contact-details .row-fields {
  height: 465px;
}
.contact-label {
  display: inline-block;
  position: relative;
  color: var(--color-primary-extra-dark);
  background-color: transparent;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 0;
  /* vertical-align: top; */
  transition: all 0.3s linear;
}
.contact-form .contact-label,
.contact-form .contact-input {
  font-size: 30px;
}
.contact-label,
.contact-input {
  padding: 5px 0;
  display: inline-block;
}
.text-box {
  display: inline-block;
  position: relative;
  width: 305px;
  margin-left: 4px;
}
.text-box.text-area {
  width: 95%;
  height: 75px;
  max-width: 95%;
  max-height: 75px;
}
.contact-input {
  position: relative;
  width: 100%;
  padding: 0;
  outline: 0;
  border: 0;
  color: var(--color-primary-dark);
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  border-bottom: 1px solid var(--color-secondary-lite);
  transition: all 0.3s linear;
}
.contact-input:focus {
  border-bottom: 1px solid var(--color-secondary);
}
.contact-input.filled {
  border-bottom: 1px solid var(--color-primary-extra-dark);
}
.contact-input.style {
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  background-color: transparent;
}
.contact-input.style::before {
  content: "asdad";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #f00;
}
.contact-input.style:focus::-webkit-input-placeholder {
  text-indent: -300px;
}
.contact-error {
  position: absolute;
  color: #f00;
  font-size: 13px;
  right: 0;
  bottom: -25px;
  z-index: 1;
}
.contact-input.contact-error {
  border-bottom: 1px solid #f00;
}
.mobile-form-control {
  display: flex;
  align-items: center;
}
label.contact-error {
  display: none;
  position: absolute;
  right: 0;
  margin: 0;
  color: #f00;
  font-size: 12px;
  top: 10px;
}
.filled .contact-label,
.filled .contact-input {
  font-size: 24px;
}
.filled .about-h4 {
  font-size: 0;
  margin-bottom: 0;
}
.filled .contact-para {
  font-size: 0;
}
.filled .contact-details {
  height: 520px;
  margin-top: 20px;
}
.filled .contact-label,
.filled .contact-input {
  font-size: 24px;
}
.filled .success.contact-details {
  height: 0;
}
.filled .back-arrow-btn {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}
.contact-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.15);
  transition: ease-in 0.3s;
  transform-origin: 0 50%;
}
.contact-input {
  resize: none;
}
.contact-form .checkbox-container {
  opacity: 1;
  padding: 0 10px 10px;
  transition: all 0.2s linear;
  height: 100px;
}
.checkbox-container {
  position: relative;
}
.checkbox-container .contact-error {
  right: 20px;
}
.contact-checkbox {
  display: inline-block;
  border: 1px solid var(--color-secondary-lite);
  margin: 5px 5px 0;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  height: 40px;
  line-height: 36px;
}
.contact-checkbox input {
  display: none;
}
.contact-checkbox label {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2px 30px;
  font-family: "Satoshi-Medium", sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.contact-checkbox input:checked + label {
  background-color: var(--color-primary-extra-dark);

  color: #fff;
}
.visible .contact-checkbox {
  pointer-events: auto;
}
.complete-message {
  display: none;
  font-family: "Satoshi-Medium";
  font-weight: 900;
  font-size: 20px;
  color: var(--color-primary-dark);
  text-align: left;
}
.complete-message.show {
  top: 32%;
  display: block;
}
.message {
  text-align: center;
}
div#contact-loader {
  height: 220px;
}
div#contact-loader svg {
  width: 100%;
  height: 100%;
}
.contact-res-container p {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-secondary-lite);
  margin: 32px 0;
}
.submit-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.submit-button.success {
  display: none;
}

.button-contact-submit {
  width: 145px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border-radius: 4px;
  position: relative;
  border: 0;
  outline: none;
  overflow: hidden;
  cursor: pointer;
}
.button-contact-submit::before {
  content: "";
  background: var(--color-primary-extra-dark);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.button-contact-submit::after {
  content: "";
  background: transparent
    url(https://ik.imagekit.io/2eribsa8w/button-white-layer_LCV335qaeq.png)
    repeat-x 0 80%;
  display: block;
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.button-contact-submit span {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  z-index: 9;
  color: #000;
  min-height: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.button-contact-submit em {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 130%;
  z-index: 9;
  color: #fff;
  font-style: normal;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.button-contact-submit:hover span {
  top: -120%;
}
.button-contact-submit:hover em {
  top: 50%;
}
.button-contact-submit:hover::after {
  background-position: 100% 180%;
}
.post .button-contact-submit em,
.post .button-contact-submit span {
  font-family: "Satoshi-Medium";
  font-weight: 900;
}
.back-arrow-btn {
  position: absolute;
  left: -10px;
  top: -45px;
  width: 50px;
  height: fit-content;
  padding: 0 10px;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.back-arrow-btn img {
  transform: rotate(180deg);
  max-width: 100%;
  height: auto;
}
.display-none {
  display: none;
}
.country-code {
  position: absolute;
  width: 70px;
  left: 0;
  top: 0;
  z-index: 1;
  color: var(--color-primary-extra-dark);
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}
.mobile-text-box {
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-text-box input {
  padding-left: 80px;
}
.contact-animation {
  position: absolute;
  margin-top: 30px;
  top: 30%;
  transform: translate(0, -50%);
}
.contact-animation img {
  width: 100%;
}
.contact-places {
  margin-bottom: 100px;
}
.space-bt {
  justify-content: space-between;
}
.contact-places .contact-section {
  position: relative;
  width: 50%;
}
.contact-places .contact-section address {
  padding-right: 20px;
}
address {
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-style: normal;
}
address .nation {
  display: inline-block;
  vertical-align: middle;
  margin-right: 50px;
}
address h2 {
  font-size: 60px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
  margin-bottom: 0;
  text-transform: capitalize;
}
address h6 {
  font-size: 24px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
address p {
  font-size: 18px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}
address strong {
  font-size: 18px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 900;
}
address.border-none {
  border-right: none;
  margin-left: 10px;
}
address img {
  display: inline-block;
  position: absolute;
  right: 100px;
  height: 120px;
  margin-bottom: 40px;
  vertical-align: middle;
}
.contact-section:nth-last-of-type(4) img {
  width: 140px;
}
.contact-section:nth-last-of-type(2) img {
  width: 190px;
}

/* RESPONSIVE CODES */
@media all and (max-width: 1920px) {
  .section-four .img-box {
    right: -15px;
  }
}
@media all and (max-width: 1600px) {
  :root {
    --technologyTop: 770;
  }
  /* .about-content-container,
  .about-more-container,
  .design-section-1-container,
  .our-service-container,
  .design-ideal-box,
  .tools-section-container,
  .contact-container {
    max-width: 1250px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  } */
  .design-image-circle,
  .design-circle-dotted {
    max-width: 450px;
    max-height: 450px;
  }
  .design-image-circle .design-brain {
    max-width: 240px;
    max-height: 240px;
  }
  .round-1 {
    top: 40px;
  }
  .round-2 {
    bottom: 40px;
  }
  .circle-dot {
    width: 40px;
    height: 40px;
  }
  .our-offer-dot {
    width: 350px;
    height: 350px;
  }
  .our-service-box .about-h4 {
    font-size: 52px;
    line-height: 1.1;
  }
}

@media all and (max-width: 1440px) {
  :root {
    --technologyTop: 720;
  }
  .drop-cont h3 {
    font-size: 30px;
  }
  .section-one__content h3 {
    line-height: 1.1;
  }
  .section-one__content ul {
    margin: 15px 0 0;
  }
  .section-one__content ul li {
    font-size: 24px;
  }
  .section-four .title-section .title:nth-last-of-type(2) {
    top: 100px;
  }
  .section-four .title-section .title:nth-last-of-type(1) {
    top: 200px;
  }
  .section-four .title-section h1,
  .section-four .title-section .title {
    font-size: 60px;
    padding: 12px 0 12px 100px;
  }
  .title-section ul li {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .title-section ul {
    padding-left: 100px;
  }
  .section-four .title-section .title .dot,
  .section-four .title-section h1 .dot {
    width: 50px;
    height: 50px;
  }
  .section-five {
    padding: 50px 0 150px;
  }
  .exp-box {
    top: 40px;
  }
  .section-five h5 {
    font-size: 26px;
  }
  .exp-img {
    margin: 40px auto 80px;
  }
  .about-banner-1 {
    max-width: 35vw;
  }
  .about-banner-2 {
    max-width: 30vw;
  }
  .about-banner-section__content .about-h4 {
    font-size: 36px;
  }
  .about-h6,
  .design-h6 {
    font-size: 18px;
  }
  .padding-section {
    padding: 100px 0;
  }
  .about-content-container p {
    font-size: 20px;
  }
  .about-content-container p span b {
    font-size: 48px;
  }
  .iwayy-vision--left {
    top: 30px;
    padding-top: 90px;
  }
  .about-vision-content {
    padding-top: 80px;
    padding-bottom: 150px;
  }
  .design-service-h3 {
    font-size: 55px;
    line-height: 58px;
  }
  .design-service-h4 {
    font-size: 32px;
    line-height: 42px;
    margin-top: 10px;
  }
  .design-ideal-box .about-h4 {
    margin-bottom: 60px;
  }
  .contact-padding {
    padding: 80px 0;
  }
}

@media all and (max-width: 1200px) {
  .nav li {
    padding: 0 20px;
  }
  .nav li a {
    font-size: 14px;
  }
  .drop-menu ul {
    max-width: 900px;
  }
  .drop-cont.bg1::after,
  .drop-cont.bg2::after,
  .drop-cont.bg3::after {
    background-size: 140%;
  }
  .drop-cont:hover::after {
    background-position: 100% 180% !important;
    top: -100%;
    background-size: 200% !important;
  }
  .section-one__content {
    padding-left: 0;
  }
  .section-one__content h3 {
    font-size: 62px;
  }
  .section-one__content ul li {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .section-five ul li {
    font-size: 34px;
  }
  .arrow-animation {
    max-width: 660px;
    height: 245px;
  }
  .section-three-container {
    padding: 0 75px;
  }
  .section-five h4 {
    font-size: 52px;
  }
  .section-six .domain-names h4 {
    text-transform: capitalize;
    font-size: 34px;
  }
  .contact-padding {
    height: auto;
    padding: 120px 0;
  }
  .contact-form .about-h4 {
    font-size: 62px;
    margin-bottom: 10px;
  }
  .contact-form .contact-para {
    font-size: 21px;
  }
  .contact-no ul {
    font-size: 16px;
    margin-left: 20px;
    font-family: "Satoshi-Medium", sans-serif;
    font-weight: 900;
  }
  .contact-no ul li {
    margin-top: 8px;
  }
  .contact-details {
    margin-top: 123px;
    height: 130px;
  }
  .contact-label,
  .contact-input {
    font-size: 24px;
  }
  .text-box {
    width: 235px;
  }
  .filled .about-h4 {
    font-size: 0;
    margin-bottom: 0;
  }
  .filled .contact-para {
    font-size: 0;
  }
  address h2 {
    font-size: 45px;
  }
  address h6 {
    font-size: 20px;
  }
  address img {
    height: 88px;
  }
  address p {
    font-size: 16px;
  }
}

@media (min-width: 1200px) and (max-height: 860px) {
  .contact-padding {
    height: 115vh;
  }
  .contact-form {
    height: 650px;
  }
}

@media (min-width: 1200px) and (max-height: 640px) {
  .contact-padding {
    height: 125vh;
  }
  .contact-container {
    position: relative;
    top: 80px;
  }
}

@media (max-width: 1024px) and (min-height: 1200px) {
  :root {
    --technologyLeft: -400;
    --technologyTop: 660;
  }
  .about-content-container,
  .about-more-container,
  .design-section-1-container,
  .our-service-container,
  .design-ideal-box,
  .tools-section-container,
  .contact-container,
  .section-one__container,
  .section-three-container,
  .section-four-container,
  .desktop-container,
  .exp-container,
  .career-container {
    max-width: 930px;
    /* max-width: 1250px; */
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  .about-banner-1 {
    max-width: initial;
    width: 32%;
  }
  .about-banner-2 {
    max-width: initial;
    width: 40%;
  }
  .about-vision-content h4 {
    font-size: 36px;
  }
  .our-offer-dot {
    width: 300px;
    height: 300px;
    left: 130px;
    top: -20px;
  }
  .our-service-box .about-h4 {
    font-size: 48px;
  }
  .contact-checkbox label {
    padding: 2px 22px;
    margin-bottom: 0;
  }
}
@media all and (max-width: 1024px) {
  :root {
    --designTop: 420;
    --technologyTop: 660;
  }
  .drop-cont h3 {
    font-size: 30px;
  }
  .about-banner-section__content .about-h4 {
    font-size: 30px;
  }
  .iwayy-vision--left {
    width: 240px;
  }
  .iwayy-vision--left ul li a {
    font-size: 36px;
  }
  .about-more-section {
    padding: 60px 0;
  }
  .career-padding {
    padding: 60px 0;
  }
  .design-service-box {
    padding: 60px 0;
  }
  .design-service-h3 {
    font-size: 45px;
    line-height: 52px;
  }
  .design-service-h4 {
    font-size: 28px;
    line-height: 36px;
  }
  .design-image-circle,
  .design-circle-dotted {
    max-width: 400px;
    max-height: 400px;
  }
  .design-image-circle .design-brain {
    max-width: 200px;
    max-height: 200px;
  }
  .circle-dot {
    width: 35px;
    height: 35px;
  }
  .round-1,
  .design-circle-dotted .round-1 {
    top: 35px;
  }
  .round-2,
  .design-circle-dotted .round-2 {
    bottom: 35px;
  }
  .our-service-box .about-h4 {
    font-size: 40px;
  }
  .our-offer-list ul li p {
    font-size: 22px;
  }
  .design-content-section .design-image,
  .design-content-icon:nth-last-of-type(5) .design-image {
    width: 80px;
    height: 80px;
  }
  .design-content-box .design-h6,
  .technology-content-box .design-h6 {
    margin-bottom: 15px;
  }
  .design-content-section .design-h4 {
    margin-bottom: 10px;
  }
  .design-content-para {
    line-height: 1.5;
  }
  .tools-box {
    padding: 20px;
  }
  .tools-image {
    width: 80px;
    height: 80px;
  }
  .contact-padding {
    height: auto;
    padding: 115px 0 80px;
    width: 100%;
    margin: auto;
  }
  .contact-no ul {
    font-size: 16px;
    margin-left: 20px;
  }
  .contact-no ul li {
    margin-top: 8px;
  }
  .back-arrow-btn {
    top: -30px;
  }
  .contact-places {
    max-width: 90%;
    margin: 0 auto 100px;
  }
  address .nation {
    display: inline-block;
    margin-right: 36px;
  }
  address h2 {
    font-size: 45px;
  }
  address h6 {
    font-size: 20px;
  }
  address img {
    height: 75px;
  }
  address p {
    font-size: 16px;
  }
}

@media all and (max-width: 990px) {
  :root {
    --technologyLeft: -250;
  }
  .about-content-container,
  .about-more-container,
  .design-section-1-container,
  .our-service-container,
  .design-ideal-box,
  .tools-section-container,
  .contact-container,
  .section-one__container,
  .section-three-container,
  .section-four-container,
  .desktop-container,
  .exp-container,
  .career-container {
    max-width: 770px;
    /* max-width: 1250px; */
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  .desktop-header .desktop-container {
    max-width: 800px;
    padding: 0;
  }
  .home-header .nav li {
    padding: 0 12px;
  }
  .nav li {
    padding: 0 16px;
  }
  .drop-menu ul {
    max-width: 750px;
  }
  .drop-sec .dropdown-arrow::before,
  .drop-sec .dropdown-arrow::after,
  .mobile-drop-sec .dropdown-arrow::before,
  .mobile-drop-sec .dropdown-arrow::after {
    width: 5px;
    height: 5px;
    right: -10px;
  }
  .drop-cont h3 {
    font-size: 24px;
  }
  .drop-cont p {
    font-size: 14px;
    line-height: 1.5;
  }
  .drop-cont.bg1::after,
  .drop-cont.bg2::after,
  .drop-cont.bg3::after {
    background-size: 190%;
  }
  .drop-cont:hover::after {
    background-position: 100% 220%;
  }
  .content-flex img {
    transform: translateX(0);
  }
  .section-one__content h3 {
    font-size: 55px !important;
  }
  #iwayy-animation {
    width: 100%;
  }
  .arrow-animation {
    height: 230px;
  }
  .section-four {
    padding: 150px 0 100px;
  }
  .section-four .title-section .title-content h1 {
    font-size: 50px;
    padding: 7px 0;
    padding-left: 85px;
  }
  .section-four .title-section ul {
    padding-left: 85px;
  }
  .section-four .title-section .title:nth-last-of-type(2) {
    top: 85px;
  }
  .section-four .title-section .title:nth-last-of-type(1) {
    top: 170px;
  }
  .section-four .title-section .title .dot,
  .section-four .title-section h1 .dot {
    width: 45px;
    height: 45px;
  }
  .section-four .title .dot::before,
  .section-four h1 .dot::before {
    left: -10px;
    top: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
  .img-box {
    display: none;
  }
  .img-box-mobile {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: calc(100vh - 500px);
  }
  .img-box-up-mob {
    display: block;
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
  }
  .section-five {
    padding: 0 0 100px;
  }
  .section-five h4 {
    font-size: 48px;
  }
  .map-img {
    max-width: 100%;
    max-height: 100%;
  }
  .exp-img {
    margin: 20px auto 50px;
    height: 300px;
  }
  .exp-dot {
    width: 30px;
    height: 30px;
  }
  .exp-img .exp-dot.exp-dot-1 {
    top: 22px;
    left: 171px;
  }
  .exp-img .exp-dot.exp-dot-2 {
    top: 22px;
  }
  .exp-img .exp-dot.exp-dot-3 {
    top: 22px;
    right: 175px;
  }
  .section-five ul li {
    font-size: 28px;
  }
  .section-six .domain-names h4 {
    text-transform: capitalize;
    font-size: 28px;
    margin: 0 10px 30px;
  }
  footer {
    padding: 40px 25px;
  }
  footer h2 {
    font-size: 24px;
  }
  footer ul li {
    line-height: 1.3;
  }
  .about-content-container p span {
    font-size: 32px;
    line-height: 48px;
  }
  .career-content .career-h2 {
    font-size: 56px;
  }
  .iwayy-vision--left {
    padding-top: 70px;
  }
  .iwayy-vision--left ul li a {
    font-size: 30px;
  }
  .about-vision-content {
    padding-top: 60px;
    padding-bottom: 120px;
  }
  .our-offer-dot {
    width: 270px;
    height: 270px;
  }
  .contact-form {
    margin-top: 0;
    min-height: 370px;
    height: auto;
  }
  .contact-form .about-h4 {
    font-size: 55px;
    margin-bottom: 10px;
  }
  .contact-form .contact-para {
    font-size: 21px;
  }
  .contact-no {
    display: none;
  }
  .contact-no.contact-list {
    display: block;
    position: relative;
    margin-top: 0;
    top: 0;
    text-align: left;
    float: left;
    width: 100%;
    margin-bottom: 15px;
  }
  .contact-no.contact-list ul li {
    text-align: left;
  }
  .contact-no ul {
    margin-left: 0;
    width: 49%;
  }
  .contact-no {
    position: relative;
    bottom: 0;
    float: right;
    right: 0;
    text-align: center;
    width: 50%;
    margin-top: 40px;
  }
  .text-box {
    width: 280px;
  }
  .filled .about-h4 {
    font-size: 0;
    margin-bottom: 0;
  }
  .filled .contact-para {
    font-size: 0;
  }
  .filled .contact-details {
    height: 530px;
    margin-top: 0;
  }
  .complete-message.show {
    top: 50%;
  }
  .submit-button {
    position: relative;
    bottom: -10px;
    font-family: "Satoshi-Medium";
    font-weight: 900;
  }
  .back-arrow-btn {
    top: -40px;
  }
  .contact-animation {
    position: relative;
    top: 50%;
  }
  .contact-left,
  .contact-right {
    width: 100%;
  }
}

@media all and (max-width: 800px) {
  :root {
    --designTop: 520;
    --designLeft: -10;
    --technologyLeft: -20;
    --technologyTop: 650;
  }
  .desktop-header {
    position: absolute;
    transition: all 0s ease-in-out;
  }
  .width-800-100 {
    position: relative;
    width: 100%;
    padding: 0 15px;
  }
  .lap-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .desktop-header.fixed-header {
    box-shadow: none;
  }
  .nav {
    display: none;
  }
  .menu-icon {
    display: block;
    position: fixed;
    right: 30px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
  }
  .mobile-menu,
  .mobile-overlay {
    display: block;
  }
  .menu-box {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    background: linear-gradient(to right, #321575 0, #8d0b93 100%);
    cursor: pointer;
  }
  .menu-in {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu-in span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    top: 50%;
    background: #000;
    margin-top: -1px;
  }
  .menu-in span:nth-of-type(1) {
    margin-top: -10px;
  }
  .menu-in span:nth-of-type(3) {
    margin-top: 8px;
  }
  .section-one {
    display: block;
    height: auto;
    padding-top: 0;
    background: #fff;
    z-index: 2;
  }
  .section-one__container {
    display: block;
  }
  .animation-img {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
  #iwayy-animation {
    position: relative;
    width: 100%;
    height: 100vh;
    width: 500px;
    height: 500px;
    margin: 0 auto 50px;
    z-index: 1;
  }
  .banner-content-box {
    position: relative;
    width: 100%;
    min-height: auto;
    background: #fff;
    padding-top: 30px;
    z-index: 1;
  }
  .banner-content-box {
    margin-top: 60vh;
  }
  .banner-content-box::before {
    position: absolute;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, #fff, transparent);
    left: 0;
    top: -100px;
  }
  .section-one__content {
    max-width: 600px;
    padding-left: 0;
    margin: 0 auto;
  }
  .section-one__content h3 {
    font-size: 100px;
  }
  .section-one__content ul {
    margin-top: 15px;
  }
  .section-one__content ul li {
    font-size: 32px;
  }
  .arrow-animation {
    margin: 40px auto;
    height: 33vw;
  }
  .section-four {
    padding: 150px 0 0;
  }
  .section-four .title-section-3 {
    padding-bottom: 100px;
  }
  .section-four .title-section h1,
  .section-four .title-section .title {
    font-size: 60px;
  }
  .section-four .title-section .title-content {
    position: relative;
    top: 0;
  }
  .section-four .title-section,
  .section-four .title-section-1 {
    height: auto;
  }
  .section-four .title-section ul {
    position: initial !important;
    overflow: hidden;
  }
  .section-four .title-section {
    position: sticky;
    top: 50px;
    height: calc(100vh + 50px);
    background: #fff;
    z-index: 1;
  }
  .design-svg-mobile {
    position: relative;
    z-index: 1;
  }
  .section-five h4 {
    font-size: 40px;
  }
  .title-section ul li {
    font-size: 24px;
  }
  .title-section ul li {
    opacity: 0;
    margin-left: -20px;
  }
  .service-trigger-begin {
    position: absolute;
    top: 0;
    left: 50px;
  }
  .section-six .domain-names {
    justify-content: center;
  }
  .section-three {
    overflow: hidden;
  }
  .section-three,
  .section-four,
  .section-five,
  .lap-footer {
    position: relative;
    background: #fff;
    z-index: 9;
  }
  .section-seven {
    position: relative;
    z-index: 9;
  }
  .section-three .section-three__title {
    padding: 0 15px;
  }
  .exp-img,
  .section-five ul {
    max-width: 610px;
  }
  .section-five ul {
    margin: 0 auto;
    justify-content: center;
  }
  .section-five ul li {
    margin: 0 10px 30px;
  }
  /* .exp-img .exp-dot{
    opacity: 0;
  } */
  .exp-img .exp-dot.exp-dot-1 {
    top: 22px;
    left: 171px;
  }
  .exp-img .exp-dot.exp-dot-2 {
    top: 22px;
  }
  .exp-img .exp-dot.exp-dot-3 {
    top: 22px;
    right: 175px;
  }
  footer {
    max-width: 400px;
    margin: 0 auto;
  }
  footer h2 {
    font-family: "Gilroy-Bold", sans-serif;
  }
  footer h4 {
    position: relative;
    margin: 0;
    line-height: 40px;
    color: var(--color-primary-extra-dark);
    font-family: "Gilroy-Bold", sans-serif;
    cursor: pointer;
  }
  footer h4 img {
    transition: all 0.2s ease-in-out;
  }
  footer ul li {
    margin: 0;
  }
  footer ul li a {
    display: block;
    line-height: 40px;
  }
  .lap-footer .active img {
    transform: rotate(45deg);
  }
  .footer-column-1 {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer-column-1 .similar {
    display: none;
  }
  ul.social-ul {
    justify-content: center;
  }
  .footer-column-2 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0;
  }
  .footer-column-2 ul {
    display: none;
    padding: 0 0 10px;
  }
  .footer-column-2 span {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .about-banner-section {
    height: auto;
    padding-top: 120px;
    padding-bottom: 410px;
  }
  .about-banner-section > img {
    position: absolute;
  }
  .about-banner-1 {
    max-width: 40vw;
  }
  .about-banner-2 {
    max-width: 36vw;
  }
  .about-banner-section__content {
    position: relative;
    top: 0;
  }
  .padding-section {
    padding: 50px 0;
  }
  .about-content-container p span {
    font-size: 24px;
    line-height: 38px;
  }
  .career-box {
    height: auto;
  }
  .career-content {
    max-width: 400px;
    margin: 0 auto;
  }
  .career-box .career-container {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }
  .career-box .career-image {
    position: static;
    top: 0;
    right: 0;
    width: 100%;
    transform: translate(0, 0);
  }
  .career-image .career-anim {
    height: auto;
  }
  #read-more {
    margin-top: 10px;
  }
  .vision-container {
    display: block;
  }
  .iwayy-vision--left {
    display: none;
  }
  .iwayy-vision--left ul {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: auto;
  }
  .iwayy-vision--left ul li {
    margin-bottom: 0;
    margin-right: 50px;
  }
  .iwayy-vision--left ul li a {
    font-size: 24px;
  }
  .iwayy-vision--right {
    max-width: 500px;
    margin: auto;
  }
  #about-vision-content-1 {
    color: var(--color-primary);
  }
  #about-vision-content-2 {
    color: var(--color-primary-dark);
  }
  #about-vision-content-3 {
    color: var(--color-primary-extra-dark);
  }
  .about-vision-content {
    padding-top: 50px;
    padding-bottom: 100px;
    min-height: auto;
  }
  .about-vision-content#about-vision-content-3 {
    min-height: auto;
  }
  .about-vision-content h4 {
    font-size: 30px;
    line-height: 42px;
  }
  .about-vision-content h4 br {
    display: none;
  }
  .about-vision-content h3 {
    display: block;
    font-size: 22px;
    line-height: 1;
    font-family: "Satoshi-Medium", sans-serif;
    font-weight: 900;
    text-transform: capitalize;
    margin-bottom: 20px;
  }
  .design-service-box {
    padding: 0;
  }
  .design-content-box {
    right: initial;
    max-width: 600px;
  }
  .design-content-box .design-h6 {
    margin-bottom: 10px;
  }
  .design-image-circle.left {
    bottom: initial;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .our-offer-dot {
    left: 170px;
  }
  .design-image-circle.right {
    right: initial;
    left: 50%;
    transform: translate(-50%, -35%);
  }
  .contact-left,
  .contact-right {
    width: 100%;
  }
  .contact-form {
    margin-top: 0;
    height: auto;
  }
  .contact-form .about-h4 {
    font-size: 70px;
    margin-bottom: 20px;
  }
  .contact-form .contact-para {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .filled .about-h4 {
    font-size: 0;
    margin-bottom: 0;
  }
  .filled .contact-para {
    font-size: 0;
  }
  .filled .contact-details {
    margin-top: 0;
    height: 530px;
  }
  .post {
    position: relative;
    margin-top: 0;
  }
  address h2 {
    font-size: 44px;
  }
}

@media all and (max-width: 768px) {
  .about-content-container p span b {
    font-size: 36px;
  }
  .contact-places .contact-section {
    max-width: 398px;
    width: 100%;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-places .contact-section address {
    padding-right: 11px;
  }
  address .nation {
    margin-right: 27px;
  }
  .exp-img .exp-dot.exp-dot-1 {
    top: 22px;
    left: 169px;
  }
  .exp-img .exp-dot.exp-dot-2 {
    top: 22px;
  }
  .exp-img .exp-dot.exp-dot-3 {
    top: 22px;
    right: 173px;
  }
}
@media all and (max-width: 740px) {
  address .nation {
    margin-right: 17px;
  }
  .exp-img .exp-dot.exp-dot-1 {
    top: 22px;
    left: 154px;
  }
  .exp-img .exp-dot.exp-dot-2 {
    top: 22px;
  }
  .exp-img .exp-dot.exp-dot-3 {
    top: 22px;
    right: 160px;
  }
}

@media all and (max-width: 700px) {
  .contact-places {
    margin-bottom: 50px;
  }
  address {
    border-right: none;
  }
  .section-footer {
    flex-direction: column;
    justify-content: center;
  }
  .exp-img .exp-dot.exp-dot-1 {
    top: 24px;
    left: 137px;
  }
  .exp-img .exp-dot.exp-dot-2 {
    top: 24px;
  }
  .exp-img .exp-dot.exp-dot-3 {
    top: 24px;
    right: 141px;
  }
}

@media all and (max-width: 680px) {
  .about-banner-section__content .about-h4 br {
    display: none;
  }
  .about-banner-section__content .about-h4 {
    max-width: 90%;
    margin: auto;
  }
  .about-flex {
    flex-direction: column;
  }
  .about-flex a {
    width: 80%;
    margin: 20px auto;
  }
}

@media all and (max-width: 640px) {
  :root {
    --technologyTop: 620;
    --technologyLeft: 40;
  }
  .desktop-header {
    height: 60px;
    padding: 0 15px;
  }
  .desktop-header .desktop-container {
    padding: 0;
  }
  .menu-icon {
    padding: 12px;
    right: 5px;
  }
  .section-one__content h3 {
    font-size: 80px;
  }
  .section-three-container {
    padding: 0 30px;
  }
  .section-three .section-three-container,
  .section-four .section-four-container {
    padding: 0 30px;
  }
  .section-four {
    padding: 170px 0 70px;
  }
  .section-four .title-section .title-content h1 {
    font-size: 9vw;
  }
  .section-five .exp-container {
    padding: 0 30px;
  }
  .section-five h4 {
    font-size: 32px;
  }
  .section-five h5 {
    font-size: 22px;
  }
  .exp-img {
    max-width: 420px;
  }
  .exp-img .exp-dot.exp-dot-1 {
    top: 44px;
    left: 111px;
  }
  .exp-img .exp-dot.exp-dot-2 {
    top: 44px;
  }
  .exp-img .exp-dot.exp-dot-3 {
    top: 44px;
    right: 114px;
  }
  .section-five ul {
    max-width: 410px;
  }
  .section-five ul li {
    font-size: 23px;
    margin-bottom: 20px;
  }
  .about-banner-section {
    padding-bottom: 400px;
  }
  .about-banner-1 {
    max-width: 90vw;
  }
  .about-banner-2 {
    display: none;
  }
  .about-banner-section__content .about-h4 {
    font-size: 28px;
    max-width: 90%;
    margin: 0 auto;
  }
  .about-content-container p span {
    margin-bottom: 15px;
  }
  #read-more {
    margin-top: 10px;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
  }
  .iwayy-vision--right,
  .iwayy-vision--left ul {
    max-width: 400px;
  }
  .iwayy-vision--left ul li a {
    font-size: 20px;
  }
  .about-vision-content {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  #about-vision-content-3 {
    padding-bottom: 50px;
  }
  .about-vision-content h3 {
    font-size: 20px;
  }
  .design-image-circle,
  .design-circle-dotted {
    max-width: 340px;
    max-height: 340px;
  }
  .design-image-circle .design-brain {
    max-width: 140px;
    max-height: 140px;
  }
  .round-1,
  .design-circle-dotted .round-1 {
    top: 20px;
  }
  .round-2,
  .design-circle-dotted .round-2 {
    bottom: 20px;
  }
  .our-offer-dot {
    width: 240px;
    height: 240px;
    left: 150px;
  }
  .our-service-box .about-h4 {
    font-size: 36px;
  }
  .our-offer-list ul li p {
    font-size: 20px;
  }
  .design-content-icon {
    width: 100%;
  }
  .tools-image {
    width: 70px;
    height: 70px;
  }

  .design-content-section .design-image,
  .design-content-icon:nth-last-of-type(5) .design-image {
    width: 100px;
    height: 100px;
  }
  .design-content-section .design-image,
  .design-content-icon:nth-last-of-type(5) .design-image {
    margin-bottom: 20px;
  }
  .tools-box {
    padding: 15px;
  }
  .our-offer-list .grid ul li {
    width: 50%;
  }
  .contact-form .about-h4 {
    font-size: 80px;
    margin-bottom: 10px;
  }
  .contact-form .contact-para {
    font-size: 30px;
  }
  .contact-details .row-fields {
    height: auto;
  }
  .contact-label,
  .contact-input,
  .contact-form .contact-label,
  .contact-form .contact-input {
    font-size: 24px;
  }
  .filled .contact-label,
  .filled .contact-input {
    font-size: 20px;
  }
  .filled .about-h4 {
    font-size: 0;
    margin-bottom: 0;
  }
  .filled .contact-para {
    font-size: 0;
  }
  .filled .contact-details,
  .contact-form .checkbox-container {
    height: auto;
  }
  .contact-form .checkbox-container {
    margin-top: 0;
  }
}

@media all and (max-width: 576px) {
  :root {
    --designTop: 430;
    --designLeft: 60;
  }
  .design-service-h3 {
    font-size: 36px;
    line-height: 46px;
  }
  .our-service-box .about-h4 {
    font-size: 32px;
  }
  .our-offer-list ul {
    width: 50%;
    margin-bottom: 30px;
  }
  .our-offer-list-3 ul:nth-last-of-type(1) {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .our-offer-list-3 ul:nth-last-of-type(1) li {
    width: 50%;
  }
}

@media all and (max-width: 550px) {
  .contact-form .about-h4 {
    font-size: 65px;
    margin-bottom: 10px;
  }
  .contact-form .contact-para {
    font-size: 25px;
  }
  .contact-form .contact-details {
    height: 108px;
    margin-top: 185px;
  }
  .text-field {
    margin-bottom: 1.15rem;
    height: auto;
  }
  .text-box {
    width: 250px;
  }
  .contact-form .contact-label,
  .contact-form .contact-input {
    font-size: 22px;
  }
  .filled .contact-label,
  .filled .contact-input {
    font-size: 18px;
  }
  .filled .contact-details {
    margin-top: 5px;
    height: 440px;
  }
  .filled .about-h4 {
    font-size: 0;
    margin-bottom: 0;
  }
  .filled .contact-para {
    font-size: 0;
  }
  .contact-form .checkbox-container {
    height: auto;
    margin-top: 0;
  }
  .contact-checkbox label {
    font-size: 14px;
    padding: 2px 22px;
  }
}

@media all and (max-width: 530px) {
  .about-container,
  .design-container,
  .technology-container {
    padding-top: 50px;
  }
  #iwayy-animation {
    width: 400px;
  }
  .section-one__content h3 {
    font-size: 60px;
  }
  .section-one__content ul li {
    font-size: 24px;
  }
  .section-three .section-three__title {
    padding: 0;
  }
  .section-four .title-section {
    top: 60px;
  }
}

@media all and (max-width: 480px) {
  :root {
    --designTop: 520;
    --technologyTop: 660;
  }
  #iwayy-animation {
    width: 100%;
  }
  .section-one__content h3 {
    font-size: 12.6vw;
  }
  .section-one__content ul li {
    font-size: 20px;
  }
  .section-three .section-three__title {
    padding: 0;
  }
  .section-four {
    padding: 90px 0 0;
  }
  .section-four .title-section {
    height: 100%;
  }
  .section-four .title-section .title-content h1,
  .section-four .title-section .title-content ul {
    padding-left: 72px;
  }
  .section-four .title-section .title:nth-last-of-type(2) {
    top: 60px;
  }
  .section-four .title-section .title:nth-last-of-type(1) {
    top: 120px;
  }
  .title-section h1,
  .title-section ul {
    padding-left: 72px;
  }
  .title-section ul {
    margin-top: 10px;
  }
  .title-section ul li {
    font-size: 18px;
    padding-bottom: 2px;
    line-height: 1;
  }
  .title-section-3 {
    padding-bottom: 50px;
  }
  .section-four {
    height: 100%;
  }
  .section-four .title-section .title .dot,
  .section-four .title-section h1 .dot {
    width: 35px;
    height: 35px;
  }
  .section-four .title .dot::before,
  .section-four h1 .dot::before {
    left: -8px;
    top: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
  }
  .img-box-up-mob {
    width: 350px;
    height: 350px;
  }
  .img-box-mobile {
    height: calc(100vh - 370px);
  }
  .section-five h5 {
    font-size: 18px;
  }
  .exp-img {
    max-width: 340px;
    height: 195px;
  }
  .exp-dot {
    width: 20px;
    height: 20px;
  }
  .exp-img .exp-dot.exp-dot-1 {
    top: 14px;
    left: 92px;
  }
  .exp-img .exp-dot.exp-dot-2 {
    top: 14px;
  }
  .exp-img .exp-dot.exp-dot-3 {
    top: 14px;
    right: 95px;
  }
  .section-five ul {
    max-width: 340px;
  }
  .section-five ul li {
    font-size: 18px;
    margin: 0 11px 10px;
  }
  .about-banner-section {
    padding-bottom: 360px;
    padding-top: 110px;
  }
  .about-banner-section__content .about-h4 {
    font-size: 24px;
  }
  .career-padding {
    padding: 60px 0 30px;
  }
  .career-content .career-h2 {
    font-size: 48px;
    line-height: 1.3;
  }
  .career-content .career-h3 {
    font-size: 28px;
    line-height: 1.5;
  }
  .iwayy-vision--left ul li a {
    font-size: 18px;
  }
  .about-vision-content {
    padding-top: 0;
  }
  .about-vision-content h4 {
    font-size: 26px;
    line-height: 1.3;
  }
  .about-more-section {
    padding: 60px 0 30px;
  }
  .design-service-box {
    padding: 60px 0 30px;
  }
  .design-service-h3 {
    font-size: 32px;
    line-height: 42px;
  }
  .design-service-h4 {
    font-size: 26px;
  }
  .design-image-circle,
  .design-circle-dotted {
    max-width: 300px;
    max-height: 300px;
  }
  .design-image-circle .design-brain {
    max-width: 130px;
    max-height: 130px;
  }
  .circle-dot {
    width: 30px;
    height: 30px;
  }
  .round-1,
  .design-circle-dotted .round-1 {
    top: 30px;
    left: 30px;
  }
  .round-2,
  .design-circle-dotted .round-2 {
    bottom: 30px;
    right: 30px;
  }
  .our-offer-dot {
    width: 220px;
    height: 220px;
    left: 105px;
    top: -10px;
  }
  .tools-image {
    width: 60px;
    height: 60px;
  }
  .design-content-section .design-image,
  .design-content-icon:nth-last-of-type(5) .design-image {
    width: 100px;
    height: 100px;
  }
  .contact-padding {
    height: auto;
    padding: 100px 0 30px;
  }
  .contact-form .about-h4 {
    font-size: 60px;
    font-size: 12.5vw;
    margin-bottom: 10px;
  }
  .contact-form .contact-para {
    font-size: 22px;
  }
  .text-field {
    margin-bottom: 5px;
    height: auto;
  }
  .contact-form .contact-label,
  .contact-form .contact-input {
    font-size: 20px;
  }
  .filled .contact-label,
  .filled .contact-input {
    font-size: 18px;
  }
  .filled .contact-details {
    height: 480px;
  }
  .filled .about-h4 {
    font-size: 0;
    margin-bottom: 0;
  }
  .filled .contact-para {
    font-size: 0;
  }
  .contact-label {
    width: 95%;
  }
  .text-box {
    width: 197px;
    padding: 0 0 8px;
  }
  .contact-error {
    bottom: -6px;
  }
  .post {
    position: relative;
  }
  .mobile-form-control {
    flex-direction: column;
  }
  .contact-places .contact-section {
    max-width: 330px;
  }
  address h2 {
    font-size: 35px;
  }
  address h6 {
    font-size: 18px;
  }
  address p {
    font-size: 14px;
  }
}

@media all and (max-width: 460px) {
  .img-box-up-mob {
    width: 300px;
    height: 300px;
  }
  .about-banner-section {
    padding-bottom: 360px;
  }
  .about-banner-section__content {
    top: 0;
  }
  .about-content-container p span b {
    font-size: 8vw;
  }
  .iwayy-vision--left ul li {
    margin-right: 30px;
  }
}

@media all and (max-width: 419px) {
  .contact-padding {
    height: auto;
    padding: 115px 0 30px;
  }
  .contact-form .contact-para br {
    display: none;
  }
  .filled .contact-details {
    height: 700px;
  }
}

@media (max-width: 400px) and (min-height: 700px) {
  :root {
    --technologyTop: 740;
  }
  .banner-content-box {
    padding-top: 80px;
  }
}

@media all and (max-width: 400px) {
  :root {
    --designTop: 480px;
    --technologyLeft: 40;
  }
  .section-three .section-three-container,
  .section-four .section-four-container {
    padding: 0 24px;
  }
  .section-three .section-three__title {
    padding: 0;
  }
  .section-three__title .about-h4 {
    font-size: 24px;
  }
  .img-box-up-mob {
    width: 250px;
    height: 250px;
  }
  .section-five {
    padding: 0 0 70px;
  }
  .section-five .exp-container {
    padding: 0 24px;
  }
  .exp-img {
    max-width: 290px;
  }
  .exp-img .exp-dot.exp-dot-1 {
    top: 25px;
    left: 77px;
  }
  .exp-img .exp-dot.exp-dot-2 {
    top: 25px;
  }
  .exp-img .exp-dot.exp-dot-3 {
    top: 25px;
    right: 80px;
  }
  .section-five ul {
    max-width: 290px;
    justify-content: flex-start;
  }
  .section-five ul li {
    font-size: 22px;
    margin: 0 15px 15px;
  }
  .lap-footer {
    padding-bottom: 50px;
  }
  .career-content .career-h2 {
    font-size: 11vw;
  }
  .career-content .career-h3 {
    font-size: 6vw;
  }
  .design-service-h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .our-service-box .about-h4 {
    font-size: 28px;
  }
  .our-offer-list ul li p {
    font-size: 18px;
  }
  .our-offer-list ul,
  .our-offer-list ul li {
    margin-bottom: 20px;
  }
  .design-content-section .design-h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .submit-button {
    display: block;
  }
}

@media all and (max-width: 390px) {
  .contact-no ul {
    margin-left: 0;
    width: 100%;
  }
  .contact-no.contact-list {
    display: none;
  }
  .filled .contact-details {
    margin-top: 0;
  }
  .contact-no.contact-list.small-screen {
    display: block;
    margin-top: 0;
  }
}

@media all and (max-width: 360px) {
  :root {
    --designTop: 460;
    --technologyLeft: 60;
    --technologyTop: 540;
  }
  .img-box-up-mob {
    width: 200px;
    height: 200px;
  }
  .about-banner-section {
    padding-bottom: 430px;
  }
  .design-service-h3 {
    font-size: 26px;
    line-height: 36px;
  }
  .design-service-h4 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 0;
  }
  .design-image-circle,
  .design-circle-dotted {
    max-width: 270px;
    max-height: 270px;
  }
  .design-image-circle .design-brain {
    max-width: 100px;
    max-height: 100px;
  }
  .round-1,
  .design-circle-dotted .round-1 {
    top: 25px;
  }
  .round-2,
  .design-circle-dotted .round-2 {
    bottom: 25px;
  }
  .our-offer-dot {
    width: 180px;
    height: 180px;
    left: 110px;
    top: 0;
  }
  .our-offer-list ul {
    width: 100%;
  }
  .our-offer-list-3 ul:nth-last-of-type(1) {
    display: block;
    width: 100%;
  }
  .our-offer-list-3 ul:nth-last-of-type(1) li {
    width: 100%;
  }
  .tools-image {
    width: 50px;
    height: 50px;
  }
  .design-content-section .design-image,
  .design-content-icon:nth-last-of-type(5) .design-image {
    width: 80px;
    height: 80px;
  }
  .our-service-container .tech-service {
    margin-top: 0;
  }
}
@media all and (max-width: 340px) {
  .section-one__content ul li {
    font-size: 19px;
  }
  .img-box-up-mob {
    width: 170px;
    height: 170px;
  }
  .our-service-box .about-h4 {
    font-size: 24px;
  }
  .contact-no {
    float: left;
    padding: 0;
  }
  .filled .contact-details {
    height: 700px;
    margin-top: 0;
  }
  .contact-places .contact-section address {
    padding-right: 3px;
  }
  address .nation {
    display: inline-block;
    margin-right: 20px;
  }
}

@media only screen and (orientation: portrait) {
  .about-vision-content {
    min-height: 500px;
  }
  .about-vision-content#about-vision-content-3 {
    min-height: auto;
  }
}
@media all and (max-width: 800px) and (orientation: portrait) {
  .about-vision-content {
    min-height: auto;
  }
}
@media (max-width: 991px) and (orientation: landscape) {
  .section-one__content ul li {
    font-size: 20px;
  }
}
