* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* rgba(128, 171, 209, 1) */
/* rgba(170, 199, 224, 1) */
:root {
  --darkBlue: rgba(0, 87, 163, 1);
  --white: rgba(255, 255, 255, 1);
  --lightWhite: rgba(217, 217, 217, 1);
  --black: rgba(46, 46, 46, 1);
  --paraCol: rgba(0, 0, 0, 1);
  --darkerBlue: rgba(0, 29, 54, 1);

  /* rgba(0, 87, 163, 1) */

  --lightBlue: rgba(170, 199, 224, 1);
  --lighterblue: rgba(0, 87, 163, 0.5);
  --lighterblue2: rgba(204, 221, 237, 1);

  --border: rgba(228, 231, 236, 1);
  --border2: rgba(228, 231, 236, 0.527);

  --font32: 3.2rem;
  --font24: 2.4rem;
  --font20: 2rem;
  --font16: 1.6rem;
  --font18: 1.8rem;
  --font14: 1.4rem;
  --font12: 1.2rem;
  --font10: 1rem;
  --weight500: 500;
  --weight400: 400;
  --weight600: 600;
}
@font-face {
  font-family: "MyCustomFont"; /* Choose a name */
  src: url("Assets/fonts/Gilroy-FREE/Gilroy-FREE/Gilroy-Light.otf")
    format("opentype"); /* Correct format */
  font-weight: normal;
  font-style: normal;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "MyCustomFont", sans-serif;
  overflow-x: hidden;
}
button {
  font-family: "MyCustomFont", sans-serif;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* gap: 2rem; */
}
.mobille {
  display: flex;
  justify-content: end;
  align-items: start;
  width: 22.6rem;
  height: 100vh;
  position: fixed;
  top: 5rem;
  right: 0;
  background-color: var(--darkBlue);
  padding: 2rem;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  /* gap: 30rem; */
}

.innerMobile {
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
}

.open {
  transform: translateX(0);
}

.closed {
  transform: translateX(100%);
}
.listDropDown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.carret-left {
  position: absolute;
  top: 2rem;
  left: 2rem;
  cursor: pointer;
}
.mobileBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}
.darkOverlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.596);
  width: 100vw;
  height: 100%;
  z-index: 10;
}

.hide {
  display: none !important;
}
.serviceDrop {
  cursor: pointer;
}
.mobille ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 0.4rem;
}
.mobille ul li {
  display: flex;
  justify-content: end;
  align-items: center !important;
  list-style: none;
  width: 20rem;

  /* border: 1px solid red; */
  padding: 1rem;
  height: 4.4rem;
}

.serviceDrop {
  display: flex;
  justify-content: end;
  align-items: center !important;
  list-style: none;
  width: 15rem;
  /* border: 1px solid red; */
  padding: 1rem;
  height: 4.4rem;
}

.mobille ul a {
  font-size: var(--font14);
  /* line-height: 2.1rem; */
  color: var(--white);
  font-weight: var(--weight500);
  text-decoration: none;
  /* height: 4.4rem; */
  /* text-align: center; */
}

.mobille ul li:hover {
  background-color: var(--border2);
  border-radius: 0.6rem;
}
.currentMobilePage {
  background-color: var(--border2);
  border-radius: 0.6rem;
  color: var(--darkBlue) !important;
}

/* .mobille .navBtn a {
  border: none;
  cursor: pointer;
  padding: 1.6rem 2.4rem;
  font-weight: var(--weight400);
  font-size: var(--font14);
  border-radius: 0.2rem;
}

.mobille .navBtn .blue-btn {
  background-color: var(--darkBlue);
  color: var(--white);
}
.mobille .navBtn .white-btn {
  background-color: var(--white);
  color: var(--darkBlue);
  border: 1px solid var(--darkBlue);
} */

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  /* max-width: 124rem; */
  padding: 2rem 0;
  position: fixed;
  top: 0;
  background-color: var(--white);
  /* height: 4rem; */
  z-index: 10;
}

.innerNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90vw;
  max-width: 124rem;
  padding: 2rem 0;

  /* height: 4rem; */
}
nav ul {
  display: none;
}
.navBtn {
  display: none;
}
.logoCont {
  width: 10rem;
  height: 100%;
}
.logoCont img {
  width: 100%;
  height: 100%;
}

