/* Modern CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  font-size: 1rem;
  width: 100%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 6px;
  }
}

body {
  line-height: 1;
  font-size: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  font-family: var(--font-family-base);
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

button {
  background-color: transparent;
  border: none;
}

.no-list-style {
  list-style: none;
}

:root {
  /* base variables */
  --base-font-size: 1rem;
  /* base font size */
  --font-family: "Montserrat", sans-serif;
  --color-primary: #214c3d;
  --color-secondary: #82863c;
  --color-white: #ffffff;
}

h1 {
  font-size: 110px;
  font-size: 6.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 98%;
}

h2 {
  font-size: 80px;
  font-size: 5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 80%;
  /* 64px */
  letter-spacing: -2.4px;
}

h3 {
  font-size: 50px;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 95%;
  letter-spacing: -0.5px;
  font-family: "Barlow Condensed";
}

h4 {
  font-size: 26px;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

h5 {
  font-size: 22px;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 124%;
}

h6 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
}

.site-header {
  background-color: var(--color-primary);
  padding: 0 2rem;
  font-family: var(--font-family);
}
.site-header__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  max-width: 135px;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  .site-header__logo {
    max-width: 120px;
  }
}
@media screen and (max-width: 545px) {
  .site-header__logo {
    max-width: 100px;
  }
}
.site-header__lang {
  position: relative;
  padding: 1rem 0;
  display: flex;
}
@media screen and (min-width: 768px) {
  .site-header__lang:hover .navigation-dropdown {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .site-header__lang.active svg {
    rotate: 180deg;
  }
}
.site-header__lang .language-flag {
  min-width: 20px;
}
.site-header__lang .language-flag img {
  width: 100%;
}
.site-header__lang-btn {
  background: none;
  border: none;
  color: var(--color-white);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .site-header__lang-btn:hover {
    color: var(--color-secondary);
  }
  .site-header__lang-btn:hover svg {
    rotate: 180deg;
  }
}
.site-header__lang-btn svg {
  transition: all 0.3s ease;
}
.site-header__lang-btn-inner {
  background: none;
  border: none;
  color: var(--color-white);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}
.site-header .navigation-dropdown {
  position: absolute;
  top: 100%;
  background: var(--color-secondary);
  width: 200px;
  padding: 20px;
  right: 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .site-header .navigation-dropdown {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .site-header .navigation-dropdown.active {
    display: block;
  }
}
.site-header .navigation-dropdown .site-header__lang-btn-inner:hover {
  color: var(--color-primary);
}

.footer {
  padding: 30px 0;
  font-family: var(--font-family);
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 0;
  }
}
.footer__content {
  max-width: 550px;
  margin: 0 auto;
}
.footer__text {
  text-align: center;
  font-size: 18px;
  color: var(--color-primary);
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
.footer .contact-details {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .footer .contact-details {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer .contact-details {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
}
.footer .contact-details > div {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .footer .contact-details > div {
    max-width: 100%;
    text-align: center;
  }
}
.footer .contact-details .email-info {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer .contact-details .email-info a {
  color: var(--color-primary);
}
.footer .contact-details .email-info a:hover {
  color: var(--color-secondary);
}
.footer .contact-details .email-info svg {
  max-width: 10px;
}
@media screen and (max-width: 768px) {
  .footer .contact-details .email-info {
    margin-top: 30px;
  }
}
.footer .contact-details .phone-info p {
  color: var(--color-primary);
}

.main-banner {
  font-family: var(--font-family);
  min-height: calc(100vh - 250px);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  background-position: center;
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  .main-banner {
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .main-banner {
    min-height: calc(100vh - 75px);
  }
}
.main-banner__title {
  font-size: 50px;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 50px;
  word-break: break-word;
}
@media screen and (max-width: 1024px) {
  .main-banner__title {
    font-size: 33px;
    line-height: 33px;
  }
}
.main-banner__description {
  color: var(--color-white);
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
}

.btn {
  font-family: "Barlow";
  display: inline-flex;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  padding: 15px 21px 15px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--Yellow);
  color: var(--Black);
  text-decoration: none;
  transition: 0.2s ease;
}
.btn .btn-icon {
  max-width: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.btn:hover .btn-icon {
  max-width: 40px;
}
/*# sourceMappingURL=main.css.map */
