:root {
  --main-green: #40909c;
  --main-blue: #004b86;
  --main-lightBlue: #2776b9;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  line-height: normal;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #f7f8ff;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
p {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Italic.ttf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.ttf");
  font-weight: 900;
}
/* NEW FONTS */
@font-face {
  font-family: "Cocogoose";
  src: url("../fonts/Cocogoose_Light.ttf");
}
@font-face {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/PTSans-Regular.ttf");
}
@font-face {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/PTSans-Italic.ttf");
}
@font-face {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/PTSans-Bold.ttf");
}
body {
  font-family: "Poppins";
  font-size: 14px;
}

.w-35 {
  width: 35%;
}

header {
  padding: 0 10px;
  background-color: #fff;
}
header .header-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header li {
  border-bottom: 4px solid rgba(255, 255, 255, 0);
}
header li.active {
  border-color: var(--main-blue);
}
@media (max-width: 400px) {
  header .logo img {
    width: 220px;
  }
}
header ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  list-style: none;
}
@media (max-width: 1115px) {
  header ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 1025px) {
  header ul {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    background-color: #407eb4;
    padding-top: 90px;
  }
}
@media (max-width: 1025px) {
  header .menu_opened ul {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    align-items: flex-start;
    padding-left: 10%;
  }
}
header .menu_opened .burger_menu {
  position: fixed;
  right: 30px;
  top: 30px;
}
header .menu_opened .burger_menu .close {
  display: block;
}
header .menu_opened .burger_menu .open {
  display: none;
}
header li {
  padding: 25px 0;
}
header a {
  color: var(--main-blue);
  font-size: 24px;
}
@media (max-width: 1025px) {
  header a {
    color: #fff;
  }
}
header .burger_menu {
  display: none;
  background-color: rgba(0, 0, 0, 0);
}
header .burger_menu img {
  width: 45px;
}
header .burger_menu .close {
  display: none;
}
@media (max-width: 1025px) {
  header .burger_menu {
    display: block;
  }
}

.hero {
  background-image: url("/assets/img/Banner1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 30px;
  max-width: 1460px;
  margin: 0 auto;
}

.hero-top {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 5%;
       column-gap: 5%;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 660px) {
  .hero-top {
    flex-direction: column-reverse;
    text-align: center;
    row-gap: 30px;
  }
}
.hero-top .hero-text {
  max-width: 500px;
}
.hero-top .hero-text p {
  color: #fff;
}
.hero-top .hero-text p:first-child {
  font-size: 35px;
}
@media (max-width: 660px) {
  .hero-top .hero-text p:first-child {
    font-size: 28px;
  }
}
.hero-top .hero-text p:last-child {
  font-size: 29px;
}
@media (max-width: 660px) {
  .hero-top .hero-text p:last-child {
    font-size: 22px;
  }
}

.hero-cards {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  height: 100%;
}

.hero-card-wrapper h3 {
  margin-bottom: 25px;
}
.hero-card-wrapper:nth-child(3) .hero-btn {
  background-color: var(--main-green);
}
.hero-card-wrapper:nth-child(3) h3 {
  color: var(--main-green);
}
.hero-card-wrapper:nth-child(1) .hero-btn {
  background-color: var(--main-lightBlue);
}
.hero-card-wrapper:nth-child(1) h3 {
  color: var(--main-lightBlue);
}
.hero-card-wrapper:nth-child(2) .hero-btn {
  background-color: #093e72;
}
.hero-card-wrapper:nth-child(2) h3 {
  color: #093e72;
}

.hero-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  background-color: #fff;
  border-radius: 25px;
  padding: 40px 50px;
}
@media (max-width: 767px) {
  .hero-card {
    align-items: center;
    text-align: center;
  }
}
.hero-card h3 {
  font-size: 42px;
  font-weight: 300;
}
.hero-card .hero-btn {
  padding: 12px;
  text-transform: uppercase;
  color: #fff;
  margin-top: auto;
}

.expert {
  max-width: 1460px;
  margin: 0 auto;
  background-color: #f6a02b;
  color: #fff;
  padding: 30px 10px;
}
.expert .expert-inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  max-width: 1350px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .expert .expert-inner {
    flex-direction: column;
    text-align: center;
    row-gap: 30px;
  }
}
.expert .expert-inner p:first-child {
  font-size: 42px;
  min-width: 180px;
  text-transform: capitalize;
}
.expert .expert-inner p:last-child {
  font-size: 25px;
}

