
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

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

:root {
  /* Colors */
  --color-black: #000;
  --color-black-light: #222222;

  --color-white: #fff;
  --color-white-trans: rgba(0, 0, 0, 0.2);

  --color-main: #144f87;
  --color-main-trans: #2b3d5911;

  --color-accent: #2b3d59;

  --color-gray: #767575;
  --color-gray-dark: #5a5a5a;
  --color-gray-light: #eeeeee;

  /* Fonts */
  --font-manrope: "Manrope", sans-serif;
 --font-philosopher: "Arial", sans-serif;
}

.compensate-for-scrollbar {
  margin-right: 0 !important;
}

html {
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: 400;
  font-display: auto;
  color: var(--color-gray-dark);
  font-family: var(--font-manrope);
  background: url(../images/background-body.jpg)
    repeat;
  background-attachment: fixed;
  background-position: unset;
}

@media only screen and (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

.container,
.container-short,
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}

.container {
  max-width: 1320px !important;
}

.container-short {
  max-width: 1120px !important;
}

.container-fluid {
  max-width: 100% !important;
}

.y-center {
  align-items: center;
}

.y-margin > *:not(:last-child) {
  margin: 0 0 30px 0;
}

.x-end {
  justify-content: flex-end;
}

.x-space-between {
  justify-content: space-between;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

[class*="col-"] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 15px;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Parts
 *
----------------------------------------------------------------------------------------- */

/*  Template Part: Site Header
----------------------------------------------------------------------------------------- */

/*  Site Header
------------------------------------------ */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  position: fixed;
  transition: 0.3s;
  align-items: center;
}

.site-header [class*="col-"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header [class*="col-"] > *:not(:last-child) {
  margin: 0 45px 0 0;
}

/* Onscroll */
.onscroll .site-header {
  background: #144f87;
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.1);
}

/*  Site Header: Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .site-header [class*="col-"] > *:not(:last-child) {
    margin: 0 15px 0 0;
  }
}

/*  Template Part: Page Header
----------------------------------------------------------------------------------------- */

/*  Template Part: Site Footer
----------------------------------------------------------------------------------------- */
.site-footer {
  padding: 30px 0;
  background: linear-gradient(45deg, #144f87, #2c76bb, #0f4376, #222222, #222222);
  background-size: 400% 400%;
  animation: gradientAnimation 5s ease infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media only screen and (max-width: 576px) {
  .site-footer {
    padding: 30px 0;
  }
}

/*  Template Part: Comments
----------------------------------------------------------------------------------------- */
.comment-list > .comment {
  padding: 30px;
  background: var(--color-gray-light);
  border: 1px solid var(--color-gray-light);
}

.comment-list > .comment:not(:last-child),
.comment-list > .comment ul.children .comment:not(:last-child) {
  margin-bottom: 30px;
}

.comment-list > .comment ul.children {
  margin: 30px 0 0 30px;
}

.comment-body {
  padding: 30px;
  background: var(--color-white);
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment-meta > .comment-author {
  display: flex;
  align-items: center;
}

.comment-meta > .comment-author > .avatar {
  margin-right: 10px;
}

.comment-meta > .comment-metadata {
  font-size: 12px;
}

.comment-content {
  padding: 15px 0;
  margin: 15px 0;
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
}

/* --------------------------------------------------------------------------------------
 *
 *  Template Sections
 *
----------------------------------------------------------------------------------------- */

section {
  padding: 90px 0;
}

/*  Section: Imaged
------------------------------------------ */
section.imaged {
  position: relative;
  color: var(--color-white);
}

section.imaged::before,
section.imaged::after {
  top: 0;
  width: 50%;
  z-index: -1;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  background: var(--color-main) no-repeat center center / cover;
}

section.imaged::before {
  left: 0;
}

section.imaged::after {
  right: 0;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  section {
    padding: 30px 0;
  }
  section.imaged::before,
  section.imaged::after {
    width: 100%;
  }
  section.imaged::before {
    background: #2b3d59ab no-repeat center center / cover !important;
  }
}

/*  Section: Treatment
----------------------------------------------------------------------------------------- */
section#treatment {
  color: var(--color-white);
  background: var(--color-main);
}

/*  Section: Promoinfo
----------------------------------------------------------------------------------------- */

/*section#promoinfo {
  min-height: 768px;
}*/

/*section#promoinfo::before {
  background-image: url(../images/image-1.jpg);
}*/

/*  Section: Hero
----------------------------------------------------------------------------------------- */
section#hero {
  padding: 175px 0 90px 0;
  background: radial-gradient(circle, #144f87, #2c76bb, #0f4376, #2c76bb, #222222, #144f87, #0f4376, #222222);
  background-size: 200% 200%;
  animation: gradientAnimation2 5s ease infinite;
}
@keyframes gradientAnimation2 {
  0% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 50% 50%;
  }
}

section#hero .editor {
  font-size: 18px;
}

