@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: Poppins, sans-serif;
  color: var(--primary);
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
p,
a,
input,
select,
button {
  font-size: 1.6rem;
}
p {
  opacity: 0.8;
}
img,
video {
  width: 100%;
}
button {
  padding: 1.5rem 3rem;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 5rem;
}
.container {
  max-width: 1240px;
  margin: auto;
  width: 100%;
  padding: 0px 2rem;
}
:root {
  --primary: #031c0f;
  --secoundary: #00c25e;
  --lite-bg: #d4ffe9;
  --title: 5rem;
  --title-semi: 4rem;
  --subtitle: 2.5rem;
  --title-sm: 1.6rem;
}
[class*="title"] {
  font-family: Montserrat, sans-serif;
  text-transform: capitalize;
}
header {
  height: 8rem;
  width: 100%;
  left: 0px;
  top: 0px;
  position: fixed;
  z-index: 999;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.03) 0px 4px 6px -2px;
  padding: 0px 5rem;
}
.logo img {
  height: 6rem;
  display:inline-block;
  max-width:12rem;
}
header .container,
header .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
  max-width: 100%;
}
button.empty {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease 0s;
  background: transparent;
  border: 1px solid var(--primary);
}
button.empty i {
  color: var(--secoundary);
}
button.empty::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: var(--primary);
  z-index: -1;
  transition: all 0.3s ease 0s;
}
button.empty:hover {
  color: white;
}
button.empty:hover i {
  color: white;
}
button:hover::after {
  transform: translateX(0px);
}
button i {
  color: var(--secoundary);
}
main {
  background: linear-gradient(#02180dca, #031c0f) center center / cover
      no-repeat,
    url("images/banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 80vh;
}
.grid {
  height: 80vh;
}
.main-typo span {
  color: var(--secoundary);
}
.main-typo h1 {
  font-size: var(--title);
  font-weight: 800;
  line-height: 1.1;
  color: white;
}
.main-typo small {
  font-size: var(--title-sm);
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  word-spacing: 0.5rem;
  color: white;
}
.main-typo button {
  background: var(--secoundary);
  color: white;
  transition: all 0.3s ease 0s;
}
.main-typo button:hover {
  letter-spacing: 1.5px;
}
.main-typo p {
  margin: 2rem 0px;
  color: white;
  font-size: 2rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
section {
  padding: 10rem 0px;
}
[class*="grid"] {
  display: grid;
  gap: 5rem;
}
.typo {
  text-align: center;
  width: 60%;
  margin: auto auto 8rem;
}
.title {
  font-size: var(--title-semi);
  font-weight: 800;
  margin-bottom: 1rem;
}
.title span {
  color: var(--secoundary);
  font-weight: 700;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  text-align: center;
  padding: 0px 2.5rem;
}
.card h3 {
  font-size: var(--subtitle);
  text-transform: capitalize;
}
.ico {
  width: 6rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--i);
  margin: auto auto 2rem;
}
.card .ico i {
  color: var(--g);
}
.grid-3 .card {
  border-right: 1px solid var(--lite-bg);
}
.grid-3 .card:last-child {
  border: unset;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.left .typo {
  text-align: left;
  width: 100%;
  margin-bottom: 0px;
}
.details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin: 2.5rem 0px;
}
.details .ico {
  background: var(--lite-bg);
  margin: unset;
}
.details h3 {
  font-size: var(--title-sm);
}
.grid-4 {
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  gap: 0px;
  align-items: center;
}
.grid-4 .item {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--lite-bg);
  border-right: 1px solid var(--lite-bg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.item i {
  font-size: 2.5rem;
  color: var(--secoundary);
}
.item h3 {
  font-size: var(--title-sm);
}
.grid-4 .item:nth-child(2) {
  border-right: unset;
}
.grid-4 .item:nth-child(4) {
  border-right: unset;
}
.grid-4 .item:nth-child(6) {
  border-right: unset;
}
.grid-4 .item:nth-child(8) {
  border: unset;
}
.grid-4 .item:nth-child(7) {
  border-bottom: unset;
}
.swiper-slide {
  gap: 5rem;
  position: relative;
  align-items: center;
  background: linear-gradient(140deg, rgb(0, 20, 57), rgb(1, 36, 101));
  padding: 5rem;
  border-radius: 2rem;
  display: grid !important;
  grid-template-columns: 1fr 1.5fr !important;
}
.profile {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 2rem;
}
.profile img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.material-icons-outlined {
  position: absolute;
  right: 5rem;
  top: 0px;
  color: var(--secoundary);
  font-size: 10rem !important;
}
.contents p,
.contents h2 {
  color: white;
}
.contents h2 {
  font-size: var(--title-semi);
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid var(--lite-bg);
  width: fit-content;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.name span {
  color: var(--secoundary);
  font-size: 2rem;
  font-weight: 600;
}
.swiper-pagination-bullet-active {
  background: white !important;
}
.swiper-pagination-bullet {
  background: white !important;
}
form {
  background: white;
  margin: auto;
  padding: 3rem;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 2rem;
}
input,
select {
  padding: 1.3rem 3rem;
  width: 100%;
  border: 2px solid black;
  margin-bottom: 1rem;
  border-radius: 5rem;
}
select {
  appearance: none;
  border: none;
  height: 100%;
  margin-bottom: 0;
}
.select {
  border: 2px solid black;
  border-radius: 5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-right: 1rem;
  position: relative;
}
.select i {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
form button {
  width: 100%;
  background: black;
  color: white;
  margin-top: 2rem;
}
form button i {
  color: white;
}
.form-group {
  font-size: 1.6rem;
  color: var(--primary);
  opacity: 1;
  text-align: center;
  margin-bottom: 2rem;
}
footer {
  padding: 3rem;
  background: var(--primary);
}
footer p {
  color: white;
  font-size: 1.3rem;
  margin-top: 2rem;
}
.social {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.pp {
  color: white;
  opacity: 0.5;
}
.social i {
  color: white;
  font-size: 2.5rem;
}
.menu {
  display: none;
}
section a,
footer a {
  color: var(--secoundary);
}
form .title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
}

@media (max-width: 991px) {
  html {
    font-size: 45%;
  }
}
@media (max-width: 660px) {
  html {
    font-size: 60%;
  }
  :root {
    --title: 3rem;
    --title-semi: 2.3rem;
    --subtitle: 2rem;
    --title-sm: 1.6rem;
  }
  section {
    padding: 5rem 0px;
  }
  header {
    padding: 0;
  }
  header .links {
    position: fixed;
    width: 100%;
    height: calc(100vh - 8rem);
    top: 8rem;
    left: 0px;
    background: var(--lite-bg);
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    transform: translateX(100%);
    transition: all 0.5s ease 0s;
  }
  .links.active {
    transform: translateX(0px) !important;
  }
  .menu {
    display: block;
    font-size: 3rem;
  }
  [class*="grid"] {
    grid-template-columns: 1fr !important;
  }
  main .main-typo {
    width: 100%;
    text-align: center;
  }
  main {
    height: fit-content;
    margin-top: 6rem;
    padding: 10rem 0px;
  }
  main .grid {
    gap: 5rem;
    height: fit-content;
  }
  .main-typo h1,
  .main-typo small,
  .main-typo p {
    color: white;
  }
  .typo,
  .details,
  form {
    width: 100%;
  }
  form {
    padding: 3rem;
  }
  .swiper-slide {
    padding: 5rem 2rem;
    grid-template-columns: 1fr !important;
  }
  .card,
  .item {
    border: unset !important;
  }
  .item {
    justify-content: center;
    background: var(--lite-bg);
    margin: 1rem 0px;
  }
  button.empty {
    background: var(--primary);
    color: white;
  }
  .fix {
    grid-area: 1 / 1 / 2 / 2;
  }
  .row {
    grid-template-columns: 1fr;
  }
  main .main-typo p {
    font-size: 1.6rem;
  }
  main .main-typo button {
    margin: auto;
  }
  form h2 {
    text-align: center;
  }
}
.adj {
  grid-template-columns: 1fr 1.3fr;
}
