@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Italic.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #48557A;
  background-color: #FFFFFF;
}

a {
  text-decoration: none;
  color: #48557A;
}

input[type="search"]::-webkit-search-cancel-button {
  appearance: none;
  -webkit-appearance: none;
}

input {
  border: none;
}

input:focus,
button:focus {
  outline: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
p,
span {
  padding: 0;
  margin: 0;
}


.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-section {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  margin: 0 16px;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 466px;
  text-align: center;
  gap: 24px;
}

.reviews-header-text {
  width: fit-content;
  height: 35px;
  padding: 8px 12px;
  border-radius: 12px;
  background-color: #e0f0ff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;

  color: #0077b6;
  align-content: center;
}

.reviews-header-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  margin: 0;
  color: #242F4C;
}

.reviews-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;

  margin: 0;
  max-width: 600px;
}





.reviews {
  max-width: 1110px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.review {
  width: 354px;
  height: fit-content;
  gap: 10px;
  border: 1px solid #E2E2E9;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-avatarName {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #E5F1FB;
  color: #2196C9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;

  margin-right: 11.5px;
}

.review__name {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;

  margin: 0;
  color: #0C3A51;
}

.review__text {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px;

  color: #0C3A51;
  margin: 0;
}

.review-stars {
  width: 119px;
  height: 19px;
}



/* Media Queries */
        @media (max-width: 1200px) {
        }

        @media (max-width: 992px) {
        }

        @media (max-width: 768px) {
        }

        @media (max-width: 576px) {
          .reviews-header {
            width: 366px;
          }
          .reviews-description {
            width: 70%;
            padding: 0 10px;
          }
          .review {
            width: 304px;
            padding: 14px;
          }
        }