@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

/*========== Colors ==========*/
    --first-color: #bbb;
    --button-color: hsl(274, 28%, 59%);
    --button-color-alt: hsl(0, 0%, 21%);
    --title-color: #fff;
    --text-color: #000;
    --text-color-light: hsl(0, 0%, 55%);
    --body-color: hsl(0, 0%, 99%);
    --container-color: #fff;
    --border-color: hsl(0, 0%, 94%);
    --bd-color: #ededed;

/*========== Font and typography ==========*/
    --body-font: 'Roboto', sans-serif;
    --biggest-font-size: 2rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2.25rem;
    --h3-font-size: 2rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

/*========== Font weight ==========*/
    --font-medium: 500;
    --font-bold: 700;

/*========== Margenes Bottom ==========*/
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

/*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 2.5rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* font-family: 'Lato', sans-serif; */
    font-family: 'Noto Sans KR', sans-serif;
}

pre {
    font-family: 'Noto Sans KR', sans-serif;
    white-space: pre-line;
}

body {
    margin: 0;
    /* background-color: var(--body-color); */
    color: var(--text-color);
    /*For animation dark mode*/
    transition: .4s;
    top:0 !important;
}

h1, h2, h3, h4 {
    font-weight: var(--font-medium);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.swiper-button-next {
    color: #fff !important;
}

.swiper-button-prev {
    color: #fff !important;
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1170px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
}

.main {
    overflow: hidden;
}

.section {
    padding: 3.5rem 0 1rem;
}

/*=============== SCROLL UP ===============*/
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -30%;
    background-color: var(--container-color);
    box-shadow: 0 4px 12px hsla(0, 0%, 20%, .1);
    display: inline-flex;
    padding: .25rem;
    z-index: var(--z-tooltip);
    opacity: .8;
    transition: .4s;
}

.scrollup:hover {
    opacity: 1;
}

.scrollup_icon {
    font-size: 1.5rem;
    color: var(--first-color);
}

/* Show Scroll Up*/
.show-scroll {
    bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: .6rem;
    background: hsl(0, 0%, 74%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 17%);
}
/*=============== HEADER & NAV ===============*/
.header {
    width: 100%;
    background: #fff;
    z-index: var(--z-fixed);
    /*For animation dark mode*/
    transition: .4s;
    box-shadow: 1px 4px 5px rgb(0, 0, 0, .2);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1002;
}

.nav_top {
    display: none;
}

.nav_logo, 
.nav_toggle, 
.nav_shop, 
.nav_close {
    color: #2d2d2d;
}

.nav_toggle i {
    color: #2d2d2d;
}

.nav_logo {

    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}

.nav_logo img {
    width: 80px;
}

.nav_logo-icon {
    font-size: 1.25rem;
}

.nav_btns {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.nav_toggle, 
.nav_shop {
    font-size: 1.25rem;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .nav_menu {
        position: fixed;
        background-color: #fff;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        padding: 6rem 2rem 3.5rem;
        transition: .3s;
    }
}

.nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    z-index: 1;
    cursor: pointer;
}

.nav_item {
    padding: 5px 15px;
}

.nav_link {
    color: #2d2d2d;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    font-size: var(--normal-font-size);
    transition: .3s;
}

.nav_link:hover {
    color: var(--first-color);
}

.nav_close {
    font-size: 2rem;
    position: absolute;
    top: .9rem;
    right: 1.25rem;
    cursor: pointer;
}

/* Show menu */
.show-menu {
    right: 0;
}

/* Change background header */
.scroll-header {
    background-color: #fff;
    box-shadow: 0 1px 4px hsla(0, 4%, 15%, .10);
}

/* Active link */
.active-link {
    color: var(--first-color);
}

.on p {
    color: #1982c6;
}

.logo_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav_login {
    display: none;
}

.nav_register {
    display: none;
}

