body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  min-width: 370px;
}

.wrapper {
  display: flex;
  flex-direction: column;

}

.header-wrap {
  position: absolute;
  z-index: 99;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  max-width: 1200px;
  width: 100%;
}

.main-menu {
  display: flex;
  flex-flow: row nowrap;
}

.menu-item {
  padding: 0 10px;
}

.menu-item a {
  text-decoration: none;
  color: #0a0a0a;
  transition: all .2s linear;
  font-size: .95rem;
}

.menu-item a:hover {
  color: #f98416;
}

.menu-item .selected {
  color: #f98416;
}

.main-section {
  background-color: #000000;
  background-image: url("img/bg.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  position: relative;
  left: 0;
  display: flex;
  justify-content: center;
}

.background-overlay {
  background-color: #000f23;
  opacity: .65;
  transition: background .3s, border-radius .3s, opacity .3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  box-sizing: border-box;
}

.content {
  padding-top: 75px;
  max-width: 1140px;
  width: 100%;
  position: relative;
  display: flex;
}

.left-panel {
  width: 100%;
  text-align: center;
  padding: 0px 5px;
}

.left-panel .title {
  color: #d7a993;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 40px;
  margin: 0;
}

.left-panel .big-one {
  color: #ffffff;
  font-family: "Montserrat", Sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  padding: 40px 0;
  margin: 0;
  white-space: nowrap;
}

.left-panel .text {
  color: #ffffff;
  font-family: "Open Sans", Sans-serif;
  font-size: 1.2rem;
  text-align: center;
}

.btn-why {
  padding: 40px 0px;
}

.btn-why a {
  background-color: #e06126;
  border-radius: 50px 50px 50px 50px;
  font-family: "Roboto", Sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 20px;
  color: #fff;
  display: inline-block;
  line-height: 1;
  fill: #fff;
  text-align: center;
  transition: all .3s;
  box-shadow: none;
  text-decoration: none;
  -webkit-box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.75);
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.75);
}

.btn-why a:hover {
  background-color: #e04700;
  transform: scale(1.1);
}

.right-panel {
  display: none;
}

.my-icon {
  color: #d7a993;
  text-align: center;
  padding-bottom: 15px;
  padding-top: 5px;
  font-size: 2rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.why-item {
  border: 1px solid #121e2c;
  padding: 25px;
  margin: 5px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  text-align: center;
  width: 215px;
  height: 155px;
  cursor: default;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
}

.why-item:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

.right-panel img {
  height: auto;
  max-width: 100%;
  border: none;
  vertical-align: middle;
  display: inline-block;
}

.linked-in {
  color: #1985bc;
  font-size: 1.4rem;
}

.linked-in a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "Open Sans", Sans-serif;
}

.linked-in a:hover {
  color: #e06126;
}

.footer {
  background-color: #3a3a3a;
  color: #fff;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  /* line-height: 1.85714285714286; */
}

@media (min-width: 1024px) {
  .left-panel .big-one {
    font-size: 4.5rem;
  }

  .right-panel {
    flex: 0 0 50%;
  }

  .footer {
    height: 100px;
  }

  .btn-why {
    text-align: left;
  }

}

@media (min-width: 769px) {
  .header {
    height: 75px;
  }

  .menu-item {
    padding: 0 15px;
  }

  .content {
    padding-top: 150px;
  }

  .right-panel {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .left-panel {
    width: 50%;
  }

  .left-panel .title {
    text-align: left;
  }

  .left-panel .big-one {
    text-align: left;
    padding: 60px 0px;
  }

  .tabs {
    justify-content: left;
  }

}


.commerc {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  border-top: 2px solid #daa107;
  padding-top: 4px;
  margin-top: 4px;
}

.commerc-bg img {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.commerc-bg {
  width: 100%;
}

.commerc-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", Sans-serif;
  font-weight: 700;
  text-align: center;
}

.commerc-text-a {
  font-size: 3rem;
}

.commerc-text-b {
  padding-top: 1rem;
  font-size: 1rem;
}

.commerc-text-b a {
  color: #daa107;
  text-decoration: none;
  cursor: pointer;
}

.commerc-text-b a:hover {
  color: #000;
  text-decoration: underline;
}

@media (min-width: 769px) {
  .commerc-bg {
    width: 50%;
  }

  .commerc-text {
    width: 50%;
  }
}