        * {
            margin: 0;
            padding: 0;
            text-decoration: none;
            box-sizing: border-box;
            list-style-type: none;
            outline: none;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            width: 100%;
            max-width: 1280px;
        }
        /* header */
        
        #header {
            width: 100%;
            height: auto;
        }
        
        .header_nav {
            background-color: #060926;
            height: 70px;
            transition: 0.5s;
        }
        
        .pos_fixed {
            position: fixed;
            top: 0;
            z-index: 20;
            width: 100%;
        }
        
        .header_nav_ {
            display: flex;
            justify-content: space-between;
            width: 80%;
            margin-left: 10%;
            line-height: 60px;
            position: relative;
        }
        
        .header_logo {
            color: #a09fab;
        }
        
        .burger_menu {
            display: none;
        }
        
        i.burger_menu_icon {
            font-size: 3em;
            color: white;
            cursor: pointer;
        }
        
        .close_menu {
            display: none;
            user-select: none;
        }
        
        .close_menu:hover {
            font-weight: 600;
        }
        
        .active {
            font-weight: bold;
            color: white;
        }
        
        .active_link {
            font-weight: bold;
            color: white;
            padding-bottom: 20px;
            border-bottom: 3px solid #cda18e;
        }
        
        .header_nav_item_links {
            display: flex;
        }
        
        .header_nav_item_links li {
            margin: 0 5px;
            list-style-type: none;
        }
        /*a: not bumasa oqarmidi activ link*/
        .header_nav_item_links li a:not(.active_link) {
            color: #a09fab;
            padding: 22px 15px;
        }
        
        .header_nav_item_links li a:hover {
            color: white;
        }
        
        .header_number {
            width: 80%;
            height: auto;
            margin-left: 10%;
            display: block;
            content: "";
            clear: both;
        }
        
        .header_number div {
            float: right;
            background-color: #cea18f;
            padding: 10px 15px;
            font-size: 26px;
            font-weight: bold;
            color: white;
            border-radius: 0px 0px 40px 40px;
        }
        
        i.header_number_icon {
            font-size: 1.2em;
            animation: swing;
            animation-duration: 1s;
            animation-delay: 0;
            animation-iteration-count: infinite;
            animation-timing-function: ease-in-out;
            animation-play-state: running;
        }
        
        .section_start {
            width: 100%;
            height: 750px;
            background-color: #574339;
        }
        
        .header_center {
            width: 80%;
            margin-left: 10%;
        }
        
        .header_center_title {
            text-align: center;
            padding-top: 20%;
        }
        
        .header_center_title h1,
        p {
            color: white;
        }
        
        .open_feedback_modal_form {
            padding: 15px 15px;
            width: 200px;
            border: none;
            font-weight: bold;
            background-color: #cea18f;
            transition: 0.3s;
            cursor: pointer;
        }
        
        .open_feedback_modal_form_animation {
            -webkit-animation-name: wobble;
            -webkit-animation-duration: 0.6s;
            animation-name: wobble;
            animation-duration: 3s;
            animation-delay: 1s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }
        /* feedback modal  */
        
        .feedback_modal {
            display: none;
            width: 400px;
            height: auto;
            border: 1px solid #ddd;
            border-radius: 5px;
            z-index: 22;
            background-color: white;
            position: absolute;
            top: 0;
            left: 30%;
        }
        
        .feedback_open_animation {
            -webkit-animation-name: feedback_animation_open;
            -webkit-animation-duration: 0.6s;
            animation-name: feedback_animation_open;
            animation-duration: 0.6s;
        }
        
        .feedback_close_animation {
            -webkit-animation-name: feedback_animation_close;
            -webkit-animation-duration: 0.6s;
            animation-name: feedback_animation_close;
            animation-duration: 0.6s;
        }
        
        @-webkit-keyframes feedback_animation_open {
            from {
                -webkit-transform: scale(0)
            }
            to {
                -webkit-transform: scale(1)
            }
        }
        
        @keyframes feedback_animation_open {
            from {
                transform: scale(0)
            }
            to {
                transform: scale(1)
            }
        }
        
        @-webkit-keyframes feedback_animation_close {
            from {
                -webkit-transform: scale(1)
            }
            to {
                -webkit-transform: scale(0)
            }
        }
        
        @keyframes feedback_animation_close {
            from {
                transform: scale(1)
            }
            to {
                transform: scale(0)
            }
        }
        
        .modal_block {
            display: flex;
            flex-direction: column;
            padding: 30px;
        }
        
        .modal_block div {
            position: relative;
        }
        
        .modal_block div label {
            margin: 10px;
            font-weight: 600;
        }
        
        #feedback_name,
        #feedback_msg {
            resize: none;
        }
        
        #feedback_phone {
            padding: 5px 50px;
        }
        
        .modal_span_phonenumber {
            position: absolute;
            color: black;
            left: 5px;
            bottom: 5px;
            width: 30px;
        }
        
        #feedback_close_modal {
            position: absolute;
            top: 0px;
            right: 10px;
            font-size: 3em;
            cursor: pointer;
            transition: .3s;
        }
        
        #feedback_close_modal:hover {
            font-weight: bold;
            color: #12122c;
        }
        /* section */
        
        .nav_icon {
            position: fixed;
            bottom: 30px;
            width: 80%;
            margin-left: 10%;
            height: 50px;
            z-index: 5;
            display: flex;
            justify-content: space-between;
        }
        
        .nav_icon div {
            color: black;
            border-radius: 50%;
            background-color: #cea18f;
            width: 50px;
        }
        
        .nav_icon div a {
            color: black;
            font-weight: bold;
        }
        
        i.up_icon {
            font-size: 2em;
            margin: 5px 13px;
            font-weight: bold;
            cursor: pointer;
        }
        
        i.phone_icon {
            font-size: 2em;
            margin: 12px;
            font-weight: bold;
        }
        /* section 1 */
        
        .section {
            width: 80%;
            margin-left: 10%;
            margin-top: -80px;
            background-color: white;
            z-index: 3;
        }
        
        .section_p {
            text-align: left;
            font-size: 22px;
            color: black;
            padding: 30px;
            margin-bottom: 80px;
        }
        
        .section p span {
            font-weight: bold;
            color: black;
            border-bottom: 4px solid #cda18e;
            padding: 10px 0;
        }
        
        .section_ {
            width: 90%;
            height: 250px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
        }
        
        .section_ div {
            width: 30%;
            padding: 10px;
            position: relative;
            z-index: 1;
        }
        
        .section_ div h6 {
            font-weight: bold;
        }
        
        .section_ div p {
            font-size: 14px;
            color: black;
        }
        
        .smile {
            position: absolute;
            font-size: 5em;
            z-index: -1;
        }
        /*section 2*/
        
        .section_2 {
            background-color: #12122c;
            width: 100%;
            height: 350px;
            margin-top: 150px;
            position: relative;
        }
        
        .section_2_ {
            width: 100%;
            z-index: -1;
            height: 350px;
            overflow: hidden;
        }
        
        .section_2_form {
            color: white;
            width: 32%;
            height: 250px;
            padding: 20px;
            z-index: 2;
            position: absolute;
            margin-top: -300px;
            margin-left: 170px;
        }
        
        #section_2_img {
            transition: transform 0.5s ease;
            transform: scale(1.4);
        }
        
        .section_2_form_ {
            margin-top: 50px;
            position: relative;
        }
        
        .section_2_form_span {
            position: absolute;
            color: black;
            top: 12px;
            left: 5px;
        }
        
        .section_2_input {
            width: 65%;
            padding-top: 10px;
            padding-bottom: 10px;
            padding-left: 50px;
            border: 1px solid #f4f4f4;
            outline: none;
        }
        
        .section_2_btn {
            width: 26%;
            margin-left: 2%;
            padding: 10px 15px;
            color: black;
            background-color: #cea18f;
            font-weight: bold;
            border: none;
            transition: 0.3s;
        }
        
        .section_2_btn:focus {
            outline: none;
        }
        
        .section_2_btn:hover,
        .open_feedback_modal_form:hover {
            background-color: #e1b6a3;
        }
        /* section 3 */
        
        .section_3 {
            width: 100%;
            height: 700px;
            margin-top: 10%;
        }
        
        .section_3_ {
            width: 85%;
            margin-left: 10%;
            margin-top: 10%;
            height: 100%;
        }
        
        .section_title {
            margin-top: 2%;
            font-size: 27px;
            color: black;
        }
        
        .span {
            font-weight: bold;
            border-bottom: 3px solid #d0a695;
            padding-bottom: 5px;
        }
        
        .section_3_item {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
        }
        
        .section_3_item_ {
            width: 45%;
            margin-left: 5%;
            height: 200px;
            display: flex;
        }
        
        .round {
            width: 100px;
            background-color: #060926;
            height: 100px;
            display: block;
            border-radius: 50%;
            padding: 20px;
            margin: 20px;
        }
        
        .round_text {
            width: 300px;
            padding: 20px;
            margin: 20px 10px;
        }
        
        .round_text h5 {
            font-weight: bold;
        }
        
        .round_text p {
            color: black;
        }
        /* section 4  tabs */
        
        .section_4 {
            height: 700px;
        }
        
        .section_4_ {
            height: auto;
            width: 90%;
            margin-left: 5%;
        }
        
        .section_4_tab {
            display: flex;
            justify-content: space-around;
            margin-top: 4%;
            width: 100%;
        }
        
        .section_4_tab ul {
            width: 100%;
            display: flex;
        }
        
        .section_4_tab ul li:not(.section_4_tab_active) {
            width: 20%;
            padding: 15px 20px;
            color: #7a7c89;
            cursor: pointer;
            transition: .2s;
            letter-spacing: 0.15em;
            position: relative;
            text-align: center;
        }
        
        .section_4_tab ul li:after {
            background: none repeat scroll 0 0 transparent;
            top: 0;
            content: "";
            display: block;
            height: 5px;
            left: 50%;
            position: absolute;
            background: #d0a695;
            /* capdan ungga */
            transition: width 0.5s ease 0s;
            width: 0;
        }
        
        .section_4_tab ul li:hover:after {
            width: 100%;
            left: 0;
        }
        
        .section_4_tab ul li:hover {
            font-weight: bold;
            color: black;
            background-color: #ddd;
        }
        
        .section_4_tab_active {
            font-weight: bold;
            color: black;
            border-top: 5px solid #d0a695;
            padding: 15px 20px;
            width: 20%;
            text-align: center;
        }
        
        .section_4_menu {
            display: flex;
            margin-top: 5%;
        }
        
        .section_4_text {
            width: 60%;
        }
        
        .section_4_text h1 {
            padding-top: 50px;
            padding-left: 50px;
            padding-right: 50px;
            font-weight: bold;
        }
        
        .section_4_text p {
            color: black;
            margin: 0 50px;
        }
        
        .section_4_text button {
            color: black;
            margin: 20px 50px;
            padding: 13px 20px;
            border: none;
            background-color: #cda08e;
            font-weight: bold;
            transition: 0.3s;
            outline: none;
        }
        
        .section_4_text button:hover {
            background-color: #e1b6a3;
        }
        
        .section_4_img {
            width: 40%;
        }
        
        .section_4_img img {
            width: 85%;
            margin-left: 15%;
            padding: 5px;
            border-bottom-left-radius: 200px;
        }
        /*section 5 */
        
        .section_5 {
            height: 700px;
            width: 90%;
            margin-left: 5%;
        }
        
        .section_5_menu {
            display: flex;
            width: 100%;
            justify-content: space-between;
        }
        
        .section_5_menu div {
            width: 25%;
            height: 300px;
        }
        
        .section_5_menu div img {
            max-width: 100%;
            margin-top: 10%;
            padding: 10px;
        }
        
        .section_5_menu div p {
            margin-top: 3%;
            padding: 10px;
            font-size: 16px;
            color: black;
        }
        
        .section_5_menu div p span {
            font-weight: bold;
        }
        /* section 6 */
        
        .section_6 {
            width: 100%;
            height: 700px;
        }
        
        .section_6_table {
            width: 100%;
            display: flex;
            justify-content: space-around;
            margin-top: 5%;
        }
        
        .table {
            font-family: Arial, Helvetica, sans-serif;
            border-collapse: collapse;
            width: 100%;
        }
        
        .table td,
        .table th {
            border: 1px solid #ddd;
            padding: 8px;
        }
        
        .table tr:hover {
            background-color: #ddd;
        }
        
        .table th {
            padding: 15px 20px;
            text-align: left;
            color: black;
            font-weight: lighter;
            border: none;
            border-bottom: 2px solid #cda08e;
        }
        
        .table td {
            padding: 20px;
            text-align: left;
            color: black;
            font-weight: bold;
            border: none;
        }
        
        #banner {
            width: 100%;
            height: 371px;
            background-color: #ddd;
            margin: 20px 0;
        }
        
        .section_7 {
            width: 80%;
            height: 700px;
            margin-left: 10%;
            overflow-x: hidden;
        }
        
        .section_7_gallery {
            display: flex;
            cursor: pointer;
        }
        
        .section_7_gallery_animation_to_left {
            animation-name: to_left;
            animation-duration: .6s;
            animation-delay: 0;
            animation-timing-function: linear;
        }
        
        .section_7_gallery_animation_to_right {
            animation-name: to_right;
            animation-duration: .6s;
            animation-delay: 0;
            animation-timing-function: linear;
        }
        
        @keyframes to_left {
            from {
                /* 1=> ungdan capga 2=>pastdan tepaga   kotta */
                /* transform: translate3d(500px, 0, 0); */
                transform: translate3d(-300px, 0, 500px);
            }
            to {
                /* transform: translate3d(10px, 0, 0); */
            }
        }
        
        @keyframes to_right {
            from {
                /* 1=> ungdan capga 2=>pastdan tepaga   kotta */
                transform: translate3d(500px, 0, 0);
                /* transform: translate3d(-300px, 0, 500px); */
            }
            to {
                /* transform: translate3d(10px, 0, 0); */
            }
        }
        
        .section_7_gallery div {
            width: 33%;
        }
        
        .section_7::-webkit-scrollbar {
            display: none;
        }
        
        .section_7_gallery_height_img img {
            border-radius: 20px;
            width: 100%;
            height: 100%;
        }
        
        .section_7_gallery_touch_animation {
            transform: scale(0.9);
            box-shadow: 5px 5px 40px -1px rgba(0, 0, 0.8);
        }
        
        .section_7_gallery_short_img img {
            display: block;
            width: 100%;
            height: 200px;
            padding: 5px;
            border-radius: 20px;
        }
        
        .section_7_gallery_navigation {
            padding: 10px;
            margin: 20px 10px;
            display: flex;
            justify-content: space-around;
        }
        
        .section_7_gallery_navigation div:not(.section_7_gallery_navigation_pagination) {
            width: 40px;
            height: 40px;
        }
        
        .section_7_gallery_navigation_pagination {
            display: flex;
            justify-content: space-between;
            width: 50%;
            user-select: none;
        }
        
        .section_7_gallery_navigation_pagination span {
            width: 40px;
            height: 40px;
            border: 2px solid #ddd;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            transition: .2s;
        }
        
        .section_7_gallery_active {
            background-color: #cda08e;
            color: white;
        }
        
        .section_7_gallery_navigation_pagination span b {
            position: absolute;
            top: 7px;
            right: 16px;
        }
        
        .section_7_gallery_navigation div i {
            font-size: 2em;
            cursor: pointer;
            -webkit-transition-duration: 0.4s;
            /* Safari */
            transition-duration: 0.4s;
            text-decoration: none;
            overflow: hidden;
        }
        
        .section_7_gallery_navigation div i:active,
        .section_7_gallery_navigation_pagination span:active {
            box-shadow: 0 5px #666;
            transform: translateY(4px);
        }
        
        #section_7_gallery_nav_left {
            font-size: 22px;
            margin-left: 70%;
            margin-top: 20px;
            display: block;
        }
        
        #section_7_gallery_nav_right {
            font-size: 22px;
            margin-left: 20%;
            margin-top: 20px;
            display: block;
        }
        
        #section_7_gallery_nav_round {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: block;
            background-color: #cea18f;
            margin: 0 auto;
            margin-top: 20px;
        }
        /* section 8 accordion*/
        
        .section_8 {
            width: 100%;
            height: 700px;
            margin: 0;
            overflow-x: hidden;
        }
        
        .section_8 p {
            margin: 35px 0;
        }
        
        .accordion_block {
            width: 60%;
            margin-left: 18%;
        }
        
        .accordion_block_bottom_border {
            width: 60%;
            margin-left: 18%;
            margin-top: 3%;
            border-bottom: 2px solid #cea18f;
        }
        
        .accordion_btn {
            font-size: 18px;
            font-weight: bold;
            padding: 15px 20px;
            width: 100%;
            border: none;
            text-align-last: left;
            transition: 0.4s;
        }
        
        .accordion_btn:focus {
            outline: none;
        }
        
        .accordion_btn:after {
            content: "\02795";
            font-size: 13px;
            color: #777;
            float: right;
            margin-left: 5px;
        }
        
        .accordion_active:after {
            content: "\2796";
        }
        
        .accordion_txt {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
        }
        
        .accordion_txt p {
            color: black;
        }
        
        #accordion_quest {
            background-color: #cea18f;
            padding: 15px 20px;
            border: none;
            font-weight: bold;
            margin-top: 30px;
            margin-left: 45%;
        }
        
        #accordion_quest:hover {
            background-color: #e1b6a3;
        }
        
        .accordion_active {
            background-color: #ddd;
        }
        /* slider user*/
        
        .slider {
            width: 100%;
            height: 800px;
            margin-top: 150px;
        }
        
        .slider_text {
            width: 40%;
            display: block;
            margin: 50px auto;
        }
        
        .slider_text h2 {
            text-align: center;
            padding: 10px;
        }
        
        .slider_text p {
            color: black;
            text-align: center;
        }
        
        .slider_block {
            width: 80%;
            height: 55%;
            border: 2px solid #ddd;
            margin-left: 10%;
        }
        
        .slider_block_flex {
            display: flex;
            flex-wrap: wrap;
            height: 100%;
        }
        
        .slider_block_profile {
            display: flex;
            width: 48%;
            height: 50%;
            margin-left: 1%;
            justify-content: space-around;
            padding: 10px;
        }
        
        .slider_block_profile_img {
            width: 30%;
        }
        
        .slider_block_profile_img img {
            width: 100%;
        }
        
        .slider_block_profile_name {
            width: 60%;
        }
        
        .slider_block_profile_name h5 {
            font-weight: bold;
        }
        
        .slider_block_profile_name p {
            color: black;
        }
        
        .user_navigator {
            width: 15%;
            margin: 20px auto;
            text-align: center;
        }
        
        .user_navigator span {
            width: 20px;
            height: 20px;
            border: 2px solid #060926;
            border-radius: 10px;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            user-select: none;
        }
        
        .user_navigator_active {
            background-color: #060926;
        }
        
        .angle_icon {
            position: relative;
            padding-left: 100px;
        }
        
        i.angle_icon_left {
            font-weight: bold;
            font-size: 25px;
            border: 1px solid #060926;
            padding: 5px 10px;
            border-radius: 100%;
            position: absolute;
            top: -250px;
            left: 20px;
            cursor: pointer;
        }
        
        i.angle_icon_right {
            font-weight: bold;
            font-size: 25px;
            border: 1px solid #060926;
            padding: 5px 10px;
            border-radius: 100%;
            position: absolute;
            top: -250px;
            right: 20px;
            cursor: pointer;
        }
        
        i.angle_icon_left:hover,
        i.angle_icon_right:hover {
            background-color: #060926;
            color: white;
        }
        
        .fade_slide {
            animation-name: fade;
            animation-duration: 1.5s;
        }
        
        @keyframes fade {
            from {
                opacity: .4;
                /* transform: translate3d(0px, 0, 0); */
            }
            to {
                opacity: 1;
                /* transform: translate3d(100px, 0, 0); */
            }
        }
        /*footer*/
        
        #footer {
            background-color: #060926;
            width: 100%;
            height: 630px;
            margin-top: 100px;
        }
        
        .footer_nav {
            display: flex;
            width: 90%;
            margin-left: 5%;
            padding-top: 70px;
        }
        
        .footer_nav_logo {
            width: 15%;
            height: 180px;
            color: black;
            background-color: #ddd;
            text-align: center;
            border-radius: 20%;
        }
        
        .footer_nav_logo span {
            display: block;
            margin: 30px auto;
            font-size: 2em;
        }
        
        .footer_nav_feedback {
            width: 25%;
            padding: 20px;
        }
        
        .fwb {
            font-weight: bold;
        }
        
        .footer_nav_social {
            width: 25%;
        }
        
        .footer_nav_social_ {
            margin-top: 80px;
            margin-left: 50px;
        }
        
        .footer_nav_social i {
            font-size: 22px;
            background-color: #cda08e;
            color: #060926;
            padding: 10px;
            border-radius: 100%;
            margin: 5px;
            transition: 0.3s;
            cursor: pointer;
        }
        
        .footer_nav_social i:hover {
            background-color: #e1b6a3;
        }
        
        .footer_nav_map {
            width: 35%;
            padding: 20px;
        }
        
        .footer_nav_map_ {
            width: 100%;
            text-align: center;
            height: 200px;
            background-color: #ddd;
        }
        
        .end {
            height: 100px;
        }
        /************	 MEDIA CSS    ************/
        
        @media screen and (max-width: 970px) {
            body {
                width: 100%;
                max-width: 970px;
            }
            /* header */
            .header_nav_ {
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: space-between;
                margin: 0;
            }
            .burger_menu {
                display: block;
                margin: 5px;
                width: 50px;
                position: absolute;
                right: 0;
            }
            .close_menu {
                position: absolute;
                top: -10px;
                width: 50px;
                font-size: 4em;
                color: white;
                cursor: pointer;
            }
            .header_nav_item {
                height: 100%;
                width: 0;
                background-color: white;
                z-index: 6;
                position: absolute;
                /* position: fixed; */
                top: 70px;
                right: 0;
                transition: 1s;
            }
            .header_nav_item_links {
                flex-direction: column;
                background-color: white;
            }
            .header_nav_item_links li a:not(.active_link) {
                color: #080726;
                display: block;
                padding: 5px 15px;
                transition: 1s;
            }
            .header_nav_item_links li a:hover {
                color: orange;
                font-weight: bold;
                padding-left: 55px;
            }
            .active {
                transition: 1s;
                font-weight: bold;
                color: orange;
                padding: 10px;
            }
            .active_link {
                padding-bottom: 20px;
                padding-left: 20px;
                border-bottom: 3px solid #cda18e;
                color: #cda18e;
                transition: 0.3s;
            }
            /* feedback modal  */
            .feedback_modal {
                display: none;
                width: 100%;
                height: auto;
                top: 100px;
                left: 0;
            }
            .section {
                margin-left: 12%;
            }
            #section_2_img {
                transform: scale(1.3);
            }
            .section_2_form {
                width: 100%;
                margin-left: 0px;
            }
            .section_2_input {
                width: 55%;
            }
            .section_2_btn {
                width: 40%;
                transition: 0.3s;
            }
            .section_2_btn:hover {
                background-color: #e1b6a3;
            }
            /*  section 3  */
            .section_3 {
                margin-top: 120px;
                height: auto;
            }
            .section_3_ {
                width: 100%;
                margin-left: 0;
                height: 100%;
            }
            .section_3_ p {
                padding: 20px;
            }
            .section_3_item {
                width: 100%;
                height: auto;
                margin: 30px 0;
                display: flex;
                justify-content: flex-start;
            }
            .section_3_item_ {
                width: 50%;
                margin: 0;
            }
            .round_text {
                margin: 0px 10px;
            }
            /* section 4  */
            .section_4 {
                height: auto;
            }
            .section_4_tab {
                display: flex;
                justify-content: space-between;
                margin-top: 7%;
            }
            .section_4_text h1 {
                padding-top: 0px;
            }
            .section_4_menu {
                display: flex;
                flex-direction: column-reverse;
                margin-top: 5%;
            }
            .section_4_text {
                width: 100%;
            }
            .section_4_text h1 {
                padding: 50px;
                font-weight: 600;
                font-size: 2em;
            }
            .section_4_text p {
                color: black;
                margin: 10px;
            }
            .section_4_text button {
                margin: 5%;
                padding: 13px 20px;
                width: 90%;
            }
            .section_4_img {
                width: 100%;
            }
            .section_4_img img {
                max-width: 100%;
                margin: 5%;
                padding: 5px;
                border-radius: 10px;
                border-bottom-left-radius: 0px;
            }
            /* section 5 */
            .section_5 {
                height: 700px;
                width: 100%;
                margin-left: 0;
                padding: 10px;
            }
            .section_5_menu div {
                height: auto;
            }
            /* section 6 */
            .section_6_table {
                width: 100%;
                display: flex;
                justify-content: space-around;
                margin-top: 5%;
            }
            .table_ {
                width: 100%;
                font-family: Arial, Helvetica, sans-serif;
                border-collapse: collapse;
                border: 2px solid #ddd;
            }
            #banner {
                margin-top: 100px;
            }
            .section_8 p {
                padding: 0 20px;
            }
            .accordion_block {
                width: 90%;
                margin-left: 5%;
            }
            .accordion_btn {
                font-size: 14px;
            }
            #accordion_quest {
                display: block;
                margin: 50px auto;
            }
            .section_7 {
                width: 100%;
                margin: 0;
                padding: 10px;
            }
            /* footer */
            .footer_nav {
                display: flex;
                width: 100%;
                margin-left: 0;
                padding-top: 20px;
            }
        }
        
        @media screen and (max-width: 480px) {
            body {
                width: 100%;
                max-width: 480px;          
            }
            /* header */
            .header_nav_ {
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: space-between;
                margin: 0;
            }
            .burger_menu {
                display: block;
                margin: 5px;
                width: 50px;
                position: absolute;
                right: 0;
            }
            .close_menu {
                position: absolute;
                top: -10px;
                width: 50px;
                font-size: 4em;
                color: white;
                cursor: pointer;
            }
            .header_nav_item {
                height: 100%;
                width: 0;
                background-color: white;
                z-index: 6;
                /* position: absolute; */
                position: fixed;
                top: 70px;
                right: 0;
                transition: 1s;
            }
            .header_nav_item_links {
                flex-direction: column;
                background-color: white;
            }
            .header_nav_item_links li a:not(.active_link) {
                color: #080726;
                display: block;
                padding: 5px 15px;
                transition: 1s;
            }
            .header_nav_item_links li a:hover {
                color: orange;
                font-weight: bold;
                padding-left: 55px;
            }
            .active {
                transition: 1s;
                font-weight: bold;
                color: orange;
                padding: 10px;
            }
            .active_link {
                padding-bottom: 20px;
                padding-left: 20px;
                border-bottom: 3px solid #cda18e;
                color: #cda18e;
                transition: 0.3s;
            }
            .section_start {
                height: 550px;
            }
            .header_center {
                width: 100%;
                margin-left: 0;
            }
            .header_center_title {
                padding-top: 30%;
            }
            /* feedback modal  */
            .feedback_modal {
                display: none;
                width: 100%;
                height: auto;
                top: 100px;
                left: 0;
            }
            .section_ {
                width: 100%;
                height: auto;
                flex-wrap: wrap;
            }
            .section_ div {
                width: 50%;
                padding: 10px;
                position: relative;
                z-index: 1;
            }
            .section {
                margin-left: 12%;
            }
            /* section 2 */
            .section_2 {
                background-color: #12122c;
                width: 100%;
                height: 350px;
                margin-top: 150px;
                position: relative;
            }
            .section_2_ {
                width: 100%;
                z-index: -1;
                height: 350px;
                overflow: hidden;
            }
            .section_2_form {
                color: white;
                width: 100%;
                height: 250px;
                padding: 10px;
                z-index: 2;
                position: absolute;
                margin-top: -300px;
                margin-left: 0;
            }
            .section_2_input {
                width: 70%;
                padding-top: 10px;
                padding-bottom: 10px;
                padding-left: 50px;
            }
            .section_2_btn {
                width: 90%;
                margin-top: 5%;
                margin-left: 2%;
            }
            /* section 3 */
            .section_3 {
                margin-top: 120px;
            }
            .section_3_ {
                width: 98%;
                margin-left: 2%;
            }
            .section_3_item {
                margin-top: 30px;
                display: flex;
                justify-content: space-around;
            }
            .section_3_item_ {
                width: 100%;
                margin: 0;
            }
            .round_text {
                margin: 0px 10px;
            }
            /* section 4 */
            .section_4_tab {
                display: flex;
                justify-content: space-between;
                margin-top: 7%;
            }
            .section_4_tab ul {
                width: 100%;
                display: flex;
                justify-content: flex-start;
                flex-wrap: wrap;
            }
            .section_4_tab ul li:not(.section_4_tab_active) {
                width: 50%;
                padding: 15px 20px;
                color: #7a7c89;
                cursor: pointer;
                transition: .2s;
                letter-spacing: 0.15em;
                position: relative;
                text-align: center;
            }
            .section_4_tab_active {
                width: 50%;
            }
            .section_4_text h1 {
                padding-top: 0px;
            }
            /* section 5 */
            .section_5 {
                height: auto;
                margin-top: 20%;
                width: 100%;
                margin-left: 0;
            }
            .section_5_menu {
                width: 100%;
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                justify-content: flex-start;
            }
            .section_5_menu div {
                width: 100%;
                height: auto;
                margin: 30px 0;
            }
            .section_5_menu div img {
                max-width: 60%;
                margin-left: 15%;
                padding: 10px;
            }
            .section_5_menu div p {
                margin-top: 3%;
                padding: 10px 20px;
                font-size: 16px;
                color: black;
            }
            /* section 6 */
            .section_6 {
                width: 100%;
                height: auto;
                margin-top: 10%;
            }
            .section_6_table {
                width: 100%;
                display: flex;
                flex-direction: column;
                margin-top: 5%;
            }
            .table {
                max-width: 100%;
                margin: 10px 0;
                border: 2px solid #ddd;
            }
            #banner {
                margin-top: 100px;
            }
            /* section 8 */
            .section_8 {
                width: 100%;
                height: 700px;
                margin: 5% 0;
            }
            .section_8 p {
                margin: 35px 0;
            }
            .accordion_block {
                width: 90%;
                margin-left: 5%;
            }
            .accordion_btn {
                font-size: 14px;
                font-weight: 400;
                padding: 15px;
            }
            /* slider  */
            .slider {
                width: 100%;
                height: auto;
                margin-top: 100px;
            }
            .slider_text {
                width: 100%;
                text-align: center;
                margin: 0;
                padding: 10px;
            }
            .slider_text h2 {
                padding: 10px;
            }
            .slider_text p {
                padding: 10px;
                text-align: center;
            }
            .slider_block {
                width: 100%;
                height: auto;
                margin: 2% 0;
            }
            .slider_block_flex {
                display: flex;
                flex-wrap: wrap;
                height: 100%;
            }
            .slider_block_profile {
                display: flex;
                width: 100%;
                height: 50%;
                margin: 2% 0;
                justify-content: space-around;
                padding: 0px;
            }
            .user_navigator {
                width: 100%;
                margin: 20px auto;
                text-align: center;
            }
            .angle_icon {
                position: relative;
                padding-left: 0px;
            }
            i.angle_icon_left {
                top: -55px;
            }
            i.angle_icon_right {
                top: -55px;
            }
            /*  */
            .section_7 {
                width: 100%;               
                margin: 0;
                padding: 10px;
            }
           .section_7_gallery_height_img img {  
             height: 240px;
           }
               
         .section_7_gallery_short_img img {  
            height: 120px;
           }
            /* footer */
            #footer {
                background-color: #060926;
                width: 100%;
                height: auto;
                margin-top: 100px;
            }
            .footer_nav {
                display: flex;
                flex-direction: column;
                width: 100%;
                margin: 0;
                padding: 20px;
            }
            .footer_nav_logo {
                width: 100%;
            }
            .footer_nav_logo img {
                max-width: 80%;
                padding: 40px 10px;
            }
            .footer_nav_feedback {
                width: 100%;
                padding: 0;
            }
            .footer_nav_social {
                width: 100%;
            }
            .footer_nav_social_ {
                margin: 20px auto;
            }
            .footer_nav_social i {
                font-size: 2em;
            }
            .footer_nav_map {
                width: 100%;
                padding: 20px;
            }
            .footer_nav_map_ {
                width: 100%;
                text-align: center;
                height: 200px;
                background-color: #ddd;
            }
        }
 
