/* Color variables */
:root {
  --sticky-header: #212920e6;
  --mobile-menu-bg: #232323e6;
  --accent: #70e65b;
  --contact-section: rgb(37, 45, 34);
}

input, button, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

* {
  outline: 0 !important;
}

body {
  font-size: 16px;
  margin: 0;
  font-family: sans-serif;
  height: 100%;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.back_to_top_btn_wrap {
  display: none;
  z-index: 10;
  position: fixed;
  bottom: 50px;
  right: 50px;
}

@media(max-width: 575px) {
  .back_to_top_btn_wrap {
    right: 30px;
  }
}

.back_to_top_btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #ffffff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.back_to_top_btn:hover {
  text-decoration: none;
  color: #ffffff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.back_to_top_btn .icon-arrow {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.cookies_popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  background-color: #ffffff;
  z-index: 99;
  display: none;
  box-shadow: 0px -2px 4px #eee;
}

.cookies_popup--open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media(max-width: 575px) {
  .cookies_popup--open {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookies_popup__text {
  margin-right: 15px;
}

@media(max-width: 575px) {
  .cookies_popup__text {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.cookies_popup__btn {
  background: var(--accent);
  border-radius: 2px;
  color: #fff;
  font-family: 'HammersmithOne', sans-serif;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: 1px solid var(--accent);
  padding: 5px 10px;
  white-space: nowrap;
  border-radius: 2px;
}

.cookies_popup__btn:hover {
  color: var(--accent);
  background: transparent;
}

.header_wrap {
  padding: 15px 0;
  position: relative;
  width: 100%;
  z-index: 9;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.header_wrap.sticky {
  background-color: var(--sticky-header);
  -webkit-box-shadow: 0 0px 7px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0px 7px rgba(0, 0, 0, 0.5);
  position: fixed;
}

.header {
  /* padding-top: 15px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  transition: all .2s ease-in-out;
}

.logo_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.logo_wrap:hover {
  text-decoration: none;
}

.logo_img img {
  max-height: 50px;
}

.logo_text {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  color: var(--accent);
  margin-left: 10px;
}

@media(max-width: 420px) {
  .logo_img img {
    max-height: 35px;
  }
  .logo_text {
    font-size: 22px;
  }
}

.mobile_menu_btn {
  width: 40px;
  height: 28px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile_menu_btn {
    display: none;
  }
}

.mobile_menu_btn span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: var(--accent);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.mobile_menu_btn span:nth-child(even) {
  left: 50%;
  border-radius: 0 4px 4px 0;
}

.mobile_menu_btn span:nth-child(odd) {
  left: 0;
  border-radius: 4px 0 0 4px;
}

.mobile_menu_btn span:nth-child(1), .mobile_menu_btn span:nth-child(2) {
  top: 0;
}

.mobile_menu_btn span:nth-child(3), .mobile_menu_btn span:nth-child(4) {
  top: 12px;
}

.mobile_menu_btn span:nth-child(5), .mobile_menu_btn span:nth-child(6) {
  top: 24px;
}

.mobile_menu_btn.open span:nth-child(1), .mobile_menu_btn.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile_menu_btn.open span:nth-child(2), .mobile_menu_btn.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mobile_menu_btn.open span:nth-child(1) {
  left: 4px;
  top: 7px;
}

.mobile_menu_btn.open span:nth-child(2) {
  left: calc(50% - 4px);
  top: 7px;
}

.mobile_menu_btn.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.mobile_menu_btn.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.mobile_menu_btn.open span:nth-child(5) {
  left: 4px;
  top: 20px;
}

.mobile_menu_btn.open span:nth-child(6) {
  left: calc(50% - 4px);
  top: 20px;
}

@media (max-width: 767px) {
  .header_menu_wrap {
    display: none;
    position: absolute;
    top: 135%;
    right: 0;
    background: var(--mobile-menu-bg);
    z-index: 10;
    min-width: 150px;
    width: auto;
  }
}

@media (max-width: 576px) {
  .header_menu_wrap {
    width: calc(100% - 20px);
    right: 10px;
  }
}

.header_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .header_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  .header_menu .menu-item {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header_menu .menu-item:last-child {
    border-bottom: none;
  }
  .header_menu .menu-item:first-child {
    border-top: none;
  }
}

.header_menu .menu-item a {
  font-family: 'RobotoBlack', sans-serif;
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  text-decoration: none;
  display: block;
  padding: 15px 10px;
}

.header_menu .menu-item a:hover {
  color: var(--accent);
}

@media (max-width: 767px) {
  .header_menu .menu-item a {
    padding: 20px 10px;
  }
}

.header_menu .menu-item:last-child a {
  padding-right: 0;
}

@media (max-width: 767px) {
  .header_menu .menu-item:last-child a {
    padding: 20px 10px;
  }
}

.header_menu .menu-item.current-menu-item a {
  color: var(--accent);
}

.btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.custom_button {
  display: block;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 2px;
  height: 40px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'HammersmithOne', sans-serif;
  line-height: 40px;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.custom_button--dark {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: #ffffff;
}

.custom_button:hover {
  color: #fff;
  background: var(--accent);
  text-decoration: none;
}

.custom_button--dark:hover {
  background: var(--accent);
  color: #ffffff;
}

.section_title {
  font-family: 'PlayfairDisplayBold', sans-serif;
  font-size: 28px;
  color: #413d4b;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.section_title--light {
  color: #ffffff;
}

.section_title__description {
  text-align: center;
  font-size: 14px;
  font-family: 'PlayfairDisplay', sans-serif;
  color: #2f2d35;
  margin: 15px 0 20px;
  position: relative;
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
}

.section_title__description:after {
  position: absolute;
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: rgba(65, 61, 75, 0.3);
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section_title__description.section_title__description--light {
  color: #ffffff;
}

.section_title__description.section_title__description--light:after {
  background: rgba(255, 255, 255, 0.2);
}

.footer {
  background-image: url("../img/footer_bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 85px 0;
}

@media (max-width: 767px) {
  .footer {
    padding: 45px 0;
  }
}

.footer_text {
  margin-top: 25px;
  display: block;
  font-family: 'RobotoLight', sans-serif;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.025em;
}

.footer_title {
  font-family: 'RobotoBlack', sans-serif;
  font-size: 15px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 20px 0 31px;
}

@media (max-width: 991px) {
  .footer_title {
    margin: 35px 0 15px;
  }
}

.address,
.phone_number,
.email {
  color: #ffffff;
  font-family: 'RobotoLight', sans-serif;
  font-size: 14px;
  display: block;
  position: relative;
  padding-left: 30px;
  letter-spacing: 0.025em;
  line-height: 26px;
  margin-bottom: 10px;
}

.address:after,
.phone_number:after,
.email:after {
  position: absolute;
  display: block;
  left: 0;
  font-family: 'icomoon' !important;
  speak-as: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
}

.address:after {
  content: '\e2';
  top: 2px;
  font-size: 19px;
}

.phone_number a,
.email a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}

.phone_number a:hover,
.email a:hover {
  text-decoration: none;
  color: #ffffff;
}

.phone_number:after {
  content: '\e3';
  top: 4px;
  font-size: 17px;
}

.email:after {
  content: '\e8';
  top: 4px;
  font-size: 17px;
}

.newsletter_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .newsletter_wrap {
    max-width: 350px;
  }
}

.footer_input {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #ffffff;
  font-family: 'RobotoLight', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 11px 15px;
  width: 100%;
}

.footer_input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.footer_input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.footer_input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.footer_input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 45px;
  background: rgba(255, 255, 255, 0.5);
  margin-left: 10px;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.newsletter_button:hover {
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.newsletter_button .icon-plane {
  font-size: 25px;
  color: #000;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 27px;
}

.social_icon_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
  color: #ffffff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin-right: 8px;
}

.social_icon_link:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.social_icon {
  color: #ffffff;
  font-size: 15px;
}

.footer_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 65px;
}

@media (max-width: 576px) {
  .footer_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 35px;
  }
}

.footer_menu {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 576px) {
  .footer_menu {
    margin-bottom: 15px;
  }
}

.footer_menu .menu-item:not(:last-child) {
  margin-right: 32px;
}

@media (max-width: 767px) {
  .footer_menu .menu-item:not(:last-child) {
    margin-right: 20px;
  }
}

.footer_menu .menu-item a {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.copyright {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #ffffff;
}

.section {
  padding: 85px 0;
}

@media(max-width: 767px) {
  .section {
    padding: 45px 0;
  }
}

.header_section {
  background-image: url("../img/header_section_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-bottom: 85px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header_section {
    padding-bottom: 45px;
  }
}

.header_section__title {
  font-family: 'PlayfairDisplayBlack', sans-serif;
  font-size: 36px;
  color: #ffffff;
  display: block;
  position: relative;
  margin: 50px 0;
  line-height: 1.5;
}

.header_slider {
  margin-top: 160px;
}

@media (max-width: 991px) {
  .header_slider {
    margin-top: 120px;
  }
}

@media (max-width: 767px) {
  .header_slider {
    margin-top: 70px;
  }
}

.header_slider .slick-dots {
  padding: 0;
  margin: 70px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .header_slider .slick-dots {
    margin: 70px 0 0;
  }
}

@media (max-width: 576px) {
  .header_slider .slick-dots {
    margin: 35px 0 0;
  }
}

.header_slider .slick-dots li {
  font-size: 0;
  text-indent: -9999px;
  width: 10px;
  height: 10px;
  border: 1px solid #bab9bc;
  background: transparent;
  border-radius: 50%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  overflow: hidden;
}

.header_slider .slick-dots li:hover {
  cursor: pointer;
}

.header_slider .slick-dots li:not(:last-child) {
  margin-right: 5px;
}

.header_slider .slick-dots li.slick-active {
  background: var(--accent);
  border: 1px solid var(--accent);
}

.header_slider__title {
  font-family: 'PlayfairDisplayBlack', sans-serif;
  font-size: 2.6rem;
  color: #ffffff;
  text-align: center;
  display: block;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.5;
}

@media(max-width: 575px) {
  .header_slider__title {
    font-size: 32px;
    line-height: normal;
  }
}

@media(max-width: 420px) {
  .header_slider__title {
    font-size: 1.5rem;
  }
}

.header_slider__title:after {
  position: absolute;
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--accent);
}

.header_slider__text {
  padding-top: 25px;
  font-family: 'RobotoLight', sans-serif;
  font-size: 18px;
  color: #ffffff;
  display: block;
  text-align: center;
  letter-spacing: .05em;
}

@media(max-width: 575px) {
  .header_slider__text {
    font-size: 1.25rem;
  }
}

.header_slider__button {
  margin-top: 100px;
}

.header_slider__button .custom_button {
  padding: 0 15px;
}

@media (max-width: 576px) {
  .header_slider__button {
    margin-top: 35px;
  }
}

@media (max-width: 767px) {
  .second_section {
    padding: 45px 0;
  }
}

.second_section .img_wrap,
.third_section .img_wrap {
  text-align: center;
}

.second_section .img_wrap img {
  border-radius: 3px;
  width: 100%;
  margin-right: 20px;
}

@media(max-width: 767px) {
  .second_section .img_wrap img {
    margin: 0;
  }
}

.second_section__title,
.third_section__title {
  margin-bottom: 25px;
  text-align: left;
}

@media (max-width: 767px) {
  .second_section .second_section__title {
    text-align: center;
    margin-top: 30px;
  }
}

.text_block_heading {
  font-family: 'RobotoBlack', sans-serif;
  font-size: 18px;
  color: #413d4b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.text_block_heading--light {
  color: #ffffff;
}

.text_block {
  font-family: 'RobotoLight', sans-serif;
  font-size: 17px;
  color: #413d4b;
  margin-bottom: 25px;
  line-height: 1.5;
}

.text_list {
  margin: 0 0 25px;
  padding-left: 30px;
  list-style-type: circle;
  font-family: 'RobotoLight', sans-serif;
  font-size: 17px;
  color: #413d4b;
  line-height: 1.5;
}

.text_list--light {
  color: #ffffff;
}

.text_block--light {
  color: #ffffff;
} 

@media (max-width: 767px) {
  .text_block {
    text-align: justify;
  }
}

.third_section {
  background-image: url('../img/third_section_bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media(max-width: 767px) {
  .third_section {
    padding: 45px 0;
  }
}

.third_section .img_wrap img {
  border-radius: 3px;
  width: 100%;
}

.watch_our_story {
  background-image: url("../img/watch_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 200px 0;
}

@media (max-width: 767px) {
  .watch_our_story {
    padding: 120px 0;
  }
}

.video_controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.icon-play_icon {
  color: #ffffff;
  font-size: 100px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.icon-play_icon:hover {
  color: var(--accent);
  cursor: pointer;
}

.watch_our_story__title {
  font-family: 'RobotoBlack', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .fourth_section {
    padding: 45px 0;
  }
}

.fourth_section_items {
  width: 100%;
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

@media (max-width: 576px) {
  .fourth_section_items {
    margin-top: 10px;
  }
}

.fourth_section_item {
  margin-bottom: 25px;
}

.fourth_section_items .card {
  height: 100%;
}

.fourth_section_items .card-body {
  padding: 2rem;
}

.fourth_section_items .card img {
  padding: 3rem 0 1.5rem;
}

.fourth_section_items .card-title {
  font-family: 'RobotoBlack', sans-serif;
  font-size: 18px;
  color: #413d4b;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.fourth_section_items .card-text {
  font-size: 17px;
  font-family: 'RobotoLight', sans-serif;
  text-align: center;
  color: #333333;
  letter-spacing: .05em;
  line-height: 1.5;
}

.our_team {
  background-image: url("../img/author_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

@media (max-width: 767px) {
  .our_team {
    padding: 45px 0;
  }
}

.author {
  margin-top: 45px;
  width: 250px;
  margin: 45px auto 0;
}

.author__photo {
  height: 250px;
  background-image: url('../img/author.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.author__text {
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
  border: 1px solid rgba(215, 215, 217, 0.5);
}

.author__name {
  font-family: 'RobotoBlack', sans-serif;
  text-transform: uppercase;
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.author__position {
  font-size: 13px;
  font-family: 'RobotoLight', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.join_us_text {
  text-align: center;
  color: #ffffff;
  font-family: 'RobotoLight', sans-serif;
  font-size: 17px;
  display: block;
  margin: 70px 0 0;
  line-height: 1.5;
}

@media(max-width: 767px) {
  .articles_section {
    padding: 45px 0;
  }
}

.article {
  margin-top: 40px;
}

.article:hover .article__img {
  transform: translateY(-7px);
}

.article__img {
  overflow: hidden;
  border-radius: 5px;
  transition: all .4s ease-in-out;
}

.article__img img {
  max-width: 100%;
  width: 100%;
  transition: all .4s ease-in-out;
}

.article__title {
  font-family: 'RobotoBlack', sans-serif;
  font-size: 18px;
  color: #413d4b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 35px 0 25px;
  line-height: 1.5;
}

@media(max-width: 767px) {
  .article__title {
    text-align: center;
    margin: 20px 0;
  }
}

.article__read_more {
  justify-content: flex-start;
}

@media(max-width: 767px) {
  .article__read_more {
    justify-content: center;
  }
}

.article__read_more .custom_button {
  padding: 0 15px;
}


.contact_section {
  background-color: var(--contact-section);
}

@media (max-width: 767px) {
  .contact_section {
    padding: 45px 0;
  }
}

.contact_title {
  text-align: left;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .contact_title {
    text-align: center;
  }
}

.contact_form {
  margin-top: 35px;
}

.form_input {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: 'RobotoLight', sans-serif;
  font-size: 14px;
  padding: 11px 20px;
  color: #413d4b;
  display: block;
  width: 100%;
  margin-bottom: 23px;
  resize: none;
}

.form_input::-webkit-input-placeholder {
  color: #d7d7d9;
}

.form_input::-ms-input-placeholder {
  color: #d7d7d9;
}

.form_input:-ms-input-placeholder {
  color: #d7d7d9;
}

.form_input::placeholder {
  color: #d7d7d9;
}

textarea.form_input {
  height: 200px;
}

@media(max-width: 420px) {
  textarea.form_input {
    height: 100px;
  }
}

.form_submit_btn {
  padding: 0 32px;
  margin: 0 auto;
}

.our_clients {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 350px) {
  .our_clients {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.clients_column {
  max-width: 160px;
}

.client_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0;
}

/* Article page */
.artcile_content {
  padding: 70px 0;
}

@media(max-width: 575px) {
  .artcile_content {
    padding: 45px 0;
  }
}

.article_img {
  border-radius: 5px;
  margin: 0 auto 40px;
  display: block;
}

.artcile_content h2 {
  text-align: left;
  margin-bottom: 20px;
  margin-top: 45px;
  font-family: 'PlayfairDisplayBold', sans-serif;
  font-size: 28px;
  color: #413d4b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.artcile_content p {
  font-family: 'RobotoLight', sans-serif;
  font-size: 17px;
  color: #413d4b;
  margin-bottom: 20px;
  line-height: 1.5;
}

@media(max-width: 767px) {
  .artcile_content p {
    text-align: justify;
  }
}

.artcile_content h3 {
  font-family: 'RobotoBlack', sans-serif;
  font-size: 18px;
  color: #413d4b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 35px;
  line-height: 1.5;
}
/* 
.article_page__subtitle {
  font-family: 'RobotoBlack', sans-serif;
  font-size: 18px;
  color: #413d4b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 35px;
  line-height: 1.5;
} */

.artcile_content ul {
  padding-left: 30px;
  list-style-type: disc;
}

.artcile_content ul li {
  font-family: 'RobotoLight', sans-serif;
  font-size: 17px;
  color: #413d4b;
  margin-bottom: 15px;
  line-height: 1.5;
}