.nav_log_btn {
    position: absolute;
    bottom: 20px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.nav_log_btn button{
    width: 120px;
    height: 30px;
    border-radius: 5px;
}

.home_next {
    background-color: #1982c6 !important;
    width: 55px !important;
    height: 55px !important;
    display: none !important;
}

.swiper-button-next {
    right: 0 !important;
}

.swiper-button-prev {
    left: 0 !important;
}

.section_title_box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section_title {
    font-size: 35px;
    position: relative;
    margin-bottom: 60px;
}

.section_title::before {
    content: '';
        position: absolute;
        bottom: -29px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 60px;
        height: 3px;
        background-color: #1982c6;
}

.section_subtitle {
    font-size: 12px;
    color: #bbb;
}

.services_section {
    margin: 50px 0;
}

.services_item {
    margin-bottom: 50px;
    cursor: pointer;
}

.services_item:hover .item_box_text h4 {
    color: #1982c6;
}

.services_item:hover .item_box_icon {
    color: #fff;
    background: linear-gradient( 180deg, #4ebcd3, #1883c4);
}

.services_item:hover .item_box_icon::after {
    border-top: 10px solid #1883c4;
}

.item_box {
    display: flex;
    gap: 20px;
}

.item_box_icon {
    min-width: 80px;
    height: 80px;
    background-color: #eaeceb;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    color: #000;
}

.item_box_icon::after {
    border-top: 10px solid #eaeceb;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    bottom: -10px;
    left: 28px;
    right: 45px;
}

.item_box_text p {
    font-size: 12px;
    color: #bbb;
    margin-top: 5px;
}

.home_btn {
    position: absolute;
    bottom: 250px;
    left: 300px;
}

.home_btn button {
    width: 180px;
    height: 50px;
    border-radius: 10px;
    background-color: #5a7282;
    margin-right: 10px;
    color: #fff;
    font-weight: bold;
}

.home_btn button.on1 {
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
}

.commonly_list {
    max-width: 570px;
    margin-top: 50px;
}

.commonly_item {
    border: 1px solid #0b2230;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer;
}

.commonly_text {
    display: flex;
    align-items: center;
    background-color: #0b2230;
}

.commonly_icon i:first-child {
    display: none;
}

.commonly_icon {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #1883c4;
    margin-right: 20px;
}

.commonly_text_box {
    font-size: 13px;
    padding: 20px;
    display: none;
}

.commonly_img {
    width: 945px;
    height: 668px;
    background-color: #212121;
}

.commonly_section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.commonly_title {
    font-size: 35px;
}

.commonly_item.on2 .commonly_text_box {
    display: block;
}

.commonly_item.on2 .commonly_icon {
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
}

/* ==================== */

.cap {
    background-color: #eaeceb;
}


/* ======================== */

.commonly {
    background-color: #121013;
    color: #fff;
}

.cap_box {
    max-width: 270px;
    text-align: center;
    cursor: pointer;
}

.cap_box h3 {
    margin: 20px 0;
}

.cap_box p {
    font-size: 13px;
    color: #bbb;
}

.cap_div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.cap_box:hover h3 {
    color: #1883c4;
}

/* =================== */

.meet_img {
    width: 270px;
    height: 240px;
    background-color: #121013;
}

.meet_div {
    margin-top: 80px;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.meet_box {
    width: 270px;
}

.meet_title {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.meet_title p {
    font-size: 13px;
    color: #1883c4;
}

.meet_text {
    font-size: 12px;
    color: #bbb;
    padding: 20px 0;
}

.meet_text_box button {
    background-color: transparent;
    color: #bbb;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.meet_text_box button i {
    font-size: 20px;
}

.meet_box:hover .meet_img{
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
}

.meet_box:hover .meet_text_box button {
    color: #1883c4;
}

.amazing_menu {
    margin: 50px 0;
}

.amazing_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 570px;
    background: linear-gradient( 180deg, #fff, #eee);
    border: 1px solid #eee;
    border-radius: 10px;
}

.amazing_item {
    padding: 10px;
    border-right: 1px solid #eee;
    color: #bbb;
    cursor: pointer;
}
.amazing_item:last-child {
    border-right: none;
}

.amazing_item.on3 {
    color: #1883c4;
}

.amazing_img {
    width: 100%;
    height: 340px;
    background-color: #999999;
}

.amazing_img:nth-child(2n) {
    background-color: #383838;
}

.amazing_img:hover {
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
}

.purchase {
    background-color: #74970e;
    height: 120px;
    width: 100%;
    color: #fff;
}

.purchase_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100%;
}

.purchase_section button {
    width: 180px;
    height: 50px;
    border-radius: 10px;
    background-color: #fff;
    color: #7d7d7d;
}


.great {
    justify-content: flex-start;
}

.great_img {
    width: 845px;
    height: 750px;
    background-color: #393939;
}

.great_line {
    width: 50px;
    height: 2px;
    background-color: #1883c4;
    margin: 30px 0;
}

.great_div {
    max-width: 668px;
}

.great_text {
    font-size: 13px;
    margin-top: 50px;
}

.great_list {
    list-style: inside;
}

.great_btn {
    width: 180px;
    height: 50px;
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
    margin-top: 50px;
    border-radius: 10px;
    color: #fff;
}

.customer_text_box {
    width: 100%;
    height: 200px;
    background-color: #eaeceb;
    border: 1px solid #ddd;
    color: #7d7d7d;
    border-radius: 20px;
    padding: 20px;
    font-size: 14px;
    margin: 50px 0;
}

.customer_profile_img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #383838;
}

.customer_profile {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.video_play {
    width: 100%;
    height: 352px;
    background-color: #383838;
    margin-top: 50px;
}

.inine_item {
    font-size: 13px;
    color: #7d7d7d;
    padding: 20px;
    cursor: pointer;
}

.inine_item.on4 {
    color: #74970e;
    font-weight: bold;
    position: relative;
}
.inine_item.on4::after {
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    bottom: -10px;
    left: 45%;
}

.inine_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: center;

}

.inine_section {
    background-color: #74970e;
}

.inine_img {
    width: 100%;
    height: 591px;
    background-color: #383838;
}

.inine_grid {
    color: #fff;
}

.inine_btn {
    margin: 30px 0;
}

.inine_grid li {
    margin-bottom: 10px;
}

.inine_btn button:first-child {
    width: 140px;
    height: 40px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.inine_btn button:last-child {
    width: 120px;
    height: 40px;
    background-color: #fff;
    color: #000;
}

.facts {
    position: relative;
    min-height: 566px;
}

.facts_bac {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1c1c1c;
    z-index: -1;
}

.facts_title {
    color: #fff;
    position: relative;
    text-align: center;
}

.facts_title::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 3px;
    background-color: #fff;
}

.facts_box {
    color: #fff;
    text-align: center;
}

.facts_div {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.facts_img {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    background-color: rgb(255, 255, 255, .2);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.facts_img i {
    color: #1883c4;
    font-size: 40px;
    width: 100%;
}

.facts_text p {
    color: #1883c4;
    font-size: 14px;
}

.facts_text {
    margin-top: 20px;
}

.blog_box {
    width: 270px;
    height: 320px;
    position: relative;
}

.blog_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #333333;
}

.blog_text {
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    background-color: #eaeceb;
    padding: 10px 20px;
}

.blog_text p {
    color: #bbb;
    font-size: 13px;
}

.blog_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
    margin-top: 50px;
}

.blog_btn {
    margin-top: 50px;
    margin-bottom: 100px;
    text-align: center;
}

.blog_btn button {
    width: 140px;
    height: 40px;
    color: #fff;
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
}

.selling {
    background-color: #252228;
    min-height: 400px;
    width: 100%;
}

.selling_section {
    text-align: center;
    color: #fff;
}

.selling_section h1 {
    font-size: 40px;
}

.selling_section p {
    max-width: 570px;
    margin: 50px auto;
    font-size: 12px;
}

.selling_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.selling_btn button {
    color: #fff;
    width: 180px;
    height: 50px;
    background-color: #74970e;
    border-radius: 10px;
}

.selling_btn button:hover {
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
}

.pricing_name {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eaeceb;
    margin-bottom: 50px;
}

.pricing_name i {
    font-size: 30px;
}

.pricing_div {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 100px;
}

.pricing_box {
    border: 1px solid #ddd;
    position: relative;
}

.pricing_box h4 {
    margin: 30px 0;
}

.pricing_box p {
    font-size: 13px;
    margin: 10px 0;
}

.pricing_btn {
    width: 140px;
    height: 40px;
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.pricing_line {
    width: 100px;
    height: 3px;
    background-color: #1982c6;
    margin: 0 auto;
}

.section_color {
    min-height: 260px;
    background-color: #e54c4c;
}

.section_color_img {
    width: 270px;
    height: 70px;
    background-color: #747474;
}

.section_color_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 260px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.pro_info {
    position: relative;
    min-height: 774px;
    color: #fff;
}

.pro_info_bac {
    position: absolute;
    width: 100%;
    height: 774px;
    background-color: #242328;
    z-index: -1;
}

.pro_info_img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #505050;
    margin: 100px auto;
    margin-bottom: 30px;
}

.pro_info_line {
    width: 60px;
    height: 2px;
    background-color: #fff;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 50px;
}

.pro_info_section {
    text-align: center;
    max-width: 870px;
}

.pro_info_btn {
    margin-top: 80px;
}

.pro_info_btn button {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 25px;
}

.pro_info_btn button:hover {
    background-color: #1883c4;
}

.details_box p {
    font-size: 13px;
    color: #7d7d7d;
    margin: 5px 0;
}

.details_box h4 {
    color: #1883c4;
    margin-top: 30px;
}

.details_img {
    background-color: #252228;
    height: 406px;
}

.details_div {
    margin-top: 50px;
    margin-bottom: 100px;
}

.touch {
    background-color: #252228;
    color: #fff;
}

.touch .section_title::before {
    background-color: #fff;
}

.touch_section {
    max-width: 970px;
}

.touch_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 100px;
}

.touch_inp_box {
    border: 1px solid #fff;
    width: 49%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.touch_inp_box input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 80%;
}

.touch_div textarea {
    width: 100%;
    height: 150px;
    background-color: transparent;
    border: 1px solid #fff;
    outline: none;
    resize: none;
    padding: 10px;
}

.touch_div button {
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
    color: #fff;
    width: 40%;
    height: 50px;
    margin: 0px auto;
    margin-top: 30px;
    border-radius: 10px;
}

.socials_box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #252228;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.socials_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 100px;
}

