/*
Theme Name: CustomTheme
Theme URI: https://wordpress.org/themes/CustomTheme/
Author: the Rost team
Author URI: http://rost.com.ua/
Description: CustomTheme brings your site to life with immersive featured images and subtle animations. Our default theme works great in many languages, for any abilities, and on any device.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: CustomTheme
Tags: custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Light.ttf") format("TrueType");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Regular.ttf") format("TrueType");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Medium.ttf") format("TrueType");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-SemiBold.ttf") format("TrueType");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Bold.ttf") format("TrueType");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter_18pt-Regular.ttf") format("TrueType");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter_24pt-Medium.ttf") format("TrueType");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter_18pt-SemiBold.ttf") format("TrueType");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter_18pt-Bold.ttf") format("TrueType");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter_24pt-ExtraBold.ttf") format("TrueType");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Monospace";
  font-size: 16px;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 48px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 20px;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1162px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: auto;
  margin-right: auto;
}

.d-none {
  display: none;
}

.btn-burger {
  width: 38px;
  height: 24px;
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  display: none;
  position: relative;
}
.btn-burger span {
  height: 3px;
  width: 100%;
  display: block;
  background-color: #B00000;
}
.btn-burger span::before, .btn-burger span::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #B00000;
  top: -1px;
  left: 0;
  transition: 0.3s;
}
.btn-burger span::after {
  top: initial;
  bottom: -1px;
}
.btn-burger.active span {
  background-color: transparent;
  position: fixed;
  width: 38px;
  height: 24px;
}
.btn-burger.active span:before, .btn-burger.active span:after {
  transform: rotate(45deg) translate(8px, 8px);
  background-color: #B00000;
}
.btn-burger.active span:after {
  transform: rotate(-45deg) translate(8px, -8px);
}

.custom-button {
  font-size: 14px;
  padding: 12px 18px;
  border: 1px solid #000;
  border-radius: 8px;
  transition: 0.3s;
}
.custom-button:hover {
  background-color: #B00000;
  border: none;
  color: #fff;
}
.custom-button_red {
  background-color: #B00000;
  border: none;
  color: #fff;
  transition: 0.3s;
}
.custom-button_red:hover {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}

.content-block {
  max-width: 560px;
}
.content-block h3 {
  font-family: "Inter";
  font-weight: 800;
  line-height: 64px;
}
.content-block p {
  font-family: "Inter";
  font-size: 18px;
  line-height: 32px;
}

header {
  margin: 42px 0 80px;
}
header .container {
  display: flex;
  gap: 66px;
  align-items: center;
}
header .header-nav {
  display: grid;
  grid-template-columns: 3fr 1fr 1.5fr 3fr 1.5fr 2fr;
  align-items: center;
  position: relative;
}
header .header-nav:before {
  content: "";
  position: absolute;
  top: 24px;
  right: 178px;
  background-color: #DAD8D8;
  width: 1px;
  height: 19px;
}
header .header-nav__link > span {
  position: relative;
  display: inline-block;
}
header .header-nav__link > span::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%) scale(0);
  background-color: #B00000;
  transition: 0.3s ease-in-out;
}
header .header-nav__link:hover > span::after {
  transform: translate(-50%) scale(1);
}
header .header-nav a[href="tel:+2349067322844"] {
  display: flex;
  align-items: center;
}
header .header-nav a[href="tel:+2349067322844"] .icon-svg {
  width: 20px;
  height: 20px;
  stroke: #B00000;
  color: transparent;
}

.banner {
  margin-bottom: 80px;
}
.banner .container {
  display: flex;
  gap: 54px;
  position: relative;
}
.banner .container::before {
  content: "";
  position: absolute;
  top: 390px;
  right: -12px;
  width: 72px;
  height: 72px;
  background-image: url(./assets/img/triangle-big.png);
  z-index: 1;
}
.banner .container::after {
  content: "";
  position: absolute;
  top: 62px;
  right: -12px;
  width: 40px;
  height: 40px;
  background-image: url(./assets/img/triangle-small.png);
}
.banner .tabs {
  max-width: 608px;
}
.banner .tabs__nav {
  margin-bottom: 26px;
  display: flex;
  gap: 24px;
  position: relative;
}
.banner .tabs__nav:before {
  content: "";
  position: absolute;
  background-color: #e5e5e5;
  bottom: 0;
  width: 262px;
  height: 1px;
  z-index: -1;
}
.banner .tabs__button {
  font-family: "Poppins";
  font-size: 15px;
  color: #D6D4D4;
  font-weight: 600;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.banner .tabs__button.active {
  color: #B00000;
  border-bottom: 2px solid;
}
.banner .tabs__content {
  margin-bottom: 60px;
  display: none;
}
.banner .tabs__content.active {
  display: block;
}
.banner .tabs__content h2 {
  line-height: 77.5px;
  margin-bottom: 24px;
}
.banner .tabs__content p {
  color: #808080;
  line-height: 28px;
  max-width: 438px;
}
.banner .tabs__buttons {
  gap: 24px;
  display: flex;
}
.banner__img {
  position: relative;
}
.banner__img::before {
  content: "";
  position: absolute;
  top: 62px;
  right: -12px;
  width: 40px;
  height: 40px;
  background-image: url(./assets/img/triangle-small.png);
  top: 303px;
  left: -26px;
  transform: rotate(90deg);
}

.why-us {
  margin-bottom: 132px;
}
.why-us__top {
  display: flex;
  gap: 92px;
  margin-bottom: 118px;
}
.why-us__images {
  display: flex;
  max-width: 614px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.why-us__bottom {
  display: flex;
  justify-content: space-around;
}
.why-us__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
}
.why-us__card h5 {
  margin-bottom: 4px;
  text-align: center;
}
.why-us__card p {
  text-align: center;
}
.why-us__icon {
  margin-bottom: 12px;
}

.pricing {
  margin-bottom: 106px;
}
.pricing h3 {
  max-width: 650px;
  text-align: center;
  margin: 0 auto 38px;
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
}
.pricing h5 {
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
}
.pricing__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
  gap: 26px;
}
.pricing__toggle-monthly, .pricing__toggle-yearly {
  font-size: 26px;
}
.pricing__toggle-switch input {
  display: none;
}
.pricing__toggle-switch input:checked + .pricing__toggle-slider {
  background-color: #fff;
  border: 1px solid #B00000;
}
.pricing__toggle-switch input:checked + .pricing__toggle-slider:before {
  transform: translate(42px, -14px);
  background-color: #B00000;
  transition: 0.3s;
}
.pricing__toggle-slider {
  width: 93px;
  height: 50px;
  display: block;
  background-color: #B00000;
  border-radius: 74px;
  position: relative;
}
.pricing__toggle-slider:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 10px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50px;
  transform: translate(0px, -50%);
  transition: 0.3s;
}
.pricing__toggle-discount {
  background-color: #FFE87A;
  border-radius: 8px;
  padding: 8px;
  font-size: 10px;
  font-weight: 500;
}
.pricing .tabs__nav {
  display: flex;
  max-width: 856px;
  margin: 0 auto 86px;
}
.pricing .tabs__button {
  font-size: 30px;
  font-weight: 600;
  border: none;
  background-color: transparent;
  width: 50%;
  line-height: 40px;
  border-bottom: 4px solid #D6D4D4;
  cursor: pointer;
}
.pricing .tabs__button.active {
  border-bottom: 4px solid #B00000;
}
.pricing .tabs__content {
  display: none;
}
.pricing .tabs__content.active {
  display: flex;
  justify-content: space-between;
}
.pricing .tabs__content-card {
  max-width: 300px;
  border: 2px solid #D6D4D4;
  border-radius: 15px;
  padding: 34px 34px 48px;
}
.pricing .tabs__content-card h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.pricing .tabs__content-card p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 28px;
}
.pricing .tabs__content-card button {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 52px;
  border: 2px solid;
  border-radius: 12px;
  cursor: pointer;
  background-color: transparent;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.pricing .tabs__content-card button:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #B00000;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border: none;
  z-index: -1;
  transition: transform 0.4s ease;
}
.pricing .tabs__content-card button:hover:before {
  transform: translate(-50%, -50%) scale(1);
}
.pricing .tabs__content-card button:hover {
  color: #fff;
}
.pricing .tabs__content-card li {
  font-family: "Inter";
  font-weight: 700;
  color: #808080;
  margin-bottom: 16px;
  display: flex;
}
.pricing .tabs__content-card li:last-child {
  margin-bottom: 0;
}
.pricing .tabs__content-card li img {
  margin-right: 24px;
  width: 24px;
  height: 24px;
}
.pricing .tabs__content-price {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 36px;
}
.pricing .tabs__content-price span {
  font-size: 14px;
  font-weight: 300;
  display: block;
}

.testimonials {
  margin-bottom: 106px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 30px;
  align-items: start;
  padding: 56px 116px 0 160px;
  margin-bottom: 84px;
  position: relative;
}
.testimonials__grid:before {
  content: "";
  position: absolute;
  top: 0;
  left: 62px;
  width: 142px;
  height: 120px;
  background-image: url(./assets/img/capital-quotation-marks.svg);
  z-index: -1;
  filter: opacity(0.3);
}
.testimonials__card {
  padding: 40px 32px 14px;
  max-width: 340px;
  box-shadow: 0 10px 20px 0 rgba(41, 41, 42, 0.07);
}
.testimonials__card:nth-child(2) {
  margin-top: 48px;
}
.testimonials__card:nth-child(3) {
  justify-self: end;
  margin-top: -260px;
}
.testimonials__card-logo {
  margin: 0 0 16px 28px;
}
.testimonials__card-blockquote {
  display: flex;
}
.testimonials__card-blockquote .blockquote__img {
  margin-right: 16px;
}
.testimonials__card-blockquote .blockquote-text {
  font-family: "Inter";
  line-height: 32px;
  margin-bottom: 24px;
}
.testimonials__card-blockquote .blockquote-author {
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
.testimonials__card-blockquote .blockquote-job {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  color: #808080;
}
.testimonials__logos {
  display: flex;
  justify-content: space-between;
}
.testimonials__logos .content-block {
  max-width: 445px;
}
.testimonials__logos .content-block h3 {
  margin-bottom: 8px;
}
.testimonials__logo-images {
  max-width: 490px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 65px;
  margin-top: -34px;
}

.cta .container {
  background-color: #F7FAFE;
  padding: 80px 90px 88px 118px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cta .container::before {
  content: "";
  position: absolute;
  top: 390px;
  right: -12px;
  width: 72px;
  height: 72px;
  background-image: url(./assets/img/triangle-big.png);
  z-index: 1;
  right: -26px;
  top: 320px;
}
.cta .container::after {
  content: "";
  position: absolute;
  top: 62px;
  right: -12px;
  width: 40px;
  height: 40px;
  background-image: url(./assets/img/triangle-small.png);
  top: 0;
  right: 724px;
}
.cta h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  font-weight: 600;
  color: #2E2E2E;
}
.cta h2::before {
  content: "";
  position: absolute;
  top: 62px;
  right: -12px;
  width: 40px;
  height: 40px;
  background-image: url(./assets/img/triangle-small.png);
  top: 224px;
  left: -132px;
  transform: rotate(90deg);
}
.cta a {
  display: inline-flex;
  max-width: 208px;
}
.cta a .icon-svg {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

footer {
  height: 100px;
  margin-top: auto;
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 12px;
  }
  header {
    margin: 28px 0 40px;
  }
  header .header-logo {
    margin-left: auto;
  }
  header .header-logo img {
    width: 70px;
  }
  header .header-nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    background-color: #000;
    gap: 24px;
    padding: 54px 40px 40px;
    z-index: 15;
    transition: right 0.5s ease-in-out;
    grid-template-columns: none;
  }
  header .header-nav::before {
    display: none;
  }
  header .header-nav.show {
    right: 0;
    display: flex;
    visibility: visible;
    opacity: 1;
  }
  header .header-nav__link {
    color: #fff;
    font-size: 14px;
  }
  header .header-nav__link:hover {
    color: #B00000;
  }
  header .header-nav__link span::after {
    display: none;
  }
  h2 {
    font-size: 30px;
    text-align: center;
  }
  h3 {
    font-size: 26px;
    text-align: center;
  }
  .custom-button {
    font-size: 10px;
    padding: 10px 16px;
    border-radius: 4px;
  }
  .btn-burger {
    width: 30px;
    height: 20px;
    display: block;
    z-index: 100;
  }
  .btn-burger.active span {
    width: 30px;
    height: 24px;
  }
  .content-block p {
    font-size: 12px;
    line-height: 23px;
    text-align: center;
  }
  .banner {
    margin-bottom: 40px;
  }
  .banner .container::before, .banner .container::after {
    content: none;
  }
  .banner .tabs {
    max-width: 450px;
    margin: 0 auto;
  }
  .banner .tabs__nav {
    margin-bottom: 130px;
    gap: 16px;
    justify-content: center;
  }
  .banner .tabs__button {
    font-size: 12px;
  }
  .banner .tabs__content {
    margin-bottom: 30px;
  }
  .banner .tabs__content h2 {
    line-height: 41.5px;
    margin-bottom: 13px;
    text-align: center;
  }
  .banner .tabs__content p {
    line-height: 23px;
    text-align: center;
  }
  .banner .tabs__buttons {
    gap: 18px;
    justify-content: center;
  }
  .banner__img {
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .banner__img::before {
    content: none;
  }
  .banner__img img {
    width: 126px;
    height: 108px;
  }
  .why-us {
    margin-bottom: 40px;
  }
  .why-us__top {
    gap: 28px;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: center;
  }
  .why-us__images {
    max-width: 300px;
    align-items: center;
  }
  .why-us__image img {
    width: 116px;
  }
  .why-us__bottom {
    flex-wrap: wrap;
    gap: 6px;
  }
  .why-us__card {
    max-width: 180px;
  }
}
/*# sourceMappingURL=style.css.map */