.color-block {
  max-width: 1460px;
  margin: 0 auto;
  padding-right: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--main-green);
}
@media (max-width: 767px) {
  .color-block {
    padding-right: 0;
    padding-left: 10px;
  }
}
.color-block h2 {
  text-transform: capitalize;
  padding-bottom: 40px;
  font-size: 39px;
  color: #fff;
  padding-left: 70px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .color-block h2 {
    padding: 10px 20px;
    text-align: center;
    font-size: 32px;
  }
}
.color-block .images_block {
  display: flex;
  justify-content: center;
  align-items: center;
}
.color-block .images_block img {
  height: auto;
}
.color-block .color-block-inner {
  background-color: #fff;
  border-top-right-radius: 25px;
  padding-left: 70px;
  font-weight: 300;
  font-size: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
@media (max-width: 767px) {
  .color-block .color-block-inner {
    padding: 20px;
    border-top-right-radius: 0;
    font-size: 18px;
  }
}
.color-block .color-block-inner p {
  display: block;
  font-weight: inherit;
  font-size: inherit;
}
.color-block .color-block-inner a.blue_link {
  color: #017efe;
  text-decoration: underline;
  text-underline-position: under;
  display: inline;
}
.color-block .color-block-inner h4 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 767px) {
  .color-block .color-block-inner h4 {
    font-size: 24px;
  }
}
.color-block .color-block-inner ol,
.color-block .color-block-inner ul {
  padding-left: 100px;
}
@media (max-width: 767px) {
  .color-block .color-block-inner ol,
  .color-block .color-block-inner ul {
    padding-left: 20px;
  }
}

.green-block {
  background-color: var(--main-green);
}

.blue-block {
  background-color: #2776b8;
}

.text-lightBlue {
  color: var(--main-lightBlue);
}

.text-blue {
  color: var(--main-blue);
}

.text-green {
  color: var(--main-green);
}

.text-pink {
  color: #da0359;
}

.footer {
  text-align: center;
  background-color: var(--main-green);
  padding: 20px;
  font-weight: 600;
  color: white;
  font-size: 25px;
}

