@import url('https://fonts.googleapis.com/css2?family=Jost:wght@700&family=Noto+Sans:wght@700&family=Open+Sans&display=swap');

@font-face {
  font-family: "Material Icons";
  src: url("icomoon.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #9aac84;
  --accent: #161d20;
  --header: #ae0028;
  --succes: #4bd43f;
  --danger: #338f80;
  --light: #fff;
  --dark: #ae0028;


  --title-color: rgba(0, 0, 0, 0.85);
  --text-color: rgba(0, 0, 0, 0.85);
  --text-color-muted: rgba(0, 0, 0, 0.75);
  --btn-white-color: rgba(0, 0, 0, 0.9);
  
  --font-family: 'Open Sans', 'Arial', sans-serif;
  --button-font: 'Noto Sans', 'Arial', sans-serif;
  --title-font: 'Jost', 'Arial', sans-serif;
  --icon-font: "Material Icons";
  --transition: all 0.3s;
  
  --icon-bottom: "\e91a";
  --icon-heart-outline: "\e960";
  --icon-cross: "\e933";
  --icon-left: "\e96b";
  --icon-right: "\e9a2";
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  background: transparent;
  cursor: pointer;
}

button {
  font-family: inherit;
}

ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}

body {
  font: 16px/24px var(--font-family);
  background: var(--light);
  color: var(--text-color-muted);
  letter-spacing: 0.05em;
}

.center {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.wrapper {
  position: relative;
}

.btn {
  font: 16px/22px var(--button-font);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  /*padding: 0 40px;*/
  height: 80px;
  color: var(--btn-white-color);
  text-transform: uppercase;
  background: var(--gradient);
  border-radius: 200px;
  text-decoration: none;
  transition: var(--transition);
}

.btn:hover{
  background: linear-gradient(146.78deg, #FF8FF4 0.09%, #6BCDFF 98.31%);
}

.btn:after {
  position: absolute;
  content: "";
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  background: var(--light);
  border-radius: inherit;
}

.btn span {
  text-align: center;
  z-index: 1;
}

.btn.btn-dark {
  margin: 0 auto;
  max-width: 400px;
}

.btn.btn-dark:after {
  background: var(--dark);
}

.btn.btn-dark span {
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  font: 700 22px/28px var(--title-font);
  color: var(--title-color);
  max-width: 800px;
  margin: 0 auto 10px auto;
  text-transform: uppercase;
  text-align: center;
}

.header-block {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  background: var(--light);
  z-index: 6;
}

.header-block .center {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.header-logo{
  display: flex;
  align-items: center;
}

.header-nav {
  padding: 70px 20px 20px 20px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
  background: var(--light) url("nav-bg.png") no-repeat;
  background-position: bottom  right 20px;
  background-size: 90%;
  z-index: -1;
}

.header-nav.is-visible{
  min-height: 100vh;
  opacity: 1;
  visibility: visible;
}

.header-nav-buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.header-btn {
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
  margin-bottom: 20px;
}

.header-dropdown {
  margin-bottom: 20px;
}

.dropdown-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 24px;
  color: var(--title-color);
}

.dropdown-title-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background: none;
  border: none;
}

.dropdown-title-btn:before,
.dropdown-title-btn:after{
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
}

.dropdown-title-btn:before {
  position: absolute;
  top: 7px;
  left: 0;
  transform: rotate(90deg);
  transition: var(--transition);
}

.header-dropdown.is-open .dropdown-title-btn:before{
  opacity: 0;
}

.dropdown-list{
  max-height: 0px;
  overflow: hidden;
}

.header-dropdown.is-open .dropdown-list{
  max-height: none;
  overflow: visible;
  
}

.dropdown-list li {
  margin-bottom: 10px;
}

.dropdown-list a{
  text-decoration: none;
  color: rgba(0, 0, 0, .85);
}

.header-nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 18px;
  height: 14px;
}

.header-nav-burger span,
.header-nav-burger:before,
.header-nav-burger:after {
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #616161;
  transition: var(--transition);
}

