* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  font-family: "Inter", sans-serif;
}

.container {
  padding-inline: 150px;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

nav {
  border-bottom: 1px solid;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

nav div img {
  width: 100px;
  object-fit: contain;
}

.nav-items {
  display: flex;
  flex-direction: row;
  column-gap: 90px;
}

.nav-items ul {
  display: flex;
  list-style: none;
  column-gap: 20px;
  align-items: center;
}

.nav-items ul li a {
  text-decoration: none;
  color: black;
}

.primary-btn {
  background: #5f90a5;
  border: 1px;
  padding: 10px;
  padding-inline: 25px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.secondary-btn {
  background: #ffffff;
  border: 1px solid #5f90a5;
  padding: 10px;
  padding-inline: 25px;
  color: black;
  border-radius: 5px;
  cursor: pointer;
}

/* Hero section */
.hero {
  display: flex;
  column-gap: 10px;
  height: 80vh;
}

.hero div {
  width: 50%;
}

.hero .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
  padding-right: 60px;
}

.hero .text h1 {
  font-size: 3em;
  font-weight: bolder;
  color: #5f90a5;
}

.hero .text div {
  width: 100%;
  display: flex;
  column-gap: 10px;
}

.hero .image {
  display: flex;
  justify-content: flex-end;
}

.hero div img {
  width: 70%;
  object-fit: contain;
}

/* About */
.about {
  background: #cfcfe1;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about .description {
  display: flex;
}

.about .description div {
  width: 50%;
}

.aboutus {
  display: flex;
  flex-direction: column;
}

.aboutus span {
  font-size: 18px;
  font-weight: 700;
}
.aboutus h2 {
  font-size: 3em;
  font-weight: bolder;
}

.about .image {
  width: 100%;
  margin-top: 40px;
}

.about .image img {
  width: 100%;
  object-fit: contain;
}

/* Offers */
.offers {
  padding-top: 100px;
  padding-bottom: 100px;
}

.offers .title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 42px;
  max-width: 70%;
}

.offers .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offers .grid .card {
  border-radius: 8px;
}

.offers .grid .card .card-title {
  font-size: 1.5rem;
  font-weight: bolder;
  margin-bottom: 16px;
}

.offers .grid .card .card-description {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.offers .grid .card .read-more {
  color: #3182ce;
  text-decoration: none;
  transition: color 0.3s ease;
}

.offers .grid .card .read-more:hover {
  color: #63b3ed;
}

/* testimonials */
.testimonials {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.testimonials .title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.testimonials .subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.author-name {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: bold;
  max-width: 180px;
  text-align: center;
}

/* Team */
.teams {
  padding-top: 100px;
  padding-bottom: 100px;
}

.teams .title {
  font-size: 2.5rem;
  font-weight: bold;
}

.teams .subtitle {
  font-size: 1.125rem;
  margin-top: 10px;
  margin-bottom: 30px;
}

.teams .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.teams .grid .card {
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  column-gap: 15px;
}

.teams .grid .card .avatar {
  width: 200px;
  margin-bottom: 16px;
}

.teams .grid .card .name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.teams .grid .card .role {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 8px;
}

.teams .grid .card .description {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 16px;
}

.teams .grid .card .social-links {
  display: flex;
  justify-content: flex-start;
}

.teams .grid .card .social-links a {
  color: #4a5568;
  margin-right: 10px;
}

.teams .grid .card .social-links a:last-child {
  margin-right: 0;
}

.teams .grid .card .social-links a:hover {
  color: #0b5fff;
}

/* Shedule */
.shedule {
  background: #cfcfe1;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.shedule .card {
  background-color: #fff;
  padding: 20px;
  width: 100%;
  padding-inline: 120px;
  background-color: transparent;
  border: 2px solid green;
}

.shedule .card .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.shedule .card .description {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 30px;
  max-width: 700px;
}

.shedule .card .button-container {
  text-align: center;
}


/* Contact */
.contact {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact .subtitle{
  margin-bottom: 30px;
}
.form{
  display: flex;
  flex-direction: row;
  column-gap: 50px;
}

.form .left, .form .right{
  width: 50%;
  padding-right: 10px;
}

.form .left form{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form .left form div{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form .left form .check{
  display: flex;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-top: 10px;
}

.form .left form input{
  padding: 6px;
  border-radius: 2px;
  outline: none;
  border: 1px solid gray;
}

.form .left form textarea{
  padding: 6px;
  border-radius: 2px;
  outline: none;
  border: 1px solid gray;
}

.form .left form .check input{
  width: 15px;
  height: 15px;
}

.form .left form button{
  width: fit-content;
  margin-top: 10px;
}
.form .left input{
  width: 100%;
}

.form .right{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: fit-content;
  gap: 40px;
}
.form .right .card{
  display: flex;
  flex-direction: column;
}

.form .right .card .title{
  font-weight: bold;
  margin-top: 10px;
}

.form .right .card div{
  margin-top: 10px;
  gap: 2px;
  display: flex;
  flex-direction: column;
}


/* Footer Section */
.footer{
  background-color: #000;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.footer .top{
  display: flex;
}

.footer .top .newsletter{
  width: 40%;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.footer .top .menu, .footer .top .socials{
  width: 30%;
  margin-left: 50px;
}


.footer .top .newsletter input{
  padding: 10px;
  width: 70%;
}

.footer .top .newsletter button{
  padding: 10px;
  background: #5F90A5;
  color: white;
  outline: none;
  border: none;
  padding-inline: 15px;
}

.footer .menu span, .footer .socials span{
  font-size: 22px;
  font-weight: 600;
}

.footer .top ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 25px;
}

.footer .top ul a{
  text-decoration: none;
  margin-bottom: 20px;
}

.footer .top .socials ul a{
  text-decoration: none;
  margin-bottom: 20px;
  margin-left: 10px;
}
.footer .bottom{
  display: flex;
  justify-content: space-between;
}

.footer .bottom ul{
  list-style: none;
  display: flex;
  column-gap: 30px;
}

li a{
  color: white;
  display: flex;
  column-gap: 10px;
  align-items: center;
}
