/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  margin-top: 12rem; }
  /* @media only screen and (max-width: 56.25em) {
    body {
      padding: 0; } } */

.container {
  max-width: 144rem;
  width: 100%; }
  @media only screen and (max-width: 56.25em) {
    .container {
      width: 100% !important;
      margin-right: auto;
      margin-left: auto;
      padding-left: 15px;
      padding-right: 15px; } }

.bottom-padding {
  padding-bottom: 6rem; }

.dark-gradient-background {
  background: linear-gradient(180deg, #222222 0%, black 100%); }

.top-line {
  border-top: 1px solid #D9D9D9; }

.bottom-line {
  border-bottom: 1px solid #D9D9D9; }

.left-line {
  border-left: 1px solid #D9D9D9; }
  @media only screen and (max-width: 37.5em) {
    .left-line {
      border-left: none; } }

.right-line {
  border-right: 1px solid #D9D9D9; }

.mg-top-80 {
  padding-top: 8rem; }

.mg-top-40 {
  padding-top: 4rem; }
  @media only screen and (max-width: 37.5em) {
    .mg-top-40 {
      padding-top: 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .mg-top-40 {
      padding-top: 2rem; } }

.mg-bottom-40 {
  padding-bottom: 4rem; }

.mg-bot-32 {
  padding-bottom: 3.2rem; }

.search-box {
  margin-left: 2.4rem; }
  .search-box input[type="text"] {
    border: none;
    background: none;
    z-index: 1;
    width: 25px;
    height: 25px;
    transition: all .25s ease-in .25s;
    color: transparent;
    font-size: .75rem;
    line-height: 25px; }
    .search-box input[type="text"]:hover {
      cursor: pointer; }
      .search-box input[type="text"]:hover:focus {
        cursor: text; }
      .search-box input[type="text"]:hover + span {
        background: rgba(255, 255, 255, 0.2); }
    .search-box input[type="text"]:focus {
      width: 200px;
      padding: 0 10px;
      outline: none;
      color: black;
      background: none;
      color: white; }
      .search-box input[type="text"]:focus + span {
        width: 200px; }
        .search-box input[type="text"]:focus + span::before {
          width: 2px;
          opacity: 0;
          transition: all .25s ease-in; }
    .search-box input[type="text"] + span {
      z-index: -1;
      position: absolute;
      border: 2px solid white;
      top: 0;
      width: 25px;
      height: 25px;
      transition: all .25s ease-in .25s;
      border-radius: 25px;
      left: 0; }
      .search-box input[type="text"] + span::before {
        transition: all .25s ease-in .5s;
        transform-origin: left top;
        content: '';
        position: absolute;
        width: 10px;
        height: 5px;
        border-radius: 5px;
        background: white;
        transform: rotate(45deg) translate(26px, -2px); }

.aspect-ratio-container {
  width: 100%;
  font-size: 16px;
  color: #ffffff;
  /* Make the container full width */ }

.video-wrapper {
  position: relative;
  width: 100%;
  /* Full width */
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
  /* Hide overflow */ }

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  border: 0;
  /* Remove border */ }
  .video__title {
    font-weight: bold;
    color: #ffffff;
    font-size: 4rem; }
  .video__description {
    color: #ffffff;
    font-size: 1.6rem; }
  .video__published {
    color: #ffffff;
    font-size: 1.4rem; }

.swiper-button-next,
.swiper-button-prev {
  background-color: black !important;
  /* Black background for the arrows */
  border-radius: 10%;
  /* Optional: rounded corners */
  width: 40px;
  /* Width of the button */
  height: 40px;
  /* Height of the button */
  color: white;
  /* White arrow color */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Positioning the arrows */
  z-index: 10;
  /* Ensure arrows are above slides */ }

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  /* Adjust arrow size */
  color: white;
  /* White color for the arrows */ }

/* Optional: Style for swiper-container */
.swiper-wrapper {
  /* Style for the slides */
  display: flex;
  /* Flexbox to align slides */ }

.row {
  max-width: 100%;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 1rem; } }
  @media only screen and (max-width: 56.25em) {
    .row {
      max-width: 50rem;
      padding: 0 3rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 2rem; }
      @media only screen and (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 1rem; } }
    @media only screen and (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 2rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 2rem) / 3); }
  .row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 2rem) / 3) + 2rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 2rem) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 2rem) / 4) + 2rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 2rem) / 4) + 2 * 2rem); }