.socials_box:hover {
    background-color: #4ebcd3;
}

.view {
    background-color: #252228;
    color: #fff;
}

.view_line {
    width: 50px;
    height: 2px;
    background-color: #fff;
    margin: 20px auto;
}

.view_div {
    text-align: center;
    max-width: 270px;
    margin-bottom: 100px;
}

.view_div p {
    font-size: 12px;
}

.view_btn {
    width: 120px;
    height: 40px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    margin-top: 30px;
}

.view_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer {
    background-color: #121013;
    color: #fff;
}

.footer_line {
    width: 50px;
    height: 2px;
    background-color: #1883c4;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer_btn {
    width: 100%;
    height: 40px;
    background-color: #74970e;
    color: #fff;
}

.footer_box p {
    font-size: 13px;
}

.footer_list {
    border-bottom: 1px solid #747474;
    padding: 10px 0;
}

.footer_list1 {
    padding-top: 0;
}

.footer_img {
    width: 80px;
    height: 80px;
    background-color: #252228;
}

.footer_img:hover {
    background: linear-gradient( 270deg, #4ebcd3, #1883c4);
}

.footer_img_div {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
    column-gap: 10px;
}

.footer_ul {
    list-style: square;
}

.footer_ul li {
    font-size: 13px;
    margin: 5px 0;
    cursor: pointer;
}

.footer_ul li:hover {
    color: #1883c4;
}

.footer_div {
    row-gap: 30px;
    margin-bottom: 50px;
}

.footer_bottom {
    background-color: #000;
}

.footer_icon {
    width: 35px;
    height: 35px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.footer_icon_box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer_bottom_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 80px;
}


@media screen and (min-width: 767px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .section {
        padding: 5.5rem 0 1rem;
    }

    .nav {
        height: 80px;
        justify-content: space-between;
        column-gap: 6rem;
        margin: 0 auto;
    }
    .nav_toggle, 
    .nav_close {
        display: none;
    }
    .nav_list {
        flex-direction: row;
    }
    .nav_item {
        padding: 5px 0;
        margin: 0 20px;
    }
    .nav_link {
        text-transform: initial;
        font-size: var(--small-font-size);
    }
    .nav_btns {
        margin-left: auto;
    }
    .nav_logo img {
        width: 100px;
    }
    .on {
        position: relative;
    }
    .on::before {
        content: '';
        position: absolute;
        top: -29px;
        left: -5px;
        right: 0;
        margin: 0 auto;
        width: 110%;
        height: 5px;
        background-color: #1982c6;
    }
    
    .home_next {
        display: flex !important;
    }

    .services_section {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 50px;
    }

    .commonly_section {
        flex-wrap: nowrap;
    }

    .amazing_div {
        grid-template-columns: repeat(5, 1fr);
    }

    .customer_grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
    }

    .inine_grid {
        grid-template-columns: repeat(2,1fr);
        column-gap: 30px;
        align-items: center;
    }

    .pricing_div {
        grid-template-columns: repeat(4,1fr);
    }
    .video_play {
        width: 100%;
        height: 352px;
        background-color: #383838;
        margin-top: 50px;
    }
    .customer_text_box {
        width: 570px;
        height: 200px;
        background-color: #eaeceb;
        border: 1px solid #ddd;
        color: #7d7d7d;
        border-radius: 20px;
        padding: 20px;
        font-size: 14px;
        margin: 50px 0;
    }
    .inine_img {
        width: 570px;
        height: 591px;
        background-color: #383838;
    }

    .details_div {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .details_img {
        width: 570px;
    }

    .footer_div {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 30px;
    }
}