#wpadminbar {
  display: none;
}

* {
  box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    min-width: 100%;
    font-family: Satoshi-Regular, sans-serif
}

body.menu-open {
  overflow: hidden;
}

@font-face{font-family:Satoshi-Variable;src:url(assets/fonts/Satoshi-Variable.woff2) format("woff2"),url(assets/fonts/Satoshi-Variable.woff) format("woff"),url(assets/fonts/Satoshi-Variable.ttf) format("truetype");font-weight:300 900;font-display:swap;font-style:normal}
@font-face{font-family:Satoshi-VariableItalic;src:url(assets/fonts/Satoshi-VariableItalic.woff2) format("woff2"),url(assets/fonts/Satoshi-VariableItalic.woff) format("woff"),url(assets/fonts/Satoshi-VariableItalic.ttf) format("truetype");font-weight:300 900;font-display:swap;font-style:italic}
@font-face{font-family:Satoshi-Light;src:url(assets/fonts/Satoshi-Light.woff2) format("woff2"),url(assets/fonts/Satoshi-Light.woff) format("woff"),url(assets/fonts/Satoshi-Light.ttf) format("truetype");font-weight:300;font-display:swap;font-style:normal}
@font-face{font-family:Satoshi-LightItalic;src:url(assets/fonts/Satoshi-LightItalic.woff2) format("woff2"),url(assets/fonts/Satoshi-LightItalic.woff) format("woff"),url(assets/fonts/Satoshi-LightItalic.ttf) format("truetype");font-weight:300;font-display:swap;font-style:italic}
@font-face{font-family:Satoshi-Regular;src:url(assets/fonts/Satoshi-Regular.woff2) format("woff2"),url(assets/fonts/Satoshi-Regular.woff) format("woff"),url(assets/fonts/Satoshi-Regular.ttf) format("truetype");font-weight:400;font-display:swap;font-style:normal}
@font-face{font-family:Satoshi-Italic;src:url(assets/fonts/Satoshi-Italic.woff2) format("woff2"),url(assets/fonts/Satoshi-Italic.woff) format("woff"),url(assets/fonts/Satoshi-Italic.ttf) format("truetype");font-weight:400;font-display:swap;font-style:italic}
@font-face{font-family:Satoshi-Medium;src:url(assets/fonts/Satoshi-Medium.woff2) format("woff2"),url(assets/fonts/Satoshi-Medium.woff) format("woff"),url(assets/fonts/Satoshi-Medium.ttf) format("truetype");font-weight:500;font-display:swap;font-style:normal}
@font-face{font-family:Satoshi-MediumItalic;src:url(assets/fonts/Satoshi-MediumItalic.woff2) format("woff2"),url(assets/fonts/Satoshi-MediumItalic.woff) format("woff"),url(assets/fonts/Satoshi-MediumItalic.ttf) format("truetype");font-weight:500;font-display:swap;font-style:italic}
@font-face{font-family:Satoshi-Bold;src:url(assets/fonts/Satoshi-Bold.woff2) format("woff2"),url(assets/fonts/Satoshi-Bold.woff) format("woff"),url(assets/fonts/Satoshi-Bold.ttf) format("truetype");font-weight:700;font-display:swap;font-style:normal}
@font-face{font-family:Satoshi-BoldItalic;src:url(assets/fonts/Satoshi-BoldItalic.woff2) format("woff2"),url(assets/fonts/Satoshi-BoldItalic.woff) format("woff"),url(assets/fonts/Satoshi-BoldItalic.ttf) format("truetype");font-weight:700;font-display:swap;font-style:italic}
@font-face{font-family:Satoshi-Black;src:url(assets/fonts/Satoshi-Black.woff2) format("woff2"),url(assets/fonts/Satoshi-Black.woff) format("woff"),url(assets/fonts/Satoshi-Black.ttf) format("truetype");font-weight:900;font-display:swap;font-style:normal}
@font-face{font-family:Satoshi-BlackItalic;src:url(assets/fonts/Satoshi-BlackItalic.woff2) format("woff2"),url(assets/fonts/Satoshi-BlackItalic.woff) format("woff"),url(assets/fonts/Satoshi-BlackItalic.ttf) format("truetype");font-weight:900;font-display:swap;font-style:italic}




















.layout-general {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-areas: "header"
        "content"
        "footer";
    grid-template-rows: 50px 1fr auto;
}

.header-area {
    grid-area: header;
    position: relative;
}