@media only screen and (max-width: 576px) {
  section#hero {
    padding: 110px 0 30px 0;
  }
  section#hero .editor {
    font-size: 14px;
  }
}

/*  Section: 404
----------------------------------------------------------------------------------------- */
.content-404 {
  text-align: center;
}

.content-404 .label {
  line-height: 1;
  font-weight: 800;
  font-size: 250px;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  .content-404 .label {
    font-size: 125px;
  }
}

/* --------------------------------------------------------------------------------------
 *
 *  Components
 *
----------------------------------------------------------------------------------------- */

/*  Component: Googl Map
----------------------------------------------------------------------------------------- */
#google-map > iframe {
  height: 500px;
  width: 100%;
  border: none;
  line-height: 0;
}

@media only screen and (max-width: 576px) {
  #google-map > iframe {
    height: 240px;
  }
}

/*  Component: Gallery
----------------------------------------------------------------------------------------- */

/*  Gallery: Gallery Thumbnail
------------------------------------------ */
.gallery-thumbnail {
  width: 100%;
}

.gallery-thumbnail > img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

/*  Component: Swiper
----------------------------------------------------------------------------------------- */

/*  Swiper: Defaults
------------------------------------------ */
.swiper-slide {
  height: auto !important;
}

/* Swiper Pagintaion */
.swiper-pagination {
  position: unset !important;
}

/*  Swiper: Swiper Navigation
------------------------------------------ */
.swiper-navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*  Swiper: Swiper Button
------------------------------------------ */

.swiper-next,
.swiper-prev {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-white);
  background: #144f87;
}

/*  Component: Review
----------------------------------------------------------------------------------------- */

section#reviews {
  background: var(--color-white);
}

/*  Review: Review Box
------------------------------------------ */
.review-box {
  height: 100%;
  padding: 45px;
  background: var(--color-gray-light);
}

.review-box > *:not(:last-child) {
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid var(--color-white-trans);
}

/*  Review: Review Info
------------------------------------------ */

.review-info {
  display: flex;
  align-items: center;
}

.review-info > *:not(:first-child) {
  margin: 0 0 0 30px;
}

/* review Meta */
.review-meta > *:not(:last-child) {
  margin: 0 0 5px 0 !important;
}

.review-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-philosopher);
}

/*  Review: Review Thumbnail
------------------------------------------ */
.review-thumbnail {
  width: 120px;
  height: 120px;
  display: block;
  min-width: 120px;
  min-height: 120px;
  overflow: hidden;
  border-radius: 100%;
}

.review-thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 576px) {
  .review-box {
    padding: 15px;
  }
  .review-name {
    font-size: 18px;
  }
  .review-thumbnail {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
  }
}

/*  Component: Team
----------------------------------------------------------------------------------------- */

