﻿* {
  margin: 0px;
  background-color: #f7f7f7;
}

@font-face {
  font-family: "Gilroy-Regular";
  src: url("fonts/gilroyNew/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy-Medium";
  src: url("fonts/gilroyNew/Gilroy-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy-Semibold";
  src: url("fonts/gilroyNew/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("fonts/gilroyNew/Gilroy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("fonts/gilroyNew/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

.nav__class {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 135px;
  position: sticky;
  top: 0;
}

.nav__class a {
  text-decoration: none;
  color: #1f2a37;
}

.nav__class .items__class a:hover,
.nav__class .items__class a:focus {
  font-family: Gilroy-ExtraBold;
}

.nav__class .items__class .nav-link.selected {
  font-family: Gilroy-ExtraBold !important;
}

.logo__class {
  display: flex;
  align-items: center;
  gap: 50px;
  cursor: pointer;
}

.items__class {
  display: flex;
  align-items: center;
  color: #1f2a37;
  gap: 40px;
  font-size: 16px;
  font-family: Gilroy-Medium;
}

.btn__try-free {
  padding: 16px 40px;
  border-radius: 100px;
  background-color: #045e5e;
  color: #ffffff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  margin: 25px 135px;
  font-family: Gilroy-Bold;
}

.feature__class {
  margin-top: 100px;
  text-align: center;
}

.feature__class h1 {
  font-size: 60px;
  font-family: Gilroy-Bold;
  color: #1f2a37;
  margin-top: 12px;
}

.feature__class h2 {
  color: #045e5e;
  font-family: Gilroy-Semibold;
}

.feature__class p {
  color: #777e90;
  font-family: Gilroy-Regular;
  margin-top: 16px;
  line-height: 28px;
}

.cards__class {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
}

.card__class {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__1 {
  background-color: #ffffff;
  text-align: left;
}

.card__1 img {
  background-color: #ffffff;
}

.card__1 span {
  margin-top: 50px;
  color: #045e5e;
  background-color: #f6f8f9;
  font-size: 12px;
  font-family: Gilroy-Regular;
  padding: 4px 15px;
  border-radius: 5px;
}

.card__1 h2 {
  margin-top: 20px;
  color: #000000;
  background-color: #ffffff;
  font-size: 20px;
  font-family: Gilroy-Semibold;
}

.card__1 h4 {
  margin-top: 8px;
  color: #777e90;
  background-color: #ffffff;
  font-family: Gilroy-Semibold;
}

.card__1 button {
  margin-top: 16px;
  padding: 12px 100px;
  border: 1px solid #045e5e;
  border-radius: 100px;
  text-align: center;
  width: 390px;
  font-family: Gilroy-Bold;
  color: #045e5e;
  font-size: 18px;
  background-color: #ffffff;
  cursor: pointer;
}

.update__class {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}

.update__class h1 {
  font-size: 48px;
  color: #1f2a37;
  font-family: Gilroy-Bold;
  margin-top: 40px;
}

.update__class p {
  color: #777e90;
  font-family: Gilroy-Regular;
  margin-top: 16px;
  line-height: 28px;
}

.update__class-info {
  text-align: center;
}

.input__class {
  margin-top: 40px;
  margin-bottom: 58px;
  padding: 7px 7px 7px 24px;
  width: 500px;
  height: 55px;
  border: none;
  border-radius: 100px;
  background-color: #ffffff;
  font-family: Gilroy-Regular;
}

.btn__update {
  position: absolute;
  right: 15px;
  top: 45%;
  transform: translateY(-50%);
  border: none;
  background-color: #045e5e;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 17px;
  font-family: Gilroy-Semibold;
  cursor: pointer;
  width: 166px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: -180px;
  width: 100%;
  height: 120%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #ffffff;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 80px;
  border: 1px solid #888;
  width: 55%;
  max-height: 700px;
  overflow-y: scroll;
  border-radius: 30px;
}

.modal-content::-webkit-scrollbar-track {
  background-color: transparent !important; /* Remove the background */
  width: 120px;
}

.modal-content h1 {
  font-family: Gilroy-Bold;
  font-size: 32px;
}

.close {
  color: #000000;
  float: right;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  font-weight: bold;
  background-color: #ffffff;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.blog__avatar {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #ffffff;
}

.blog__flex {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  font-family: Gilroy-Medium;
  background-color: #ffffff;
}

.blog__flex img {
  background-color: #ffffff;
}

.blog__flex p {
  background-color: #ffffff;
  margin-top: 43px !important;
}

.modal-content p {
  font-size: 16px;
  color: #777e90;
  font-family: Gilroy-Regular;
  line-height: 30px;
  margin-top: 30px;
  background-color: #ffffff;
}

.modal-content img {
  margin-top: 40px;
  background-color: #ffffff;
}

.p__mobile,
.nav__mobile,
.h__mobile,
.img__mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .nav__class,
  .h__,
  .p__,
  .btn__try-free,
  .img__desk {
    display: none;
  }

  .h__mobile,
  .p__mobile {
    display: block;
  }

  .feature__class {
    margin-top: 80px;
  }

  .feature__class h1 {
    font-size: 40px;
  }

  .feature__class h2 {
    font-size: 20px;
    color: #045e5e;
    font-family: Gilroy-Semibold;
  }

  .cards__class {
    display: block;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
  }

  .card__class {
    margin-top: 16px;
    border-radius: 0px;
  }

  .card__class img {
    width: 100%;
  }

  .card__1 button {
    margin-top: 16px;
    padding: 12px 10px;
    border: 1px solid #045e5e;
    border-radius: 100px;
    text-align: center;
    width: 100%;
    font-family: Gilroy-Bold;
    color: #045e5e;
    font-size: 18px;
    background-color: #ffffff;
    cursor: pointer;
  }

  .modal-content {
    background-color: #ffffff;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    border: 1px solid #888;
    width: 70%;
    max-height: 550px;
    overflow-y: scroll;
    border-radius: 30px;
  }

  .modal-content .img__mobile {
    display: block;
    width: 100%;
  }

  .update__class {
    display: block;
    padding: 0px 16px;
    margin-top: 64px;
  }

  .update__class h1 {
    font-size: 32px;
    color: #1f2a37;
    font-family: Gilroy-Bold;
    margin-top: 40px;
  }

  .update__class p {
    color: #777e90;
    font-family: Gilroy-Regular;
    margin-top: 16px;
    line-height: 28px;
  }

  .update__class-info {
    text-align: center;
  }

  .input__class {
    margin-top: 40px;
    margin-bottom: 24px;
    padding: 7px 7px 7px 18px;
    width: 93%;
    height: 55px;
    border: none;
    border-radius: 100px;
    background-color: #ffffff;
    font-family: Gilroy-Regular;
  }

  .btn__update {
    position: absolute;
    right: 10px;
    top: 57%;
    transform: translateY(-52%);
    border: none;
    background-color: #045e5e;
    color: #ffffff;
    padding: 15px 15px;
    border-radius: 100px;
    font-size: 17px;
    font-family: Gilroy-Semibold;
    cursor: pointer;
    width: 133px;
  }

  .nav__mobile {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    bottom: 0;
  }
  .nav__mobile a {
    text-decoration: none;
    color: #1f2a37;
  }

  .mobile__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
  }

  .mobile__item:hover {
    color: #045e5e;
  }

  .mobile__item p {
    font-family: Gilroy-Medium;
    margin-top: 0px;
  }
}
