* {
   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 {
   height: 100%;
   width: 100%;
   font-size: 100%;
   line-height: 1;
   font-size: 14px;
   -ms-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
   -webkit-text-size-adjust: 100%;
}

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 li {
   list-style: none;
}

img {
   vertical-align: top;
}

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

:root {
   --white: #fff;
   --dark: #061a40;
   --accent: #0353a4;
}

html,
body {
   font-family: Montserrat;
   color: var(--dark);
}
html.lock,
body.lock {
   overflow-y: hidden;
}

.wrapper {
   background: var(--white);
   display: flex;
   flex-direction: column;
   min-height: 100%;
}

main {
   flex: 1 1 auto;
}

header,
footer {
   background: var(--accent);
}

header {
   z-index: 100;
   color: var(--white);
}

.container {
   max-width: 1300px;
   margin-left: auto;
   margin-right: auto;
   padding: 0 20px;
}

.header {
   position: sticky;
   top: 0;
   left: 0;
   width: 100%;
   padding: 20px 0;
}

.header__body {
   display: flex;
   align-items: center;
   gap: 1rem;
   justify-content: space-between;
}

.header__menu ul {
   display: flex;
   align-items: center;
   gap: 1rem;
}
.header__menu a {
   color: var(--white);
}

.burger {
   position: relative;
   width: 33px;
   height: 28px;
}
.burger:after,
.burger:before,
.burger span {
   content: "";
   display: block;
   width: 100%;
   height: 2px;
   background: var(--white);
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   margin-left: auto;
   margin-right: auto;
   transition: all 0.3s ease;
}
.burger:after {
   top: 26px;
}
.burger span {
   top: 14px;
}
.burger.active:after {
   top: 14px;
   transform: rotate(45deg);
}
.burger.active:before {
   top: 14px;
   transform: rotate(-45deg);
}
.burger.active span {
   width: 0;
}

.main__wrapper {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.main__textblock {
   flex: 1 0 50%;
   
}

.main__textblock * {
   color: #000;
}

.title {
   font-size: 3rem;
   font-weight: 700;
}

.main__title {
   font-size: 3.5rem;
}

.desc {
   font-size: 1.5rem;
   font-weight: 400;
}

.main__desc {
   margin-top: 10px;
   line-height: 130%;
}

.btn {
   display: block;
   padding: 20px 3rem;
   border-radius: 10px;
   background: var(--accent);
   width: -moz-max-content;
   width: max-content;
   font-size: 2rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: -0.02em;
   color: var(--white);
}

.main__btn {
   margin-top: 1.5rem;
}

section {
   padding: 4rem 0;
}

.main__image {
   border-radius: 20px;
   overflow: hidden;
   flex: 1 1 auto;
}
.main__image img {
   width: 100%;
   height: 100%;
   display: block;
   -o-object-fit: cover;
   object-fit: cover;
}

.image-masked {
   position: relative;
}
.image-masked:after {
   content: "";
   background: var(--accent);
   opacity: 0.4;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   mix-blend-mode: hue;
}

.header__logo {
   color: var(--white);
   font-size: 2rem;
}

.services {
   background: var(--white);
   color: var(--dark);
}

.services__title {
   text-align: center;
}

.services__desc {
   text-align: center;
   margin-top: 10px;
}

.services__body {
   margin-top: 2rem;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
}

.services__item {
   display: flex;
   flex-direction: column;
   border-radius: 10px;
   padding: 30px 10px;
   overflow: hidden;
   color: var(--white);
   background: var(--white);
   box-shadow: 0px 0px 25px 0px rgba(6, 26, 64, 0.1);
}
.services__item .services__desc {
   flex: 1 1 auto;
   color: var(--dark);
}

.services__item:last-child {
   background: var(--accent);
}
.services__item:last-child * {
   color: var(--white);
}
.services__item:last-child .btn {
   background: var(--white);
   color: var(--accent);
}

.services__image {
   height: 4rem;
   display: block;
   margin-left: auto;
   margin-right: auto;
   display: block;
   width: -moz-max-content;
   width: max-content;
}
.services__image img {
   display: block;
   -o-object-fit: contain;
   object-fit: contain;
   height: 100%;
}

.services__name {
   text-align: center;
   font-size: 3rem;
   font-weight: 700;
   color: var(--accent);
}

.services__rating {
   margin-left: auto;
   margin-right: auto;
   width: -moz-max-content;
   width: max-content;
   position: relative;
   position: relative;
}
.services__rating svg path {
   fill: var(--accent);
}

.services__rateval {
   margin-top: 10px;
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--accent);
   text-align: center;
}

.mask {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   right: 0;
   background: var(--white);
   opacity: 0.5;
}

.modal {
   display: none;
   background: var(--white);
   min-width: 75%;
}

.services__flex {
   margin-left: auto;
   margin-right: auto;
   margin-top: 1.5rem;
   display: flex;
   justify-content: center;
   width: -moz-max-content;
   width: max-content;
   gap: 1rem;
   align-items: center;
}

.services__btn {
   padding: 1rem 2rem;
   font-size: 1rem;
}

.services__link {
   color: var(--accent);
}

.footer {
   padding: 2rem 0 4rem;
   background: var(--dark);
}

.footer {
   color: var(--white);
}

.footer__body {
   display: flex;
   align-items: start;
   gap: 1rem;
}

.footer__logoblock {
   flex: 1 1 auto;
   display: flex;
   align-items: center;
   gap: 10px;
}
.footer__logoblock strong {
   font-weight: 700;
}

.footer__logo {
   font-size: 1.5rem;
   margin-top: 10px;
   color: #fff;
   display: block;
}
.footer__logo:first-child {
   margin-top: 0;
}

.footer__censor {
   position: relative;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   border: 2px solid var(--white);
}
.footer__censor span {
   font-weight: 600;
   display: block;
   width: -moz-max-content;
   width: max-content;
   height: -moz-max-content;
   height: max-content;
   position: absolute;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   margin: auto;
}

.footer__info {
   flex: 0 0 75%;
}

.footer__link-body {
   display: flex;
   align-items: start;
   gap: 10px;
   flex-wrap: wrap;
   margin-top: 1rem;
}

.footer__link-title {
   flex: 0 0 100%;
   font-size: 1.5rem;
   font-weight: 600;
}

.footer__link {
   color: var(--white);
}

.modal__title {
   font-weight: 600;
   font-size: 2rem;
   text-align: center;
}

.modal__desc {
   margin-top: 10px;
   text-align: center;
   font-size: 1rem;
   font-weight: 400;
   max-width: 750px;
   margin-left: auto;
   margin-right: auto;
}

.accept__btn {
   margin-top: 1.5rem;
   margin-left: auto;
   margin-right: auto;
}

.pros__title {
   text-align: center;
}

.pros__desc {
   text-align: center;
   margin-top: 10px;
   font-size: 14px;
   opacity: 0.7;
}

.pros__body {
   margin-top: 2.5rem;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1.5rem;
}

.pros__icon {
   width: 4rem;
   height: 4rem;
   margin-left: auto;
   margin-right: auto;
}
.pros__icon svg {
   display: block;
   width: 100%;
   height: 100%;
   -o-object-fit: contain;
   object-fit: contain;
}
.pros__icon svg path {
   fill: var(--accent);
}

.pros__text {
   margin-top: 1rem;
   text-align: center;
   opacity: 1;
   font-size: 1.5rem;
   font-weight: 500;
   color: var(--accent);
}

.burger {
   display: none;
}

.header-m {
   transition: all 0.3s ease;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 99;
   padding-top: 86px;
   top: -100%;
}
.header-m:before {
   transition: all 0.3s ease;
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: block;
   background: rgba(6, 26, 64, 0.5647058824);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   z-index: 0;
   opacity: 0;
}
.header-m.active {
   top: 0;
}
.header-m.active:before {
   opacity: 1;
}

.header-m-list li {
   margin-top: 10px;
}
.header-m-list li:first-child {
   margin-top: 0;
}

.header__link {
   display: block;
   position: relative;
   z-index: 20;
   color: var(--white);
   font-size: 1rem;
}

.main {
   padding: 0;
   position: relative;
   min-height: 100vh;
}
.main .container {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   z-index: 10;
   height: -moz-max-content;
   height: max-content;
}
.main .container * {
   color: var(--white);
   text-align: center;
   margin-left: auto;
   margin-right: auto;
}

.main__video {
   position: absolute;
   display: block;
   width: 100%;
   height: 100%;
}
.main__video:after {
   background: var(--dark);
   opacity: 0.5;
   mix-blend-mode: normal;
}
.main__video video {
   display: block;
   -o-object-fit: cover;
   object-fit: cover;
   width: 100%;
   height: 100%;
   -o-object-position: bottom;
   object-position: bottom;
}

.main__title strong {
   display: inline-block;
   position: relative;
   color: #2591ff !important;
}

.how__title {
   text-align: center;
}

.how__desc {
   text-align: center;
   margin-top: 1rem;
}

.how__item {
   margin-top: 3rem;
   max-width: 100%;
   gap: 3rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.how__item:first-child {
   margin-top: 0;
}
.how__item * {
   flex: 0 0 33%;
}
.how__item:nth-child(even) {
   flex-direction: row-reverse;
   margin-left: auto;
}

.how__body {
   display: block;
   max-width: 100%;
   margin-left: auto;
   margin-right: auto;
   margin-top: 2rem;
}

.h-tit {
   font-size: 2rem;
   font-weight: 700;
}

.h-t {
   line-height: 140%;
   margin-top: 10px;
   font-weight: 400;
}

.how__image {
   flex: 0 0 200px;
   width: 200px;
   height: 200px;
   border-radius: 20px;
   overflow: hidden;
}
.how__image img {
   -o-object-fit: cover;
   object-fit: cover;
   display: block;
   width: 100%;
   height: 100%;
}

.contacts__title {
   text-align: center;
   font-size: 2rem;
}

.desc {
   line-height: 130%;
}

.contacts__desc {
   text-align: center;
   margin-top: 10px;
   opacity: 0.7;
   max-width: 750px;
   margin-left: auto;
   margin-right: auto;
   font-size: 1rem;
}

.form {
   max-width: 650px;
   margin-left: auto;
   margin-right: auto;
   margin-top: 2rem;
   padding: 2.5rem 2rem 3rem;
   border-radius: 2rem;
   box-shadow: 0px 0px 25px 0px rgba(6, 26, 64, 0.1);
}

.form-input {
   margin-top: 1rem;
}
.form-input:first-child {
   margin-top: 0;
}
.form-input input {
   margin-top: 10px;
   display: block;
   width: 100%;
   padding: 10px;
   color: var(--accent);
   border: 1px solid var(--accent);
   border-radius: 1rem;
}
.form-input textarea {
   margin-top: 10px;
   display: block;
   width: 100%;
   padding: 10px;
   color: var(--accent);
   border: 1px solid var(--accent);
   border-radius: 1rem;
   resize: none;
   min-height: 15s0px;
}

.form-label {
   font-size: 1.5rem;
   font-weight: 600;
}

.form-btn {
   margin-top: 2rem;
   margin-left: auto;
   margin-right: auto;
   font-size: 1.2rem;
}

.thanks__title {
   margin-top: 1rem;
   text-align: center;
   color: var(--dark);
}

.thanks__desc {
   margin-top: 10px;
   text-align: center;
   color: var(--dark);
   font-size: 1rem;
   opacity: 0.7;
}

.thanks__btn {
   margin-top: 2rem;
   margin-left: auto;
   margin-right: auto;
}

.thanks__icon {
   margin-left: auto;
   margin-right: auto;
   width: 4rem;
   height: 4rem;
}
.thanks__icon svg {
   width: 100%;
   height: 100%;
   -o-object-fit: contain;
   object-fit: contain;
}
.thanks__icon svg path {
   fill: var(--accent);
}

.modal {
   max-width: calc(100% - 2rem);
   margin-left: auto;
   margin-right: auto;
}

.modal__title {
   margin-bottom: 1rem;
}

.modal p {
   margin-top: 10px;
}
.modal p:first-of-type {
   margin-top: 0;
}
.modal .m-title {
   margin-top: 2rem;
   font-size: 1.5rem;
   font-weight: 600;
}

.categories__btns {
   margin-top: 2rem;
   display: flex;
   align-items: center;
   gap: 1rem;
}

.categories__item {
   transition: all 0.3s ease;
   padding: 10px 20px;
   font-size: 1.25rem;
   background: var(--white);
   color: var(--accent);
   border: 1px solid var(--accent);
}
.categories__item.active {
   background: var(--accent);
   color: var(--white);
}

.contacts__body {
   max-width: 765px;
   margin-left: auto;
   margin-right: auto;
   margin-top: 2rem;
}

.contacts__item {
   margin-top: 1.5rem;
}
.contacts__item:first-child {
   margin-top: 0;
}

.contcts__label {
   font-size: 1rem;
   color: var(--dark);
   text-align: center;
}

.contacts__link {
   display: block;
   margin-top: 10px;
   font-size: 1.5rem;
   color: var(--accent);
   text-align: center;
   font-weight: 700;
}

.contacts__social {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-top: 10px;
   justify-content: center;
}

.contacts-soc path {
   fill: var(--accent);
}

.about__text {
   margin-top: 1rem;
}

.a-p {
   line-height: 140%;
   font-size: 1.25rem;
   margin-top: 10px;
}
.a-p:first-of-type {
   margin-top: 0;
}

.a-t {
   font-size: 1.5rem;
   font-weight: 600;
   margin-top: 1.5rem;
}

.a-l {
   margin-top: 10px;
}
.a-l li {
   margin-top: 1rem;
   position: relative;
   padding-left: 1.5rem;
}
.a-l li:first-child {
   margin-top: 0;
}
.a-l li:before {
   content: "";
   display: block;
   position: absolute;
   top: 5px;
   left: 0;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--accent);
}
.a-l li h3,
.a-l li strong {
   font-size: 1.25rem;
   font-weight: 600;
   color: var(--accent);
}
.a-l li p {
   line-height: 130%;
   margin-top: 5px;
   font-size: 1rem;
   opacity: 0.8;
   color: var(--dark);
}

.serv__text * {
   line-height: 140%;
}
.serv__text h2 {
   font-size: 4rem;
   font-weight: 600;
   margin-top: 1.5rem;
}
.serv__text h3,
.serv__text h4 {
   margin-top: 1rem;
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--dark);
}
.serv__text h3 {
   font-size: 2rem;
}
.serv__text p,
.serv__text ul {
   font-size: 1rem;
   margin-top: 10px;
   opacity: 0.9;
   line-height: 130%;
}
.serv__text li {
   margin-top: 10px;
   position: relative;
}
.serv__text li:first-child {
   margin-top: 0;
}
.serv__text li h3,
.serv__text li strong {
   font-size: 1.25rem;
   font-weight: 600;
   color: var(--accent);
}
.serv__text li p {
   line-height: 130%;
   margin-top: 5px;
   font-size: 1rem;
   opacity: 0.8;
   color: var(--dark);
}
.serv__text strong {
   font-size: 1.25rem;
   font-weight: 600;
   color: var(--accent);
}

.serv__title {
   font-size: 4rem !important;
   color: var(--dark);
}

.serv__body {
   display: flex;
   justify-content: space-between;
   align-items: start;
   gap: 2rem;
}

.serv__item {
   flex: 0 0 500px;
}
.serv__item:first-child {
   flex: 1 1 auto;
}

.serv__image img {
   width: 100%;
   height: 100%;
   -o-object-fit: contain;
   object-fit: contain;
}

.serv .services__rating {
   margin-right: 0;
}
.serv .services__rateval {
   margin-right: 0;
   text-align: right;
}

.serv .services__rating {
   margin-top: 10px;
}

.serv__desc {
   margin-top: 10px;
   font-size: 1.25rem;
   opacity: 0.7;
}

.serv__text {
   margin-top: 2rem;
   font-size: 1rem;
   font-weight: 400;
   line-height: 130%;
}

.serv__btn {
   margin-top: 10px;
   display: block;
   font-size: 1rem;
   padding: 15px 20px;
   margin: 0;
}

.serv-flex {
   margin-top: 1rem;
   display: flex;
   align-items: center;
   gap: 1rem;
}
.serv-flex a:last-child {
   color: var(--accent);
   font-size: 1rem;
} /*# sourceMappingURL=style.css.map */