.site-logo {
  height: 50px; }

.card {
  padding-bottom: 100px; }

.navbar {
  background-color: #252525; }

.navbar-background {
  background-color: #929292;
  color: #ffffff; }

.navbar-default .navbar-nav > li > a {
  color: #ffffff;
  transition: all .2s ease-in-out; }

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: #252525; }

.navbar--header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 3rem 0; }
  .navbar--header__expand {
    width: 100%;
    display: flex;
    align-items: center; }
  .navbar--header__container__logo {
    height: 6rem;
    margin-right: 6.4rem; }
  .navbar--header__container__adoration {
    height: 6rem; }
  .navbar--header__container__form {
    position: relative; }
    .navbar--header__container__form__field {
      height: 4rem;
      width: 34rem;
      border-radius: 2rem;
      padding-left: 4rem; }
    .navbar--header__container__form__icon {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      margin-left: 1.5rem; }

.mobile-search-box {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  display: none; }
  @media only screen and (max-width: 37.5em) {
    .mobile-search-box {
      display: block; } }

.desktop-search-box {
  display: block; }
  @media only screen and (max-width: 37.5em) {
    .desktop-search-box {
      display: none; } }

.navbar-header {
  display: flex;
  flex-direction: row; }
  @media only screen and (max-width: 56.25em) {
    .navbar-header {
      justify-content: flex-end; } }

.result-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 4rem; }
  .result-card__left {
    width: calc(50% - 3.2rem);
    border-radius: 1.5rem;
    overflow: hidden; }
    .result-card__left img {
      width: 100%; }
  .result-card__right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-self: center; }

