/*
Theme Name: Pasport-rumynii
*/
/* fonts */
@font-face {
  font-family: "FuturaFuturisC";
  src: url("assets/fonts/FuturaFuturisC.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FuturaFuturisC";
  src: url("assets/fonts/FuturaFuturisC-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/Raleway-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/Raleway-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/Raleway-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/Raleway-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/Raleway-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* end fonts */

/* setup */
:root {
  --violets: #0d1741;
  --violet: #192a3d;
  --white: #fff;
  --dark-gray: #161917;
}
/* end setup */

/* reset */
* {
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
li {
  list-style-type: none;
  text-decoration: none;
}
p {
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.container {
  max-width: 1320px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  display: initial;
}
/* end reset */
/* header */
.wrapper,
.header {
  width: 100%;
  flex-direction: column;
}
.header {
  position: fixed;
  z-index: 99;
  top: 0;
}
.content a {
  color: #282828;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: underline;
}
.header_contact__list.header_contact_mobile,
.header_top {
  color: var(--white);
  font-family: FuturaFuturisC, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: initial;
  width: 100%;
  padding: 20px 0;
  background: var(--violet);
}
.header_contact__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.contact_list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.list_item__social {
  width: auto;
  gap: 5px;
}
.header_bottom .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 150px;
  padding: 20px 15px;
}
.header .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: FuturaFuturisC, sans-serif;
  width: 100%;
  gap: 10px;
  color: var(--dark-gray);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: initial;
}
.header_bottom {
  background: #f6f8fc;
}
.menu_arrow {
  display: block;
  width: 0;
  height: 0;
  transition: 0.3s all;
  border: solid var(--dark-gray);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
}
.header .menu-item-has-children {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.header .menu-item-has-children._active .menu_wraps {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: all linear 0.5s;
}
.header .menu-item-has-children .menu_wraps {
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: all linear 0.5s;
  width: 100%;
  position: absolute;
  width: calc(100% + 45px);
  bottom: 0;
  left: -15px;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.header .menu-item-has-children .menu_wraps .sub-menu {
  margin-top: 40px;
  width: 100%;
  padding: 10px 30px 35px 15px;
  border-radius: 10px;
  border: 1px solid #ecedea;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.menu-item-has-children._active .menu_arrow {
  transition: all linear 0.5s;
  transform: rotate(225deg);
}
.logo img,
.mobile_logo img {
  width: fit-content;
  height: fit-content;
  aspect-ratio: auto;
}
.mobile_logo,
.burger_btn {
  display: none;
}
.form_wrapper {
  padding: 20px;
  border: 1px solid #f7f8f8;
  background: rgba(255, 255, 255, 0.3);
  max-width: 380px;
}
.form_wrapper form {
  border-radius: 15px;
  border: 1px solid #ecedea;
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 20px 35px 20px;
}
.form_wrapper form .form_title {
  width: 100%;
  text-align: center;
  color: #192a3d;
  text-align: center;
  font-family: Raleway, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 140%;
  text-transform: uppercase;
}
.form_wrapper form .form_title span {
  font-weight: 700;
  color: #d8012a;
}
.form_wrapper form input {
  width: 100%;
}

.srm label {
  position: relative;
  width: 100%;
}
.srm label .input {
  height: 40px;
  width: 100%;
}
.btn,
.srm .form_submit {
  font-family: Raleway, sans-serif;
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  border-radius: 10px;
  background: #d8012a;
  border: none;
  padding: 15px 0;
  width: 100%;
}
.srm .input {
  font-family: Raleway, sans-serif;
  width: 100%;
  padding: 10px 20px;
  line-height: inherit;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  background: #f6f8fc;
  cursor: pointer;
  outline: none;
  color: #757575;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.srm label {
  margin-bottom: 5px;
}
.submit_wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-top: 5px;
}
.submit_wrapper svg {
  position: absolute;
  top: calc(50% - 18px);
  stroke: var(--white);
}
.submit_wrapper svg.arrow_left {
  left: 25px;
  transform: rotate(180deg);
}
.submit_wrapper svg.arrow_left.arrow_lff {
  left: 38px;
}
.submit_wrapper svg.arrow_right {
  right: 25px;
}
.submit_wrapper .arrow_lfs,
.submit_wrapper .arrow_rfs {
  stroke: #ec8094;
  animation: trackAnimations 2s infinite;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.submit_wrapper .arrow_rff,
.submit_wrapper .arrow_lff {
  animation: trackAnimation 2s infinite;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.submit_wrapper svg.arrow_right.arrow_rff {
  right: 38px;
}
.srm .error-validation {
  position: absolute;
  right: 10px;
  left: auto;
  bottom: 12px;
  font-size: 14px;
  font-family: Raleway, sans-serif;
  font-weight: 600;
  color: #d8012a;
}
.btn,
.srm .form_submit {
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.submit_wrapper:hover .btn,
.srm .submit_wrapper:hover .form_submit,
.btn:hover,
.srm .form_submit:hover {
  background: #ee2140e0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@keyframes trackAnimation {
  0%,
  100% {
    stroke: var(--white);
  }
  50% {
    stroke: #ec8094;
  }
}
@keyframes trackAnimations {
  0%,
  100% {
    stroke: #ec8094;
  }
  50% {
    stroke: var(--white);
  }
}
button,
input,
textarea {
  overflow: visible;
  -webkit-appearance: none;
  border-radius: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--dark-grey);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 174, 255, 0.04) 50%,
    rgba(255, 255, 255, 0) 51%,
    rgba(0, 174, 255, 0.03) 100%
  );
}
.contact,
.citizenship {
  margin: 152px 0 0;
}
.content {
  margin: 152px 0 0;
  display: initial;
}
.partnerstvo.content {
  margin: 152px 0 40px;
}
.post {
  display: initial;
}
.footer .logo {
  display: block;
}

.parner_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  padding: 10px;
  background: #d8012a;
  border-radius: 10px;
}

.footer_cn_item svg path {
  fill: #fff;
}

.footer_cn_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 0;
}

.footer .number__wrapper .footer_item__social {
  position: initial;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.number__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 10px;
}

.footer_cn_list {
  justify-content: space-between;
  width: 100%;
}

.footer_cn_item {
  display: flex;
  flex-direction: row;
  /* width: calc((100% / 2) - 60px / 2); */
  width: max-content;
  gap: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  text-wrap: nowrap;
}

.footer {
  font-family: FuturaFuturisC, sans-serif;
  position: relative;
  width: 100%;
  padding: 80px 0 125px;
  background: #192a3d;
}

.footer-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.footer-left {
  width: 60%;
}

.footer-right {
  width: calc(40% - 50px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.footer .container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
}

.logo-part {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.footer .header_top__list {
  display: flex;
  flex-direction: column;
}

.srm label {
  position: relative;
}

.error-validation {
  position: absolute;
  left: 0;
  bottom: -20px;
  color: red;
}

.user-agreement,
.privacy-policy {
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  line-height: 15px;
}

.terms-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 5px;
}

.footer .mail_to {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.menu-footer-menu-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

#menu-footer-menu-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.menu-footer-menu-bottom-container {
  width: calc(100% - 320px);
}

.footer-left .menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 50px;
}

#menu-footer-menu-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 70px 50px;
}

.footer .footer-right .mail_to {
  display: none;
}

.footer .header_top__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.footer .header_top__item:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
}