/*  Team: Teammate Box
------------------------------------------ */
.teammate-box {
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.teammate-box > *:not(:last-child) {
  margin: 0 0 15px 0;
}

/* Teammate Box / Teammate Title */

/*  Team: Teammate Thumbnail
------------------------------------------ */
.teammate-thumbnail {
  width: 225px;
  height: 225px;
  display: block;
  border-radius: 100%;
  overflow: hidden;
  background: var(--color-gray-light);
}

.teammate-thumbnail > img {
  width: 100%;
  height: 100%;
}

/*  Team: Teammate Meta
------------------------------------------ */

.teammate-meta > *:not(:last-child) {
  margin: 0 0 10px 0 !important;
}

/* Teammate Meta / Teammate Title */
.teammate-name {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-black);
  font-family: var(--font-philosopher);
}

@media only screen and (max-width: 576px) {
  .teammate-thumbnail {
    width: 125px;
    height: 125px;
  }
}

/*  Component: Iconblock
----------------------------------------------------------------------------------------- */

.iconblock {
  display: flex;
}

.iconblock > *:not(:last-child) {
  margin: 0 30px 0 0;
}

/*  Iconblock: Iconblock Grid
------------------------------------------ */
.iconblock-grid > * {
  padding: 0;
  min-height: 100%;
  border-top: 1px solid var(--color-white-trans);
  border-right: 1px solid var(--color-white-trans);
}

.iconblock-grid > *:nth-child(3n) {
  border-right: 0;
}

.iconblock-grid > *:nth-child(-n + 3) {
  border-top: 0;
}

.iconblock-grid > * > * {
  padding: -30px;
}

/*  Iconblock: Iconblock Icon
------------------------------------------ */
.iconblock-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  display: flex;
  object-fit: contain;
  align-items: center;
  text-align: center;
  font-size: var(--font-size-xl);
  font-weight: 600;
  justify-content: center;
  color: var(--color-white);
}

/*  Iconblock: Iconblock Meta
------------------------------------------ */

/* Iconblock Title */
.iconblock-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  font-family: var(--font-philosopher);
}

@media only screen and (max-width: 576px) {
  .iconblock-grid > * {
    border: none;
  }
  .iconblock-grid > *:not(:last-child) {
    border-bottom: 1px solid var(--color-white-trans) !important;
  }
  .iconblock-grid > * > * {
    padding: 15px;
  }
}

/*  Component: Site Branding
----------------------------------------------------------------------------------------- */
.site-branding {
  display: flex;
  align-items: center;
}

.site-branding > *:not(:last-child) {
  margin: 0 -35px 0 0;
}

/* Site Branding White Style */
.site-branding.white * {
  filter: brightness(0) invert(1);
}

/*  Site Branding: Site Logo
------------------------------------------ */
.site-logo {
  max-height: 100px;
}

/*  Site Branding: Site Info
------------------------------------------ */
.site-info > *:not(:last-child) {
  margin: 0 0 5px 0;
}

/* Site Name */
.site-name {
  line-height: 1;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-philosopher);
}

@media only screen and (max-width: 768px) {
  .site-branding > *:not(:last-child) {
    margin: 0 -35px 0 0;
  }
  /* Site Logo */
  .site-logo {
    max-height: 50px;
  }
  /* Site Name */
  .site-name {
    font-size: 28px;
  }
  /* Site Description */
  .site-description {
    font-size: 10px;
  }
}

/*  Component: Form
----------------------------------------------------------------------------------------- */

/*  Form: Fields
------------------------------------------ */
input {
    background-color: #ffffff12; 
    color :#fff;
}
input::placeholder {
  color: #fff; /* Задайте желаемый цвет для текста плейсхолдера */
}
input[name="name"] {
  width: 93.5%;
  height: 40px;
  padding: 0 6px;
  border: 1px solid #a7a1a1;
}
input[name="email"] {
  width: 93.5%;
  height: 40px;
  padding: 0 6px;
  border: 1px solid #a7a1a1;
}
input[name="phone"] {
  width: 100%;
  height: 40px;
  padding: 0 6px;
  border: 1px solid #a7a1a1;
}
/*textarea,
input:not(input[type="checkbox"]) {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border: 1px solid #a7a1a1;
}*/

