/*
Theme Name: My Theme
Version: 1.0
*/

@charset "UTF-8";
/** Подключение шрифтов локально из папки "./src/fonts" */
@font-face {
  font-family: Onest;
  font-display: swap;
  src: url("./fonts/Onest-Bold.woff2") format("woff2"), url("./fonts/Onest-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Onest;
  font-display: swap;
  src: url("./fonts/Onest-Medium.woff2") format("woff2"), url("./fonts/Onest-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Onest;
  font-display: swap;
  src: url("./fonts/Onest-Regular.woff2") format("woff2"), url("./fonts/Onest-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Bruno Ace SC;
  font-display: swap;
  src: url("./fonts/BrunoAceSC-Regular.woff2") format("woff2"), url("./fonts/BrunoAceSC-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: RFDewiExpanded;
  font-display: swap;
  src: url("./fonts/RFDewiExpanded-Bold.woff2") format("woff2"), url("./fonts/RFDewiExpanded-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: RFDewiExpanded;
  font-display: swap;
  src: url("./fonts/RFDewiExpanded-Ultrabold.woff2") format("woff2"), url("./fonts/RFDewiExpanded-Ultrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: RFDewiExpanded;
  font-display: swap;
  src: url("./fonts/RFDewiExpanded-Semibold.woff2") format("woff2"), url("./fonts/RFDewiExpanded-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: RFDewiExtended;
  font-display: swap;
  src: url("./fonts/RFDewiExtended-Semibold.woff2") format("woff2"), url("./fonts/RFDewiExtended-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: RFDewiExtended;
  font-display: swap;
  src: url("./fonts/RFDewiExtended-Bold.woff2") format("woff2"), url("./fonts/RFDewiExtended-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/** Подключение переменных */
/** Подключение sass function и mixins и extends стилей */
@keyframes shake {
  from {
    top: -1%;
  }
  to {
    top: 1%;
  }
}
@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
/** Общие параметры, шаблоны(заготовки) и вспомогательные классы */
* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

html {
  font-size: 12px;
}

body {
  background-color: #ffffff;
  font-family: "RFDewiExpanded";
  line-height: 1.3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-weight: bold;
  font-family: "RFDewiExpanded";
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3,
h4,
h5,
h6 {
  font-size: 2rem;
}

p {
  font-size: 1.7rem;
}

a {
  color: #ec9937;
  transition: 0.3s;
}

a:hover{
	color: #000;
}

a[href*="tel:"] {
  white-space: nowrap;
}

section {
  margin-top: 6.3rem;
  position: relative;
}

input:focus {
  border-color: #37b4ec;
}
input:focus-visible {
  outline: none;
  text-indent: 5px;
}

select:focus {
  border-color: #282828;
}

textarea:focus {
  border-color: #37b4ec;
}
textarea:focus-visible {
  outline: none;
  text-indent: 5px;
}

.main {
  flex-grow: 1;
}

.container {
  max-width: 1430px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.container_vertical {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-title {
  line-height: 1.5;
  max-width: 62rem;
  margin: 0 0 4rem;
}

.text {
  color: #545454;
  font-size: 1.7rem;
  font-weight: 400;
}
.text_huge {
  color: #000000;
  font-size: 3rem;
}
.text_large {
  color: #545454;
  font-size: 2rem;
}
.text_small {
  color: #545454;
  font-size: 1.3rem;
}
.text_family {
  font-family: "Onest";
}
.text_accent {
  color: #ffffff;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  border-radius: 20px;
  padding: 5px 10px 10px 10px;
}
.text_white {
  color: #ffffff;
}
.text_medium {
  font-weight: 500;
}
.text_light_bold {
  font-weight: 600;
}
.text_bold {
  font-weight: 700;
}

.box-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background-color: #37b4ec;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  cursor: pointer;
  transition: 0.3s;
  color: #252125;
  background: #ffffff;
  font-size: 1.7rem;
  padding: 2.5rem 3rem;
  border-radius: 2rem;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
}
@media (any-hover: hover) {
  .btn:hover {
    text-decoration: none;
    color: #000;
    background: #fff;
  }
}
.btn svg {
  fill: #000;
}
.btn_dark {
  color: #ffffff;
  background: #ec9937;
}
@media (any-hover: hover) {
  .btn_dark:hover {
    color: #000000;
    background: #fff;
  }
}
.btn_dark svg {
  fill: #000;
}
.btn_slim {
  align-self: center;
}
.btn_inactive {
  pointer-events: none;
  opacity: 0.5;
}
.btn:focus {
  outline: none;
}

.slider__text {
  user-select: none;
}
.slider__item {
  display: flex;
  justify-content: center;
}
.slider__item-wrapper {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200.98px) {
  html {
    font-size: 11px;
  }
}
@media (max-width: 640.98px) {
  html {
    font-size: 8px;
  }
  h2 {
    font-size: 2.7rem;
  }
}
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #f6f6f6;
}

*::-webkit-scrollbar-thumb {
  background-color: #ec9937;
  border-radius: 3px;
  border: 2px solid #f6f6f6;
}

*,
html * {
  scrollbar-width: thin;
  scrollbar-color: #ce00f7 #111;
}

/** БЕМ блоки используемые во всё проекте */
.tabs .uk-tab > .uk-active > a {
  background: rgba(0, 0, 0, 0.2705882353);
  padding: 17px 24px;
  border-radius: 17px;
  border: none;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
}
.tabs .uk-tab > * > a {
  padding: 17px 24px;
  color: #ffffff;
  text-transform: none;
  font-size: 1.7rem;
  line-height: 1;
}
.tabs .uk-tab::before {
  border: none;
}

.layouts__tabs.uk-tab > .uk-active > a {
  background: none;
  padding: 17px 0px;
  border: none;
  color: #000000;
}

.layouts__tabs.uk-tab > * {
  padding: 0;
}

.layouts__tabs.uk-tab > * > a {
  padding: 17px 0px;
  color: #C4C4C4;
}

.layouts__tabs.uk-tab::before {
  border: none;
}

@media (max-width: 1200.98px) {
  .layouts__tabs.uk-tab > .uk-active > a {
    padding: 8px 0px;
  }
  .layouts__tabs.uk-tab > * > a {
    padding: 8px 0px;
  }
}
@media (max-width: 640.98px) {
  .layouts__tabs.uk-tab > .uk-active > a {
    padding: 2px 0px;
  }
  .layouts__tabs.uk-tab > * > a {
    padding: 2px 0px;
  }
}

/** Подключение стилей отдельных блоков и секций */
.header {
  z-index: 1005;
  background-color: #FFFFFF;
  padding-top: 22px;
  padding-bottom: 22px;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__btn-logo {
  flex-shrink: 0;
  color: #fff;
}
.header__btn-logo svg {
  color: rgb(255, 255, 255);
}
.header__btn-logo:hover svg path {
  fill: #fff;
}
.header__btn {
  flex-shrink: 0;
  background-color: #37b4ec;
  gap: 20px;
  justify-content: center;
  padding: 1.5rem 4rem;
}
.header__btn svg rect {
  fill: none !important;
}

.header__btn:hover svg path {
  fill: #000;
}
.header__btn-icon {
  line-height: 0;
  height: 40px;
  width: 40px;
}
@media (max-width: 1200.98px) {
  .header {
    border-bottom: 1px solid #545454;
  }
  .header__btn {
    display: none;
  }
}
.navigation {
  padding: 0 2rem;
}
.navigation__items {
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  margin: 0;
  list-style-type: none;
  gap: 2.7rem;
}
.navigation__link {
  color: #fff !important;
  white-space: nowrap;
}

.navigation__link.active {
  color: #0f6ecd !important;
}

@media (max-width: 1300.98px) {
  .navigation__items {
    gap: 1.9rem;
  }
}
@media (max-width: 1200.98px) {
  .navigation {
    display: none;
  }
}
.header__burger-btn {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  background: #ffffff;
  padding: 10px;
  border: 0;
}
.header__burger-btn_active .header__burger-line:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.header__burger-btn_active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger-btn_active .header__burger-line:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.header__burger-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 3px;
  width: 35px;
  border-radius: 10px;
  background: #252125;
  transition: 0.3s;
}
.header__burger-line:nth-child(1) {
  top: calc(50% - 6px);
}
.header__burger-line:nth-child(3) {
  top: calc(50% + 6px);
}

@media (max-width: 1200.98px) {
  .header__burger-btn {
    display: block;
  }
}
.header__burger-menu {
  z-index: 1000;
}
.header__burger-menu-content {
 padding: 100px 20px 20px;
 background: #ffffff;
}
.header__burger-menu-items {
 display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: auto;
	padding-left: 0px; !important;
}
.header__burger-menu-item {
  display: flex;
  justify-content: center;
  padding: 10px 0px;
  border-bottom: 1px solid #113d63;
  list-style-type: none;
}
.header__burger-menu-item a.active{
	color: #0f6ecd !important;
}
.header__burger-menu-item_text {
  text-align: center;
}
.header__burger-menu-btn {
  width: 100%;
}
.header__burger-menu-link {
  color: #000000;
}
.header__burger-menu-text {
  color: #000000;
  font-size: 1.5rem;
}
.header__burger-menu-btn {
  background-color: #37b4ec;
  gap: 20px;
  justify-content: center;
  padding: 1.5rem 4rem;
}
.header__burger-menu-btn .header__burger-menu-text {
  color: rgb(255, 255, 255);
}
.header__burger-menu-btn svg rect {
  fill: none !important;
}
.header__burger-menu-icon {
  line-height: 0;
  height: 40px;
  width: 40px;
}
.header .header__burger-menu-social-btn {
  flex: 0 0 45%;
}

.footer {
  position: relative;
  margin: 6rem 3rem 0;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
  z-index: 5;
}

.stars__container{
	height: 100%;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	overflow: hidden;
}
.footer__container {
  margin-top: 6rem;
  margin-bottom: 3rem;
  gap: 4rem;
}
.footer__block {
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.footer__block:last-child {
  margin-top: 2rem;
}
.footer__title {
  margin: 0;
}
.footer__card {
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  flex: 0 0 31%;
  height: 20rem;
  padding: 35px;
  border-radius: 4rem;
  justify-content: space-between;
}
.footer__card-label {
  color: #99999B;
  margin: 0 0 2rem;
  line-height: 1;
}
.footer__card-text {
  line-height: 1;
  font-size: 2.3rem;
  color: rgb(0, 0, 0);
  margin: 0;
}
.footer__card-btn {
  background-color: #ec9937;
  gap: 20px;
  justify-content: center;
  max-width: fit-content;
  padding: 1.5rem 2.3rem;
  line-height: 0;
}
.footer__card-btn_messenger {
  padding: 7px;
  border-radius: 10px;
  margin-left: 14px;
}
.footer__card-btn_messenger:first-of-type {
  margin-left: 0;
}
.footer__card-btn-icon {
  line-height: 0;
  height: 25px;
  width: 25px;
}
.footer__card-btn-icon_messenger {
  height: 20px;
  width: 20px;
}
.footer__card-btn svg rect {
  fill: none !important;
}
.footer__slogan {
  margin: 0;
  line-height: 1.5;
}
.footer__btn-logo svg {
  flex-shrink: 0;
  color: rgb(255, 255, 255);
  width: 286px;
  height: 59px;
}
.footer__btn-logo svg path {
  fill: #fff;
}
@media (max-width: 1200.98px) {
  .footer__card {
    height: auto;
  }
}
@media (max-width: 900.98px) {
  .footer__container {
    margin-bottom: 3rem;
  }
  .footer__block {
    flex-direction: column;
    gap: 20px;
  }
  .footer__card {
    flex: 0 0 100%;
    gap: 20px;
  }
}
@media (max-width: 640.98px) {
  .footer__block {
    gap: 10px;
  }
  .footer__title {
    margin: 0 auto;
    text-align: center;
  }
  .footer__card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
  }
  .footer__slogan {
    text-align: center;
  }
  .footer__btn-logo {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__btn-logo svg {
    flex-shrink: 0;
    color: rgb(255, 255, 255);
    width: 200px;
    height: 40px;
  }
  
}
@media (max-width: 375.98px) {
  .footer__card-btn {
    font-size: 1.3rem;
  }
  .footer__card-btn svg {
    width: 30px;
  }
  .footer__slogan {
    font-size: 2rem;
  }
}
.banner {
  max-width: 1920px;
  position: relative;
  background: url(images/backgrounds/back.webp) no-repeat center / cover;
  margin: 0 auto;
  padding: 78px 0;
  z-index: 5;
}

.banner:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left:0;
	top:0;
	background: rgba(0, 0, 0, .1);
	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.8) 0px 18px 80px -18px inset;
	z-index:20;
}
.banner__container{
	z-index: 50;
}
.banner__content {
  padding: 4rem 8rem 4rem 4rem;
  border-radius: 65px;
  min-height: 620px;
  max-width: 580px;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 35px;
  background-color: rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
}
.banner__block {
  gap: 10px;
  padding: 15px;
  border-radius: 15px;
  max-width: fit-content;
  display: flex;
  gap: 10px;
  background-color: #ec9937;
}
.banner__svg {
  width: 1.7rem;
  height: 1.7rem;
}
.banner__block-title {
  text-align: center;
}
.banner__title {
  font-size: 32px;
  margin: 5px 0 0;
  line-height: 1.5;
}
.banner__box-title {
  margin: 0;
  font-size: 2.5rem;
}
.banner__box-text {
  margin: 0;
  color: #eeeeee;
}
.banner__wrapper-title {
  margin: 17% 0 0;
  line-height: 1.5;
}
.banner__wrapper-text {
  margin: 15px 0 0;
  color: #d3d3d3;
}

.banner__info-btn:hover {
	background: #090a0f;
	color: #fff;
}

@media (max-width: 640.98px) {
  .banner {
    background-size: cover;
	background-position: center;
    padding: 15px 0;
  }
  .banner__content {
    margin: 0 auto;
    width: 80%;
    padding: 4rem 4rem;
    min-height: auto;
    max-width: none;
    gap: 3rem;
  }
  .banner__block, .banner__info-btn {
    margin: 0 auto;
  }
  .banner__block-title, .banner__title, .banner__box-title, .banner__wrapper-title {
    text-align: center;
    width: 100%;
  }
  .banner__wrapper {
    width: 100%;
  }
}
@media (max-width: 540.98px) {
  .banner__content {
    width: 100%;
  }
}
@media (max-width: 450.98px) {
	.banner {
	min-height: 600px;
  }
  .banner__content {
	transform: translate(0, 20%);
  }
  .banner__title {
    font-size: 2.5rem;
  }
  .banner__box-title, .banner__wrapper-title {
    font-size: 2.1rem;
  }
  .banner__box-text, .banner__wrapper-text {
    font-size: 1.7rem;
  }
}
.portfolio{
margin: 6rem 3rem 0;
	
}
.portfolio__cards {
  margin-top: 35px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 33px;
}
.portfolio__card {
  position: relative;
  padding: 23px;
  display: flex;
  flex: 0 0 23.1111%;
  flex-direction: column;
  background: #f6f6f6;
  border-radius: 40px;
}
.portfolio__card-img-container {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio__card-more-btn {
  font-size: 1.65rem;
  background: #fff;
}
.portfolio__card-price-wrapper {
  margin-bottom: 10px;
}
.portfolio__card-price {
  color: #000;
}
.portfolio__card-info {
  font-size: 16px;
}
.portfolio__card-info-wrapper {
  margin-right: auto;
	margin-bottom:20px;
  left: 23px;
  top: 23px;
  padding: 10px;
  border-radius: 15px;
}
.portfolio__card-info-wrapper span {
  color: #ffffff;
}
.portfolio__card-info-wrapper.orange {
  background: #ec9937;
}
.portfolio__card-info-wrapper.blue {
  background: #37b4ec;
}

@media (max-width: 640.98px) {
 
  .portfolio__card {
    flex: 0 0 100%;
  }
 

}

.tg-popup__frame{
	border-radius: 15px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.tg-popup__close svg{
    width: 20px;
}
.tg-popup__desc{
	margin-bottom: 50px;
}
.tg-popup__img {
	width: 240px;
    position: absolute;
    right: -60px;
    bottom: -80px;
}
@media (max-width: 900.98px) {
	.tg-popup__frame{
	width: 450px;
	}
	
  .tg-popup__img {
	width: 180px;
   
}
}
@media (max-width: 425.98px) {
	.tg-popup__img {
		width: 100px;
        right: -11px;
        bottom: -40px;
	}
}
@media (max-width: 375.98px) {
	.tg-popup__img {
		width: 50px;
        right: 15px;
        bottom: 23px;
	}
}
.tg-popup__btn{
	background: #37b4ec;
	color: #fff;
}
.tg-popup__btn:hover{
	background: #000;
	color: #fff;
}
.tg-popup__btn a:hover{
	color: #237fcf;
}

.callback-popup__frame {
  border-radius: 30px;
  background: #ffffff;
}
.callback-popup__header-wrapper {
  background: #ffffff;
}
.callback-popup__btn-wrapper {
  background: #ffffff;
}
.callback-popup__title {
  font-size: 2.5rem;
}
.callback-popup__input {
  border-radius: 10px;
}
.callback-popup__input:focus {
  border-color: #ec9937;
  transition: 0.3s;
}
.callback-popup__submit-btn {
  padding: 1.5rem 3rem;
}
.callback-popup__checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.callback-popup input[type=checkbox] {
  cursor: pointer;
  accent-color: #ffffff;
  border-color: #545454;
  width: 19px;
  height: 20px;
  margin: 0;
  border-radius: 5px;
}
.callback-popup input[type=checkbox]:checked {
  background-color: #ec9937;
}

.callback-popup-success__frame {
  border-radius: 30px;
}
.callback-popup-success__wrapper {
  background: #ffffff;
  display: flex;
  justify-content: center;
}
.callback-popup-success__title {
  color: #ec9937;
  text-align: center;
}
.callback-popup-success__dscr {
  text-align: center;
}