.header-nav-burger:before,
.header-nav-burger:after {
  content: "";
}

.header-nav.is-visible + .header-nav-burger{
  position: relative;
}

.header-nav.is-visible + .header-nav-burger span{
  top: -5px;
  left: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
}


.header-nav.is-visible + .header-nav-burger:before,
.header-nav.is-visible + .header-nav-burger:after{
  width: 12px;
  height: 2px;
  background: var(--light);
  z-index: 2;
}

.header-nav.is-visible + .header-nav-burger:before{
  transform: rotate(45deg) translateX(4px) translateY(-4px);
  transform-origin: left;
}

.header-nav.is-visible + .header-nav-burger:after{
  transform: rotate(-45deg) translateY(-7px) translateX(10px);
  transform-origin: right;
}

.main-block {
  display: flex;
  background: var(--primary);
  min-height: calc(100vh - 50px);
}

.main-block .center{
  min-height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.photo-block {
  min-height: 290px;
  background: url("main-bg-mob.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  flex-grow: 1;
}

.slogan-block {
  background: url("slogan-bg.png") no-repeat;
  background-position: bottom 10px center;
  padding: 40px 20px;
}

.main-slogan {
  font: 700 27px/30px var(--title-font);
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.85);
  text-align: center;
  text-transform: uppercase;
}

.intro-block {
  padding: 40px 20px;
}

.intro-block .section-title {
  margin: 0 auto 10px auto;
}

.intro-text {
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 20px;
  text-align: center;
}

.slider-block {
  padding: 0 0 40px 0;
}

.slider-block .section-title {
  margin-bottom: 20px;
}

.slider-a {
  padding: 0 20px;
  width: 100%;
  height: 227px;
  display: flex;
  flex-flow: column nowrap;
  position: relative;
}

.slider-a .slider-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.slider-a .slider-arrow{
  position: absolute;
  top: 50%;
  left: 20px;
  width: 10px;
  height: 17px;
  transform: translateY(-5px);
  cursor: pointer;
}

.slider-a .slider-arrow:after{
  content: var(--icon-left);
  font-family: var(--icon-font);
  font-size: 14px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
}

.slider-a .arrow-next{
  left: auto;
  right: 20px;
}

.slider-a .arrow-next:after{
  content: var(--icon-right);
}

.slider-a .slider-view {
  display: flex;
  height: 100%;
  transition: all 0.4s ease-out;
}

.slider-a .slider-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 227px;
  position: relative;
  flex-shrink: 0;
  height: 100%;
  cursor: pointer;
}

.slider-a .slide-inner {
  position: relative;
  background: url("phone-frame.png") no-repeat 0 0/contain;
  padding: 10px 7px;
  width: 112px;
  height: 100%;
}

.slider-a .slide-inner > img {
  object-fit: cover;
  border-radius: 10px;
}

.slider-a .slide-logo{
  position: absolute;
  top: 20px;
  left: 50%;
  width: 70px;
  padding: 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-35px);
  background: var(--light);
  border-radius: 16px;
}

.slider-a .slide-logo img{
  width: auto;
  height: 12px;
}

.slider-a .slide-buttons{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.slider-a .slide-button{
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient);
}

.slider-a .slide-button span{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  background:  var(--light);
  border-radius: 50%;
}

.slider-a .slide-button span:before{
  font-family: var(--icon-font);
  content: var(--icon-cross);
  font-size: 14px;
  line-height: 1;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.slider-a .button-heart span:before{
  content: var(--icon-heart-outline);
}

/*article block starts*/
.article-block {
  padding: 80px 20px 40px 20px;
  background: #FCEEC2;
}

.article-block .section-title{
  text-align: left;  
}

.article-image {
  margin: 0 auto;
  max-width: 400px;
  position: relative;
  padding: 0 10px;
  margin-bottom: 20px;
}

.article-image:before {
  content: "";
  position: absolute;
  top: -35px;
  right: 25px;
  width: 76px;
  height: 76px;
  background: url("lock.svg") no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}

.article-block-reverse .article-image:before{
  background-image: url("message.svg");
}

.article-image:after {
  position: absolute;
  content: "";
  top: 0;
  right: 10px;
  bottom: 5px;
  left: 10px;
  background: var(--dark);
  border-radius: 20px;
  transform: rotate(3.75deg);
}

.article-image img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
  z-index: 1;
}

