body {
    margin: 0;
    padding: 0;
    color: #4b4b4b;
    overflow-x: hidden;
}

.text_focus {
    background: linear-gradient(135deg, #25bfb6, #32d0a7, #3ddf9a, #41e596);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.background_linear {
    background: linear-gradient(to right, #25bfb6, #32d0a7, #3ddf9a, #41e596);
}

.header {
    z-index: 999;
    transition: box-shadow 0.5s ease;

    .header_item {
        .header_logo {
            width: 70px;
            margin-right: 300px;
        }

        .header_link {
            gap: 80px;
            
        }
        .header_link a:hover {
            background: linear-gradient(
                135deg,
                #25bfb6,
                #32d0a7,
                #3ddf9a,
                #41e596
            );
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .header_lang {
            margin-left: 0;
        }
    }
}

.header_shadow {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header_m {
    max-height: 0px;
    transition: max-height 0.5s ease;
    overflow: hidden;

    .header_m_link a,
    .header_m_link .lang_btn,
    .header_m_link .service_btn {
        width: 100%;
        display: flex;
        align-items: center;
        padding-left: 5%;
        height: 50px;
        background-color: white;
    }

    .service_m,
    .lang_m {
        width: 100%;
        max-height: 0px;
        transition: max-height 0.5s ease;

        a {
            padding-left: 10% !important;
        }
    }
}

.header_m.open {
    max-height: 1000px;
}

.service_m.open,
.lang_m.open {
    max-height: 300px;
}

.header_hamburger {
    display: none;
}

.content {
    animation: fadeInAnimation ease 0.7s;
}

/* Cookies Css */
.caCEaP {
    min-height: 30px;
    background-color: rgb(0, 0, 0, 0.8);
    bottom: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 10px 20px;
}

.ant {
    padding: 0 10px;
}

.caCEaP .ant-row-flex {
    width: 100%;
}

.ant-row-flex-center {
    justify-content: center;
}

.ant-row-flex {
    display: flex;
    flex-flow: row wrap;
}

.btn-cookie {
    padding: 0 30px;
    margin-inline: 10px;
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(135deg, #25bfb6, #32d0a7, #3ddf9a, #41e596);
    transition: all 0.3s ease-in-out;
    font-size: 24px;
    height: 50px;
}

.btn-cookie:hover {
    scale: 1.055;
    box-shadow: 0 0 7px#44ce6f;
    background-size: 200% 100%;
}

.cookie_title {
    font-size: 30px;
    line-height: normal;
}

.cookie_desc {
    font-size: 20px;
    line-height: normal;
    color: grey;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bg_footer {
    width: 100%;
    height: 620px;
    background-size: 100% 100%;
    background-image: url("/public/images/layout/footer.png");
    margin-top: -20%;
}

.footer {
    display: grid;
    grid-template-columns: 28% 25% 27% 25%;
    color: #fff;
    font-size: 1.25rem;
    a:hover,
    li:hover {
        color: #25bfb6 !important;
        transition: all 0.15s ease-in-out;
    }
    .footer_column_1_en {
        grid-template-rows: 25% 45% 30%;
    }

    .footer_column_1 {
        grid-template-rows: 27% 40% 38%;
    }

    .footer_column_1,
    .footer_column_1_en {
        display: grid;
        margin-top: 6.5rem;

        .row_1 {
            margin-top: 3rem;
        }

        .row_2 {
            margin-top: 1rem;
        }
    }

    .footer_column_2 {
        margin-top: 12rem;
        margin-left: 2rem;
        font-size: 1.25rem;
        color: #fff;
    }

    .footer_column_3,
    .footer_column_4 {
        display: grid;
        grid-template-rows: 47% 53%;
    }

    .footer_column_3 {
        margin-top: 16rem;
        margin-left: 2rem;
    }

    .footer_column_4 {
        margin-top: 16rem;
    }
}

.web_container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1140px;
}

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;

    .dropdown_content {
        pointer-events: none;
        position: absolute;
        background-color: #fff;
        box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.09);
        width: 190px;
        padding: 0 25px;
        z-index: 1;
        transition: all 0.3s ease;
        opacity: 0;
        p {
            margin-block: 10px;
        }
    }

    p:hover {
        background: linear-gradient(135deg, #25bfb6, #32d0a7, #3ddf9a, #41e596);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.dropdown:hover .dropdown_content {
    display: block;
    opacity: 1;
    pointer-events: all;
}
@media (max-width: 1200px) {
    .web_container {
        max-width: 960px;
    }

    .header {
        .header_logo {
            margin-right: 120px !important;
        }

        .header_link {
            gap: 30px !important;
        }

        .header_lang {
            margin-left: 120px !important;
        }
    }
    .footer {
        .footer_column_4 {
            display: grid;
            grid-template-rows: 55% 45%;
        }
    }
}

@media (max-width: 992px) {
    .web_container {
        max-width: 720px;
    }

    .header_m {
        display: block !important;
        z-index: 999 !important;
    }

    .header_hamburger {
        display: block;
        margin-top: auto;
        margin-bottom: auto;
        padding-right: 5%;
    }

    .header {
        .header_item {
            justify-content: space-between;

            .header_logo {
                margin-left: 5%;
            }

            .header_link {
                display: none;
            }

            .header_lang {
                display: none;
            }
        }
    }

    .bg_footer {
        min-height: 725px;
        background-image: url("/public/images/layout/footer_mb.png");
    }

    .footer {
        height: 725px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;

        .footer_column_1_en,
        .footer_column_1,
        .footer_column_2,
        .footer_column_3,
        .footer_column_4 {
            width: 45%;
        }
        .footer_column_1,
        .footer_column_1_en {
            margin-top: 0;
        }

        .footer_column_1_en {
            grid-template-rows: 27% 48% 25%;
        }

        .footer_column_2,
        .footer_column_3,
        .footer_column_4 {
            margin-left: 0rem;
            margin-top: 2rem;
        }

        .footer_column_4 {
            grid-template-rows: 45% 55%;
        }
    }
}

@media (max-width: 768px) {
    .web_container {
        max-width: 540px;
    }
    .footer {
        grid-template-columns: 50% 50%;
        .footer_column_1_en {
            width: 57%;
            grid-template-rows: 25% 55% 20%;
            .row_2 {
                br {
                    display: none;
                }
            }
        }

        .footer_column_1,
        .footer_column_2,
        .footer_column_3,
        .footer_column_4 {
            width: auto;
        }
    }
    /* .header {
        .header_logo {
            margin-right: 80px;
        }

        .header_link {
            gap: 30px;
        }

        .header_lang {
            margin-left: 80px;
        }
    } */
    .body_cookie {
        flex-direction: column;
    }
    .cookie_title {
        font-size: 24px;
    }
    .cookie_desc {
        font-size: 18px;
    }

    .btn-cookie {
        height: 35px;
        font-size: 18px;
        margin-top: 5px;
        width: 100%;
    }
}

@media (max-width: 660px) {
    .bg_footer {
        height: 1250px;
    }

    .footer {
        height: 1250px;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: space-around;

        .footer_column_1_en {
            width: 290px;
            grid-template-rows: 20% 45% 35%;
        }
        .footer_column_1,
        .footer_column_1_en {
            margin-top: 2rem;

            .row_1,
            .row_2 {
                margin-top: 0;
            }

            .row_3 {
                margin-top: 2rem;
            }
        }

        .footer_column_2 {
            margin-top: 2rem;
        }

        .footer_column_3,
        .footer_column_4 {
            margin-left: 0;
            margin-top: 10px;
        }

        .footer_column_4 {
            img {
                margin-top: 0;
                margin-bottom: 2rem;
            }
        }
    }
}

.line_button {
    border-radius: 18px;
    position: fixed;
    cursor: pointer;
    bottom: 95px;
    right: 25px;
    color: #fff;
    background-color: #44ce6f;
    z-index: 1;
    /* display: none; */
    width: 60px;
    text-align: center;
    height: 60px;
    /*padding: 10px;*/
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px 0px;
    border-radius: 50px;
    line-height: 46px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .line_button i{
    font-size: 40px;
  }
  .line_button:hover {
    color: #ffffff;
    background: #02b603;
  }
  .div_line{
      animation-duration: 200ms;
      animation-name: fb_bounce_in_v2;
      background-color: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .15);
      display: flex;
      padding: 20px;
      /*z-index: 1050;*/
      z-index: 9999;
      overflow: hidden;
      outline: 0;
      max-width: 352px;
      position: fixed;
      cursor: pointer;
      bottom: 166px;
      right: 35px;
  }
  .go-top {
    position: fixed;
    cursor: pointer;
    bottom: 160px;
    right: 25px;
    color: #ffffff;
    /*background-color: #44ce6f;*/
    background: linear-gradient(135deg, #25bfb6 0%, #41e596 100%);
    z-index: 1;
    display: none;
    width: 60px;
    text-align: center;
    height: 60px;
    border-radius: 50px;
    line-height: 46px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .go-top svg {
    margin-bottom:-8px !important;
  }
  
  
  .go-top:hover {
    color: #ffffff;
    /*background: #44ce6f;*/
    background: linear-gradient(135deg, #25bfb6 0%, #41e596 100%);
  }