.ham {
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
}
.ham img {
  width: 100%;
  height: 100%;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100vw;
  color: var(--paraCol);
  gap: 2rem;
  background: linear-gradient(
    to bottom,
    white 80%,
    rgba(170, 199, 224, 1) 100%
  );

  padding: 3rem 0;
  margin-top: 12rem;
}
.innerHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 90vw;
  max-width: 124rem;
}
.heroCont {
  width: 100%;
  /* height: 44.7rem; */
  /* max-height: 68rem; */
  max-width: 45.3rem;
}
.heroCont img {
  width: 100%;
  height: 100%;
}

header .textContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
header .textContent h1 span {
  color: var(--darkBlue);
  background-image: url(./Assets/zigzag.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
header .textContent h1 {
  font-size: var(--font32);
  font-weight: var(--weight600);
  line-height: 4.41rem;
}
header .textContent p {
  font-size: 2.4rem;
  font-weight: var(--weight400);
  line-height: 2.88rem;
}
header .textContent a {
  width: 20.6rem;
  height: 6rem;
  background-color: var(--darkBlue);
  color: var(--white);
  border: none;
  border-radius: 1rem;
  font-size: 2.4rem;
  font-weight: var(--weight400);
  line-height: 2.88rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90vw;
  max-width: 124rem;
  text-align: center;
  gap: 2rem;
  margin-top: 2rem;
}
main h1 {
  font-size: var(--font32);
  font-weight: var(--weight600);
  line-height: 4.41rem;
}
main .iconsContainer {
  display: grid;
  gap: 2rem;
  justify-items: center;
  align-items: end;
  grid-template-columns: 1fr;
  width: 100%;
}

.iconsContainer .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 30rem;
  gap: 2rem;
}
.iconsContainer .box svg {
  width: 20rem;
  height: 20rem;
}
.iconsContainer .box .svg1 {
  /* width: 14.167rem;
  height: 14.165rem; */
}
.iconsContainer .box .svg2 {
  /* width: 9.2rem;
  height: 14.6rem; */

  /* width:20rem;
  height: 20rem; */
}
.iconsContainer .box h2 {
  font-size: 2.8rem;
  font-weight: var(--weight400);
  line-height: 3.36rem;
}
.iconsContainer .box p {
  font-size: var(--font18);
  line-height: 2.16rem;
  font-weight: var(--weight400);
}

article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90vw;
  max-width: 124rem;
  text-align: center;
  gap: 2rem;
  margin-top: 2rem;
}

article h1 {
  font-size: var(--font32);
  font-weight: var(--weight600);
  line-height: 4.41rem;
}
article span .arr-right {
  display: none;
}
article .content {
  display: grid;
  gap: 2rem;
  justify-items: center;
  align-items: center;
  grid-template-columns: 1fr;
  width: 100%;
}
.content .boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  gap: 2rem;
}
.content .boxes img {
  width: 13.5rem;
  /* width: 13.5rem; */
  height: 17rem;
}
.content .boxes h2 {
  font-size: 2.8rem;
  font-weight: var(--weight600);
  line-height: 3.36rem;
}
.content .boxes p {
  font-size: var(--font18);
  line-height: 2.16rem;
  font-weight: var(--weight400);
}
.content .boxes a {
  padding: 1.5rem 1.9rem;
  /* width: 20rem; */
  height: 6rem;
  background-color: var(--darkBlue);
  color: var(--white);
  border: none;
  border-radius: 1rem;
  font-size: 2.4rem;
  font-weight: var(--weight400);
  line-height: 2.88rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 90vw;
  max-width: 124rem;
  text-align: center;
  gap: 2rem;
  margin-top: 2rem;
}
aside h1 {
  font-size: var(--font32);
  font-weight: var(--weight600);
  line-height: 5.4rem;
  align-self: center;
}
aside p {
  font-size: var(--font14);
  font-weight: var(--weight400);
  line-height: 2.1rem;
  align-self: center;
}

aside .slides {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  width: 124rem;
  height: 35.6rem;
  gap: 2rem;
}
.sliders {
  width: 100%;
  overflow: auto;
}
.sliders::-webkit-scrollbar {
  display: none;
}
.sliders::-moz-scrollbar {
  display: none;
}
aside .slides .slide {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 25.1rem;
  gap: 1.6rem;
  height: 34.7rem;
  position: relative;
}
aside .slides img {
  width: 10.4rem;
  height: 10.4rem;
}
aside h3 {
  font-size: var(--font16);
  font-weight: var(--weight600);
  line-height: 2.4rem;
}
aside span {
  font-size: 3.2rem;
  font-weight: var(--weight600);
  line-height: 4.8rem;
  position: absolute;
  top: 0;
  left: 0;
}