/*  Form
------------------------------------------ */

form > *:not(:first-child) {
  margin: 15px 0 0 0;
}

/* Form Buttons */
form .buttons {
  flex-direction: column;
}

/*  Form: Contact Form 7
------------------------------------------ */

/* Contact Form 7 Spinner */
.wpcf7-spinner {
  display: none;
}

/* Contact Form 7 List Item */
.wpcf7-list-item {
  margin: 0;
  padding: 30px;
  font-size: 14px;
  color: var(--color-gray-dark);
  border: 1px solid #1c1a1a
}

/*  Component: Contact List
----------------------------------------------------------------------------------------- */

/*  Contact List: Contact List
------------------------------------------ */
.contact-list {
  display: flex;
  flex-direction: column;
}

.contact-list > *:not(:last-child) {
  margin: 0 0 15px 0;
}

/*  Contact List: Contact Item
------------------------------------------ */

.contact-item > *:not(:last-child)::after {
  margin: 0 5px 0 0;
}

/*  Contact Item: Social Networks
------------------------------------------ */
.social-networks {
  display: flex;
}

.social-networks > * {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  transition: 0.3s;
  border: 1px solid var(--color-white-trans);
}

.social-networks > *:hover {
  color: var(--color-accent);
  border-color: var(--color-accent) !important;
}

.social-networks > *:not(:last-child) {
  margin: 0 15px 0 0;
}

/*  Component: Heading
----------------------------------------------------------------------------------------- */

.heading {
  display: flex;
  margin: 0 0 30px 0;
  flex-direction: column;
}

.heading > *:not(:last-child) {
  margin: 0 0 15px 0;
}

/* Headnig Center */
.heading.center {
  text-align: center;
  align-items: center;
}

/*  Heading: Heading Title
------------------------------------------ */
.heading-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  font-family: var(--font-philosopher);
}

h1.heading-title {
  margin: unset;
}

/* Heading Title White */
.heading-title.white {
  color: var(--color-white);
}

/*  Heading: Heading Text
------------------------------------------ */
.heading-text {
  font-size: 18px;
}

@media only screen and (max-width: 576px) {
  .heading-title {
    font-size: 28px;
  }
}

/*  Component: Widget
----------------------------------------------------------------------------------------- */

.widget > *:not(:last-child) {
  margin: 0 0 15px 0;
}

/*  Widget: Widget Heading
------------------------------------------ */