.ss-result__title a {
  font-size: 2.4rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold; }
  .ss-result__title a:hover {
    cursor: pointer;
    text-decoration: none;
    color: #ffffff; }

.ss-result__text {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 3.5rem; }

.ss-result__published {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: lighter; }

.video-item__thumb {
  width: 100%; }

.video-item__foot {
  color: #ffffff; }

.newest-videos {
  margin-bottom: 4rem;
  margin-top: 4rem; }

.swiper-wrapper {
  padding-top: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem; }
  @media only screen and (max-width: 37.5em) {
    .swiper-wrapper .swiper-slide {
      width: 300px !important; } }

.swiper-slide {
  position: relative;
  /* Ensures it doesn't overlap other elements when scaled */
  transition: transform 0.3s ease;
  /* Adds smooth transition effect */ }
  .swiper-slide__link:hover {
    text-decoration: none;
    color: #000000;
    cursor: pointer; }
  .swiper-slide:hover {
    text-decoration: none;
    color: #000000;
    cursor: pointer;
    transform: scale(1.1);
    /* Scale up to 110% on hover */ }
  .swiper-slide__head {
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.5); }
    .swiper-slide__head__image {
      width: 100%; }
  .swiper-slide__foot {
    color: #000000;
    text-decoration: none; }
    .swiper-slide__foot:hover {
      text-decoration: none;
      color: #000000;
      cursor: pointer; }

.filter-form {
  text-align: center;
  margin-bottom: 4rem; }
  .filter-form.results {
    text-align: left;
    margin-bottom: 3.5rem; }
  .filter-form__span {
    font-weight: bold;
    margin: 0 2rem; }
    .filter-form__span__white {
      color: #ffffff; }
  .filter-form__icon {
    width: 2.8rem;
    height: 2.8rem; }
  .filter-form__container {
    display: flex;
    justify-content: center; }
    .filter-form__container:not(:last-child) {
      margin-bottom: 3.2rem; }
    @media only screen and (max-width: 37.5em) {
      .filter-form__container__tags {
        display: none; } }
  .filter-form__all {
    font-weight: bold;
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    padding-right: 2.4rem;
    border-right: 3px solid black;
    margin-right: 2.4rem; }
    .filter-form__all:hover {
      text-decoration: underline;
      color: #000000; }
    .filter-form__all__white {
      text-decoration: none;
      color: #ffffff;
      margin-right: 0.5rem;
      font-size: 20px;
      padding-right: 2.4rem;
      border-right: 3px solid white;
      margin-right: 2.4rem; }
      .filter-form__all__white:hover {
        text-decoration: underline;
        color: #929292; }
  .filter-form__link {
    text-decoration: none;
    color: #000000;
    margin-right: 0.5rem;
    font-size: 20px; }
    .filter-form__link:hover {
      text-decoration: underline;
      color: #000000; }
    .filter-form__link__white {
      text-decoration: none;
      color: #ffffff;
      margin-right: 0.5rem;
      font-size: 20px; }
      .filter-form__link__white:hover {
        text-decoration: underline;
        color: #929292; }
  .filter-form__searh {
    border-radius: 8px;
    border: 2px solid #f65050;
    outline: none;
    /* remove default focus outline */
    transition: border-color 0.3s ease;
    padding: .4rem 2.4rem;
    display: none; }
    .filter-form__searh:focus {
      border-color: #007bff; }
  .filter-form__checkbox {
    display: none; }
    .filter-form__checkbox__search:checked + .filter-form__searh {
      display: block; }
  .filter-form__label {
    padding: .8rem 2.4rem;
    background-color: #f65050;
    border-radius: 8px;
    color: #ffffff;
    font-weight: normal;
    text-transform: uppercase; }
    .filter-form__label.results {
      background-color: #2B2A29;
      color: #ffffff;
      margin-right: .8rem !important; }
      .filter-form__label.results:hover {
        background-color: #403e3d; }
    .filter-form__label:hover {
      background-color: #F04545;
      cursor: pointer; }
    .filter-form__label:not(:last-child) {
      margin-right: 2.4rem; }

.filler__image-container {
  width: 100%; }

.filler__image-container {
  position: relative;
  width: 100%;
  /* Adjust the width as necessary */
  height: 300px;
  /* Adjust the height as necessary */
  overflow: hidden; }

.filler__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the container */ }

.footer {
  border-top: 1px solid #D9D9D9; }
  .footer__head {
    display: flex;
    flex-direction: row;
    padding: 4rem 0 2rem 0; }
    @media only screen and (max-width: 37.5em) {
      .footer__head {
        flex-direction: column;
        align-items: center; } }
    .footer__head__right {
      width: 100%;
      justify-content: end;
      display: flex;
      flex-direction: row;
      align-items: center; }
      @media only screen and (max-width: 37.5em) {
        .footer__head__right {
          width: 100%;
          justify-content: center;
          margin-top: 2rem; } }
      @media (max-width: 600px) {
        .footer__head__right {
          justify-content: center; } }
    .footer__head__logo {
      height: 6rem; }
    .footer__head__container--sub {
      display: flex;
      flex-direction: row;
      align-items: center; }
      .footer__head__container--sub:not(:last-child) {
        margin-right: 2rem; }
    .footer__head__icon {
      width: 2.4rem;
      height: 2.4rem;
      margin-right: 0.5rem; }
    .footer__head__detail {
      margin: 0;
      color: #2B2B2B; }
      .footer__head__detail:hover {
        color: #2B2B2B;
        text-decoration: underline;
        cursor: pointer; }
  .footer__content {
    border-top: 1px solid #D9D9D9;
    display: flex;
    flex-direction: row;
    padding: 2rem 0;
    justify-content: space-between; }
    @media only screen and (max-width: 37.5em) {
      .footer__content {
        border-top: 1px solid #D9D9D9;
        display: flex;
        flex-direction: column;
        padding: 2rem 0;
        justify-content: space-between; } }
    .footer__content__container--left {
      width: 50%; }
      @media only screen and (max-width: 37.5em) {
        .footer__content__container--left {
          width: 100%; } }
    .footer__content__container--right {
      max-width: 40%;
      width: 100%; }
      @media only screen and (max-width: 56.25em) {
        .footer__content__container--right {
          max-width: 50%;
          width: 100%; } }
      @media only screen and (max-width: 37.5em) {
        .footer__content__container--right {
          max-width: 100%;
          width: 100%; } }
    .footer__content__container__table {
      width: 100%; }
    .footer__content__container__t-head {
      padding-bottom: 1rem;
      font-size: 1.6rem; }
  .footer__foot {
    border-top: 1px solid #D9D9D9;
    display: flex;
    flex-direction: row;
    padding: 2rem 0; }
    @media only screen and (max-width: 37.5em) {
      .footer__foot {
        flex-direction: column; } }
    .footer__foot__left {
      margin: 0;
      width: 50%; }
      @media only screen and (max-width: 37.5em) {
        .footer__foot__left {
          width: 100%;
          text-align: center; } }
    .footer__foot__right {
      width: 50%;
      text-align: right;
      margin: 0; }
      @media only screen and (max-width: 37.5em) {
        .footer__foot__right {
          width: 100%;
          text-align: center; } }

td a {
  color: #2B2B2B;
  text-decoration: none; }
  td a:hover {
    color: #2B2B2B;
    text-decoration: underline;
    cursor: pointer; }

.newsletter__subscribe {
  background-color: #f65050;
  color: #ffffff;
  font-weight: bold; }
  .newsletter__subscribe:hover {
    background-color: #F04545;
    columns: #ffffff;
    cursor: pointer; }

.main-slider {
  position: relative; }
  .main-slider__image-container {
    position: relative;
    width: 100%;
    height: 60rem;
    overflow: hidden; }
  .main-slider__background-image {
    height: 100%;
    width: 100%;
    overflow: hidden; }
    @media only screen and (max-width: 37.5em) {
      .main-slider__background-image {
        width: auto;
        height: 100%; } }
  .main-slider__container {
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (max-width: 37.5em) {
      .main-slider__container {
        flex-direction: column;
        top: 7rem; } }
  .main-slider__primary {
    width: 70%; }
    @media only screen and (max-width: 37.5em) {
      .main-slider__primary {
        width: 100%;
        text-align: center; } }
    .main-slider__primary__heading {
      font-size: 4rem;
      font-weight: bold; }
      @media only screen and (max-width: 37.5em) {
        .main-slider__primary__heading {
          width: 100% !important;
          text-align: center; } }
    .main-slider__primary__content {
      margin-bottom: 4rem; }
      @media only screen and (max-width: 37.5em) {
        .main-slider__primary__content {
          width: 100% !important;
          text-align: center; } }
    .main-slider__primary__button {
      padding: 1.2rem 2.4rem;
      background-color: #f65050;
      border-radius: 8px;
      font-weight: bold;
      color: #ffffff;
      font-weight: normal;
      transition: all .2s ease; }
      .main-slider__primary__button:hover {
        background-color: #F04545;
        color: #ffffff;
        text-decoration: none;
        cursor: pointer; }
  .main-slider__contacts {
    padding: 2rem 4rem 2rem 4rem;
    width: 30%; }
    @media only screen and (max-width: 37.5em) {
      .main-slider__contacts {
        margin-top: 2rem;
        width: 100%;
        display: flex;
        flex-direction: row; } }
    .main-slider__contacts__image {
      padding-right: 5px;
      width: 2.5rem;
      height: 2.5rem; }
    .main-slider__contacts__link {
      color: #ffffff;
      text-decoration: none; }
      .main-slider__contacts__link:hover {
        cursor: pointer;
        color: #ffffff; }
    .main-slider__contacts__right {
      margin-top: 2rem; }
      @media only screen and (max-width: 37.5em) {
        .main-slider__contacts__right {
          width: 50%;
          margin-top: 0; } }
    @media only screen and (max-width: 37.5em) {
      .main-slider__contacts__left {
        width: 50%; } }
  .main-slider__primary {
    color: #ffffff; }
    .main-slider__primary__heading {
      width: 70%; }
    .main-slider__primary__content {
      width: 70%; }

.gradient-overlay-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 80%, white 100%);
  /* Customize the gradient colors and opacity as needed */ }

.gradient-overlay-gray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.075) 0%, #222222 85%);
  /* Customize the gradient colors and opacity as needed */ }
  .gradient-overlay-gray__content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #ffffff;
    text-align: center;
    text-align: -webkit-center;
    padding-bottom: 6.4rem; }
    .gradient-overlay-gray__content h1 {
      width: 50%; }
      @media only screen and (max-width: 37.5em) {
        .gradient-overlay-gray__content h1 {
          width: 100%; } }
    .gradient-overlay-gray__content p {
      width: 50%; }
      @media only screen and (max-width: 37.5em) {
        .gradient-overlay-gray__content p {
          width: 100%; } }

.gradient-overlay-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, black 90%);
  /* Customize the gradient colors and opacity as needed */ }

.gradient-overlay-black-down {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 70%, black 90%);
  /* Customize the gradient colors and opacity as needed */ }

.contact {
  display: flex;
  flex-direction: column;
  align-items: center; }

.contact-form {
  background-color: #777777;
  padding: 4.4rem 4.8rem;
  max-width: 70rem;
  width: 100%;
  border-radius: 1rem;
  margin-top: 8rem; }
  .contact-form__heading {
    margin-bottom: 3.2rem;
    color: #ffffff; }
  .contact-form__group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column; }
    .contact-form__group:last-of-type {
      margin-bottom: 0; }
    .contact-form__group__label {
      margin-bottom: .8rem;
      font-size: 1.6rem;
      color: #ffffff;
      font-weight: 400; }
    .contact-form__group__input {
      width: 100%;
      background-color: #ffffff;
      border-radius: 8px;
      border: none;
      padding: 1.6rem;
      font-size: 1.4rem; }
    .contact-form__group__texarea {
      width: 100%;
      background-color: #ffffff;
      border-radius: 8px;
      padding: 1.6rem;
      border: none;
      font-size: 1.4rem; }
    .contact-form__group__submit {
      background-color: #f65050;
      color: #ffffff;
      padding: 1.4rem 3.2rem;
      border: none;
      border-radius: .5rem;
      margin-top: 4rem; }
      .contact-form__group__submit:hover {
        background-color: #F04545;
        color: #ffffff; }

.dark-back {
  background-color: #222222; }

.contact-info {
  margin-top: -2rem;
  display: flex;
  flex-direction: row; }
  @media only screen and (max-width: 37.5em) {
    .contact-info {
      display: flex;
      flex-direction: column; } }
  .contact-info__section {
    display: flex;
    flex-direction: column; }
    .contact-info__section__heading {
      font-size: 2.4rem;
      color: #ffffff;
      margin-bottom: 1.6rem; }
      @media only screen and (max-width: 37.5em) {
        .contact-info__section__heading {
          text-align: center; } }
    .contact-info__section__inner {
      display: flex;
      flex-direction: row; }
      @media only screen and (max-width: 37.5em) {
        .contact-info__section__inner {
          flex-wrap: wrap;
          justify-content: center; } }
    .contact-info__section__detail {
      margin-right: 1.5rem;
      display: flex;
      flex-wrap: wrap; }
      @media only screen and (max-width: 37.5em) {
        .contact-info__section__detail {
          margin-top: 1rem; } }
      .contact-info__section__detail__image {
        width: 2.8rem;
        height: 2.8rem; }
    .contact-info__section__link {
      color: #ffffff;
      text-decoration: none; }
      .contact-info__section__link:hover {
        cursor: pointer;
        color: #ffffff; }

.about-us {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center; }
  @media only screen and (max-width: 56.25em) {
    .about-us {
      flex-direction: column; } }
  .about-us__left {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: .8rem; }
    @media only screen and (max-width: 56.25em) {
      .about-us__left {
        width: 100%; } }
  .about-us__right {
    width: 60%;
    padding: 2rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 13.5rem;
    font-size: 1.6rem; }
    @media only screen and (max-width: 56.25em) {
      .about-us__right {
        width: 100%;
        margin-left: 0; } }
    .about-us__right__text {
      color: #ffffff;
      font-size: 1.6rem; }
  .about-us__image {
    max-width: 100%;
    height: auto; }

.heading {
  font-size: 2.4rem;
  text-align: center; }

.white {
  color: #ffffff; }

.black {
  color: #000000; }

.heading.white {
  font-size: 4rem; }
.thankyou {
    font-size: 2.4rem;
    color: #ffffff;
    text-align: center;
}
.main-slider__contacts__item {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-slider__contacts__image {
    width: 25px !important;
    height: 25px !important;
}
@media only screen and (max-width: 56.25em) {
    .navbar-background {
        background-color: #252525;
        color: #ffffff;
    }
    .navbar--header {
        padding-bottom: 2rem;
    }
    .slide-main .slide-subheading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    body {
        box-sizing: border-box;
        margin-top: 11rem;
    }
    .mg-top-80 {
    padding-top: 2rem;
}
}
.my-slider-progress {
    display: none;
}