@import "./header.css";
@import "./footer.css";

:root {
  --cl-primary: #3f51b5;
  --cl-primary-light: #dfe2f7;
  --cl-primary-dark: #3c4991;
  --cl-white: #fff;
  --cl-black: #121212;
  --cl-background-primary: #f7f7f7;
  --cl-border: #e0e0e0;
  --cl-red: #d40816;
  --cl-red-dark: #9c0e18;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

input:focus,
button:focus {
  outline: none;
}

a {
  text-decoration: none;
}

.c-logo {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: var(--cl-black);
}

.box {
  max-width: calc(1000px + 32px);
  width: 100%;
  margin: 0 auto;
  padding-inline: 16px;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1 1 auto;
  margin-top: 63px;
}

.c-grid.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.c-section-inner {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-section-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: var(--cl-black);
}

.section-hero {
  max-width: calc(2400px + 32px);
  width: 100%;
  padding: 16px;
  height: calc(100vh - 63px);
  margin-inline: auto;
  max-height: 1000px;
}

.section-hero-inner {
  background-color: var(--cl-primary);
  height: 100%;
  border-radius: 12px;
}

.section-ad {
  max-width: calc(2400px + 32px);
  width: 100%;
  padding: 16px;
}

.section-ad-inner {
  background-color: var(--cl-primary);
  height: 300px;
  border-radius: 8px;
}

.whyus-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whyus-card-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--cl-black);
}

.whyus-card-icon svg {
  max-width: 40px;
  width: 100%;
  height: 40px;
  color: var(--cl-black);
}

.c-form {
  width: 100%;
  display: flex;
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
}

.c-form input {
  width: 100%;
  padding: 16px;
  border: none;
  border: 1px solid var(--cl-border);
  border-radius: 6px 0 0 6px;
}

.c-form button {
  background-color: var(--cl-primary);
  color: var(--cl-white);
  border: none;
  padding: 0 32px;
  cursor: pointer;
  border: 1px solid var(--cl-primary);
  border-radius: 0 6px 6px 0;
}
