@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Additional Styles */
img {
  max-width: 100%;
}

/* Fonts */
@font-face {
  font-family: "TildaSans";
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Light/TildaSans-Light.eot");
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Light/TildaSans-Light.eot#iefix") format("embedded-opentype"), url("/wp-content/themes/addiz/fonts/TildaSans-Light/TildaSans-Light.woff2") format("woff2"), url("/wp-content/themes/addiz/fonts/TildaSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TildaSans";
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Regular/TildaSans-Regular.eot");
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Regular/TildaSans-Regular.eot#iefix") format("embedded-opentype"), url("/wp-content/themes/addiz/fonts/TildaSans-Regular/TildaSans-Regular.woff2") format("woff2"), url("/wp-content/themes/addiz/fonts/TildaSans-Regular/TildaSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TildaSans";
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Medium/TildaSans-Medium.eot");
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Medium/TildaSans-Medium.eot#iefix") format("embedded-opentype"), url("/wp-content/themes/addiz/fonts/TildaSans-Medium/TildaSans-Medium.woff2") format("woff2"), url("/wp-content/themes/addiz/fonts/TildaSans-Medium/TildaSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TildaSans";
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Semibold/TildaSans-Semibold.eot");
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Semibold/") format("embedded-opentype"), url("/wp-content/themes/addiz/fonts/TildaSans-Semibold/TildaSans-Semibold.woff2") format("woff2"), url("/wp-content/themes/addiz/fonts/TildaSans-Semibold/TildaSans-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TildaSans";
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Bold/TildaSans-Bold.eot");
  src: url("/wp-content/themes/addiz/fonts/TildaSans-Bold/TildaSans-Bold.eot#iefix") format("embedded-opentype"), url("/wp-content/themes/addiz/fonts/TildaSans-Bold/TildaSans-Bold.woff2") format("woff2"), url("/wp-content/themes/addiz/fonts/TildaSans-Bold/TildaSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/* Variables */
/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
@media (max-width: 678px) {
  .modal__overlay {
    padding: 0 16px;
  }
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

html {
  font-family: "TildaSans", sans-serif;
}

a {
  text-decoration: none;
  color: #000;
}

input {
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.33;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 15px;
  width: 100%;
}

button {
  outline: none;
  border: 0;
  background: none;
  padding: 0;
}
button:hover {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.btn {
  background-color: #2287b3;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.55;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  border-radius: 28px;
  color: white;
  padding: 13px 48px;
  display: inline-flex;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .btn {
    font-size: 20px;
  }
}
.btn-secondary {
  background: #191a1a;
}

.container {
  max-width: 1116px;
  margin: 0 auto;
}
.container--tight {
  max-width: 970px;
}
.container--fluid {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

.title {
  font-size: 30px;
  font-weight: 500;
  padding-top: 3rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .title {
    font-size: 28px;
    text-align: center;
  }
}

.text--blue {
  color: #2287b3;
}

.subtitle {
  font-size: 18px;
  margin-top: 10px;
  line-height: 24px;
}

.header {
  position: absolute;
  top: 36px;
  width: 100%;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header__logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 135px;
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__menu li {
  font-size: 25px;
  text-transform: uppercase;
}
.header__menu li a {
  font-weight: 300;
}

.hero {
  background: url("/wp-content/themes/addiz/img/prisma.png");
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 130px;
  }
}
.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    gap: 16px;
  }
}
.hero__cover {
  flex-shrink: 0;
  max-width: 479px;
}
.hero__title {
  font-size: 100px;
  text-align: center;
  text-transform: none;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 77px;
    padding-top: 1rem;
  }
}
.hero__description {
  font-size: 28px;
  text-align: center;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .hero__description {
    font-weight: 300;
    max-width: 180px;
    margin-top: 16px;
  }
}
.hero__action {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 60px;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero__action {
    flex-direction: column;
    margin-top: 48px;
  }
}

.features {
  background: url("/wp-content/themes/addiz/img/prisma.png");
  background-size: cover;
}
@media (max-width: 768px) {
  .features {
    padding-bottom: 32px;
    overflow: hidden;
  }
}
.features__subtitle {
  font-size: 24px;
}
.features__items {
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 32px;
  row-gap: 12px;
  min-height: 416px;
  position: relative;
}
@media (max-width: 768px) {
  .features__items {
    flex-direction: column;
    background: none;
    row-gap: 32px;
    padding-top: 4rem;
  }
}
.features__items__left, .features__items__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .features__items__left, .features__items__right {
    gap: 10px;
  }
}
.features__item {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  min-height: 110px;
}
@media (max-width: 768px) {
  .features__item {
    justify-content: flex-start;
  }
  .features__item:nth-child(4) {
    margin-top: 69px;
  }
  .features__item:nth-child(4), .features__item:nth-child(5), .features__item:nth-child(6) {
    justify-content: flex-end;
  }
}
.features__item__name {
  font-size: 30px;
  color: #2287b3;
}
.features__item__description {
  font-size: 18px;
}
.features__item > span {
  background-color: #fafafa;
  border-radius: 15px;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  padding: 12px;
  justify-content: center;
  height: max-content;
  width: 200px;
  gap: 10px;
}
@media (max-width: 768px) {
  .features__item > span {
    width: auto;
  }
}
.features__cover img {
  max-height: 487px;
}

.materials {
  background: url("/wp-content/themes/addiz/img/prisma.png");
  background-size: cover;
}
.materials .text--blue {
  font-size: 30px;
  line-height: 36px;
}
.materials--second-var {
  padding: 75px 0 48px;
}
.materials--second-var .materials__content {
  flex-direction: column-reverse;
}
.materials--second-var .materials__text {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  justify-content: space-between;
}
.materials--second-var .materials__text > div:nth-child(1) .materials__items {
  position: relative;
}
.materials--second-var .materials__text > div:nth-child(1) .materials__items__highlight {
  position: absolute;
  top: 0;
  right: 25px;
}
.materials--second-var .materials__text > div:nth-child(2) .materials__items {
  grid-template-columns: 1fr;
}
.materials--second-var .materials__text > div:nth-child(2) .materials__item:nth-child(even) {
  display: none;
}
.materials__content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .materials__content {
    flex-direction: column;
  }
}
.materials__items {
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 60px;
}
@media (max-width: 768px) {
  .materials__items {
    grid-template-columns: none;
    padding: 0 20px;
  }
}
.materials__items__highlight {
  position: absolute;
  top: 25px;
  right: 0;
  background: #000;
  padding: 10px 10px;
  border-radius: 10px;
  max-width: 240px;
}
.materials__item {
  font-size: 18px;
  line-height: 24px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.materials__cover {
  flex-shrink: 0;
  margin-top: auto;
}

.why {
  background-color: #f4f0ef;
  padding-top: 100px;
}
.why__content {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .why__content {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
.why__cover {
  flex-shrink: 0;
  max-width: 450px;
}
@media (min-width: 1024px) {
  .why__cover img {
    margin-left: -50px;
  }
}
.why__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1rem;
  column-gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .why__items {
    grid-template-columns: none;
    row-gap: 3rem;
  }
}
@media (max-width: 768px) {
  .why__item {
    max-width: 240px;
    margin: 0 auto;
  }
}
.why__item__name {
  font-size: 39px;
  color: #2287b3;
  font-weight: 600;
  text-align: center;
}
.why__item__description {
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
}

.showcase {
  background: url("/wp-content/themes/addiz/img/prisma.png");
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 32px;
}
.showcase__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .showcase__content {
    flex-direction: column;
    row-gap: 2rem;
  }
}
.showcase__card {
  border-radius: 15px;
  background: #fff;
  padding: 16px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  position: relative;
}
.showcase__card::after {
  position: absolute;
  content: "";
  bottom: 80px;
  left: 80px;
  width: 520px;
  height: 5px;
  background: #2287b3;
}
@media (max-width: 768px) {
  .showcase__card::after {
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.showcase__title {
  font-weight: 600;
  font-size: 30px;
}
.showcase__price {
  font-size: 63px;
  font-weight: 600;
  color: #2287b3;
}
.showcase__description {
  font-size: 18px;
  line-height: 24px;
  max-width: 170px;
}
.showcase__cover {
  position: relative;
}
.showcase__cover::after {
  position: absolute;
  bottom: 37%;
  left: 21%;
  content: "";
  width: 32px;
  height: 32px;
  background: #2287b3;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .showcase__cover::after {
    content: none;
  }
}

.whom {
  background: #f4f0ef;
  padding-bottom: 32px;
}
.whom--row {
  padding-top: 48px;
  padding-bottom: 80px;
}
.whom--row .whom__items {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}
@media (max-width: 1024px) {
  .whom--row .whom__items {
    grid-template-columns: none;
  }
}
.whom--row .whom__item__action {
  width: 55px;
  height: 55px;
}
.whom__title {
  text-align: center;
}
.whom__subtitle {
  text-align: center;
  margin-top: 10px;
}
.whom__items {
  display: grid;
  grid-template-columns: none;
  gap: 1rem;
  max-width: 393px;
  margin: 0 auto;
  padding-top: 32px;
}
.whom__item {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 15px;
  background: #fff;
  justify-content: space-between;
  gap: 10px;
}
.whom__item img {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .whom__item img {
    width: 48px;
    height: 48px;
  }
}
.whom__item__name {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .whom__item__name {
    font-size: 23px;
  }
}
@media (min-width: 1024px) {
  .whom__item__action {
    flex-shrink: 0;
  }
}

.contact-us {
  padding-bottom: 48px;
}
.contact-us form {
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-us form {
    flex-direction: column;
  }
}
.contact-us form input[type=submit] {
  border-radius: 15px;
  outline: none;
  border: 0;
  background: none;
  padding: 0;
  background-color: #2287b3;
  margin-bottom: -24px;
  color: white;
  padding: 13px 48px;
  display: inline-flex;
}
.contact-us form input[type=submit]:hover {
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
@media (max-width: 768px) {
  .contact-us form input[type=submit] {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.contact-us .form__field {
  width: 100%;
}
.contact-us__title {
  text-align: center;
}
.contact-us__subtitle {
  max-width: 372px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
}
.contact-us__content {
  max-width: 976px;
  margin: 0 auto;
}
.contact-us__details {
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .contact-us__details {
    flex-direction: column;
    align-items: initial;
    gap: 16px;
  }
}
.contact-us__details > div {
  max-width: 420px;
}

.gallery {
  padding: 48px 0 32px;
  background: #f4f0ef;
}

.swiper-slide img {
  width: 100%;
}
.swiper-wrapper {
  height: auto;
}
.sidebar {
  display: block;
  position: fixed;
  height: 100%;
  width: 60%;
  max-width: 950px;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(51, 51, 51, 0.95);
  transition: 0.3s;
  transform: translateX(-950px);
}
@media screen and (max-width: 768px) {
  .sidebar {
    width: 90%;
  }
}
.sidebar-overlay {
  position: fixed;
  height: 0;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.75);
  z-index: 100;
}
.sidebar .btn-close {
  position: absolute;
  top: 47px;
  right: 51px;
  text-decoration: none;
  fill: white;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 768px) {
  .sidebar .btn-close {
    top: 37px;
    right: 41px;
  }
}
@media screen and (max-width: 768px) {
  .sidebar .btn-close svg {
    width: 24px;
    height: 24px;
  }
}
.sidebar > ul {
  margin-top: 75px;
  margin-left: 80px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .sidebar > ul {
    margin-left: 32px;
  }
}
.sidebar > ul a {
  text-decoration: none;
  display: block;
  color: #fff;
  transition: 0.3s all ease-in-out;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .sidebar > ul a {
    font-size: 20px;
  }
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .nav-burger {
    display: none;
  }
}
.nav-burger:hover span {
  width: 13px;
}
.nav-burger:hover span:nth-child(2) {
  width: 21px;
}
.nav-burger span {
  height: 4px;
  background: #000;
  width: 21px;
  transition: 0.3s all ease-in-out;
}
.nav-burger span:nth-child(2) {
  width: 13px;
}

/*# sourceMappingURL=styles.css.map */
