/* google fonts import url */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Homemade+Apple&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

/* Base css start */
:root {
  /* font-family */
  --font-anton: "Anton", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  --font-homemade-apple: "Homemade Apple", cursive;

  /* colors */
  --dark-green: #20381a;
  --yellow: #d0a63a;
  --text-color: #010101;
  --off-white: #f4efe2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}

a,
button {
  transition: all 0.3s;
}
a {
  text-decoration: none;
  color: inherit;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-inline: 16px;
}

body {
  font-family: var(--font-inter);
  color: var(--text-color);
  line-height: 1.6;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-oswald);
}

h1 {
  font-family: var(--font-anton);
  font-size: 100px;
  line-height: 1.1;
  color: var(--dark-green);
  text-transform: uppercase;
}
h1 span {
  color: var(--yellow);
}

h2 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  line-height: 1.5;
}

h4 {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 6px;
}

h6 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section__header {
  margin-bottom: 70px;
  gap: 30px;
}
.section__header-left {
  max-width: 615px;
}

.section__desc {
  opacity: 0.7;
}
.section__desc--white {
  color: var(--off-white);
}

.section__title--white {
  color: var(--off-white);
}

.theme-btn {
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--font-oswald);
  padding: 11px 24px;
  background-color: var(--bg-color);
  border: 1px solid var(--border);
  color: var(--text-color);
}
.theme-btn:hover {
  box-shadow: 3px 3px 1px 0px var(--shadow-color);
  color: var(--hover-text-color);
}
.theme-btn--primary {
  --bg-color: var(--dark-green);
  --text-color: #fff;
  --border: var(--bg-color);
  --shadow-color: var(--yellow);
  --hover-text-color: #fff;
}
.theme-btn--white {
  --bg-color: var(--off-white);
  --text-color: var(--dark-green);
  --border: var(--dark-green);
  --shadow-color: var(--dark-green);
  --hover-text-color: var(--dark-green);
}
.theme-btn--yellow {
  --bg-color: var(--yellow);
  --border: var(--yellow);
  --text-color: #fff;
  --shadow-color: var(--dark-green);
  --hover-text-color: #000;
}

.section__content-divider {
  width: 238px;
  height: 1px;
  background-color: var(--yellow);
  margin-top: 30px;
}

.thumb__border {
  width: 95px;
  height: 95px;
  border: 1px solid var(--yellow);
  bottom: -24px;
  right: -24px;
}

.slider-nav {
  margin-inline: -26px;
}
.slider-nav-btn {
  width: 66px;
  height: 66px;
  background-color: #fff;
}
.slider-nav-btn img {
  width: 32px;
}
.slider-nav-btn--prev img {
  transform: rotate(180deg);
}
.slider-nav-btn:active {
  transform: scale(0.9);
}
/* Base css end */

/* header start */
.header {
  padding-block: 14px;
}
.header__logo img {
  max-width: 237px;
}
.header__nav {
  gap: 30px;
}
.header__link {
  font-size: 18px;
  color: #fff;
}
.header__link:hover {
  color: var(--yellow);
}


.header__toggle {
  width: 40px;
  height: 40px;
  background-color: var(--yellow);
  color: #fff;
  border-radius: 8px;
}
.header__toggle svg {
	width: 32px;
}

.mobile-menu {
  height: 100vh;
  background-color: var(--dark-green);
  display: none;
}
.mobile-menu.show {
  display: flex;
}
.mobile-menu__nav {
  gap: 30px;
}
.mobile-menu__link {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
}
.mobile-menu__link:hover {
  color: var(--yellow);
}
.mobile-menu__close-btn {
  top: 20px;
  right: 20px;
}
/* header end */