.content-area {
    grid-area: content;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-area {
    grid-area: footer;
}


.btn {
  text-decoration: none;
  cursor: pointer;
}
.btn,
.btn .layout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.btn-content,
.btn .btn-content {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    background-color: #193028;
    border: none;
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    color: white;
    border-bottom: 4px solid #38bc64;
    text-decoration: none;
    padding: 14px 40px 15px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-content > img,
.btn .btn-content > img {
  margin-left: 14px;

  width: 14px;
}
@media screen and (max-width: 1130px) {

  .btn .layout{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
  }

  .btn .btn-content {
    height: 56px;
  }
}

.desktop-hidden,
.desctop-hidden {
  display:none
}
@media screen and (max-width: 1130px) {
  .mobile-hidden {
    display:none
  }
  .desktop-hidden,
  .desctop-hidden {
    display:block
  }
}


/* HEADER */
.header-area {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  max-width: 1920px;
}
.header .layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.header .content {
  width: 87%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin: auto;
  padding: 5px 0;
}
.header .content .links {
  display: flex;
  height: 100%;
}
.header .contact-us-button {
  font-size: 9px;
  font-family: "Satoshi-Medium";
}
.header .links nav a {
  padding-left: 24px;
  padding-right: 24px;
  border-right: 1px solid #e9e9e9;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.header .bg-dark .content {}
.header .bg-dark .content-container {
  background-color: #111D19;
  color: #ffffff;
}

.header .bg-white .content-container,
.header .bg-white .content {
  background-color: #ffffff;
  -webkit-filter: none;
          filter: none;
}
.header .bg-white .content {
  background-color: #ffffff;
}
.header .bg-dark .selection-container {
  color: #ffffff;
}
.header .bg-dark .links nav a {
  color: #ffffff;
}
.header .bg-white .links nav a {
  color: #193028;
}
.header .links nav a:last-child {
  border-right: none;
  padding-right: 0;
}
.header .links nav a:first-child {
  padding-left: 0;
}
.header .bg-white .content .logo-dark {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 999;
}
.header .bg-dark .content .logo-light {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 999;

}
.header .bg-white .content .logo-light {
  display: none;
}
.header .bg-dark .content .logo-dark {
  display: none;
}
.header .burger {
  display: none;
  width: 0;
  height: 0;
}
.header .mobile-content {
  display: none;
}
.header .selection-container {
  padding-left: 16px;
  padding-right: 16px;
  border: none;
  background: none;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #183028;
  font-size: 14px;
  line-height: 21px;
  position: relative;
}
.header .selection-container :hover {
  color: #38bc64;
}
.header .links .selection-container + .selection-container::after {
  position: absolute;
  left: 0px;
  content: " ";
  width: 1px;
  height: 18px;
  background-color: #e9e9e9;
}
.header .links .selection-container {
  height: 100%;
  text-decoration: none;
}

.header .selection-index {
  display: none;
}

.header .links .selection-container:hover,
.header .links .selection-container.active {
  cursor: pointer;
  color: #38bc64;
}

.header .selection-block-desktop {
  width: 100%;
  height: calc(100vh - 50px);
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  -webkit-animation: opacityAppear 350ms ease-in-out;
          animation: opacityAppear 350ms ease-in-out;
  transform-origin: center;
  pointer-events: none;
}
.header .selection-block-desktop .nav-layout {
  
}
.header .selection-block-desktop .horizontal-line {
    border-right: 1px solid #dcdcdc;
}
.header .selection-block-desktop-container {
  padding: 0;
  margin: 0;
  -webkit-filter: drop-shadow(0px 150px 100px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px 150px 100px rgba(0, 0, 0, 0.15));
  border: 1px solid #dcdcdc;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translate(0, -10000px);
}
/* .header .selection-block-desktop-container.hovered,
.header .selection-block-desktop-container.active {
  transform: translate(0, 0);
} */

/* .header .selection-block-desktop-container {
  transform: scaleY(0);
} */

.header .selection-block-desktop-container.hovered,
.header .selection-block-desktop-container.active {
  -webkit-animation: growDown 700ms ease-in-out;
          animation: growDown 700ms ease-in-out;
  transform-origin: top center;
  transform: translate(0, 0);
  transform: scaleY(1);
  pointer-events: all;
}

.header .green-text {
  color: #38bc64;
}
.header .bg-white {
  color: #193028;
}
.header .content-container {
  width: 100%;
  max-width: 1920px;
  min-height: 50px;
  display: flex;
  justify-content: center;
}
.header .cursor-pointer {
  cursor: pointer;
}
.header .btn-content {
  font-family: "Satoshi-Bold";
  font-weight: 700;
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
  padding: 8px 35px;
  border: none;
  cursor: pointer;
  background-color: #193028;
  border-bottom: 4px solid #38bc64;
}

.header-contact-info-mobile {
  display: none;
}
.mobile-contact-info .header-contact-info-mobile {
  display: none;
}


@media screen and (max-width: 1130px) {
  .header .bg-dark,
  .header .bg-white {
    width: 100%;
  }

  .header .content .links {
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    width: 100%;
    transform: translateX(-100vw);
    padding: 40px 16px;
    background: #fff;
    /* border-bottom: 2px solid #38bc64; */
    display: block;
    height: auto;
    transition: transform 0.3s ease-in;
  }

  .header .content .links.active {
    transform: translate(0);
  }

  .header .links .selection-container {
    border-right: none;
    border-bottom: 1px solid #dcdcdc;
    display: flex;
    width: 100%;
    flex-direction: row;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
    height: auto;
    padding-left: 16px;
    padding-right: 16px;
    background: none;
    font-family: Satoshi-Bold, sans-serif;
    font-weight: 700;
    color: #183028;
    font-size: 14px;
    line-height: 21px;
    position: relative;
    text-align: left;
  }
  .header .links .selection-container span {
    display: block;
    position: relative;
    height: auto;
  }
  .header .links .selection-container:after {
    display: none;
  }
  .header .links .selection-container:last-child {
    border: none;
  }
  .header .contact-us-button {
    display: none;
    width: 0;
    height: 0;
  }
  .header .content {
    padding: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .header .logo-light,
  .header .logo-dark {
    padding-left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
  }
  .header .logo-img {
    height: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
  }
  .header .burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-right: 0;
    cursor: pointer;
    z-index: 100;
    width: 25px;
    height: 25px;
    position: relative;
  }
  .header .bg-white .burger .row {
    width: 25px;
    border: 1px solid #183028;
  }
  .header .bg-dark .burger .row {
    width: 25px;
    border: 1px solid white;
    transition: transform 0.3s ease-in;
  }
  .header .burger .row:first-child {
    position: absolute;
    top: 6px;
  }
  .header .burger .row:last-child {
    position: absolute;
    bottom: 6px;
  }
  .header.active .burger .row {
    border: 1px solid #183028;
  }

  .header.active .burger .row:first-child {
    top: calc(50% - 1px);
    transform: rotate(45deg);
    transform-origin: center;
  }

  .header.active .burger .row:last-child {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
    transform-origin: center;
  }

  /* mobile submenu */
  .header .selection-block-desktop {
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateX(-100vw);
    padding: 40px 16px;
    background: #fff;
    transition: transform 0.3s ease-in;
  }
  .header .selection-block-desktop.active {
    transform: translate(0);
    padding: 40px 0;
    background: #fff;
    transition: transform 0.3s ease-in;
    height: 100vh;
    overflow: hidden;
  }

  .header .selection-block-desktop-container {
    position: relative;
  }

  .header .selection-block-desktop-container {
    border: none !important;
    height: 0;
  }

  .header .selection-block-desktop-container.active {
    height: calc(100vh - 50px);
    overflow: scroll;
  }

  .header .selection-block-desktop-container .nav-layout .content,
  .header .selection-block-desktop-container .nav-layout .content .row {
    padding: 0;
    display: block;
    width: 100%;
  }
  .header .selection-block-desktop-container .nav-layout .content {
    padding: 0 0 20px;
  }

    .header .selection-block-desktop-container .nav-layout .content .company-name {
      display: none;
    }

    .header .selection-block-desktop-container .nav-layout .content .section-name,
    .header .selection-block-desktop-container .nav-layout .content h2{
      font-family: Satoshi-Bold, sans-serif;
      font-weight: 700;
      color: #111d19;
      font-size: 18px;
      line-height: 20px;
      padding: 24px 16px;
      padding-left: 46px;
      border-bottom: 1px solid #dcdcdc;
      text-transform: none;
      display: block;
      width: 100%;
      height: auto;
      position: relative;
      cursor: pointer;
    }

    .header .selection-block-desktop-container .nav-layout .content .section-name:before,
    .header .selection-block-desktop-container .nav-layout .content h2:before {
      display: block;
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      left: 16px;
      margin-top: 2px;
      background-image: url('assets/Images/BackArrow.svg');
  }
    .header .selection-block-desktop-container .nav-layout .content .content-container-left {
      display: none;
    }




  
  .header .contact-us-button {
    font-size: 9px;
    font-family: "Satoshi-Bold", sans-serif;
  }
  .header .mobile-content {
    display: block;
    height: calc(100vh - 54px);
    width: 100vw;
    overflow-y: auto;
    background: white;
  }
  .header .bg-white .mobile-content {
    background-color: #ffffff;
    opacity: 1;
  }
  .header .bg-dark .mobile-content nav a {
    color: #ffffff;
  }
  .header .bg-white .mobile-content nav a {
    color: #193028;
  }
  .header .links-mobile {
    padding: 40px 16px;
    border-bottom: 2px solid #38bc64;
  }
  .header .selection-index {
    display: block;
    margin-right: 16px;
    font-family: "Satoshi-Regular", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
  }
  .header .selection-name {
    font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
  }
  .header .selection-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    background: transparent;
    border: none;
  }
  .header .border-b {
    border-bottom: 1px solid #dcdcdc;
  }
  .header .left-part,
  .header .right-part,
  .header .col-1,
  .header .col-2 {
    flex: 0 0 100%;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    
  }
  .header .left-part,
  .header .col-1 {
    padding-top: 0 !important;
    width: 100% !important;
    height: auto !important;
  }
  .header .right-part,
  .header .col-2 {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
 .header .mobile-contact-info {
    border-top: 2px solid #38bc64;
 }
  .header .mobile-contact-info .wrapper-bottom {
    padding: 24px 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header .mobile-contact-info .left,
  .header .mobile-contact-info .right {
    flex: 0 0 45%;
  }
  .header .mobile-contact-info .contact-us-button-mobile {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .header .mobile-contact-info .socials-header {
    margin: 0;
    margin-bottom: 8px;
    font-size: 14px;
  }
  .header .mobile-contact-info .city,
  .header .mobile-contact-info .phone,
  .header .mobile-contact-info .mail {
    font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    color: #111d19;
  }
  .header .mobile-contact-info .phone,
  .header .mobile-contact-info .mail {
    text-decoration: none;
  }
  .header .mobile-contact-info .social {
    padding: 8px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
    color: #111d19;
    font-size: 10px;
    line-height: 15px;
    text-decoration: none;
  }
  .header .mobile-contact-info .social-icon {
    height: 16px;
    margin-right: 8px;
  }


  .header .selection-block {
    display: block;
    width: auto;
    height: calc(100vh - 54px);
    background: white;
    -webkit-filter: none;
            filter: none;
    padding: 0;
  }
  .header .back-arrow {
    width: 20px;
    height: 20px;
    margin-right: 16px;
  }
  .header .back-button {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .header .selection-info-header {
    padding: 24px 16px;
    border-bottom: 1px solid #dcdcdc;
  }
  .header .back-button span {
    font-family: "Satoshi-Bold", sans-serif;
    font-weight: 700;
    color: #111d19;
    font-size: 18px;
    line-height: 20px;
  }
  .header .w-full {
    width: 100%;
  }
  .header .selection-item-container {
    padding: 0 16px;
    width: auto;
    height: calc(100% - 71px);
    overflow-y: auto;
  }
  .header .h-content {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
@-webkit-keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  50% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  50% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes opacityAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacityAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* HEADER end*/


/* FOOTER start*/
.footer-layout {
  display: absolute;
  width: 100%;
  bottom: 0;
  background-color: #000000;
  overflow: hidden;
}
.footer-layout .content {
  width: 87%;
  max-width: 1920px;
  margin: auto;
  height: 100%;
  font-family: "Satoshi-Medium";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
}
.footer-layout .wrapper-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.footer-layout .contacts {
  width: 15%;
  min-width: 200px;
  padding-top: 84px;
}
.footer-layout .contacts .text {
  font-family: "Satoshi-Medium";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 19px;
}
.footer-layout .contacts h2 {
  margin-top: 0;
  margin-bottom: 19px;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  line-height: 37px;
  font-size: 24px;
  color: #ffffff;
}
.footer-layout .contact-us {
  width: 100%;
  height: 56px;
  margin-top: 55px;
  text-align: center;
}
.footer-layout .blocks-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 75%;
  padding-top: 84px;
  padding-left: 70px;
  border-left: 1px solid rgba(245, 245, 247, 0.1019607843);
}
.footer-layout .contact {
  white-space: nowrap;
  text-decoration: none;
  color: white;
}
.footer-layout .block {
  min-width: 29%;
  padding-right: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 52px;
}
.footer-layout .block h3 {
  margin: 0;
  font-family: "Satoshi-Medium";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #38BC64;
  opacity: 0.7;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245, 245, 247, 0.1019607843);
}
.footer-layout .block .block-content a {
  text-decoration: none;
  cursor: pointer;
}
.footer-layout .block-content ul {
  margin: 0;
  padding: 8px 0 0 0;
  list-style-type: none;
  text-decoration: none;
}
.footer-layout .block-content ul li {
  margin-top: 16px;
}
.footer-layout .footer-link {
  font-family: "Satoshi-Regular";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #C7CACB;
  border: 1px solid #000000;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  flex: none;
}
.footer-layout .block-bottom {
  margin-top: 51px;
}
.footer-layout div.bottom-hr {
  opacity: 0.1;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #f5f5f7;
}
.footer-layout .wrapper-bottom {
  width: 87%;
  margin: auto;
  padding-bottom: 60px;
  padding-top: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-layout div.name {
  font-family: "Satoshi-Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  color: #4f4f4f;
}
.footer-layout .media-wrapper {
  display: flex;
}
.footer-layout .media-title {
  font-family: "Satoshi-Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #4f4f4f;
  display: flex;
  align-items: center;
  margin-right: 19px;
}
.footer-layout .media-block {
  display: flex;
  justify-content: space-between;
}
.footer-layout a {
  text-decoration: none;
}
.footer-layout .media-item {
  display: flex;
  justify-content: space-between;
  margin-right: 30px;
  text-decoration: none;
}
.footer-layout .media-item .media-name {
  font-family: "Satoshi-Bold";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
  color: #ffffff;
  text-decoration: none;
}
.footer-layout .media-item .media-img {
  margin-right: 12px;
}
.footer-layout .media-img {
  width: 24px;
  height: 24px;
}
.footer-layout .btn-content {
  font-family: "Satoshi-Bold";
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  width: 200px;
  padding: 15px 0;
  border: none;
  cursor: pointer;
  background-color: #193028;
  border-bottom: 2px solid #38bc64;
}
.footer-layout .vertical {
  display: flex;
  border-right: 1px solid #F5F5F7;
  opacity: 0.1;
  height: 100%;
}
@media screen and (max-width: 1130px) {
  .footer-layout {
    padding-bottom: 40px;
  }
  .footer-layout .wrapper-top {
    padding: 35px 6% 6px 2%;
  }
  .footer-layout .blocks-wrapper {
    width: 80%;
    padding-left: 0;
    border-left: none;
    white-space: nowrap;
    padding-top: 40px;
  }
  .footer-layout .block-col:nth-child(2) {
    width: 192px;
    margin-right: 0;
  }
  .footer-layout .block {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: 33%;
  }
  .footer-layout .wrapper-bottom {
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column-reverse;
  }
  .footer-layout .media-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
  }
  .footer-layout .media-title {
    margin: auto;
    margin-bottom: 20px;
  }
  .footer-layout .media-item {
    margin-right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .footer-layout .media-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-layout .media-img {
    height: 16px;
    width: 16px;
    margin-right: 6px;
  }
  .footer-layout .media-item .media-name {
    font-size: 11px;
    line-height: 17px;
  }
  .footer-layout .contact h2 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
  }
  .footer-layout .text {
    margin-top: -24px;
    margin-bottom: 16px;
  }
  .footer-layout .contact-us {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .footer-layout .wrapper-top {
    flex-direction: column;
    padding-bottom: 0;
  }
  .footer-layout .contact-us {
    margin: auto;
  }
  .footer-layout .wrapper-bottom {
    flex-direction: column-reverse;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-layout .media-wrapper {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
  }
  .footer-layout .media-title {
    margin-right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
  }
  .footer-layout .empty-block {
    display: none;
  }
  .footer-layout .media-item {
    margin-right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .footer-layout .media-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-layout .media-img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  .footer-layout .media-item .media-name {
    font-size: 11px;
    line-height: 17px;
  }
  .footer-layout .footer-link {
    font-size: 13px;
    line-height: 20px;
  }
}
/* FOOTER end*/

/* CONTENT  start */
.content-area {}
.content-area .page-layout {
    min-height: 100%;
    min-height: 600px;
    width: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.content-area .page-content {
    max-width: 1920px;
    width: 100%;
    min-height: 100%;
    position: relative;
    background-color: #fff;
}

/* CONTENT  end */






/* MODAL start */
.show {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #FFFFFF;
}

.hidden {
    display: none;
}

.modal {
  height: 100vh;
  overflow-y: auto;
}
.modal .wrapper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.modal .layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  justify-content: center;
  overflow: hidden;
}
.modal .header {
  display: flex;
  width: 80%;
  padding-left: 10%;
  padding-right: 10%;
  margin: auto;
  height: 50px;
  border-bottom: 1px solid #DCDCDC;
  justify-content: space-between;
  align-items: center;
}
.modal .logo {
  margin-bottom: 13px;
  margin-top: auto;
}
.modal .content {
  width: 80%;
  margin: auto;
  margin-top: 60px;
}
.modal .wrapper-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.modal .title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #183028;
  font-size: 32px;
  line-height: 40px;
}
.modal .close-btn-desktop {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background-color: #F8F7F2;
  border: 1px solid #4F4F4F;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.modal .close-btn-mobile img {
  width: 16px;
  height: 16px;
}
.modal .close-btn-mobile {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #F8F7F2;
  border: 1px solid #4F4F4F;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.modal .wrapper-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 32px;
}
.modal .left-part {
  width: 48.8%;
}
.modal .right-part {
  width: 48.8%;
  display: flex;
}
.modal .input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.modal .input-container label {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.modal .input {
  background-color: #F5F5F7;
  padding: 4px 14px;
  border: 1px solid #C7CACB;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: black;
  font-size: 14px;
  line-height: 40px;
}
.modal .textarea {
  resize: none;
  height: 100%;
  padding: 24px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  color: black;
  font-size: 14px;
  line-height: 24px;
}
.modal .disabled {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  opacity: 0.3;
  -webkit-animation: disableInputAnim 150ms ease-out;
          animation: disableInputAnim 150ms ease-out;
  transform-origin: top center;
}
.modal .textarea-container {
  width: 100%;
  height: 100%;
}
.modal .submit-btn {
  margin-top: 44px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  border: none;
  background-color: #193028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}
.modal .border-top {
  background: radial-gradient(50% 50% at 50% 50%, rgba(56, 188, 100, 0) 0%, #38BC64 54.1%, rgba(56, 188, 100, 0) 100%);
  background-position: center;
  background-repeat: no-repeat;
  width: 85%;
  height: 2px;
  z-index: 25;
  position: relative;
  margin: auto;
  margin-bottom: 42px;
}
.modal .footer-text {
  width: 41.4%;
  margin: auto;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #111D19;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
}
.modal .desktop-hidden {
  display: none;
}
.modal .mobile-hidden {
  display: flex;
}
.modal .error-msg-container {
  margin-left: auto;
  margin-right: 0;
  margin-bottom: -19px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  color: #F07441;
  font-size: 12px;
  line-height: 19px;
}
.modal .error-input {
  border: 1px solid #F07441;
}
.modal .request-loading {
  border-top: 2px solid white;
  border-right: 2px solid white;
  width: 24px;
  height: 24px;
  border-radius: 16px;
  -webkit-animation: loadingCercle 500ms infinite;
          animation: loadingCercle 500ms infinite;
}
.modal .request-done {
  width: 24px;
  height: 24px;
  -webkit-animation: apperDone 100ms ease-in;
          animation: apperDone 100ms ease-in;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
@media screen and (max-width: 1130px) {
  .modal .desktop-hidden {
    display: flex;
  }
  .modal .mobile-hidden {
    display: none;
  }
  .modal .header {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    border-bottom: none;
  }
  .modal .content {
    margin-top: 24px;
    width: 90%;
  }
  .modal .title {
    width: 90%;
  }
  .modal .left-part {
    width: 100%;
  }
  .modal .input-container label {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px;
  }
  .modal .input {
    font-size: 12px;
    line-height: 20px;
    padding: 10px 14px;
  }
  .modal .logo {
    width: 100px;
    margin-bottom: 16px;
    margin-top: 12px;
    height: auto;
  }
  .modal .border-top {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 32px;
  }
  .modal .footer-text {
    width: 87.5%;
    font-size: 14px;
    line-height: 19px;
  }
  .modal .textarea {
    height: 185px;
  }
  .modal .textarea-container {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@-webkit-keyframes disableInputAnim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes disableInputAnim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@-webkit-keyframes loadingCercle {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes loadingCercle {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@-webkit-keyframes apperDone {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes apperDone {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/* BLOCKS ----------------------------------------------------------------------------*/

/* BLOCK block-greetingwithtext START */
.block-greetingwithtext .content {
  width: 67.3%;
  margin-left: 13.6%;
  margin-top: 160px;
  min-width: 900px;
}

.block-greetingwithtext .header {
  font-family: 'Satoshi-Black', sans-serif;
  font-weight: 900;
  color: #183028;
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.block-greetingwithtext .description {
  font-family: 'Satoshi-Medium', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #0F0F0F;
  margin-bottom: 40px;
}

.block-greetingwithtext .header-preview {
  font-family: 'Satoshi-Bold', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #38BC64;
  margin-bottom: 40px;
}

.block-greetingwithtext .text-uppercase {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 19px;
}

.block-greetingwithtext .desctop-hidden {
  display: none;
}

@media screen and (max-width: 1130px) {
  .block-greetingwithtext .content {
    min-width: 1px;
    width: 92.5%;
    margin: auto;
    margin-top: 32px;
  }

  .block-greetingwithtext .header {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 16px;
  }

  .block-greetingwithtext .header-preview {
    font-size: 12px;
    margin-bottom: 19px;
  }

  .block-greetingwithtext .mobile-container {
    border-top: 1px solid #DCDCDC;
    padding-top: 16px;
  }

  .block-greetingwithtext .mobile-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 16px;
    align-items: flex-start;
  }

  .block-greetingwithtext .description {
    width: 81.45%;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 24px;
  }

  .block-greetingwithtext .desctop-hidden {
    display: block;
  }

  .block-greetingwithtext .btn {
    display: flex;
    justify-content: center;
  }

  .block-greetingwithtext .mobile-hidden {
    display: none;
  }

  .block-greetingwithtext .description br {
    display: none;
  }

  .block-greetingwithtext .text-uppercase {
    font-size: 10px;
    line-height: 19px;
  }
}
/* BLOCK block-greetingwithtext END*/

/* BLOCK block-provideinfo START*/
.block-provideinfo .main-container {
  display: flex;
  color: #FFFFFF;
}
.block-provideinfo .header-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  margin-top: 86px;
  margin-bottom: 127px;
}
.block-provideinfo .header {
  font-family: "Satoshi-Black";
  font-size: 48px;
  text-transform: uppercase;
  width: 85%;
}
.block-provideinfo .content-container {
  width: 87%;
  margin: 0 auto;
}
.block-provideinfo .image {
  width: 100px;
  margin-left: 30px;
  margin-right: 187px;
}
.block-provideinfo .items-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.block-provideinfo .item-container {
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  justify-content: space-between;
  position: relative;
}
.block-provideinfo .number-title-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.block-provideinfo .number-item {
  color: #38BC64;
  font-family: "Satoshi-Bold";
  font-size: 20px;
}
.block-provideinfo .title-item {
  font-family: "Satoshi-Bold";
  font-size: 20px;
  width: 100%;
  display: flex;
  align-items: center;
}
.block-provideinfo .description-item {
  font-family: "Satoshi-Medium";
  font-size: 16px;
  color: #C7CACB;
  width: 41.15%;
  display: flex;
  align-items: center;
}
.block-provideinfo .line-item {
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.1;
}
.block-provideinfo .line-vertical-item {
  opacity: 0.1;
  background-color: #FFFFFF;
  width: 1px;
  height: 100%;
  left: 190px;
  position: absolute;
  top: 0;
}
.block-provideinfo .arrow-down-image {
  visibility: hidden;
}
.block-provideinfo .left-part {
  display: flex;
  flex-direction: row;
  width: 53%;
}
@media screen and (max-width: 1130px) {
  .block-provideinfo .content-container {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }
  .block-provideinfo .item-container {
    display: flex;
    flex-direction: column;
    padding-top: 64px;
    padding-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
  }
  .block-provideinfo .title-item {
    justify-content: flex-start;
    margin-left: 16px;
    font-size: 16px;
    line-height: 24px;
    width: auto;
  }
  .block-provideinfo .line-item {
    position: relative;
    display: flex;
    margin-bottom: 16px;
    margin-top: 16px;
  }
  .block-provideinfo .header-container {
    margin-bottom: 52px;
    margin-top: 40px;
  }
  .block-provideinfo .header {
    font-size: 18px;
    max-width: unset;
    width: auto;
  }
  .block-provideinfo .image {
    width: 100px;
    margin: 0;
    margin-bottom: 40px;
  }
  .block-provideinfo .line-vertical-item {
    visibility: hidden;
  }
  .block-provideinfo .title-item {
    margin-bottom: 16px;
    margin-left: 16px;
    margin-right: 16px;
  }
  .block-provideinfo .image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .block-provideinfo .description-item {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
    font-family: "Satoshi-Regular", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
  .block-provideinfo .items-container .line-item {
    display: none;
  }
  .block-provideinfo .arrow-down-image {
    visibility: visible;
    width: 24px;
    margin-left: 10px;
  }
  .block-provideinfo .first-item {
    padding-top: 0;
  }
  .block-provideinfo .left-part {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
}
/* BLOCK block-provideinfo END*/



/* blog archive */
.blog-page .blog-page-header h1 {
  margin-top: 84px;
  margin-bottom: 24px;
  text-align: center;
  font-family: "Satoshi-Black", sans-serif;
  font-weight: 900;
  color: #111d19;
  font-size: 44px;
  line-height: 50px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.blog-page .blog-page-header h4 {
  margin: 0;
  text-align: center;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  color: #0f0f0f;
  font-size: 16px;
  line-height: 23px;
}
.blog-page .blog-page-header {
  margin-bottom: 80px;
}
.blog-page .blog-page-body {
  width: 72.8%;
  margin: 0 auto;
}
.blog-page .articles {
  margin-top: 80px;
  margin-bottom: 80px;
}
.blog-page .article {
  margin-bottom: 48px;
}
.blog-page .blog-page-footer {
  padding-bottom: 160px;
}
.blog-page .error-layout {
  min-height: 100%;
  width: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.blog-page .error-content {
  max-width: 1920px;
  width: 100%;
  min-height: 100%;
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
}
.blog-page .error-img {
  width: 23%;
  margin: 0 auto;
  margin-bottom: 46px;
  height: auto;
}
.blog-page .error-content h6 {
  text-align: center;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 29px;
  line-height: 45px;
  margin-top: 0;
  margin-bottom: 57px;
}
.blog-page .homepage {
  width: 135px;
  margin: 0 auto;
  margin-bottom: 160px;
  padding-top: 7px;
  padding-bottom: 8px;
  border-bottom: 3px solid #38bc64;
  text-align: center;
  background: #193028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
}
.blog-page .homepage:hover {
  color: #38bc64;
}
@media screen and (max-width: 1130px) {
  .blog-page .blog-page-header h1 {
    font-size: 28px;
    line-height: 50px;
    margin-top: 48px;
    margin-bottom: 16px;
  }
  .blog-page .blog-page-header h4 {
    font-size: 12px;
    line-height: 20px;
    width: 70%;
    margin: 0 auto;
  }
  .blog-page .blog-page-header {
    margin-bottom: 40px;
  }
  .blog-page .blog-page-body {
    width: 90%;
  }
  .blog-page .articles {
    margin-top: 24px;
    margin-bottom: 40px;
  }
  .blog-page .article {
    margin-bottom: 28px;
  }
  .blog-page .blog-page-footer {
    padding-bottom: 80px;
  }
  .blog-page .error-content {
    padding-top: 98px;
  }
  .blog-page .error-img {
    width: 72.5%;
    margin-bottom: 15px;
  }
  .blog-page .error-content h6 {
    font-size: 16px;
    line-height: 45px;
    margin-bottom: 32px;
  }
  .blog-page .homepage {
    margin-bottom: 300px;
  }
}

/* categorySwitcher */
.categorySwitcher .content {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  overflow-y: auto;
}
.categorySwitcher .category {
  padding: 12px 24px;
  margin-right: 16px;
  font-family: "Satochi-Bold", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
}
.categorySwitcher .active {
  background: #2D9650;
  border: none;
  color: white;
}
.categorySwitcher .nonActive {
  background: #F8F7F2;
  border: 1px solid #DCDCDC;
  color: #183028;
}
@media screen and (max-width: 1130px) {
  .categorySwitcher .category {
    padding: 4px 16px;
    font-size: 10px;
    line-height: 23px;
  }
}

/* article tile layout */
.article-tile-layout .content {
  display: flex;
  justify-content: space-between;
}
.article-tile-layout .left {
  width: 35.7%;
  min-height: 223px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.article-tile-layout .right {
  width: 58.5%;
}
.article-tile-layout .category {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #38BC64;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}
.article-tile-layout .title {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #183028;
  font-size: 26px;
  line-height: 32px;
  text-decoration: none;
  margin-bottom: 16px;
}
.article-tile-layout .description {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  color: #183028;
  font-size: 16px;
  line-height: 23px;
  margin: 0;
}
@media screen and (max-width: 1130px) {
  .article-tile-layout .content {
    flex-direction: column;
  }
  .article-tile-layout .left {
    width: 100%;
    height: 233px;
    margin-bottom: 24px;
  }
  .article-tile-layout .right {
    width: 100%;
  }
  .article-tile-layout .category {
    font-size: 14px;
    line-height: 20px;
  }
  .article-tile-layout .title {
    font-size: 16px;
    line-height: 20px;
    color: #2F3141;
  }
  .article-tile-layout .description {
    font-size: 14px;
    line-height: 22px;
    color: #4F4F4F;
  }
}

/* pagination */
.pagination .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.pagination .numbers {
  display: flex;
  flex-direction: row;
}
.pagination .prev-arrow {
  margin-right: 4px;
}
.pagination .arrow {
  border: 1px solid rgba(0, 0, 0, 0);
}
.pagination .arrow:hover {
  border: 1px solid #38BC64;
  cursor: pointer;
}
.pagination .arrow:hover svg path {
  stroke: #38BC64;
}
.pagination .item, .pagination .arrow {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 8px;
}
.pagination .item {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.01em;
  margin-right: 4px;
}
.pagination .item-selected {
  background: #38BC64;
  color: white;
  border: 1px solid #38BC64;
}
.pagination .item-non-selected {
  color: #111D19;
  border: 1px solid rgba(0, 0, 0, 0);
  text-decoration: none;
}
.pagination .item-non-selected:hover {
  border: 1px solid #38BC64;
  color: #38BC64;
  cursor: pointer;
}
@media screen and (max-width: 1130px) {
  .pagination .item, .pagination .arrow {
    width: 30px;
    height: 30px;
  }
  .pagination svg {
    width: 16px;
    height: 16px;
  }
}


/*  */
/* BLOG SINGLE PAGE */
/*  */
.blog-header .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid #DCDCDC;
  border-top: 1px solid #DCDCDC;
}
.blog-header .left {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 50%;
  height: auto;
}
.blog-header .arrow {
  position: absolute;
  top: 40px;
  left: 84px;
  cursor: pointer;
}
.blog-header .arrow:hover .circle {
  fill-opacity: 95%;
}
.blog-header .right {
  width: 40%;
  margin-right: 7.6%;
  padding-top: 40px;
}
.blog-header .author-img {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  margin-right: 16px;
}
.blog-header .author-block {
  display: flex;
  flex-direction: row;
}
.blog-header .author-name-block {
  display: flex;
  flex-direction: column;
}
.blog-header .autrhor-name-lable {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #4F4F4F;
  margin-bottom: -4px;
}
.blog-header .author-name {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #183028;
}
.blog-header .wrapper-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 72px;
}
.blog-header .date {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #4F4F4F;
  margin-bottom: 4px;
}
.blog-header .date-from-api {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #183028;
  text-align: right;
}
.blog-header .wrapper-middle {
  margin-bottom: 95px;
}
.blog-header .title {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
  color: #111D19;
}
.blog-header .wrapper-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 34px;
}
.blog-header .time-for-reading {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: #4F4F4F;
  margin-top: 8px;
}
.blog-header .time {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: #111D19;
  margin-left: 4px;
}
.blog-header .category {
  border-radius: 9999px;
  border: 1px solid #38BC64;
  padding: 6px 12px;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: #111D19;
}
@media screen and (max-width: 1130px) {
  .blog-header .arrow {
    position: absolute;
    top: 32px;
    left: 16px;
    margin-left: 0;
    margin-top: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .blog-header .content {
    flex-direction: column;
    position: relative;
  }
  .blog-header .left {
    width: 100%;
    max-width: none;
  }
  .blog-header .mobile-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
  .blog-header .right {
    padding-top: 32px;
    width: 90%;
    margin: 0 auto;
  }
  .blog-header .title {
    margin-top: 0;
    font-size: 20px;
    line-height: 28px;
  }
  .blog-header .wrapper-middle {
    margin-bottom: 32px;
  }
  .blog-header .author-img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  .blog-header .autrhor-name-lable {
    font-size: 12px;
    line-height: 18px;
  }
  .blog-header .author-name {
    font-size: 12px;
    line-height: 18px;
  }
  .blog-header .author-name-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .blog-header .date {
    font-size: 12px;
    line-height: 18px;
  }
  .blog-header .date-from-api {
    font-size: 10px;
    line-height: 15px;
  }
  .blog-header .wrapper-top {
    margin-bottom: 16px;
  }
  .blog-header .wrapper-bottom {
    flex-direction: row-reverse;
    margin-bottom: 16px;
  }
  .blog-header .category {
    padding: 6px 25px;
    font-size: 12px;
    line-height: 18px;
  }
  .blog-header .time-for-reading {
    font-size: 12px;
    line-height: 18px;
  }
  .blog-header .time {
    font-size: 10px;
    line-height: 15px;
  }
}

.blog-single-page .page-body {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  width: 57.36%;
  margin: 0 auto;
}
.blog-single-page .page-footer {
  margin-bottom: 192px;
}
@media screen and (max-width: 1130px) {
  .blog-single-page .page-body {
    width: 90%;
    padding-top: 40px;
  }
  .blog-single-page .page-footer {
    margin-bottom: 80px;
  }
}
.blog-single-page .error-layout {
  min-height: 100%;
  width: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.blog-single-page .error-content {
  max-width: 1920px;
  width: 100%;
  min-height: 100%;
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
}
.blog-single-page .error-img {
  width: 23%;
  margin: 0 auto;
  margin-bottom: 46px;
  height: auto;
}
.blog-single-page .error-content h6 {
  text-align: center;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 29px;
  line-height: 45px;
  margin-top: 0;
  margin-bottom: 57px;
}
.blog-single-page .homepage {
  width: 135px;
  margin: 0 auto;
  margin-bottom: 160px;
  padding-top: 7px;
  padding-bottom: 8px;
  border-bottom: 3px solid #38bc64;
  text-align: center;
  background: #193028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
}
.blog-single-page .homepage:hover {
  color: #38bc64;
}
@media screen and (max-width: 1130px) {
  .blog-single-page .error-content {
    padding-top: 98px;
  }
  .blog-single-page .error-img {
    width: 72.5%;
    margin-bottom: 15px;
  }
  .blog-single-page .error-content h6 {
    font-size: 16px;
    line-height: 45px;
    margin-bottom: 32px;
  }
  .blog-single-page .homepage {
    margin-bottom: 300px;
  }
}


/* single page blog blocks
--blog-text ------------- */
.blog-text {
    padding-bottom: var(--pb-desktop, 0);
}
.blog-text .text {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #183028;
  margin: 0;
}
.blog-text .content {
  width: 100%;
  max-width: 826px;
  margin: auto;
}
.blog-text .text a {
  color: #183028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}
.blog-text .text a:hover {
  color: #38BC64;
  -webkit-text-decoration-color: #38BC64;
          text-decoration-color: #38BC64;
}
.blog-text .text p {
  margin-top: 0;
}
@media screen and (max-width: 1130px) {
  .blog-text {
        padding-bottom: var(--pb-mobile, 0);
    }
  .blog-text .text {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-text .text .mobile-hidden {
    display: none;
  }
}

/* single page blog blocks
--blog-markedlist-- ------------- */
.blog-markedlist {
  padding-bottom: var(--pb-desktop, 0);
}
.blog-markedlist .title {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #38BC64;
  margin-bottom: 16px;
}
.blog-markedlist .content {
  width: 100%;
  max-width: 826px;
  margin: auto;
}
.blog-markedlist .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.blog-markedlist .round {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38BC64;
  margin-right: 22px;
}
.blog-markedlist .row-text {
  font-family: "Satoshi-Black", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  color: #111D19;
}
.blog-markedlist .row-text a {
  color: #183028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}
.blog-markedlist .row-text a:hover {
  color: #38BC64;
  -webkit-text-decoration-color: #38BC64;
          text-decoration-color: #38BC64;
}
.blog-markedlist .border-b {
  border-bottom: 1px solid #DCDCDC;
}
@media screen and (max-width: 1130px) {
  .blog-markedlist {
    padding-bottom: var(--pb-mobile, 0);
  }
  .blog-markedlist .title {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 0;
  }
  .blog-markedlist .title .mobile-hidden {
    display: none;
  }
  .blog-markedlist .round {
    width: 8px;
    height: 8px;
    margin-right: 8px;
  }
  .blog-markedlist .row-text {
    font-size: 12px;
    line-height: 20px;
  }
}


/* single page blog blocks
--blog-numerablelist ------------- */
.blog-numerablelist {
  padding-bottom: var(--pb-desktop, 0);
}
.blog-numerablelist .title {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #38BC64;
  margin-bottom: 16px;
}
.blog-numerablelist .content {
  width: 100%;
  max-width: 826px;
  margin: auto;
}
.blog-numerablelist .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 16px;
}
.blog-numerablelist .number {
  display: inline-block;
  width: 30px;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.01em;
  color: #38BC64;
}
.blog-numerablelist .row-text {
  font-family: "Satoshi-Black", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  color: #111D19;
}
.blog-numerablelist .row-text a {
  color: #183028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}
.blog-numerablelist .row-text a:hover {
  color: #38BC64;
  -webkit-text-decoration-color: #38BC64;
          text-decoration-color: #38BC64;
}
@media screen and (max-width: 1130px) {
  .blog-numerablelist {
    padding-bottom: var(--pb-mobile, 0);
  }
  .blog-numerablelist .number, .blog-numerablelist .row-text {
    font-size: 14px;
    line-height: 20px;
  }
}



/* single page blog blocks
--blog-textwithbigtitle ------------- */
.blog-textwithbigtitle {
  padding-bottom: var(--pb-desktop, 0);
}
.blog-textwithbigtitle .title {
  font-family: "Satoshi-Black", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 34px;
  color: #111D19;
  margin: 0;
  margin-bottom: 32px;
}
.blog-textwithbigtitle .content {
  width: 100%;
  max-width: 826px;
  margin: auto;
}
.blog-textwithbigtitle .text {
  margin-top: 0;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #183028;
}
.blog-textwithbigtitle .text a {
  color: #183028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}
.blog-textwithbigtitle .text a:hover {
  color: #183028;
  color: #38BC64;
  -webkit-text-decoration-color: #38BC64;
          text-decoration-color: #38BC64;
}
.blog-textwithbigtitle .text p {
  margin-bottom: 0;
}
@media screen and (max-width: 1130px) {
  .blog-textwithbigtitle {
    padding-bottom: var(--pb-mobile, 0);
  }
  .blog-textwithbigtitle .title {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 16px;
  }
  .blog-textwithbigtitle .text {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-textwithbigtitle .text .mobile-hidden {
    display: none;
  }
}

/* single page blog blocks
--blog-textwithsmalltitle-- ------------- */
.blog-textwithsmalltitle {
  padding-bottom: var(--pb-desktop, 0);
}
.blog-textwithsmalltitle .title {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  color: #111D19;
  margin: 0;
  margin-bottom: 24px;
}
.blog-textwithsmalltitle .content {
  width: 100%;
  max-width: 826px;
  margin: auto;
}
.blog-textwithsmalltitle .text {
  margin-top: 0;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #183028;
}
.blog-textwithsmalltitle .text a {
  color: #183028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}
.blog-textwithsmalltitle .text a:hover {
  color: #38BC64;
  -webkit-text-decoration-color: #38BC64;
          text-decoration-color: #38BC64;
}
.blog-textwithsmalltitle .text p {
  margin-bottom: 0;
}
@media screen and (max-width: 1130px) {
  .blog-textwithsmalltitle {
    padding-bottom: var(--pb-mobile, 0);
  }
  .blog-textwithsmalltitle .title {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .blog-textwithsmalltitle .text {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-textwithsmalltitle .text .mobile-hidden {
    display: none;
  }
}

/* single page blog blocks
--blog-textwithgreentitle-- ------------- */
.blog-textwithgreentitle {
  padding-bottom: var(--pb-desktop, 0);
}
.blog-textwithgreentitle .title {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  color: #38BC64;
  margin: 0;
  margin-bottom: 24px;
}
.blog-textwithgreentitle .content {
  width: 100%;
  max-width: 826px;
  margin: auto;
}
.blog-textwithgreentitle .text {
  margin-top: 0;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #183028;
}
.blog-textwithgreentitle .text a {
  color: #183028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
}
.blog-textwithgreentitle .text a:hover {
  color: #183028;
  color: #38BC64;
  -webkit-text-decoration-color: #38BC64;
          text-decoration-color: #38BC64;
}
.blog-textwithgreentitle .text p {
  margin-bottom: 0;
}
@media screen and (max-width: 1130px) {
  .blog-textwithgreentitle {
    padding-bottom: var(--pb-mobile, 0);
  }
  .blog-textwithgreentitle .title {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .blog-textwithgreentitle .text {
    font-size: 14px;
    line-height: 20px;
  }
  .blog-textwithgreentitle .text .mobile-hidden {
    display: none;
  }
  .blog-textwithgreentitle .text p {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}


/* single page blog blocks
--blog-imagewithdescription-- ------------- */
.blog-imagewithdescription {
  padding-bottom: var(--pb-desktop, 0);
}
.blog-imagewithdescription .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100%;
  max-width: 826px;
  margin: auto;
}
.blog-imagewithdescription .image {
  width: 100%;
  height: auto;
}
.blog-imagewithdescription .description {
  text-align: center;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.01em;
  color: #4F4F4F;
  margin-top: 22px;
  margin-bottom: 22px;
}
@media screen and (max-width: 1130px) {
  .blog-imagewithdescription {
    padding-bottom: var(--pb-mobile, 0);
  }
  .blog-imagewithdescription .description {
    font-size: 12px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1130px) {
  .blog-imagewithdescription .image {
    height: 325px;
  }
}


/* single page blog blocks
--blog-video--------------- */
.blog-video {
  padding-bottom: var(--pb-desktop, 0);
}
.blog-video .video-frame {
  width: 100%;
  height: 466px;
  border-radius: 8px;
}
.blog-video .content {
  width: 100%;
  max-width: 826px;
  margin: auto;
}
@media screen and (max-width: 1130px) {
  .blog-video {
    padding-bottom: var(--pb-mobile, 0);
  }
  .blog-video .video-frame {
    height: 156px;
  }
}


/* single page blog blocks
--blog-contactus--------------- */
.blog-contactus {
  padding-bottom: var(--pb-desktop, 0);
}
.blog-contactus .content {
  width: 100%;
  border-top: 1px solid #DCDCDC;
  padding-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.blog-contactus .left {
  width: 62%;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #38BC64;
}
@media screen and (max-width: 1130px) {
  .blog-contactus {
    padding-bottom: var(--pb-mobile, 0);
  }
  .blog-contactus .content {
    flex-direction: column;
    padding-top: 24px;
  }
  .blog-contactus .left {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .blog-contactus .left .mobile-hidden {
    display: none;
  }
}

/* single page blog blocks
--blogfeedback--------------- */
.blogfeedback .content {
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 28px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #DCDCDC;
  margin-bottom: 80px;
}
.blogfeedback .rates {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.blogfeedback .text {
  text-align: center;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: -0.01em;
  color: #111D19;
  margin-bottom: 16px;
}
.blogfeedback button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.blogfeedback button:hover > img {
  transition: all 250ms ease-in-out;
  scale: 1.25;
  margin-left: -4px;
  margin-top: -4px;
}
.blogfeedback .ml {
  margin-left: 24px;
}
@-webkit-keyframes scaleEmoji {
  0% {
    transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
  }
  100% {
    transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    margin-left: -4px;
    margin-top: -4px;
  }
}
@keyframes scaleEmoji {
  0% {
    transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
  }
  100% {
    transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    margin-left: -4px;
    margin-top: -4px;
  }
}




/* single page blog blocks
--blog-readmore--------------- */
.blog-readmore .content {
  width: 87%;
  margin: 0 auto;
}
.blog-readmore .wrapper-top {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin-bottom: 32px;
}
.blog-readmore .arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.blog-readmore .arrow-left {
  margin-right: 16px;
}
.blog-readmore .arrow img {
  width: 18px;
  height: 18px;
}
.blog-readmore .arrow {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background-color: #111D19;
  cursor: pointer;
}
.blog-readmore .articles {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.blog-readmore .article {
  width: 31.5%;
  text-decoration: none;
}
.blog-readmore .img {
  width: 100%;
  height: 223px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 32px;
}
.blog-readmore .title-main {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.01em;
  color: #183028;
  margin: 0;
}
.blog-readmore .title {
  margin: 0;
  margin-bottom: 16px;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #111D19;
}
.blog-readmore .empty {
  width: 31.5%;
}
.blog-readmore .category {
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #38BC64;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-readmore .description p {
  margin-top: 0;
}
.blog-readmore .description {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #4F4F4F;
}
@media screen and (max-width: 1130px) {
  .blog-readmore .arrows {
    display: none;
  }
  .blog-readmore .articles {
    flex-direction: column;
  }
  .blog-readmore .article {
    width: 100%;
    margin-bottom: 8px;
  }
  .blog-readmore .article .mobile-hidden {
    display: none;
  }
  .blog-readmore .wrapper-top {
    margin-bottom: 24px;
  }
  .blog-readmore .description {
    font-size: 14px;
    line-height: 22px;
  }
  .blog-readmore .category {
    margin-bottom: 6px;
  }
  .blog-readmore .title {
    margin-bottom: 8px;
  }
}

.blog-readmore .articles {
    display: flex;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.blog-readmore .article {
    flex: 0 0 calc(33.333% - 20px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

@media (max-width: 1130px) {
    .blog-readmore .articles {
        flex-wrap: nowrap;
        overflow-x: auto;
        -ms-scroll-snap-type: x mandatory;
            scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-readmore .article {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
    
    .blog-readmore .arrows {
        display: none;
    }
}


/*  contactUsModal.component.css */
.show {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hidden {
    display: none;
}

.modal {
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    z-index: 111;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
}
.contuct-us-modal .wrapper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.contuct-us-modal .layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  justify-content: center;
  overflow: hidden;
}
.contuct-us-modal .header {
  display: flex;
  width: 80%;
  padding-left: 10%;
  padding-right: 10%;
  margin: auto;
  height: 50px;
  border-bottom: 1px solid #DCDCDC;
  justify-content: space-between;
  align-items: center;
}
.contuct-us-modal .logo {
  margin-bottom: 13px;
  margin-top: auto;
}
.contuct-us-modal .content {
  width: 80%;
  margin: auto;
  margin-top: 60px;
}
.contuct-us-modal .wrapper-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.contuct-us-modal .title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #183028;
  font-size: 32px;
  line-height: 40px;
}
.contuct-us-modal .close-btn-desktop {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background-color: #F8F7F2;
  border: 1px solid #4F4F4F;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.contuct-us-modal .close-btn-mobile img {
  width: 16px;
  height: 16px;
}
.contuct-us-modal .close-btn-mobile {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #F8F7F2;
  border: 1px solid #4F4F4F;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.contuct-us-modal .wrapper-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 32px;
}
.contuct-us-modal .left-part {
  width: 48.8%;
}
.contuct-us-modal .right-part {
  width: 48.8%;
  display: flex;
}
.contuct-us-modal .input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.contuct-us-modal .input-container label {
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.contuct-us-modal .input {
  background-color: #F5F5F7;
  padding: 4px 14px;
  border: 1px solid #C7CACB;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: black;
  font-size: 14px;
  line-height: 40px;
}
.contuct-us-modal .textarea {
  resize: none;
  height: 100%;
  padding: 24px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  color: black;
  font-size: 14px;
  line-height: 24px;
}
.contuct-us-modal .disabled {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  opacity: 0.3;
  -webkit-animation: disableInputAnim 150ms ease-out;
          animation: disableInputAnim 150ms ease-out;
  transform-origin: top center;
}
.contuct-us-modal .textarea-container {
  width: 100%;
  height: 100%;
}
.contuct-us-modal .submit-btn {
  margin-top: 44px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  border: none;
  background-color: #193028;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}
.contuct-us-modal .border-top {
  background: radial-gradient(50% 50% at 50% 50%, rgba(56, 188, 100, 0) 0%, #38BC64 54.1%, rgba(56, 188, 100, 0) 100%);
  background-position: center;
  background-repeat: no-repeat;
  width: 85%;
  height: 2px;
  z-index: 25;
  position: relative;
  margin: auto;
  margin-bottom: 42px;
}
.contuct-us-modal .footer-text {
  width: 41.4%;
  margin: auto;
  font-family: "Satoshi-Bold", sans-serif;
  font-weight: 700;
  color: #111D19;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
}
.contuct-us-modal .desktop-hidden {
  display: none;
}
.contuct-us-modal .mobile-hidden {
  display: flex;
}
.contuct-us-modal .error-msg-container {
  margin-left: auto;
  margin-right: 0;
  margin-bottom: -19px;
  font-family: "Satoshi-Medium", sans-serif;
  font-weight: 500;
  color: #F07441;
  font-size: 12px;
  line-height: 19px;
}
.contuct-us-modal .error-input {
  border: 1px solid #F07441;
}
.contuct-us-modal .request-loading {
  border-top: 2px solid white;
  border-right: 2px solid white;
  width: 24px;
  height: 24px;
  border-radius: 16px;
  -webkit-animation: loadingCercle 500ms infinite;
          animation: loadingCercle 500ms infinite;
}
.contuct-us-modal .request-done {
  width: 24px;
  height: 24px;
  -webkit-animation: apperDone 100ms ease-in;
          animation: apperDone 100ms ease-in;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
@media screen and (max-width: 1130px) {
  .contuct-us-modal .desktop-hidden {
    display: flex;
  }
  .contuct-us-modal .mobile-hidden {
    display: none;
  }
  .contuct-us-modal .header {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    border-bottom: none;
  }
  .contuct-us-modal .content {
    margin-top: 24px;
    width: 90%;
  }
  .contuct-us-modal .title {
    width: 90%;
  }
  .contuct-us-modal .left-part {
    width: 100%;
  }
  .contuct-us-modal .input-container label {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px;
  }
  .contuct-us-modal .input {
    font-size: 12px;
    line-height: 20px;
    padding: 10px 14px;
  }
  .contuct-us-modal .logo {
    width: 100px;
    margin-bottom: 16px;
    margin-top: 12px;
    height: auto;
  }
  .contuct-us-modal .border-top {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 32px;
  }
  .contuct-us-modal .footer-text {
    width: 87.5%;
    font-size: 14px;
    line-height: 19px;
  }
  .contuct-us-modal .textarea {
    height: 185px;
  }
  .contuct-us-modal .textarea-container {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@keyframes disableInputAnim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes loadingCercle {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes apperDone {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}