.bgText {
  padding-top: 40px;
  padding-bottom: 50px;
  text-align: center;
  max-width: 1460px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
.bgText p {
  max-width: 930px;
  margin: 0 auto;
  margin-bottom: 30px;
  font-size: 25px;
  color: #fff;
}
@media (max-width: 767px) {
  .bgText p {
    font-size: 18px;
  }
}
.bgText p:last-child {
  margin-bottom: 0;
}

.centeredText {
  padding-top: 25px;
  padding-bottom: 35px;
  text-align: center;
  max-width: 1460px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
.centeredText p {
  max-width: 930px;
  margin: 0 auto;
  margin-bottom: 30px;
  font-size: 25px;
  color: var(--main-blue);
}
@media (max-width: 767px) {
  .centeredText p {
    font-size: 18px;
  }
}
.centeredText p:last-child {
  margin-bottom: 0;
}

.bigBlueBadge {
  background-color: #ebf5fd;
  color: var(--main-lightBlue);
  text-align: center;
  padding: 50px;
  border-radius: 25px;
}
@media (max-width: 767px) {
  .bigBlueBadge {
    padding: 25px;
    border-radius: 10px;
  }
}
.bigBlueBadge h4 {
  font-size: 28px;
  font-weight: 600;
}
.bigBlueBadge p {
  font-size: 24px;
}

.order-block {
  max-width: 1460px;
  margin: 0 auto;
}
.order-block h2 {
  font-size: 20px;
  color: var(--main-blue);
  font-weight: 600;
}
.order-block p {
  font-size: 14px;
}
.order-block .book_img {
  width: 33%;
}
.order-block .book_text {
  width: 66%;
}
.order-block .radio_btns {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  font-size: 16px;
}
.order-block .radio_btns label {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-weight: 500;
}
.order-block .radio_btns .radio_fake {
  border: 1px solid var(--main-green);
  width: 30px;
  height: 30px;
  padding: 3px;
}
.order-block .radio_btns .radio_fake::after {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: rgba(255, 255, 255, 0);
}
.order-block .radio_btns input[type=radio] {
  display: none;
}
.order-block .radio_btns input[type=radio]:checked + .radio_fake::after {
  background-color: var(--main-blue);
}
.order-block form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.order-block form .form-control {
  border-radius: 0;
}
.order-block form .form-control:focus {
  box-shadow: none;
  border-color: var(--main-blue);
}
.order-block form button {
  width: 100%;
  background-color: var(--main-blue);
  padding: 10px;
  color: #fff;
}
.order-block .order-contacts {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 30px;
}
.order-block .order-contacts img {
  max-width: 48px;
}
.order-block .order-contacts a {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: #000;
}
.order-block .order-contacts a p:first-child {
  font-size: 14px;
}
.order-block .order-contacts a p:last-child {
  font-size: 16px;
  font-weight: 600;
}

.color-block .image_text_mob {
  display: none;
}
@media (max-width: 767px) {
  .color-block .image_text_mob {
    display: flex;
  }
}
@media (max-width: 767px) {
  .color-block .image_text_desk {
    display: none;
  }
}

.modal-login {
  --bs-modal-width: 600px;
}
.modal-login .modal-body {
  text-align: center;
}
.modal-login h4 {
  font-size: 36px;
  color: #2a97b2;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 25px;
}
.modal-login input {
  border: 1px solid #000;
  padding: 5px;
  text-align: center;
  min-width: 300px;
  margin-bottom: 15px;
}
.modal-login p {
  margin-bottom: 5px;
  font-size: 16px;
}
.modal-login p:last-child {
  font-style: italic;
  font-size: 14px;
}
.modal-login .btn {
  border-radius: 0;
}
.modal-login .btn-primary {
  background-color: var(--main-blue);
}

@media (max-width: 575px) {
  .order-block .book_text {
    width: 100%;
  }
  .order-block .book_img {
    width: 200px;
    margin: 0 auto;
  }
  .order-block .order-contacts {
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 30px;
  }
}
/* NEW PAGES */
.order_new {
  background-color: #029481;
}

.order_new_top {
  font-size: 32px;
  color: #fff;
  padding: 20px;
  max-width: 1460px;
  margin: 0 auto;
  text-align: center;
}
.order_new_top img {
  height: 36px;
  vertical-align: text-top;
}

.order_new_top_text {
  font-size: 24px;
  color: #fff;
}

.order_new .order-block {
  color: #fff;
}

.order_new .order-block .radio_btns .radio_fake {
  background-color: #fff;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  margin-top: 10px;
}

.order_new .order-block .radio_btns label {
  font-size: 36px;
  align-items: flex-start;
}
@media (max-width: 500px) {
  .order_new .order-block .radio_btns label {
    font-size: 24px;
  }
}

.order_new .order-block h2 {
  color: #0a0f7b;
  padding: 10px;
  background-color: #fff;
  text-align: center;
  border-radius: 5px;
}

.order_new .order-block p {
  font-size: 18px;
}

.order_new .order-block .book_text {
  width: 59%;
  margin-top: 30px;
}
@media (max-width: 500px) {
  .order_new .order-block .book_text {
    width: 100%;
    margin: 0 auto;
  }
}

.order_new .order-block .book_img {
  width: 40%;
}
@media (max-width: 500px) {
  .order_new .order-block .book_img {
    width: 80%;
  }
}

.order_new .order-block button {
  background-color: #1e024e;
  width: 100%;
  padding: 10px;
  color: #fff;
}

.order_new .order-block .radio_btns .radio_fake {
  display: none;
}

.order_new .order-block .radio_btns input {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 10px;
}

.order_new .order_new_formgroup {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.order_new .order_new_formgroup input {
  border-radius: 0;
}
.order_new .order_new_formgroup input:focus {
  box-shadow: none;
  border-color: var(--main-blue);
}
.order_new .order_new_formgroup textarea {
  border-radius: 0;
}
.order_new .order_new_formgroup textarea:focus {
  box-shadow: none;
  border-color: var(--main-blue);
}

.validation-error {
  border: 1px solid #ff3333;
}

.one_stop {
  color: #10effd;
  font-weight: 700;
  font-size: 40px;
}

.header_new {
  background-color: #c7d0dd;
}
.header_new nav {
  max-width: 1460px;
  margin: 0 auto;
}
.header_new a {
  color: #040404;
  font-size: 16px;
}
.header_new li {
  padding: 5px 0;
  border-bottom: 0;
}

.ourstory_top {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: end;
  justify-content: center;
  padding: 30px 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .ourstory_top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ourstory_top img {
    max-width: 100%;
  }
}
.ourstory_top img {
  height: 80px;
}
.ourstory_top span {
  font-family: "Cocogoose";
  font-size: 44px;
  color: #2c8ca2;
}

.ourstory_text {
  background-color: #c8e8e3;
  padding: 10px;
}
.ourstory_text > .ourstory_text-content, .ourstory_text > h3 {
  max-width: 1460px;
  margin: 0 auto;
}
.ourstory_text h3 {
  text-indent: 32px;
  text-transform: uppercase;
  color: #2699b4;
  font-size: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 700;
}
.ourstory_text p {
  text-indent: 32px;
  font-family: "PT Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 32px;
  color: #000;
}

.new_team_top {
  padding-bottom: 0;
}

.new_team {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(41, 170, 167, 0.73) 30%, rgb(0, 101, 141) 100%);
}
@media (max-width: 550px) {
  .new_team {
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(41, 170, 167, 0.73) 5%, rgb(0, 101, 141) 100%);
  }
}

.new_team_inner {
  max-width: 1460px;
  margin: 0 auto;
  font-family: "PT Sans", sans-serif;
  color: #fff;
}

.persons-big {
  display: flex;
  -moz-column-gap: 70px;
       column-gap: 70px;
}
@media (max-width: 768px) {
  .persons-big {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.persons-big .persons-big-name {
  font-size: 36px;
  padding-bottom: 5px;
}
.persons-big .persons-big-job {
  font-size: 24px;
}
.persons-big > div:first-child img {
  width: 250px;
}
.persons-big > div:last-child {
  margin-top: 30px;
}
.persons-big > div:last-child img {
  width: 200px;
  margin-bottom: 20px;
}

.persons-team {
  margin-top: 60px;
  margin-bottom: 60px;
}
.persons-team .persons-team-heading {
  text-align: center;
}
.persons-team .persons-team-heading h3 {
  font-family: "Cocogoose";
  font-size: 48px;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .persons-team .persons-team-heading h3 {
    font-size: 24px;
  }
}
.persons-team .persons-team-heading p {
  font-size: 42px;
}
@media (max-width: 768px) {
  .persons-team .persons-team-heading p {
    font-size: 21px;
  }
}

.persons-team-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 42px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .persons-team-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 550px) {
  .persons-team-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.persons-team-inner img {
  width: 100%;
}
.persons-team-inner p {
  font-size: 30px;
  font-family: "PT Sans", sans-serif;
  padding-top: 10px;
  color: #fff;
}
@media (max-width: 768px) {
  .persons-team-inner p {
    font-size: 24px;
  }
}

.persons-bottom {
  text-align: center;
  font-family: "Cocogoose";
  padding-bottom: 50px;
}
.persons-bottom p:first-child {
  font-size: 48px;
}
@media (max-width: 768px) {
  .persons-bottom p:first-child {
    font-size: 24px;
  }
}
.persons-bottom p:last-child {
  font-size: 32px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .persons-bottom p:last-child {
    font-size: 16px;
  }
}

.new_about {
  color: #fff;
  padding: 30px 0;
  max-width: 1460px;
  margin: 0 auto;
}
.new_about .new_about_logo {
  height: 40px;
  margin-bottom: 20px;
}
@media (max-width: 350px) {
  .new_about .new_about_logo {
    height: 35px;
  }
}
.new_about h3 {
  color: #0a0f7b;
  padding: 10px;
  background-color: #fff;
  text-align: center;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 28px;
  margin-bottom: 30px;
}
.new_about ol {
  font-size: 28px;
  margin-bottom: 30px;
}
.new_about .teal_block {
  font-size: 26px;
}
.new_about .new_about_text_main {
  font-size: 21px;
  margin-bottom: 20px;
}

.new_about_form > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 500px) {
  .new_about_form > div {
    grid-template-columns: 1fr;
  }
}
.new_about_form input {
  padding: 10px;
  border: 2px solid #000;
  border-radius: 5px;
}
.new_about_form textarea {
  width: 60%;
  margin-top: 25px;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 5px;
  height: 120px;
}
@media (max-width: 500px) {
  .new_about_form textarea {
    width: 100%;
  }
}
.new_about_form button {
  display: block;
  background: linear-gradient(0deg, rgb(139, 217, 0) 0%, rgb(90, 142, 0) 100%);
  color: #fff;
  padding: 15px 0;
  width: 200px;
  border-radius: 100px;
  border: 1px solid #3a5d26;
  margin-top: 15px;
  margin-left: 15%;
}

.new_about_top {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.new_about_photos {
  display: flex;
  flex-wrap: wrap;
}
.new_about_photos img {
  width: 45%;
  margin: 0 auto;
}

.photos_quote {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.photos_quote + .teal_block {
  text-align: center;
}

.new_footer {
  background-color: #0c84a7;
}
.new_footer .new_footer_inner {
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
  align-items: center;
  max-width: 1460px;
  margin: 0 auto;
}
@media (max-width: 840px) {
  .new_footer .new_footer_inner {
    flex-direction: column;
    gap: 15px;
  }
}
.new_footer img {
  height: 30px;
}
.new_footer .order-contacts {
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media (max-width: 840px) {
  .new_footer .order-contacts {
    flex-direction: column;
    gap: 15px;
  }
}
.new_footer .order-contacts a {
  display: flex;
  align-items: center;
  font-size: 14px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: #fff;
}
.new_footer .order-contacts a img {
  height: 40px;
}
.new_footer .order-contacts a p {
  text-align: left;
}
.new_footer .order-contacts a p:first-child {
  font-size: 12px;
}
.new_footer .order-contacts a p:last-child {
  font-size: 18px;
}/*# sourceMappingURL=style.css.map */