* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fcfcfc;
  position: relative;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  color: #202020;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  color: #202020;
}

h3 {
  font-family: 'Nunito Sans', sans-serif;
  color: #fff;
}

p {
  font-family: 'Nunito Sans', sans-serif;
  color: #202020;
}

a {
  font-family: 'Nunito Sans', sans-serif;
  color: #fff;
}

.light-font {
  color: white;
}

.dark-font {
  color: #272830;
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
}

.scroll-margin {
  scroll-margin-top: 120px;
}

.text-box-dark_background {
  background: #f3f3f3;
}

.header {
  position: relative;
  height: 140px;
  width: 100%;
  background: #242F3D;
  z-index: 3;
}

.header-area {
  margin: auto;
  width: 80%;
  height: 100%;
}

.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30%;
  width: 80%;
  margin: auto;
  background-color: transparent;
}

.header-bottom {
  height: 70%;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#f1f1f1), color-stop(#ffffff), to(#f5f5f5));
  background: linear-gradient(to right, #f1f1f1, #ffffff, #f5f5f5);
  -webkit-box-shadow: 0px -2px 8px #00000042, 0px 8px 20px #00000066;
          box-shadow: 0px -2px 8px #00000042, 0px 8px 20px #00000066;
}

.header-bottom .navigation-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  height: 100%;
  width: 80%;
}

.logo {
  height: 90px;
  width: 180px;
  background-image: url("../img/logo.svg");
  background-size: cover;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  height: 98px;
  z-index: 3;
}

.sticky + .content {
  padding-top: 102px;
}

.coming-soon-box {
  margin: auto;
  position: absolute;
  top: 40%;
  left: calc(50% - 150px);
  height: 100px;
  width: 300px;
  max-width: 1100px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 20px 7px #00000047;
          box-shadow: 0 2px 20px 7px #00000047;
}

.slider {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 50px;
  overflow: hidden;
}

.slides {
  height: 100%;
  max-height: calc(100vh - 140px);
  width: 500%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slides input {
  display: none;
}

.slide1 {
  height: 100%;
  width: 20%;
  -webkit-transition: 2s;
  transition: 2s;
  background-image: url(../img/nasiri_hero_1.jpg);
  background-size: cover;
  background-position: center;
}

.slide2 {
  height: 100%;
  width: 20%;
  -webkit-transition: 2s;
  transition: 2s;
  background-image: url(../img/nasiri_hero_2.jpg);
  background-size: cover;
  background-position: center;
}

.slide3 {
  height: 100%;
  width: 20%;
  -webkit-transition: 2s;
  transition: 2s;
  background-image: url(../img/nasiri_hero_3.jpg);
  background-size: cover;
  background-position: center;
}

.slide4 {
  height: 100%;
  width: 20%;
  -webkit-transition: 2s;
  transition: 2s;
  background-image: url(../img/nasiri_hero_4.jpg);
  background-size: cover;
  background-position: center;
}

/*css for manual slide navigation*/
.navigation-manual {
  position: absolute;
  width: 100%;
  top: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.manual-btn {
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
}

.manual-btn:not(:last-child) {
  margin-right: 40px;
}

.manual-btn:hover {
  background: #40D3DC;
}

#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -20%;
}

#radio3:checked ~ .first {
  margin-left: -40%;
}

#radio4:checked ~ .first {
  margin-left: -60%;
}

/*css for automatic navigation*/
.navigation-auto {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 160px;
}

.navigation-auto div {
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  -webkit-transition: 1s;
  transition: 1s;
}

.navigation-auto div:not(:last-child) {
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1 {
  background: #40D3DC;
}

#radio2:checked ~ .navigation-auto .auto-btn2 {
  background: #40D3DC;
}

#radio3:checked ~ .navigation-auto .auto-btn3 {
  background: #40D3DC;
}

#radio4:checked ~ .navigation-auto .auto-btn4 {
  background: #40D3DC;
}

@media only screen and (max-width: 1150px) {
  .logo {
    height: 70px;
    width: 140px;
  }
}

@media only screen and (max-width: 900px) {
  .header {
    height: 98px;
  }
  .header-top {
    display: none;
  }
  .header-bottom {
    height: 98px;
  }
  .header-bottom .navigation-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-bottom .navigation-area ul {
    display: none;
  }
  .logo {
    height: 70px;
    width: 140px;
  }
  .slider {
    height: 40vh;
  }
}

@media only screen and (max-width: 430px) {
  .slider {
    height: 30vh;
  }
}
/*# sourceMappingURL=style.css.map */