.article-text p {
  margin-bottom: 10px;
}

.article-block-reverse {
  background: var(--accent);
}

.card-block {
  padding: 40px 20px 80px 20px;
}


.card-wrapper{
  margin: -2px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  background: var(--gradient);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
}

.card-wrapper:after{
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--gradient);
  border-radius: inherit;
  z-index: -1;
}

.card-image{
  display: flex;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 40px 20px;
  background: var(--primary);
}

.card-content p {
  margin-bottom: 20px;
  text-align: center;
}

.card-title {
  font: 20px/29px var(--title-font);
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

.features-block .center {
  padding: 0 20px;
}

.features-block .section-title {
  margin-bottom: 40px;
  text-align: left;
}

.features-wrapper {
  display: flex;
  flex-direction: column;
}

.features-item {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.features-item-1 .feature-icon {
  background: url("stars.svg");
}

.features-item-2 .feature-icon {
  background: url("handshake.svg");
}

.features-item-3 .feature-icon {
  background: url("smile.svg");
}

.feature-title {
  font: 700 22px/28px var(--title-font);
  color: var(--title-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.slider-section {
  padding: 40px 0;
  background: #FCEEC2;
}

.slider-section .section-title{
  margin-bottom: 20px;
  padding: 0 20px;
  text-align: left;
}

.slider-b {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  position: relative;
}

.slider-b .slider-wrapper {
  margin-left: -10px;
  padding-right: 70px;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.slider-b .slider-view {
  display: flex;
  height: 100%;
  transition: all 0.4s ease-out;
}

.slider-b .slider-item {
  position: relative;
  flex-shrink: 0;
  min-height: 100%;
  cursor: pointer;
}

.slider-b .slide-inner{
  padding: 20px;
  min-height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: var(--light);
  border-radius: 20px;
}

.slider-b .slide-inner .btn{
  margin-top: auto;
}

.slider-b .slide-logo,
.slider-b .slide-text {
  margin-bottom: 20px;
}

.slider-b .slide-inner {
  min-width: 168px;
  display: flex;
  flex-direction: column;
}

.slider-b .slide-inner img {
  width: 100%;
  max-width: 135px;
  height: auto;
}

.footer-block {
  padding: 40px 0;
  background: var(--primary);
}

.footer-block .center {
  padding: 0 20px;
}

.footer-block .section-title {
  text-align: left;
  margin-bottom: 40px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
}

.footer-links {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
  text-decoration: none;
}

.footer-copyrights {
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.5);
}

@media(min-width: 768px){
  .header-block .center {
    padding: 10px 0;
    flex-direction: column;
    min-height: 80px;
    position: relative;
    z-index: 6;
  }
  
  .header-logo {
    width: 180px;
    margin-bottom: 20px;
  }
  
  .header-logo img {
    width: 100%;
    height: 50px;
  }
  
  .header-nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
    position: static;
    overflow-y: initial;
    visibility: visible;
    opacity: 1;
    background-image: none;
  }
  
  .header-nav-buttons {
    flex-direction: row;
  }
  
  .header-btn,
  .header-dropdown,
  .dropdown-title {
    margin-bottom: 0;
  }
  
  .header-btn {
    margin-left: 20px;
    padding: 0 20px;
  }
  
  .header-nav-burger {
    display: none;
  }
  
  .header-dropdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 30px;
    cursor: pointer;
  }
  
  .header-dropdown:hover .dropdown-list{
    max-height: initial;
  }
  
  .header-dropdown:after {
    content: var(--icon-bottom);
    display: inline-block;
    vertical-align: top;
    font-size: 25px;
    font-family: var(--icon-font);
    color: rgba(0, 0, 0, 0.9);
  }
  
  .header-dropdown:hover .dropdown-list {
    display: block;
  }
  
  .dropdown-list {
    padding: 20px;
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: var(--gradient);
    border-radius: 20px;
  }
  
  .dropdown-list:after {
    position: absolute;
    content: "";
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    background-color: var(--light);
    border-radius: 20px;
  }
  
  .dropdown-list li {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }
  
  .dropdown-list a {
    text-decoration: none;
    font-size: 18px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.85);
    transition: var(--transition);
  }
  
  .dropdown-list a:hover {
    color: #4C6BF4;
  }
  
  .dropdown-title {
    padding: 0 10px;
    height: 44px;
    margin-bottom: 0;
    font-weight: 400;
  }
  
  .dropdown-title-btn {
    display: none;
  }
  
  .dropdown-list {
    display: none;
  }
  
  .slider-block{
    padding-bottom: 120px;
  }
  .slider-block .center {
    padding: 0;
  }

  .slider-block .section-title {
    margin-bottom: 40px;
  }
  
  .slider-a {
    height: 545px;
  }
  
  .slider-a .slider-arrow{
    width: 27px;
    height: 48px;
  }
  .slider-a .arrow-prev{
    left: 0;
  }
  
  .slider-a .arrow-next{
    right: 20px;
  }
  
  .slider-a .slider-arrow:after{
    font-size: 48px;
  }

  .slider-a .slide-inner {
    padding: 26px 18px;
    width: 270px;
  }

  .slider-a .slide-inner > img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }
  
  .slider-a .slide-logo{
    top: 36px;
    padding: 11px 20px;
    width: 129px;
    min-height: 42px;
    border-radius: 40px;
    transform: translateX(-66px);
  }
  
  .slider-a .slide-logo img{
    height: 20px;
  }
  
  .slider-a .slide-buttons{
    padding: 49px 45px;
  }
  
  .slider-a .slide-button{
    width: 80px;
    height: 80px;
  }
  
  .slider-a .slide-button span:before{
    font-size: 36px;
  }
  
  .footer-links{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 920px) {
  .btn{
    padding: 0 40px;
  }
  
  .center {
    padding: 0 20px;
  }

  .section-title {
    font-size: 40px;
    line-height: 50px;
  } 
  
  .header-block .center{
    padding: 0 20px;
    flex-direction: row;
  }
  
  .header-logo{
    margin-bottom: 0;
  }
  
  .main-block{
    min-height: auto;
  }

  .main-block .center {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 100%;
    min-height: 600px;
  }
  
  .photo-block {
    width: 45%;
    background-color: #DADFE2;
    background-image: url("main-bg-web.jpg");
  }
  
  .slogan-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    padding: 0 40px;
    background-image: unset;
  }

  .slogan-block .btn {
    margin: 0 auto 0 0;
  }

  .main-slogan {
    margin-bottom: 40px;
    max-width: 476px;
    font-size: 56px;
    line-height: 80px;
    text-align: left;
  }

  .intro-block {
	padding-right: 80px;
	padding-left: 80px;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 10px;
  }
  
  .intro-block p {
  margin-bottom: 10px;
}
  
  .intro-block .section-title{
    margin-bottom: 20px;
  }
  
  .intro-text {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 28px;
  }

  .article-block {
    padding: 120px 0;
  }

  .article-block .center {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
  }
  
  .article-block .section-title {
    margin-bottom: 20px;
  }

  .article-image {
    margin-right: 0;
    width: 400px;
  }

  .article-image:before {
    top: auto;
    bottom: 40px;
    right: auto;
    left: -50px;
    width: 127px;
    height: 127px;
  }
  .article-block-reverse .article-image:before{
    right: -50px;
    left: auto;
  }
  
  .article-text{
    padding-right: 80px;
  }
  .article-block-reverse .article-text{
    padding-left: 80px;
  }
  
  .article-text p {
    max-width: 780px;
    font-size: 18px;
    line-height: 28px;
  }

  .article-block-reverse .center {
    flex-direction: row;
  }

  .article-block-reverse .article-image {
    margin-left: 0;
  }

  .card-block {
    padding: 120px 0;
  }

  .card-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 872px;
    border-width: 4px;
  }
  
  .card-content {
    padding: 0;
    max-width: 412px;
    padding: 40px;
  }

  .card-image {
    max-width: 230px;
  }
  
  .features-block{
    padding-bottom: 120px;
  }

  .features-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
  }
  
  .features-block .section-title{
      text-align: center;
  }

  .features-item {
    width: 33.333%;
    max-width: 450px;
  }
  
  .feature-icon{
    margin-bottom: 40px;
  }

  .slider-section {
    padding: 120px 0;
  }
  
  .slider-section .section-title {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .slider-b{
    padding: 0 30px;
  }
  
  .slider-b .slider-wrapper{
    padding-right: 20px;
  }
  
  .slider-b .slide-inner{
    padding: 40px;
  }
  
  .slider-b .slider-arrow{
    position: absolute;
    top: 50%;
    left: 0;
    width: 48px;
    height: 48px;
    transform: translateY(-24px);
    cursor: pointer;
  }

  .slider-b .slider-arrow:after{
    content: var(--icon-left);
    font-family: var(--icon-font);
    font-size: 48px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.5);
  }
  
  .slider-b .slide-inner img{
    max-width: 180px;
  }
  
  .slider-b .slide-text{
    font-size: 18px;
    line-height: 28px;
  }

  .slider-b .arrow-next{
    left: auto;
    right: 0;
  } 

  .slider-b .arrow-next:after{
    content: var(--icon-right);
  }

  .slider-b .slide-logo,
  .slider-b .slide-text {
    margin-bottom: 40px;
  }

  .slider-b .btn {
    max-width: 200px;
  }

  .footer-block {
    padding: 40px 0 20px 0;
  }

  .footer-block .section-title {
    margin: 0;
    max-width: 538px;
  }
  
  .footer-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    margin-bottom: 120px;
    flex-grow: 1;
    max-width: 735px;
  }

  .footer-links a {
    font-size: 26px;
    line-height: 36px;
  }

  .footer-copyrights {
    font-size: 18px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.75);
  }
}