/* hero section start */
.hero {
  min-height: 851px;
  background-image: url("../img/backgrounds/hero-bg.png");
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  width: 80%;
  height: 100%;
  background-image: linear-gradient(270deg, #f7eee400 0%, #f7eee4e3 53.4483%, #f8efe5 82.3276%);
  position: absolute;
  top: 0;
  left: 0;
}
.hero__content {
  max-width: 765px;
}
.hero__desc {
  max-width: 640px;
}
.hero__btns {
  margin-top: 30px;
}
/* hero section end */


/* statistics section start */
.statistics {
  padding-block: 60px;
  background-color: var(--dark-green);
}
.statistics__title {
  font-size: 52px;
  line-height: 1.5;
  color: var(--yellow);
}
.statistics__desc {
  font-size: 18px;
  color: var(--off-white);
  opacity: 0.8;
}
.statistics__item:first-child {
  max-width: 165px;
}
.statistics__item:nth-child(3) {
  max-width: 198px;
}
.statistics__item:nth-child(5) {
  max-width: 124px;
}
.statistics__item:nth-child(7) {
  max-width: 175px;
}
.statistics__divider {
  width: 1px;
  height: 142px;
  background-image: linear-gradient(#f5f0e400 0%,#f4efe2 49.4418%,#f5f0e400 100%);
}
/* statistics section end */

/* article section start */
.article {
  padding-block: 130px;
  background-color: var(--off-white);
}
.article__wrapper {
  gap: 62px;
}
.article__media {
  flex: 1 0 0;
  max-width: 647px;
}
.article__thumb img {
  aspect-ratio: 647/508;
}
.article__content {
  flex: 1 0 0;
  max-width: 491px;
}
.article__media-desc {
  max-width: 528px;
  color: var(--dark-green);
}

.article--serve {
  padding-block: 113px;
  background-color: var(--dark-green);
}
.article--serve .article__content {
  max-width: 510px;
}
.article--serve .article__wrapper {
  gap: 43px;
}
.article--serve .thumb__border {
  top: -22px;
  left: -22px;
  bottom: auto;
  right: auto;
}
.article--why .article__wrapper {
  gap: 56px;
}
.article--why .article__media {
  max-width: 541px;
}
.article--why .article__thumb {
  height: 477px;
}
.article--why .article__thumb img {
  object-position: center top;
}
.article--why .thumb__border {
  width: 100%;
  height: 100%;
  top: 22px;
  left: 22px;
  bottom: auto;
  right: auto;
}
.article--why .article__content {
  max-width: 603px;
}
.article__profile-sign {
  font-size: 28px;
  line-height: 2;
  font-family: var(--font-homemade-apple);
  margin-bottom: 2px;
}
.article__profile-name {
  font-size: 18px;
  line-height: 1.5;
}
/* article section end */


/* work section start */
.work {
  padding-block: 130px;
  background-color: #eae3d0;
}
.work .section__header {
  max-width: 850px;
}
.work__slider {
	margin-right: -5px;
	padding-right: 5px;
}
.work__slide-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}
.work__thumb {
  height: 264px;
}
.work__content {
  flex-grow: 1;
  background-color: var(--off-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.work__title {
  color: var(--dark-green);
  margin-bottom: 10px;
}
.work__content p {
  flex-grow: 1;
}
.text-btn {
  font-family: var(--font-oswald);
  font-size: 18px;
  line-height: 1.5;
  color: var(--yellow);
  gap: 10px;
}
.work__card:hover {
  box-shadow: 3px 3px 1px 0 var(--dark-green);
}
/* work section end */

/* endorsements section start */
.endorsements {
  padding-block: 120px;
  background-color: var(--dark-green);
}
.endorsements__card {
  background-color: var(--off-white);
  padding: 24px;
  gap: 24px;
}
.endorsements__card:not(.swiper-slide-active) {
  opacity: 0.7;
}
.endorsements__thumb {
  max-width: 533px;
  height: 438px;
  flex: 1 0 0;
}
.endorsements__content {
  max-width: 591px;
  flex: 1 0 0;
  height: auto;
}
.endorsements__quote-icon {
  width: 58px;
}
.endorsements__content-wrapper {
  gap: 47px;
}
.endorsements__content h3 {
  color: #2B2B2B;
}
/* endorsements section end */

/* cta section start */
.cta {
  padding-block: 100px 150px;
  background-image: url('../img/backgrounds/cta-bg.png');
  background-size: cover;
  background-position: center;
  background-color: var(--off-white);
}
.cta__content {
  max-width: 815px;
}
.cta__desc {
  max-width: 645px;
  gap: 10px;
  margin-bottom: 40px;
}
/* cta section end */

/* footer start */
.footer {
  background-color: #20301C;
}
.footer__wrapper {
	padding-block: 80px 70px;
	gap: 60px;
}
.footer__logo img {
  width: 281px;
}
.footer__desc {
  margin-block: 22px 32px;
}
.footer p {
  opacity: 0.7;
}
.footer__tos {
  gap: 10px;
}
.footer__tos-link {
  opacity: 0.8;
}
.footer__tos-link:hover {
  opacity: 1;
}
.footer__tos-dot {
  width: 4px;
  height: 4px;
  background-color: #fff;
  opacity: 0.8;
}
.footer__left {
  max-width: 298px;
}
.social-icons {
  gap: 18px;
  margin-bottom: 32px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  color: #fff;
}
.social-icon svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}
.social-icon:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}
.footer__right {
  width: 100%;
  max-width: 500px;
  gap: 42px;
}
.footer__widget-title {
  font-size: 20px;
  line-height: 1.5;
}
.footer__links {
  gap: 12px;
}
.footer__link {
  line-height: 1.5;
  opacity: 0.7;
}
.footer__link:hover {
  color: var(--yellow);
  opacity: 1;
}
.footer__widget-subtitle {
  font-size: 14px;
}
.footer__contact {
  gap: 12px;
}
.footer__contact-icon {
  width: 32px;
  height: 32px;
  color: #fff;
  border: 1px solid #fff;
}
.footer__contact-icon svg {
  fill: currentColor;
  width: 14px;
  height: 14px;
}
.footer__contact-info a:hover {
  color: var(--yellow);
}
.footer__divider {
  height: 1px;
  background-image: linear-gradient(90deg,#fff0 0%,#fff 50%,#fff0 100%);
}
.footer__copyright {
  padding-block: 17px;
}
/* footer end */