        * {
            box-sizing: border-box;
            border-radius: .6em;
        }
        
        a {
            text-decoration: none;
        }
        
        img {
            display: block;
        }
        
        h1,
        h2,
        h3,
        p {
            margin: 0;
        }
        
        @font-face {
            font-family: Flaticon;
            src: url(../fonts/Flaticon.ttf);
        }
        
        body {
            margin: 0 auto;
            background: #fff;
            color: black;
            font-family: Flaticon, sans-serif;
            overflow-x: hidden;
        }
        
        section {
            margin: 80px 0;
        }
        
        .container {
            margin: 0 auto;
            width: 1170px;
        }
        
        .nav {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .nav__link {
            color: #000;
            font-weight: 400;
            font-size: 16px;
            position: relative;
            margin: 0 26px;
        }
        
        .nav__link:after {
            display: block;
            content: "";
            background-color: #000;
            height: 1px;
            width: 0;
            top: 112%;
            right: 100%;
            left: -40%;
            position: absolute;
            transition: width .2s ease-in-out;
            transform: translateX(40%);
        }
        
        .nav__link:hover:after {
            width: 100%;
        }
        
        .nav__link::before {
            display: block;
            content: "";
            background-color: #000;
            height: 1px;
            width: 0;
            top: -12%;
            left: 140%;
            position: absolute;
            transition: width .2s ease-in-out;
            transform: translateX(-140%);
        }
        
        .nav__link:hover::before {
            width: 100%;
        }
        
        .inner {
            display: flex;
            gap: 10px;
        }
        
        .inner img {
            width: 100%;
        }
        
        .inner__left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            flex-basis: 730px;
        }
        
        .inner__right {
            margin-right: -30vw;
        }
        
        .bg__inner {
            background-color: #B08EAD;
            width: 200px;
            position: absolute;
            left: 0;
            top: 300px;
            height: 600px;
            z-index: -22;
        }
        
        .btn {
            background-color: #B08EAD;
            border: 1px solid #B08EAD;
            padding: 1em 4em;
            text-align: center;
            color: #fff !important;
            transition: all .3s;
            display: block;
        }
        
        .btn:hover {
            background-color: #fff;
            color: #B08EAD !important;
        }
        
        .inner h1 {
            font-size: 68px;
            font-weight: 500;
            line-height: 78px;
            color: #4B3049;
            font-family: "Poppins", sans-serif;
            margin-bottom: 10px;
        }
        
        .inner p {
            font-family: "Rubik", sans-serif;
            font-size: 20px;
            line-height: 1.5;
            color: #795376;
            font-weight: 400;
        }
        
        .inner b {
            color: #B08EAD;
            font-size: 2em;
            margin: .4em 0 1em 0;
        }
        
        .flex__process {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .flex__process .title__block {
            flex-basis: 700px;
        }
        
        .grid__process {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 10px;
            grid-template-areas: ". ." ". .";
        }
        
        .grid__process img {
            width: 70px;
            padding: 10px;
        }
        
        .grid__process div {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: flex-start;
            padding: 40px 30px;
            text-align: center;
            font-size: 18px;
            color: #4b3049;
            gap: 40px;
            height: 300px;
            border: 1px solid #B08EAD;
            width: 300px;
            transition: all .3s;
        }
        
        .grid__process div:hover {
            transform: translateY(-4px) translateX(-4px);
            -webkit-box-shadow: 4px 4px 8px 0px rgba(69, 34, 80, 0.2);
            -moz-box-shadow: 4px 4px 8px 0px rgba(69, 34, 80, 0.2);
            box-shadow: 4px 4px 8px 0px rgba(69, 34, 80, 0.2);
        }
        
        .flex__process h3 {
            font-size: 67px;
        }
        
        .title__block {
            text-align: center;
            font-size: 30px;
        }
        
        .title__block span {
            color: #4B3049;
        }
        
        .flex__order {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        
        li {
            margin: 10px 0;
        }
        
        .grid__center {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 10px;
            grid-template-areas: ". ." ". .";
        }
        
        .grid__benefit {
            gap: 20px;
            font-size: 18px;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 1px solid #B08EAD;
            transition: all .3s;
        }
        
        .grid__btn {
            grid-column: span 2;
            text-align: center;
        }
        
        .grid__btn .btn {
            padding: 2em 4em;
        }
        
        .grid__benefit:hover {
            transform: translateY(-4px) translateX(-4px);
            -webkit-box-shadow: 4px 4px 8px 0px rgba(69, 34, 80, 0.2);
            -moz-box-shadow: 4px 4px 8px 0px rgba(69, 34, 80, 0.2);
            box-shadow: 4px 4px 8px 0px rgba(69, 34, 80, 0.2);
        }
        
        .contact__us {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
        }
        
        footer {
            height: 90px;
            display: flex;
            align-items: center;
        }
        
        .footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .footer a {
            color: #000;
            margin-left: 10px;
            transition: all .3s;
        }
        
        .footer a:hover {
            color: rgb(102, 102, 102);
        }
        
        .mobile__nav {
            display: none;
        }
        
        .mobile__burger__nav {
            display: flex;
            flex-direction: column;
            width: 33px;
            cursor: pointer;
            align-items: flex-end;
            position: relative;
        }
        
        .mobile__burger__nav span {
            background: #B08EAD;
            border-radius: 10px;
            height: 4.4px;
            margin: 2.5px 0;
            transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        }
        
        .mobile__burger__nav span:nth-of-type(1) {
            width: 100%;
        }
        
        .mobile__burger__nav span:nth-of-type(2) {
            width: 50%;
        }
        
        .mobile__burger__nav span:nth-of-type(3) {
            width: 100%;
        }
        
        input[type="checkbox"] {
            display: none;
        }
        
        input[type="checkbox"]:checked~span:nth-of-type(1) {
            transform-origin: bottom;
            transform: rotatez(45deg) translate(5px, 5px)
        }
        
        input[type="checkbox"]:checked~span:nth-of-type(2) {
            transform-origin: top;
            transform: rotatez(-45deg);
            width: 100%;
        }
        
        input[type="checkbox"]:checked~span:nth-of-type(3) {
            transform-origin: bottom;
            width: 50%;
            transform: scale(0);
            opacity: 0;
        }
        
        .menu {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin: 20px;
            padding: 0 !important;
        }
        
        .mob__nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        /*about*/
        
        .about__block {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
            font-size: 24px;
            height: 50vh;
        }
        
        .about__block a {
            color: #4b3049;
        }
        
        .about__block p {
            color: #4b3049;
        }
        
        .about__block span {
            font-weight: bold;
            color: #B08EAD;
        }
        
        .pricetxt {
            font-size: 22PX;
            margin: 40px 0;
            color: #4B3049;
            gap: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr;
            grid-template-areas: ". .";
        }
        
        .pricetxt p:nth-child(even) {
            text-align: right;
        }
        
        iframe {
            width: 100%;
            height: 40vw;
        }
        
        @media all and (max-width:1640px) {
            .bg__inner {
                opacity: .2;
            }
        }
        
        @media all and (max-width:1260px) {
            .container {
                width: 100vw;
                padding: 0 30px;
            }
            .inner {
                overflow: hidden;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .inner__left {
                position: absolute;
                background-color: #fff;
                z-index: 9;
                padding: 1em;
            }
            .flex__process {
                display: flex;
                gap: 20px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .grid__process div {
                width: 44vw;
                height: auto;
            }
        }
        
        @media all and (max-width:830px) {
            .flex__process h3 {
                font-size: 35px;
            }
            .grid__benefit {
                text-align: center;
                padding: 0 30px;
            }
            p,
            li {
                font-size: 15px;
            }
            h3 {
                font-size: 30px !important;
            }
        }
        
        @media all and (max-width:640px) {
            .inner__right {
                opacity: 0;
            }
            .inner {
                height: 80vh;
            }
            .bg__inner {
                opacity: 0;
            }
            .nav {
                display: none;
            }
            .mobile__nav {
                display: flex;
                margin: 10px 0;
                flex-direction: column;
            }
        }
        
        @media all and (max-width:400px) {
            .grid__process {
                display: flex;
                flex-direction: column;
            }
            .grid__process div {
                width: 100%;
            }
            .grid__center {
                display: flex;
                flex-direction: column;
            }
            ul {
                padding: 0;
            }
            footer {
                border-top: 1px solid #4B3049;
                margin: 70px 0;
            }
            .title__block {
                margin: 20px 0;
            }
            .footer_menu_item {
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        @media all and (max-width:360px) {
            .title__block h3 {
                font-size: 24px !important;
            }
        }