/* Widget Title */
.widget-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  font-family: var(--font-philosopher);
}
.widget-text {
  color:#fff;
}
.iti__selected-dial-code { color:#fff;}
/* Widget Title White */
.widget-title.white {
  color: var(--color-white);
}

/*  Widget: Widget Lead
------------------------------------------ */
.widget-lead {
  padding: 5px 45px 45px 45px;
  border-radius: 15px;
  background: #144f87ed;
  box-shadow:0 10px 30px #1da1f2;
}

/*  Widget: Widget Branding
------------------------------------------ */
.widget-branding {
  display: flex;
  flex-direction: column;
}

.widget-branding.white {
  color: var(--color-white);
}

.widget-branding > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.widget-branding > *:not(:last-child) {
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid var(--color-white-trans);
}

/* .widget-branding .site-logo */
.widget-branding .site-logo {
  padding: 0 15px 0 0;
}
    video.fullscreen {
  position: absolute;
  z-index: -999;
  object-fit: cover;
  width:100%;
  height:900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  &::-webkit-media-controls {
     display:none !important;
  }
}
@media only screen and (max-width: 576px) {
      video.fullscreen {
  position: absolute;
  z-index: -999;
  object-fit: cover;
  width:100%;
  height:1520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  &::-webkit-media-controls {
     display:none !important;
  }
}
    input[name="name"] {
  width: 92.5%;
  height: 60px;
  padding: 0 10px;
  border: 1px solid #a7a1a1;
}
  .widget-lead {
    padding: 30px;
  }
}

/*  Component: Editor Styles
----------------------------------------------------------------------------------------- */
:root {
  --font-size-xl: 24px;
}

/* Heading */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0 0 30px 0;
  font-family: var(--font-philosopher);
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

p {
  line-height: 1.5;
}

p:not(:last-child) {
  margin-bottom: 15px;
}

ul,
ol,
dl {
  line-height: 1.5;
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

/*  Editor Styles
------------------------------------------ */
.editor p {
  text-align: justify;
}

.editor ul,
.editor ol {
  margin: 0 0 15px 15px;
}

.editor ul li:not(:last-child),
.editor ol li:not(:last-child) {
  margin: 0 0 10px 0;
}

.editor ul {
  list-style: circle;
}

.editor ol {
  list-style: decimal;
}

/*  Responsive
------------------------------------------ */
@media only screen and (max-width: 576px) {
  :root {
    --font-size-xl: 18px;
  }
  /* Headings */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 15px 0;
  }

  h1 {
    font-size: var(--font-size-xl);
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }
}

/*  Component: Button
----------------------------------------------------------------------------------------- */

/*  Button: Buttons
------------------------------------------ */
.buttons {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.buttons.center {
  justify-content: center;
}

.buttons > *:not(:first-child) {
  margin: 0 0 0 15px;
}

/*  Button: Button Default
------------------------------------------ */
.buttons [class*="button-"] {
  height: 60px;
  display: flex;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  padding: 0px 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #2f526563;
  border: 2px solid #fff;
}

.buttons [class*="button-"]::before {
  content: "";
  width: 30px;
  display: block;
  transition: 0.3s;
  margin: 0 30px 0 0;
  border-bottom: 1px solid #fff;
}

.buttons [class*="button-"]:hover::before {
  width: 45px;
}

/*  Button: Button White
------------------------------------------ */

.buttons [class*="button-"].white {
  color: var(--color-white);
  border-color: var(--color-white);
}

.buttons [class*="button-"].white::before {
  border-color: var(--color-white);
}

/*  Button: Button Trasparent
------------------------------------------ */

.buttons [class*="button-"].transparent {
  background: transparent;
}

/*  Component: Modal
----------------------------------------------------------------------------------------- */
.modal {
  display: none;
}

/* --------------------------------------------------------------------------------------
 *
 *  Navigations
 *
----------------------------------------------------------------------------------------- */

/*  Navigation: Main Navigation
----------------------------------------------------------------------------------------- */

/* .main-navigation */
.main-navigation {
  -ms-overflow-style: none;
  scrollbar-width: none;
  color: var(--color-white);
}

.main-navigation::-webkit-scrollbar {
  display: none;
}

/* .main-navigation > menu */
.main-navigation .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .main-navigation > menu-item */
.main-navigation .menu > .menu-item {
  height: 100%;
  position: relative;
}

.main-navigation:not(.mobile) .menu > .menu-item:not(:last-child) {
  margin: 0 30px 0 0;
}

.main-navigation .menu > .menu-item > a {
  width: 100%;
  height: 40px;
  display: flex;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: var(--font-philosopher);
}

.main-navigation .menu > .menu-item > a:hover {
  opacity: 0.8;
}

/* .main-navigation > .sub-menu */
.main-navigation .menu > .menu-item > a > .dropdown-toggle {
  width: 12px;
  height: 12px;
  display: block;
  background: url("../fonts/carbon_chevron-down.svg")
    no-repeat center center / contain var(--color-white);
}

.main-navigation.mobile .menu > .menu-item > a > .dropdown-toggle {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.main-navigation .menu > .menu-item > .sub-menu {
  left: 0;
  z-index: 1000;
  overflow: hidden;
  position: absolute;
  max-height: 0;
  width: 100%;
  max-width: 576px;

  display: flex;
  flex-direction: column;
  color: var(--color-white);
  background: var(--color-black-light);
}

.main-navigation:not(.mobile) .menu > .menu-item:hover > .sub-menu,
.main-navigation .menu > .menu-item > .sub-menu.open {
  flex-wrap: wrap;
  min-width: max-content;
  max-height: min-content;
}

.main-navigation .menu > .menu-item > .sub-menu .menu-item a {
  display: flex;
  font-size: 12px;
  padding: 15px 30px;
  align-items: center;
  text-transform: uppercase;
}

.main-navigation .menu > .menu-item > .sub-menu .menu-item a:hover {
  color: var(--color-white);
  background: var(--color-black);
}

/* .main-navigation-mobile */
.main-navigation.mobile {
  left: 0;
  width: 100%;
  z-index: 999;
  display: block;
  padding: 15px 0;
  min-height: min-content;
  overflow-y: scroll;
  position: absolute;
  color: var(--color-white);
  background: #144f87;
}

.main-navigation.mobile .menu {
  flex-direction: column;
  align-items: flex-start;
}

.main-navigation.mobile .menu .menu-item {
  width: 100%;
}

.main-navigation.mobile .menu > .menu-item > a {
  padding: 0 30px;
  justify-content: space-between;
}

/* .main-navigation-mobile > .sub-menu */
.main-navigation.mobile .menu .menu-item .sub-menu {
  left: 0;
  min-width: 100%;
  position: unset;
  transform: unset;
  color: var(--color-black);
  background: var(--color-white);
}

/*  Menu toggle
------------------------------------------ */
.menu-toggle {
  width: 50px;
  height: 32px;
  display: none;
  position: relative;
  color:#fff;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background:#fff;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
  top: 14px;
}

.menu-toggle span:nth-child(4) {
  top: 28px;
}

.menu-toggle.change span:nth-child(1) {
    be:#fff;
  top: 14px;
  width: 0%;
  left: 50%;
}

.menu-toggle.change span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-toggle.change span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-toggle.change span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/*  */
@media only screen and (max-width: 1180px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation {
    display: none;
  }
}
/*  Navigation: Post Navigation / Post Pagintaion / Comment Navigation
----------------------------------------------------------------------------------------- */

/* .navigation */
.navigation > .screen-reader-text {
  display: none;
}

/* .navigation > .nav-links */
.nav-links {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.nav-links > [class*="nav-"] {
  max-width: 320px;
}

.nav-links > .nav-next {
  margin-left: auto;
}

.nav-links > .nav-previous {
  margin-right: auto;
}

.nav-links > [class*="nav-"] > a {
  display: flex;
  line-height: 1.5;
  align-items: flex-start;
}

.nav-links > .nav-next > a {
  text-align: right;
}

.nav-links > .nav-previous > a {
  text-align: left;
}

.nav-links > .nav-previous > a::before,
.nav-links > .nav-next > a::after {
  content: "";
  min-width: 20px;
  min-height: 20px;
  display: block;
}

.nav-links > .nav-previous > a::before {
  margin-right: 10px;
  background: url("../fonts/carbon_chevron-left.svg")
    no-repeat center center / contain;
}

.nav-links > .nav-next > a::after {
  margin-left: 10px;
  background: url("../fonts/carbon_chevron-right.svg")
    no-repeat center center / contain;
}

/* .pagination > .nav-links */
.pagination .nav-links {
  align-items: center;
  justify-content: center;
}

.pagination .nav-links > .page-numbers {
  width: 50px;
  height: 50px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.pagination .nav-links > .page-numbers.prev {
  background: url("../fonts/carbon_chevron-left.svg")
    no-repeat center center / contain;
}

.pagination .nav-links > .page-numbers.next {
  background: url("../fonts/carbon_chevron-right.svg")
    no-repeat center center / contain;
}

.pagination .nav-links > .page-numbers:not(:last-child) {
  margin-right: 15px;
}
