@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/Montserrat-Regular.woff2'), url('fonts/Montserrat/Montserrat-Regular.woff');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/Montserrat-Medium.woff2'), url('fonts/Montserrat/Montserrat-Medium.woff');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/Montserrat-SemiBold.woff2'), url('fonts/Montserrat/Montserrat-SemiBold.woff');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/Montserrat-Bold.woff2'), url('fonts/Montserrat/Montserrat-Bold.woff');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  color: #71BF45;
}
button {
  border: none;
  cursor: pointer;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
}
.wrapper {
  display: flex;
  justify-content: space-between;
}
h1 {
  font-size: 2rem;
  text-transform: uppercase;
}
.subtitle {
  font-size: 1.4rem;
  margin-top: 10px;
}
h2.title {
  width: max-content;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding-top: 60px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
}
h2.title::before,
h2.title::after {
  content: '';
  width: 60px;
  height: 1px;
  background: #333;
  margin-right: 20px;
  display: block;
}
h2.title::after {
  margin-left: 20px;
  margin-right: 0;
}
.caption {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
}
.caption--white {
  color: #fff;
}
.btn {
  width: 220px;
  height: 40px;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  background: #71BF45;
  display: block;
  margin-top: 40px;
}
.btn:hover {
  opacity: 0.7;
}
.btn--center {
  margin: 40px auto 0;
}
header {
  width: 100%;
  height: 120px;
  color: #fff;
  background: #1e406f;
  padding: 20px 0;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header a {
  color: #fff;
}
.logo img {
  width: 300px;
}
.wrapper__header {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top_menu {
  display: flex;
  justify-content: flex-end;
}
.top_menu a {
  color: rgba(255, 255, 255, 0.8);
}
.top_menu a:hover {
  color: #71BF45;
}
.top_menu li:not(:last-child) {
  margin-right: 30px;
}
.top_menu--mobile {
  display: none;
}
.login_link {
  display: flex;
  align-items: center;
  position: relative;
}
.login_link::before {
  content: '';
  width: 1px;
  height: 70%;
  background: #fff;
  display: block;
  position: absolute;
  left: -15px;
}
nav {
  display: flex;
  justify-content: flex-end;
  margin-right: -60px;
}
.box__nav {
  margin-right: 60px;
  position: relative;
}
.box__nav.active .list__nav {
  display: flex;
}
.box__nav.active .item__nav--arrow::after {
  transform: rotate(180deg);
  margin-top: -8px;
}
.item__nav {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
.item__nav--arrow {
  position: relative;
  display: flex;
  align-items: center;
}
.item__nav--arrow::after {
  content: '';
  border: 5px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  margin-top: 2px;
  margin-left: 5px;
}
.list__nav {
  font-size: 0.9rem;
  background: rgba(30, 64, 111, 0.8);
  padding: 20px;
  display: none;
  position: absolute;
  top: 40px;
  left: -20px;
  z-index: 99;
}
.list__nav ul {
  width: 200px;
}
.list__nav ul:not(:last-child) {
  margin-right: 30px;
}
.list__nav li {
  margin-bottom: 8px;
}
.list__nav a:hover {
  color: #71BF45;
}
li.title__list {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
li.title__list a:hover {
  color: inherit;
}
.list__nav--left {
  left: -385px;
}
.burger_mobile {
  display: none;
  cursor: pointer;
}
.burger_mobile img {
  width: 30px;
  height: 30px;
}
.main {
  width: 100%;
  height: 700px;
  background: url(image/main.jpg) no-repeat;
  background-size: cover;
  margin-top: 120px;
}
.offer__main {
  max-width: 550px;
  color: #fff;
  margin-top: 200px;
}
.text__services {
  width: 60%;
  text-align: center;
  margin: auto;
}
.box__services {
  width: 25%;
  height: 300px;
  text-align: center;
  margin-top: 40px;
  position: relative;
}
.box__services::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #71BF45;
  opacity: 0.8;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.box__services img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cont__services {
  width: 80%;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
img.icon__services {
  width: 80px;
  height: 80px;
}
.box__services--blue::after {
  background: #1e406f;
}
.box__services--brown::after {
  background: #bd9021;
}
.box__services--dark_blue::after {
  background: #337584;
}
.why {
  background: #f0f0f0;
  margin-top: 60px;
  padding-bottom: 60px;
}
.box__why {
  width: 300px;
  padding: 10px;
  text-align: center;
}
.box__why .caption {
  margin: 20px 0 10px;
}
.icon__why {
  width: 80px;
  height: 80px;
}
.link__why {
  font-weight: 700;
  text-transform: uppercase;
  color: #1e406f;
  margin-top: 20px;
  display: block;
}
.link__why::after {
  content: '';
  border: 5px solid transparent;
  border-left-color: #1e406f;
  display: inline-block;
  margin-left: 5px;
}
.link__why:hover::after {
  border-left-color: #71BF45;
}
.get {
  color: #fff;
  background-image: url(image/why.jpg);
  background-position: 50%;
  padding-bottom: 60px;
  position: relative;
}
.get::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(30, 64, 111, 0.9);
  position: absolute;
  top: 0;
  left: 0;
}
.get * {
  position: relative;
  z-index: 1;
}
.con__get {
  width: 60%;
  text-align: center;
  margin: auto;
}
footer {
  background: #f0f0f0;
  padding: 45px 0 30px;
}
.menu__footer {
  display: flex;
  justify-content: space-between;
}
.links__footer a {
  color: #1e406f;
}
.links__footer a:hover {
  color: #71BF45;
}
.links__footer li {
  font-size: 1rem;
  font-weight: 500;
}
.links__footer li:not(:last-child) {
  margin-bottom: 8px;
}
.links__footer li:first-child {
  font-weight: 700;
  margin-bottom: 15px;
}
.links__footer .title__list {
  white-space: nowrap;
}
.info__footer {
  display: flex;
  flex-direction: column;
}
.btn--footer {
  margin-top: 20px;
}
.right__footer {
  display: contents;
}
.webs__footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.img__linkedin {
  width: 30px;
  height: 30px;
}
.rating__footer {
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.rating__footer span {
  font-size: 0.8rem;
  margin-right: 10px;
}
.rating__footer img {
  height: 20px;
}
.rights__footer {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 1199.98px) {
  .main {
    height: 500px;
  }
  .offer__main {
    margin-top: 120px;
  }
  .list__nav--left {
    left: -400px;
  }
}
@media (max-width: 991.98px) {
  html {
    font-size: 15px;
  }
  h2.title {
    padding-top: 40px;
    margin-bottom: 20px;
  }
  .caption {
    font-size: 1.1rem;
    margin-top: 10px;
  }
  .btn--center {
    margin-top: 20px;
  }
  header {
    height: 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .logo img {
    width: 200px;
  }
  .wrapper__header {
    flex-direction: row;
    align-items: center;
  }
  nav {
    width: 100%;
    background: #1e406f;
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
  }
  .box__nav {
    position: unset;
  }
  .box__nav::after {
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    display: block;
    position: absolute;
    left: 0;
  }
  .box__nav:not(:last-child) {
    margin-right: 0;
  }
  .box__nav.active .item__nav--arrow::after {
    transform: unset;
    margin-top: 2px;
  }
  .box__nav.active .item__nav--arrow.active::after {
    margin-top: -8px;
    transform: rotate(180deg);
  }
  .box__nav.active .list__nav {
    display: flex;
  }
  .item__nav {
    padding: 20px;
  }
  .div__list {
    display: none;
  }
  .list__nav {
    width: 100%;
    background: #1d4a88;
    position: unset;
    left: 0;
  }
  .list__nav--left {
    left: 0;
  }
  .burger_mobile {
    display: block;
  }
  .main {
    height: 400px;
    margin-top: 90px;
    position: relative;
  }
  .main::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }
  .main * {
    position: relative;
    z-index: 1;
  }
  .offer__main {
    margin-top: 80px;
  }
  .text__services {
    width: 80%;
  }
  .box__services {
    height: 220px;
    margin-top: 30px;
  }
  .cont__services {
    top: 60px;
  }
  img.icon__services {
    width: 50px;
    height: 50px;
  }
  .why {
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .box__why {
    position: relative;
  }
  .icon__why {
    width: 50px;
    height: 50px;
  }
  .text__why {
    padding-bottom: 20px;
  }
  .link__why {
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  .get {
    padding-bottom: 40px;
  }
  footer {
    padding: 30px 0 20px;
  }
  .img__linkedin {
    width: 20px;
    height: 20px;
  }
  .btn--footer {
    width: 100%;
  }
  .links__footer {
    width: 140px;
  }
  .rights__footer {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
  .btn {
    margin: 20px auto 0;
  }
  .wrapper {
    flex-wrap: wrap;
  }
  .wrapper__header {
    justify-content: flex-end;
  }
  .top_menu {
    width: 100%;
    height: 58px;
    background: #1e406f;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 1px;
    display: flex;
  }
  .top_menu::after {
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .top_menu.active {
    display: flex;
  }
  .top_menu--dekstop {
    display: none;
  }
  nav {
    top: 148px;
    top: 90px;
  }
  .main {
    height: 300px;
  }
  .offer__main {
    max-width: 100%;
    margin-top: 50px;
    text-align: center;
  }
  .text__services {
    width: 100%;
    margin-bottom: 30px;
  }
  .box__services {
    width: 50%;
    margin-top: 0;
  }
  .why {
    padding-bottom: 10px;
  }
  .box__why {
    width: 50%;
    margin-bottom: 30px;
  }
  .con__get {
    width: 100%;
  }
  .btn--footer {
    margin-top: 0;
  }
  .info__footer {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 30px;
  }
  .right__footer {
    display: block;
  }
  .webs__footer {
    margin: 0 auto 10px;
  }
  .rating__footer {
    margin-top: 0;
    margin-left: 20px;
  }
  .links__footer {
    width: auto;
    max-width: 140px;
  }
}
@media (max-width: 575.98px) {
  html {
    font-size: 13px;
  }
  header {
    height: 80px;
  }
  nav {
    top: 80px;
  }
  .box__nav.active .list__nav {
    width: 100%;
    display: block;
  }
  .list__nav ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .list__nav ul:not(:last-child) {
    margin-right: 0;
  }
  .list__nav li {
    width: 50%;
    padding-right: 10px;
  }
  .list__nav li.title__list {
    width: 100%;
  }
  .main {
    background: url(image/main_mini.jpg) no-repeat;
    margin-top: 80px;
  }
}
@media (max-width: 419.98px) {
  h1 {
    font-size: 1.8rem;
  }
  h2.title {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
  }
  h2.title::before,
  h2.title::after {
    width: 20px;
  }
  .offer__main {
    margin-top: 49px;
  }
  .text__services {
    margin-bottom: 20px;
  }
  .box__services {
    width: 100%;
    height: 160px;
  }
  .cont__services {
    width: 100%;
    top: 40px;
  }
  .why {
    margin-top: 30px;
    padding-bottom: 0;
  }
  .box__why {
    width: 100%;
  }
  .get {
    padding-bottom: 30px;
  }
  .info__footer {
    flex-direction: column;
  }
  .right__footer {
    margin-top: 10px;
  }
  .links__footer:not(:last-child) {
    margin-right: 10px;
  }
}
