@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;800&family=Roboto+Condensed:wght@300;400;700&display=swap');
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
address {
  font-style: normal;
}
body {
  font-family: 'Roboto Condensed', sans-serif;
}
.container {
  max-width: 1295px;
  padding: 0 15px;
  margin: 0 auto;
}
.title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 37px;
  color: #1b324b;
  margin-bottom: 20px;
}
@media (max-width: 350px) {
  .title {
    font-size: 30px;
  }
}
.title.orange {
  color: #ffb74e;
}
.title.blue {
  color: #406b98;
}
.title.medium {
  font-size: 30px;
}
@media (max-width: 650px) {
  .title.medium {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .title.medium {
    font-size: 19px;
  }
}
.title.small {
  font-size: 24px;
}
.title.center {
  text-align: center;
}
.descr {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 650px) {
  .descr {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .descr {
    font-size: 20px;
  }
}
.form {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .form {
    flex-direction: column;
  }
}
.form-input {
  width: 265px;
  height: 53px;
  border: none;
  background: #e7d5bc;
  padding: 18px 10px 18px 30px;
  margin-right: 15px;
  border-radius: 5px;
  color: #9e9fa0;
  outline: none;
  font-size: 17px;
}
.form-input::placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #9e9fa0;
}
.form-input.invalid {
  border: 1px solid red;
}
.form-input.invalid::placeholder {
  color: red;
}
@media (max-width: 576px) {
  .form-input {
    width: 100%;
    margin-bottom: 10px;
  }
}
.form .message {
  display: none;
  position: absolute;
  bottom: -25px;
  color: #ffb74e;
  font-weight: 500;
}
@media (max-width: 576px) {
  .form .message {
    bottom: -40px;
  }
}
.button {
  width: 230px;
  height: 53px;
  background-color: #ffb74e;
  color: #30475f;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  cursor: pointer;
  box-shadow: 0px -6px 0px 0px #d69f4f inset;
}
.button:active {
  box-shadow: 0px 4px 0px 0px #d69f4f inset;
}
@media (max-width: 576px) {
  .button {
    width: 100%;
  }
}
.header {
  min-height: 720px;
  background: url("../img/main-bg.jpg") bottom center / cover no-repeat;
}
.header .top {
  padding-top: 35px;
  color: #e7d5bc;
}
@media (max-width: 424px) {
  .header .top {
    padding-top: 5px;
  }
}
.header .top .inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 424px) {
  .header .top .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.header .top .logo {
  max-width: 360px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .header .top .logo .text div:last-child {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .header .top .logo {
    max-width: 180px;
  }
  .header .top .logo .text div:last-child {
    font-size: 12px;
    white-space: nowrap;
  }
}
@media (max-width: 424px) {
  .header .top .logo {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.header .top .logo .title {
  margin-bottom: 0;
}
.header .top .logo .img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  background: #ffb74e;
}
@media (max-width: 650px) {
  .header .top .logo .img {
    width: 65px;
    height: 65px;
    margin-right: 10px;
  }
  .header .top .logo .img img {
    width: 40px;
  }
}
@media (max-width: 576px) {
  .header .top .logo .img {
    position: absolute;
    left: 51%;
    transform: translateX(-50%);
    top: 5px;
    width: 50px;
    height: 50px;
    margin-right: 0;
  }
  .header .top .logo .img img {
    width: 35px;
  }
}
@media (max-width: 424px) {
  .header .top .logo .img {
    position: unset;
    left: unset;
    transform: unset;
  }
}
.header .top .info {
  text-align: right;
}
@media (max-width: 650px) {
  .header .top .info .time {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .header .top .info .time {
    font-size: 12px;
  }
}
.header .content {
  background: url("../img/camera.png") 100px bottom no-repeat;
  height: 600px;
}
@media (max-width: 1440px) {
  .header .content {
    background-size: 500px;
    background-position: left center;
  }
}
@media (max-width: 976px) {
  .header .content {
    background-position: left top;
    background-size: 300px;
  }
}
@media (max-width: 768px) {
  .header .content {
    background-position: top center;
    background-size: 250px;
  }
}
@media (max-width: 576px) {
  .header .content {
    background-position: center 10px;
    background-size: 250px;
  }
}
@media (max-width: 424px) {
  .header .content {
    background-size: 230px;
  }
}
.header .content .inner {
  padding-right: 90px;
}
@media (max-width: 1140px) {
  .header .content .inner {
    padding-right: 10px;
  }
}
@media (max-width: 576px) {
  .header .content .inner {
    padding-right: 0;
  }
}
.header .content .inner .info {
  padding-top: 90px;
  margin-left: auto;
  width: 510px;
}
@media (max-width: 976px) {
  .header .content .inner .info {
    padding-top: 120px;
  }
}
@media (max-width: 976px) {
  .header .content .inner .info {
    padding-top: 200px;
  }
}
@media (max-width: 576px) {
  .header .content .inner .info {
    width: 100%;
    padding-top: 210px;
  }
}
.header .content .inner .info .main-title {
  text-transform: uppercase;
  font-size: 57px;
  color: #ffb74e;
  margin-bottom: 40px;
  line-height: 53px;
}
@media (max-width: 576px) {
  .header .content .inner .info .main-title {
    max-width: 250px;
    line-height: 44px;
    font-size: 44px;
  }
}
@media (max-width: 424px) {
  .header .content .inner .info .main-title {
    font-size: 32px;
    line-height: 32px;
    max-width: 100%;
  }
}
.header .content .inner .info .main-title .line {
  display: inline-block;
  vertical-align: middle;
  width: 225px;
  height: 7px;
  background-color: #ffb74e;
}
@media (max-width: 576px) {
  .header .content .inner .info .main-title .line {
    display: none;
  }
}
.header .content .inner .info .items {
  margin-top: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 424px) {
  .header .content .inner .info .items {
    flex-wrap: wrap;
    margin-top: 40px;
  }
}
.header .content .inner .info .items .item {
  color: #9e9fa0;
  padding-left: 20px;
  position: relative;
  margin-right: 45px;
}
@media (max-width: 576px) {
  .header .content .inner .info .items .item {
    padding-left: 10px;
    margin-right: 5px;
  }
}
@media (max-width: 424px) {
  .header .content .inner .info .items .item {
    margin-bottom: 10px;
    white-space: nowrap;
  }
}
.header .content .inner .info .items .item::before {
  content: '';
  width: 3px;
  height: 56px;
  background-color: #406b98;
  position: absolute;
  left: 0;
}
@media (max-width: 424px) {
  .header .content .inner .info .items .item::before {
    height: 100%;
  }
}
.header .content .inner .info .items .item:last-child {
  margin-right: 0;
}
.service {
  padding: 100px 0;
  background-color: #f7f7f7;
}
@media (max-width: 650px) {
  .service {
    padding: 60px 0;
  }
}
.service .items {
  margin-top: 65px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.service .items .item {
  margin-bottom: 35px;
  margin-right: 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .service .items .item {
    flex-direction: column;
  }
}
@media (max-width: 360px) {
  .service .items .item {
    margin-right: 0;
  }
}
.service .items .item .img {
  margin-right: 7px;
}
.service .items .item .list {
  position: relative;
  padding-left: 25px;
}
.service .items .item .list::before {
  content: '';
  width: 8px;
  height: 185px;
  background: #406b98;
  position: absolute;
  left: 0;
}
@media (max-width: 650px) {
  .service .items .item .list::before {
    height: 170px;
  }
}
.service .items .item .list.line-right {
  padding-left: 0;
  padding-right: 50px;
}
@media (max-width: 650px) {
  .service .items .item .list.line-right {
    margin-bottom: 10px;
  }
}
@media (max-width: 360px) {
  .service .items .item .list.line-right {
    padding-left: 5px;
  }
}
.service .items .item .list.line-right::before {
  left: auto;
  right: 0;
}
.service .items .item .list .list-item {
  font-size: 25px;
  color: #9e9fa0;
  padding-left: 25px;
  position: relative;
}
.service .items .item .list .list-item::before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: #9e9fa0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.service .items .item.reverse .img {
  margin-right: 0;
  margin-left: 7px;
  order: 1;
}
.service .button {
  margin: 30px auto 0;
  width: 300px;
}
@media (max-width: 360px) {
  .service .button {
    width: 100%;
    margin: 0;
  }
}
.advantages {
  padding: 100px 0 40px;
  background-color: #2b2a2d;
  color: #ffb74e;
}
@media (max-width: 650px) {
  .advantages {
    padding: 60px 0;
  }
}
.advantages .descr {
  color: #9e9fa0;
}
.advantages .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
}
@media (max-width: 576px) {
  .advantages .items {
    justify-content: center;
  }
}
.advantages .item {
  font-size: 22px;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.advantages .item .icon {
  object-fit: contain;
  margin-right: 15px;
}
.advantages .item .text {
  max-width: 250px;
}
.licenses {
  padding: 100px 0;
}
@media (max-width: 650px) {
  .licenses {
    padding: 60px 0;
  }
}
.licenses .items {
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 976px) {
  .licenses .items {
    justify-content: center;
  }
}
.licenses .items .item {
  display: block;
  width: 305px;
  height: 430px;
}
@media (max-width: 976px) {
  .licenses .items .item {
    margin: 10px;
  }
}
@media (max-width: 350px) {
  .licenses .items .item {
    max-width: 290px;
  }
}
.licenses .items .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.request {
  background: url("/img/request-bg.jpg");
  padding: 90px 0;
}
@media (max-width: 650px) {
  .request {
    padding: 50px 0;
  }
}
.request .descr {
  color: #8b9096;
}
.request .form {
  max-width: 510px;
  margin: 0 auto;
  margin-top: 65px;
}
.footer {
  padding: 80px 0;
  background-color: #2b2a2d;
  color: #9e9fa0;
}
@media (max-width: 680px) {
  .footer {
    padding: 40px 0;
  }
}
.footer .items {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 976px) {
  .footer .items {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 680px) {
  .footer .items {
    flex-direction: column;
    align-items: center;
  }
}
.footer .items .item {
  max-width: 260px;
  margin-right: 100px;
  min-height: 112px;
}
@media (max-width: 1140px) {
  .footer .items .item {
    margin-right: 50px;
  }
}
@media (max-width: 976px) {
  .footer .items .item {
    margin-right: 0;
  }
  .footer .items .item:nth-child(3) {
    margin-right: 0;
  }
}
@media (max-width: 680px) {
  .footer .items .item {
    text-align: center;
    margin-bottom: 20px;
  }
}
.footer .items .item:last-child {
  margin-right: 0;
}
.footer .items .item .title {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .footer .items .item .title {
    margin-bottom: 10px;
  }
}
.footer .items .item span {
  display: block;
}
.footer .items .item a {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.footer .items .item a:hover {
  color: #ffb74e;
  text-decoration: none;
}
.footer .items .item .whatsapp-link {
  display: block;
}
.footer .items .developers {
  margin-left: auto;
  text-align: right;
}
@media (max-width: 976px) {
  .footer .items .developers {
    margin: 50px auto 0;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 680px) {
  .footer .items .developers {
    margin: 20px auto 0;
  }
}
.footer .items .developers a {
  transition: all 0.3s ease-in-out;
}
.footer .items .developers a:hover {
  color: #ffb74e;
}