.footer .header_top__item:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.footer .header_top__item:nth-child(3) {
  grid-area: 2 / 1 / 3 / 2;
}

.footer .header_top__item:nth-child(4) {
  grid-area: 2 / 2 / 3 / 3;
}

.footer .header_top__item {
  display: flex;
  flex-direction: column;
}

.footer .mail_to,
.footer .menu a {
  text-transform: inherit;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  line-height: 15px;
  padding: 0;
}

.terms-part {
  margin-bottom: 10px;
  position: relative;
}

.terms-part::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 2px;
  background: #d8012a;
}

#menu-footer-menu-top .menu-item:hover::after,
#menu-footer-menu-top .menu-item:hover::before {
  display: none;
}
.header_contact_mobile {
  display: none;
}
h2 {
	z-index: 1 !important;
}
@media screen and (max-width: 1200px) {
  .header_contact_mobile {
    display: block;
  }
  .burger_btn.show span {
    display: none;
  }
  .burger_btn.show::before {
    width: 100%;
    top: 0%;
    transform: rotate(-45deg) translate(0px, -50%);
    transition: all 0.5s ease-in-out 0s;
  }
  .burger_btn.show::after {
    bottom: 50%;
    top: -1px;
    transform: rotate(45deg) translate(0px, 50%);
    transition: all 0.5s ease-in-out 0s;
  }
  .contact,
  .citizenship {
    margin: 73px 0 0;
  }
  .menu_arrow {
    background: url("assets/img/svg/arrow.svg");
    width: 20px;
    height: 20px;
    background-size: cover;
    transition: 0.3s all;
    display: inline-block;
    transform: rotate(90deg);
    border: none;
  }
  .menu-item-has-children._active .menu_arrow {
    transition: all linear 0.3s;
    transform: rotate(268deg);
    fill: rgba(216, 1, 42, 0.5);
  }
  .header .menu-item-has-children {
    width: 100%;
    justify-content: space-between;
    gap: 0 15px;
  }
  .header_wrapper {
    padding: 15px;
    background: #192a3d;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 990;
  }
  .mobile_logo,
  .burger_btn {
    display: block;
  }
  .burger_btn {
    z-index: 1;
    display: block;
    position: relative;
    width: 35px;
    height: 20px;
  }

  .burger_btn span,
  .burger_btn::before,
  .burger_btn::after {
    right: 0;
    position: absolute;
    height: 15%;
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
    background-color: var(--white);
  }

  .burger_btn::before,
  .burger_btn::after {
    content: "";
  }

  .burger_btn span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
    width: 100%;
  }

  .burger_btn::after {
    bottom: 0;
    width: 100%;
  }

  .burger_btn::before {
    top: 0;
    width: 100%;
  }
  .header {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    max-width: 50%;
    width: 100%;
    font-family: Raleway, sans-serif;
    position: fixed;
    right: 0;
    height: calc(100vh - 70px);
    top: -200%;
    background-color: rgba(25, 42, 61, 0.97);
    z-index: 999;
    padding: 10px 10px 30px;
    -webkit-transition: top 0.3s ease-in-out;
    -o-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out;
  }
  body.hidden {
    overflow: hidden;
  }
  .header.show {
    top: 72px;
    -webkit-transition: top 0.3s ease-in-out;
    -o-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out;
  }
  .logo {
    display: none;
  }

  .header_bottom .container {
    padding: 0;
  }
  .header .menu {
    flex-direction: column;
    align-items: center;
    color: #f7fbff;
    gap: 0;
    font-size: 20px;
    line-height: 46px;
  }
  .header .menu-item-has-children .menu_wraps {
    position: initial;
    background: transparent;
    transform: inherit;
    -webkit-transform: inherit;
  }
  .menu-item-has-children .menu_wraps {
    display: none;
  }
  .menu-item-has-children._active .menu_wraps {
    display: block;
  }
  .menu-item-has-children .menu_arrow {
    order: 2;
  }
  .menu-item-has-children .menu_wraps {
    order: 3;
  }
  .menu-item-has-children a {
    font-family: FuturaFuturisC, sans-serif;
    text-align: center;
    order: 1;
    width: max-content;
  }
  .header .menu-item-has-children {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header .menu-item-has-children .menu_wraps .sub-menu {
    border: none;
    padding: 0;
    background: transparent;
    margin: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: #f7fbff;
    font-weight: 400;
    font-size: 18px;
    padding: 0 15px;
    text-transform: initial;
    line-height: initial;
  }
  .header .menu-item-has-children .menu_wraps .sub-menu li {
    text-align: center;
    padding: 10px 0;
  }
  .header_contact__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  .contact_list__item {
    flex-direction: column;
    gap: 5px;
  }

  .list_item__social a svg path {
    fill: var(--white);
  }
  .header_top .container {
    padding: 0;
  }
  .header_top,
  .header,
  .header_bottom {
    background: #192a3d;
    overflow: auto;
    display: flex;
    align-items: flex-start;
  }
  .header_top {
    display: none;
  }
  .citizenship,
  .content {
    margin: 73px 0 0;
  }
  .partnerstvo.content {
    margin: 73px 0 30px;
  }
  .parner_btn {
    margin: 0 auto;
  }

  .footer-left .menu {
    justify-content: center;
  }

  /* footer */
  .footer .container {
    flex-direction: column;
    gap: 50px;
  }

  .footer-right,
  .footer-left {
    width: 100%;
  }

  .footer .header_top__list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer .header_top__item span,
  .footer .header_top__item {
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    line-height: 15px;
    -webkit-transition: all linear 0.5s;
    transition: all linear 0.5s;
  }

  .footer_cn_list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px 0;
    width: 100%;
    align-items: flex-start;
  }

  .number__wrapper {
    align-items: center;
  }

  .footer .number__wrapper .footer_item__social {
    justify-content: center;
  }

  .footer_cn_item {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 10px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    align-items: center;
  }
  .header_contact_pc {
    display: none;
  }
  .header_bottom .container {
    gap: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .header {
    max-width: 70%;
  }
  .footer .logo-part {
    justify-content: center;
  }

  /* footer */
  #menu-footer-menu-top {
    gap: 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .header.show {
    overflow: auto;
    display: flex;
    align-items: center;
    padding: 20px 5px 50px 5px;
    justify-content: space-around;
  }
  .content a {
    font-size: 16px;
  }
  .contact,
  .citizenship,
  .content {
    margin: 73px 0 0;
  }
  .partnerstvo.content {
    margin: 73px 0 30px;
  }
  .footer_cn_list {
    gap: 30px;
  }

  .footer {
    padding: 115px 0 100px;
  }

  .parner_btn {
    margin: 30px auto 0 auto;
    font-size: 18px;
  }

  .footer_cn_item {
    font-size: 18px;
  }

  .footer .container {
    gap: 60px;
  }

  .footer_cn_list {
    flex-direction: column;
    align-items: center;
  }

  #menu-footer-menu-top {
    gap: 40px 30px;
  }
  .mail_to img {
    width: fit-content;
    height: fit-content;
  }
  /* footer */
  .footer_menu__top,
  .terms-part::after {
    display: none;
  }

  .terms-part {
    margin: 0;
    flex-direction: column;
  }

  .footer .mail_to,
  .user-agreement,
  .privacy-policy {
    font-size: 18px;
  }

  .footer-left {
    gap: 20px;
  }

  .tru-social {
    gap: 10px;
  }

  .footer .header_top__list {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  @media screen and (max-height: 1200px) {
    .header.show {
      /* flex-direction: column-reverse; */
      align-items: baseline;
      justify-content: flex-end;
      height: calc(100vh - 70px);
    }
    .header_top {
      padding: 0;
    }
  }
}
@media screen and (max-width: 576px) {
  .header {
    max-width: 100%;
  }
  /* footer */
  .logo-part {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 365px) {
  .content a {
    font-size: 14px;
  }
  .form_wrapper {
    padding: 10px;
  }
  .form_wrapper form {
    padding: 10px;
  }
  .form_wrapper form .form_title {
    font-size: 18px;
  }
  .btn,
  .srm .form_submit {
    font-size: 14px;
    padding: 10px 0;
  }
  .footer .container {
    gap: 30px;
  }

  .footer_cn_list {
    gap: 15px;
  }

  .footer_cn_item,
  .footer .mail_to,
  .user-agreement,
  .privacy-policy {
    font-size: 14px;
  }

  .parner_btn {
    margin: 0 auto;
    font-size: 14px;
  }
}