@media(min-width: 1600px){
  .slider-a .arrow-prev{
    left: -20px;
  }
  
  .slider-a .arrow-next{
    right: 0;
  }
  .footer-links{
     grid-template-columns: repeat(5, 1fr);
  }
}
.footer-wrap{
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  margin-top: 20px;
}
.footer-btn{
  text-decoration:none;
  font-size: 18px;
  line-height: 28px;
  color: rgba(0,0,0,.75);
  cursor:pointer;
  padding-left:50px;
}
.footer-btn:hover{
  color:#fff;
}
@media(max-width: 700px){
  .footer-wrap{
  flex-direction:column;
  
}
.footer-btn{
    font-size: 14px;
    line-height: 22px;
    color: rgba(0,0,0,.5);

}
.footer-nav-buttons{
  margin:0 auto;
    order: -1;
    margin-bottom: 30px;
}
.footer-copyrights{
  margin:0 auto;
}
}

/* Breadcrumbs section */

.breadcrumbs-section {
	padding-top: 40px;
}

.breadcrumbs-item {
	font-size: 16px;
	color: var(--dark-muted);
	text-decoration: none;
	display: inline-block;
}

.breadcrumbs-item a {
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.breadcrumbs-item a:after {
	content: "\e9a2";
	font-family: "Material Icons";
	color: var(--primary);
	margin: 0 15px 0 25px;
}


/* Links block */
.link-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
}

.link-item a {
	display: inline-block;
	position: relative;
	width: 100%;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	color: var(--dark);
	text-align: center;
	text-transform: uppercase;
	background-color: #EBEBEB;
	padding: 12px 15px;
	box-shadow: var(--box-shadow);
	border-radius: 4px;
	border: none;
	outline: none;
	cursor: pointer;
	margin: 10px 0px;
	transition: var(--transition);
	text-decoration: none;
}

.link-item a:hover {
	background-color: #e1e1e1;
}