@font-face {
  font-family: 'DMSans-Regular';
  src: url('../fonts/dmsans_regular.eot');
  src: url('../fonts/dmsans_regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/dmsans_regular.woff2') format('woff2'),
       url('../fonts/dmsans_regular.woff') format('woff');
        font-display: swap;
}

@font-face {
  font-family: 'DMSans-Medium';
  src: url('../fonts/dmsans_medium.eot');
  src: url('../fonts/dmsans_medium.eot?#iefix') format('embedded-opentype'),
       url('../fonts/dmsans_medium.woff2') format('woff2'),
       url('../fonts/dmsans_medium.woff') format('woff');
        font-display: swap;
}

@font-face {
  font-family: 'DMSans-Bold';
  src: url('../fonts/dmsans_bold.eot');
  src: url('../fonts/dmsans_bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/dmsans_bold.woff2') format('woff2'),
       url('../fonts/dmsans_bold.woff') format('woff');
        font-display: swap;
}

@font-face {
  font-family: 'IBM-Plex-Medium';
  src: url('../fonts/ibm_plex_serif_medium.eot');
  src: url('../fonts/ibm_plex_serif_medium.eot?#iefix') format('embedded-opentype'),
       url('../fonts/ibm_plex_serif_medium.woff2') format('woff2'),
       url('../fonts/ibm_plex_serif_medium.woff') format('woff');
        font-display: swap;
}

@font-face {
  font-family: 'IBM-Plex-Semibold';
  src: url('../fonts/ibm_plex_serif_semibold.eot');
  src: url('../fonts/ibm_plex_serif_semibold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/ibm_plex_serif_semibold.woff2') format('woff2'),
       url('../fonts/ibm_plex_serif_semibold.woff') format('woff');
        font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

ul {
  list-style: none;
}

body {
  min-width: 330px;
  font-family: 'DMSans-Regular';
  font-weight: 100;
  background-color: #FFF7F0;
  -webkit-font-smoothing: antialised;
}

main {
  overflow: hidden;
}

section {
  position: relative;
}

a {
  font-family: 'DMSans-Medium';
  font-size: 14px;
  color: #338050;
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: .2s;
}

a:hover {
  color: #000;
  transition: .2s;
}

strong {
  font-family: 'DMSans-Bold';
}

img {
  display: block;
  max-width: 100%;
}

.container {
  position: relative;
  max-width: 1000px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .container {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 510px;
  }
}

.flex, .flex-cent {
  display: flex;
  flex-wrap: wrap;
}

.hor-between, .flex-cent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hor-cent {
  justify-content: center;
}

.hor-between {
  justify-content: space-between;
}

header, .bg-green {
  background-color: #338050;
}

header {
  padding-top: 15px;
}

.menu a {
  display: block;
  font-family: 'DMSans-Medium';
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: capitalize;
}

.sidenav a {
  font-size: 18px;
}

nav ul a {
  position: relative;
  top: -2px;
}

.menu a:hover {
  color: #FCEFAC;
} 

nav li {
  margin-right: 37px;
}

.header__search svg {
  width: 15px;
  height: 15px;
  fill: #fff;
  transition: .2s;
}

.header__search:hover svg {
  fill: #FCEFAC;
  transition: .2s;
}
/*menu burger - begin*/
.header__burger {
  display: none;
  align-items: center;
  margin-left: 20px;
}

.header__burger svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: .2s;
}

.header__burger svg:hover {
  fill: #FCEFAC;
  transition: .2s;
}

@media(max-width: 991px) {
  nav ul.flex-cent {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .header__search svg {
    width: 20px;
    height: 20px;
  }
}
/*menu burger - end*/
/*mobile menu - begin*/
.sidenav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100000;
  min-height: 100vh;
  width: 100%;
  opacity: 0;
  top: -500%;
  left: auto;
  right: 0;
  background: rgba(0,0,0,0.9);
  overflow-x: hidden;
  transition: 0.3s;
  padding: 20px 0;
}

@media(min-width: 992px) {
  .sidenav {
    display: none;
  }
}

.sidenav ul {
  width: 100%;
}

.sidenav li {
  text-align: center;
  margin-top: 22px;
}

.sidenav li:first-child {
  margin-top: 0;
}

.sidenav .closebtn {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.sidenav .closebtn:hover {
  color: #FCEFAC;
}
/*mobile menu - end*/


