@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;900&display=swap");
@import url("../fonts/stylesheet.css");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Acrom;
}

body,
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

input[type=number],
input[type=button],
input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.container {
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.lockScroll {
  overflow: hidden;
}

.blue-line {
  height: 80px;
  background: #0C4963;
  padding: 0;
  margin: 0;
}

.title h4 {
  color: #991A2F;
  font-weight: 600;
  padding: 5px 0;
}
.title h2 {
  color: #0C4963;
  font-weight: 600;
  font-size: 28px;
  line-height: 26px;
  letter-spacing: 0.4px;
  padding: 5px 0;
}
.title p {
  color: #696969;
  font-size: 15px;
  line-height: 22px;
  padding: 5px 0;
}

/* NAVBAR START */
.navbar {
  padding: 20px 0;
}

.navbar__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar__left a {
  margin: 0 10px;
  text-decoration: none;
  color: #B0AEAE;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar__left a:hover {
  color: #222222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.navbar__right div {
  margin: 5px 0;
}

.navbar__right-top a {
  color: #B0AEAE;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar__right-top a:hover {
  color: #5f5f5f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar__right-bottom a {
  color: #393939;
  text-decoration: none;
  padding: 0 10px;
  font-weight: 500;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.navbar__right-bottom a:hover {
  color: #222222;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: underline;
}

.navbar_white {
  background: #fff !important;
  z-index: 89;
  border-bottom: 1px solid #f1f1f1;
  -webkit-animation: coloring;
          animation: coloring;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  position: fixed;
  top: 0;
  width: 100%;
}

@-webkit-keyframes coloring {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes coloring {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.navbar__burger {
  display: none;
}

@media (max-width: 984px) {
  body.lockScroll {
    overflow: hidden;
  }

  .navbar__burger {
    display: block;
    position: relative;
    height: 20px;
    width: 30px;
    z-index: 90;
    position: relative;
  }

  .navbar__burger span {
    position: absolute;
    background: #0C4963;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .navbar__burger:before,
.navbar__burger:after {
    content: "";
    background: #0C4963;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
  }

  .navbar__burger:before {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    top: 0;
  }

  .navbar__burger:after {
    bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .navbar__burger.activeBurger:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    top: 9px;
  }

  .navbar__burger.activeBurger:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 9px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .navbar__burger.activeBurger span {
    display: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .navbar__right {
    overflow: auto;
    position: fixed;
    right: -100%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: all 0.3s ease 0.1s;
    transition: all 0.3s ease 0.1s;
    padding: 80px 10px 40px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .navbar__right.activeBurger {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 0;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 90;
  }

  .navbar__link {
    font-size: 20px !important;
    margin: 10px 0 !important;
    text-align: center;
  }

  .navbar__right div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 366px) {
  .navbar__left a {
    font-size: 16px;
  }
  .navbar__left a img {
    width: 120px;
  }
}
/* NAVBAR END */
/* HEADER START */
.header {
  padding: 140px 0 220px;
  background: url("../img/header-img.png") no-repeat;
  background-size: 52%;
  background-position: 100% 50%;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__left {
  width: 490px;
}
.header__left h4 {
  color: #991A2F;
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
}
.header__left h1 {
  color: #0C4963;
  padding: 5px 0 10px;
  line-height: 38px;
  font-size: 34px;
}
.header__left p {
  line-height: 23px;
  color: #696969;
  font-weight: 400;
}
.header__left a {
  font-weight: 500;
  margin: 20px 10px 10px 0;
  display: inline-block;
  text-decoration: none;
  padding: 15px 25px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
}
.header__left a:hover {
  border-radius: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__left a:nth-child(1) {
  color: #fff;
  background: #0C4963;
}
.header__left a:nth-child(2) {
  border: 2px solid #0C4963;
  color: #0C4963;
  font-weight: 600;
}

@media (max-width: 1230px) {
  .header {
    background-position: 100% 20%;
  }
}
@media (max-width: 1093px) {
  .header {
    background-size: 45%;
    padding: 80px 0 140px;
  }
}
@media (max-width: 935px) {
  .header {
    background-size: 40%;
  }
}
@media (max-width: 984px) {
  .header {
    background: #FFF;
  }

  .header__left {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .header {
    padding: 40px 0 220px;
  }

  .header__left p {
    line-height: 19px;
  }
  .header__left h1 {
    letter-spacing: 0;
    line-height: 30px;
  }
  .header__left a {
    margin: 20px 10px -10px 0;
  }

  .header__left-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 465px) {
  .header__left h4 {
    font-size: 14px;
    line-height: 14px;
  }
  .header__left p {
    font-size: 14px;
  }

  .header__left-buttons a {
    font-size: 12px;
  }
}
@media (max-width: 342px) {
  .header__left h1 {
    font-size: 28px;
  }
}
/* HEADER END */
/* ABOUT START */
.about {
  padding: 40px 0;
  background: #F8F8F8;
}

.about-bg {
  background-image: url("../img/about-bg-left.png"), url("../img/about-bg-right.png");
  background-position: left 75%, right 75%;
  background-repeat: no-repeat, no-repeat;
}

.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about__numbers {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.about__numbers div {
  margin: 0 150px 0 0;
}

.number-item h2 {
  color: #0C4963;
  font-size: 30px;
  padding: 5px 0;
}
.number-item p {
  color: #393939;
  font-weight: 500;
}

@media (max-width: 1293px) {
  .about-bg {
    background-position: -5% 75%, 110% 75%;
  }
}
@media (max-width: 1145px) {
  .about-bg {
    background-position: -8% 75%, 110% 75%;
  }

  .about__numbers div {
    margin: 0 30px 0 80px;
  }
}
@media (max-width: 991px) {
  .about-bg {
    background-position: -5% 75%, 118% 75%;
  }

  .about__numbers div {
    margin: 0 30px 0 60px;
  }
}
@media (max-width: 828px) {
  .about-bg {
    background-image: none;
  }

  .about__numbers {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about__numbers div {
    margin: 0;
  }
}
@media (max-width: 674px) {
  .about__numbers {
    padding: 25px 0 50px;
  }

  .about__body .title p br {
    display: none;
  }
}
@media (max-width: 550px) {
  .number-item h2 {
    font-size: 25px;
    padding: 2px 0;
  }
  .number-item p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .about__numbers {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .about__numbers div {
    width: 35%;
    margin: 5px 0;
  }
}
@media (max-width: 395px) {
  .about__body .title p {
    font-size: 14px;
    line-height: 18px;
  }
  .about__body .title h2 {
    font-size: 24px;
  }
  .about__body .title h2 br {
    display: none;
  }

  .number-item h2 {
    padding: 0;
  }
  .number-item p {
    font-size: 13px;
  }
}
/* ABOUT END */
/* PROUDCTS START */
.products {
  padding: 50px 0;
}

.products__body {
  padding: 30px 0;
  position: relative;
}

.products-slider__slide a {
  text-decoration: none;
}

.products-item {
  margin: 5px 0;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.products-item h3 {
  color: #0C4963;
  font-size: 20px;
  padding: 2px 0;
}
.products-item p {
  padding: 0 0 3px;
  color: #B0AEAE;
  font-size: 14px;
}
.products-item img {
  display: block;
  height: 170px;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}

.swiper-grid-column > .swiper-wrapper {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media (max-width: 768px) {
  .products-item h3 {
    font-size: 16px;
  }
  .products-item p {
    font-size: 13px;
  }
}
@media (max-width: 425px) {
  .products__body {
    padding: 15px 0 0px;
  }

  .products-item img {
    height: 150px;
  }
}
/* PROUDCTS END */
/* REQUEST START */
.request {
  padding: 60px 0 80px;
  background: url("../img/form-bg.png") no-repeat;
  background-color: #F8F8F8;
  background-position: 100% 30%;
}

.request-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.request-form__input {
  margin-top: 20px;
}
.request-form__input input:nth-child(1),
.request-form__input input:nth-child(2) {
  border: 1px solid #B0AEAE;
  color: #000;
  padding: 15px;
  width: 25%;
  margin-right: 10px;
  outline: none;
}

.input-button {
  font-weight: 500;
  margin: 20px 10px 10px 0;
  display: inline-block;
  text-decoration: none;
  padding: 15px 25px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
  color: #fff;
  border: 0px;
  background: #0C4963;
  cursor: pointer;
}
.input-button:hover {
  border-radius: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.request-form__label {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.request-form__label label {
  margin-left: 5px;
  font-size: 13px;
  color: #696969;
  letter-spacing: 0.3px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 1164px) {
  .request {
    background-size: 370px;
    background-position: 100% 50%;
  }
}
@media (max-width: 1087px) {
  .request {
    background-position: 110% 50%;
  }
}
@media (max-width: 998px) {
  .request {
    background-image: none;
    padding: 30px 0 60px;
  }
  .request .title h2 br,
.request .title p br {
    display: none;
  }

  .request-form__input {
    width: 150%;
    margin-top: 5px;
  }
}
@media (max-width: 627px) {
  .request-form__input {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .request-form__input input {
    width: 100% !important;
    margin: 5px 0 !important;
  }
}
@media (max-width: 425px) {
  .title p {
    padding: 2px 0;
  }
}
/* REQUEST END */
/* BENEFITS END */
.benefits {
  padding: 40px 0;
}

.benefits__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
}

.benefits__item img {
  pointer-events: none;
  width: 55px;
  height: 100%;
  padding: 5px 0;
  -webkit-filter: contrast(0.5);
          filter: contrast(0.5);
}
.benefits__item h3 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
}
.benefits__item p {
  color: #858585;
  font-size: 14px;
  padding: 5px 0;
  line-height: 20px;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .benefits__body {
    text-align: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media (max-width: 768px) {
  .benefits__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .benefits__body div {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }

  .benefits {
    padding: 30px 0;
  }
}
@media (max-width: 565px) {
  .benefits__body div {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 80%;
            flex: 1 0 80%;
    margin: 10px 0;
  }
}
/* BENEFITS END */
/* PROJECTS START */
.projects {
  padding: 10px 0 60px;
}

.projects__body {
  position: relative;
  padding: 30px 0;
}

.swiper-scrollbar {
  background: #F8F8F8;
}

.swiper-scrollbar-drag {
  background: #0C4963;
}

.projects-slider__slide img {
  display: block;
  width: 620px;
  height: 414px;
  border-top-right-radius: 85px;
  border-bottom-left-radius: 85px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 425px) {
  .projects-slider__slide img {
    width: 360px;
    height: 255px;
  }
}
@media (max-width: 375px) {
  .projects-slider__slide img {
    width: 310px;
    height: 225px;
  }
}
@media (max-width: 320px) {
  .projects-slider__slide img {
    width: 270px;
    height: 200px;
  }
}
/* PROJECTS END */
/* CLIENTS START */
.clients {
  padding: 10px 0 50px;
}

.clients__body {
  padding: 30px 0;
}

.clients-slider__slide img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  width: 100%;
  max-width: 125px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 768px) {
  .clients__body {
    padding: 40px 0 20px;
  }
}
@media (max-width: 658px) {
  .clients {
    padding: 10px 0 20px;
  }

  .clients .title p br {
    display: none;
  }
}
@media (max-width: 425px) {
  .clients-slider__slide img {
    max-width: 95px;
    height: 110px;
  }
}
/* CLIENTS END */
/* REQUEST-BOTTOM START */
.request-bottom {
  padding: 40px 0 70px;
  background: #F8F8F8;
}

.title-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.title-bottom_right {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .request-bottom {
    padding: 20px 0 55px;
  }

  .title-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }

  .title-bottom_left h2 {
    font-size: 27px;
  }
  .title-bottom_left h2 br {
    display: none;
  }

  .title-bottom_right {
    margin-top: 0px;
  }
  .title-bottom_right p br {
    display: none;
  }
}
@media (max-width: 425px) {
  .title-bottom_left h2 {
    font-size: 22px;
  }
  .title-bottom_left h4 {
    padding: 0;
    font-size: 13px;
  }

  .title-bottom_right p {
    font-size: 12px;
    line-height: 19px;
  }
}
/* REQUEST-BOTTOM END */
/* FOOTER START */
.footer {
  padding: 50px 0 20px;
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.footer__body a {
  text-decoration: none;
}

.footer__col-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__col-01 a {
  color: #696969;
  letter-spacing: 0px;
  font-size: 14px;
  font-weight: 500;
}
.footer__col-01 a:hover {
  text-decoration: underline;
  color: #222222;
}
.footer__col-01 a i {
  padding-right: 5px;
}
.footer__col-01 div {
  margin: 5px 0;
}

.footer__col-01_row-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}
.footer__col-01_row-01 a {
  margin: 0 15px 0 0;
  text-decoration: none;
  color: #B0AEAE;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__col-01_row-01 a:hover {
  color: #222222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer__col-01_row-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__col-01_row-02 a {
  margin: 5px 0 0 0;
}

.fa-phone-flip,
.fa-envelope,
.fa-location-dot,
.fa-mobile-retro {
  color: #991A2F;
}

.footer__col-04,
.footer__col-03,
.footer__col-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__col-04 h2,
.footer__col-03 h2,
.footer__col-02 h2 {
  color: #393939;
  font-size: 20px;
  margin-bottom: 8px;
}
.footer__col-04 a,
.footer__col-03 a,
.footer__col-02 a {
  color: #696969;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
}
.footer__col-04 a:hover,
.footer__col-03 a:hover,
.footer__col-02 a:hover {
  color: #393939;
  text-decoration: underline;
}

.footer__copyright {
  padding: 50px 0 20px;
  color: #B0AEAE;
  font-size: 14px;
  letter-spacing: 0.3px;
}

@media (max-width: 820px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer__col-01 {
    width: 100%;
    margin: 0 0 20px;
  }
}
@media (max-width: 560px) {
  .footer__col-02 {
    width: 100%;
  }

  .footer__col-03 {
    width: 100%;
  }

  .footer__col-04 a,
.footer__col-03 a,
.footer__col-02 a {
    margin-bottom: 5px;
  }

  .footer__col-04 h2,
.footer__col-03 h2,
.footer__col-02 h2 {
    margin-bottom: 0;
  }

  .footer__col-02 a:last-child,
.footer__col-03 a:last-child {
    margin-bottom: 20px;
  }
}
/* FOOTER END */
/* 404 NOT-FOUND START*/
.not-found {
  padding: 60px 0 190px;
}

.not-found__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.not-found__left {
  width: 60%;
}
.not-found__left h2 {
  color: #991A2F;
  font-size: 57px;
  font-weight: 700;
  line-height: 57px;
}
.not-found__left h1 {
  color: #0C4963;
  padding: 5px 0 10px;
  line-height: 38px;
  font-size: 34px;
  letter-spacing: 1px;
}
.not-found__left p {
  line-height: 26px;
  color: #696969;
  font-weight: 300;
}
.not-found__left a {
  font-weight: 500;
  margin: 20px 10px 10px 0;
  display: inline-block;
  text-decoration: none;
  padding: 15px 25px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
}
.not-found__left a:hover {
  border-radius: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.not-found__left a:nth-child(1) {
  color: #fff;
  background: #0C4963;
}

.not-found__right img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

@media (max-width: 1038px) {
  .not-found__right img {
    max-width: 350px;
  }
}
@media (max-width: 984px) {
  .not-found__right {
    display: none;
  }

  .not-found__body {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .not-found__left {
    width: 100%;
  }
  .not-found__left p br {
    display: none;
  }
}
@media (max-width: 425px) {
  .not-found {
    padding: 40px 0 170px;
  }
}
/* 404 NOT-FOUND END*/