.sec1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 90vw;
  max-width: 124rem;
  text-align: center;
  gap: 2rem;
  margin-top: 2rem;
}

.sec1 h1 {
  font-size: var(--font32);
  font-weight: var(--weight600);
  line-height: 5.4rem;
  align-self: center;
  color: var(--darkBlue);
}
.sec1 .right {
  width: 100%;
  max-width: 45.5rem;
}
.sec1 .right img {
  width: 100%;
}

.sec1 .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.sec1 p {
  font-size: 2.4rem;
  font-weight: var(--weight400);
  line-height: 2.88rem;
  align-self: center;
}
.sec1 a {
  width: 20.6rem;
  height: 6rem;
  background-color: var(--darkBlue);
  color: var(--white);
  border: none;
  border-radius: 1rem;
  font-size: 2.4rem;
  font-weight: var(--weight400);
  line-height: 2.88rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.sec2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  /* overflow-x: hidden; */

  text-align: center;
  gap: 2rem;
  background-color: var(--darkBlue);
  padding: 5rem 0;
  margin-top: 2rem;
}
.sec2 span {
  color: var(--lightBlue);
}
.sec2 .innerSec2 {
  width: 90%;
  max-width: 124rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.sec2 .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.play,
.app {
  width: 30rem;
  height: 8rem;
}
.carelink {
  width: 100%;
  max-width: 124rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.sec2 h1 {
  font-size: var(--font32);
  text-align: center;
  color: var(--white);
  font-weight: var(--weight600);
}
.sec2 p {
  font-size: 2.4rem;
  font-weight: var(--weight400);
  line-height: 2.88rem;
  text-align: start;
  color: var(--white);
}
.carelinkImg {
  width: 30.277rem;
  height: 43rem;
}
.carelinkImg img {
  width: 100%;
  height: 100%;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100vw;
  color: var(--paraCol);
  gap: 2rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 87, 163, 1) 30%,
    rgba(0, 29, 54, 1) 60%
  );

  padding: 3rem 0;
}

.topFooter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 90%;
  gap: 2rem;
  max-width: 124rem;
}
.footerLogo {
  display: none;
}

form {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.2rem;
}
form h3 {
  color: var(--white);
  font-size: var(--font20);
  line-height: 3rem;
  font-weight: var(--weight600);
}
form label {
  color: var(--white);
  font-size: var(--font14);
  line-height: 2.1rem;
  font-weight: var(--weight400);
  text-align: start;
}
.inputXbtn {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
}
form input {
  color: var(--black);
  font-size: var(--font14);
  line-height: 2.1rem;
  font-weight: var(--weight400);
  background-color: var(--lighterblue2);
  border: none;
  outline: none;
  text-align: start;
  width: 70%;
  height: 4.6rem;
  padding-left: 2rem;
}
form button {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: var(--weight400);
  background-color: var(--darkBlue);
  border: none;
  outline: none;
  width: 30%;
  height: 5rem;
  cursor: pointer;
}
.form2 {
  display: none;
}

.topFooter ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: start;
  align-items: center;
  gap: 2.6rem;
}
.topFooter ul li,
.topFooter ul a {
  font-size: var(--font14);
  line-height: 1.68rem;
  color: var(--white);
  font-weight: var(--weight400);
  text-decoration: none;
  list-style: none;
  /* align-items: start; */
  /* text-align: start; */
}

.bottomFooter {
  width: 90%;
  border-top: 1px solid var(--white);
  padding: 2rem 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 2.4rem;
  color: var(--white);
  font-size: var(--font10);
  line-height: 1.5rem;
  font-weight: var(--weight400);
  max-width: 124rem;
}
.bottomFooter p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.bottomFooter span {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--white);
  border-radius: 100%;
  font-size: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.socialIcons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.socialIcons img {
  width: 2.4rem;
  height: 2.4rem;
}
button:hover {
  font-weight: var(--weight600);
}
.iconHover {
  stroke-width: 5;
}
.box:hover .iconHover,
.box:hover h2 {
  stroke-width: 10;
  font-weight: 600;
}

.iconHover:hover {
  stroke-width: 10;
  /* fill: blue; */
}
