
/*__________________________Header__________________________*/
/*header pc*/
.header {
    position: absolute;
    z-index: 1000;
    width: 100%;
    height: calc(100vh - 70px);
    pointer-events: none;
}
.header .container {
    position: sticky;
    top: 10px;
}
.header .header_background {
    background-color: #ffffff8a;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: auto;
    border-radius: 50px;
    margin-top: 15px;
    padding: 14px;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header:hover .header_background {
    background-color: rgba(255, 255, 255, 0.69);
}

/* header pc */
.header .header_pc {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header .header_pc .header_pc_logo {

}
.header .header_pc .header_pc_logo a {
    display: block;
}
.header .header_pc .header_pc_logo a img {
    margin-left: 8px;
    display: block;
    width: 150px;
}
.header .header_pc .header_pc_nav {

}
.header .header_pc .header_pc_nav ul {
    padding: 0;
    margin: 0;
}
.header .header_pc .header_pc_nav ul li {
    display: inline-block;
}
.header .header_pc .header_pc_nav ul li a {
    color: var(--secondary-color);
    padding: 8px 12px;
}
.header .header_pc .header_pc_buttons {
    background-color: var(--main-color);
    border-radius: 50px;
    padding: 10px;
}
.header .header_pc .header_pc_buttons a {
    color: #fff;
}
.header .header_pc .header_pc_buttons a img {
    margin-right: 8px;
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    padding: 4px;
    width: 30px;
}
.header .header_pc .header_pc_buttons a span {
    display: inline-block;
    font-size: 14px;
}
.header .header_pc .header_pc_nav .sub_menu {
    background-color: #ffffffeb;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #eee;
    border-radius: 30px;
    position: absolute;
    padding: 30px 25px;
    min-height: 340px;
    right: 0;
    left: 0;
    gap: 50px;
    display: flex;
    flex-direction: row;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;

    transition-delay: 0.2s;

    transform: translateY(120px);
    pointer-events: none;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
}
.header .header_pc .header_pc_nav li.active .sub_menu,
.header .header_pc .header_pc_nav li:hover .sub_menu {
    transform: translateY(0);
    visibility: visible;
    margin: 35px 0 0 0;
    z-index: 1;
    opacity: 1;

    pointer-events: auto; /* وقتی باز شد، دوباره فعال میشه */
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_text {
    background-color: #fff;
    border-radius: 14px;
    display: block;
    padding: 12px;
    flex: 1;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_text p {
    color: var(--secondary-text-color);
    text-align: justify;
    line-height: 1.7;
    font-size: 0.9rem;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 2;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li {
    padding-right: 20px;
    display: block;
    width: 50%;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li a {
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-size: 1.05rem;
    padding: 10px 12px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li.active a {
    color: var(--main-color);
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li a:before {
    content: "";
    background: url(../images/svg/check-2.svg) no-repeat center center;
    background-size: cover;
    display: inline-block;
    margin-bottom: -4px;
    margin-right: 6px;
    filter: brightness(0.1);
    -webkit-filter: brightness(0.1);
    opacity: 0.7;
    height: 22px;
    width: 22px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li.active a:before {
    margin-right: 14px;
    filter: brightness(1);
    -webkit-filter: brightness(1);
}
/* همه sub_menu_two ها بسته باشن */
.sub_menu_two {
    display: none;
}

/* فقط اولین آیتم پیش‌فرض باز باشه */
.sub_menu_nav li:first-child .sub_menu_two {
    display: block;
}

/* وقتی روی هر li هاور کردی فقط همون باز بشه */
.sub_menu_nav li:hover .sub_menu_two {
    display: block !important;
}

/* وقتی روی کل منو هاور شد، حالت پیشفرض اولی بسته بشه */
.sub_menu_nav:hover li:first-child .sub_menu_two {
    display: none;
}

.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li .sub_menu_two {
    scrollbar-width: none;
    border: 1px solid #ddd;
    border-radius: 18px;
    position: absolute;
    overflow: scroll;
    padding: 10px 0;
    height: 100%;
    width: 50%;
    left: 50%;
    top: 0;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li .sub_menu_two a {
    display: block;
    color: var(--secondary-text-color);
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li .sub_menu_two a:hover {
    color: var(--main-color);
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li.active .sub_menu_two a:before {
    margin-right: 6px;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_nav li .sub_menu_two a:before {

}

.header .header_pc .header_pc_nav .sub_menu .sub_menu_contact {
    flex: 1;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_contact img {
    max-height: 200px;
    border-radius: 14px;
    object-fit: cover;
    width: 100%;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_contact span {
    color: var(--secondary-text-color);
    font-size: 1.1rem;
    margin-top: 12px;
    display: block;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_contact a {
    color: var(--secondary-text-color);
    font-size: 1rem;
    padding: 0;
}
.header .header_pc .header_pc_nav .sub_menu .sub_menu_contact a:hover {
    color: var(--main-color);
}









/* header mobile */
.header .header_background {

}
.header .header_background + .header_mobile {
    border-radius: 24px;
}
.header .header_mobile {

}

/* header mobile span */
.header .header_mobile_span {
    margin-top: 7px;
    float: right;
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header .active .header_mobile_span {
    margin-top: 10px;
}
.header .header_mobile_span span {
    background: var(--secondary-color);
    transform: rotate(0) translateY(0);
    border-radius: 12px;
    margin-bottom: 5px;
    height: 3px;
    width: 30px;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header .active .header_mobile_span span {
    background: var(--main-color);
}
.header .active .header_mobile_span span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}
.header .active .header_mobile_span span:nth-child(2) {
    opacity: 0;
    height: 0;
    margin: 0;
}
.header .active .header_mobile_span span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

/* header mobile logo */
.header .header_mobile_logo {
    width: 140px;
}
.header .header_mobile_logo a {
    display: block;
}
.header .header_mobile_logo a img {
    display: block;
    width: 100%;
}

/* header mobile nav menu */
.header .header_mobile_menu {
    background-color: #ffffffd6;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #eee;
    border-radius: 24px;
    position: fixed;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px;
    overflow-y: auto;

    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    transform: scale(0.1);
    visibility: hidden;
    margin-top: -100vh;
    z-index: -1;
    opacity: 0;

}

/* فعال شدن */
.header .header_mobile.active .header_mobile_menu {
    transform: scale(1);
    visibility: visible;
    margin-top: 20px;
    z-index: 9999;
    opacity: 1;
}

.header .header_mobile .menu_navigation ul {
    list-style: none;
    padding: 0;
    margin: 5px;
}
.header .header_mobile .menu_navigation ul li {
    border-bottom: 1px solid #eee;
    position: relative;
}
.header .header_mobile .menu_navigation ul li a {
    padding: 12px 5px;
    font-size: 1rem;
    display: block;
    color: var(--secondary-color);
}
.header .header_mobile .menu_navigation ul li a:hover {
    color: var(--main-color);
}

.header .header_mobile .toggle_submenu,
.header .header_mobile .toggle_submenu_two {
    position: absolute;
    right: 10px;
    top: 14px;
    width: 16px;
    height: 16px;
    background: url('../images/svg/top.svg') no-repeat center;
    background-size: contain;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header .header_mobile.active .toggle_submenu,
.header .header_mobile.active .toggle_submenu_two {
    transform: rotate(180deg);
}

.header .header_mobile .submenu,
.header .header_mobile .submenu_two {
    border-left: 1px solid #777;
    display: none;
    padding-right: 10px !important;
    padding-left: 10px !important;
}
.header .header_mobile .submenu.active,
.header .header_mobile .submenu_two.active {
    display: block;
}







/*__________________________End Header__________________________*/




/*__________________________General Style__________________________*/

.category {
    min-height: 90vh;
}
.single {
    min-height: 90vh;
}

.hero_section {
    display: block;
    height: calc(100vh + 10px);
    position: relative;
    z-index: -1;
}
.hero_section:after {
    content: '';
    background-color: var(--background-color);
    border-radius: 50px 50px 0 0;
    position: absolute;
    height: 71px;
    right: 0;
    left: 0;
    bottom: 0;
}
.hero_section .hero_section_image {
    height: 100%;
    width: 100%;
}
.hero_section .hero_section_image .hero_section_cover {
    background: linear-gradient(60deg, #000000a8, #00000029);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.hero_section .hero_section_image .hero_section_cover .hero_section_content {
    max-width: 500px;
    height: 100%;
    color: #fff;
    gap: 20px;
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    transition-delay: 0.4s;
}
.hero_section .hero_section_image .hero_section_cover .hero_section_content h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    color: #fff;
    text-shadow: 3px 5px #2392c560;
}
.hero_section .hero_section_image .hero_section_cover .hero_section_content p {
    font-size: 1.1rem;
    color: #eee;
    margin: 0;
}
.hero_section .hero_section_image .hero_section_cover .hero_section_content a {
    color: #eee;
}
.hero_section .hero_section_image .hero_section_cover .hero_section_content a:hover {
    color: var(--main-color);
}
.hero_section .hero_section_image .hero_section_cover .hero_section_content .separator {
    margin: 0 7px;
    /*color: var(--main-color);*/
}

.filter_box {
    position: fixed;
    background-color: #00000042;
    backdrop-filter: blur(50px);
    pointer-events: none;
    opacity: 0;
    bottom: -50px;
    right: 0;
    left: 0;
    top: 0;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.home_blog {
    background-color: var(--background-color);
    position: relative;
    padding: 60px 0;
    z-index: 10;
}

.blog_title {
    margin-bottom: 25px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.blog_title span {
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    margin: 0;
    color: var(--secondary-text-color);
}
.blog_title h2 {
    font-weight: 500;
    font-size: 2rem;
    color: var(--text-color);
}

.blog {
    background-color: var(--background-color);
    position: relative;
    padding: 60px 0;
    z-index: 10;
}
.blog_archive {
    gap: 30px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.blog_card {
    background-color:  hsl(from var(--secondary-color) h s l / 20%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    width: calc(33.3% - 20px);
}
.blog_card a {
    display: block;
    height: 100%;
    width: 100%;
}
.blog_card a:after {
    content: '';
    background: linear-gradient(0deg, var(--secondary-color), transparent);
    position: absolute;
    height: 50%;
    z-index: 1;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.3;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.blog_card a img {
    object-fit: cover;
    display: block;
    height: 100%;
    width: 100%;
}


.blog_card a .blog_card_content {
    transform: scale(1);
    position: absolute;
    padding: 15px;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.blog_card:hover a .blog_card_content {
    transform: scale(0.92);
    bottom: 10px;
}


.blog_card a .blog_card_content:before {
    content: '';
    background-color: hsl(from var(--background-color) h s l / 70%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    position: absolute;
    bottom: -150px;
    z-index: -1;
    right: -50px;
    left: -50px;
    top: 150px;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.blog_card:hover a .blog_card_content:before {
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}


.blog_card a .blog_card_content span {
    background-color: hsl(from var(--main-color) h s l / 80%);
    color: var(--background-color);
    border-radius: 50px;
    font-size: 0.8rem;
    padding: 5px 12px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.blog_card:hover a .blog_card_content span {

}


.blog_card a .blog_card_content h3 {
    color: var(--background-color);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.blog_card:hover a .blog_card_content h3 {
    color: var(--text-color);
}


.blog_card a .blog_card_content p {
    color: var(--background-color);
    margin-bottom: -10px;
    visibility: hidden;
    line-height: 0;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.blog_card:hover a .blog_card_content p {
    color: var(--text-color);
    visibility: visible;
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 1;
    height: auto;
}
.btn-1 {
    background-color: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid hsl(from var(--secondary-color) h s l / 35%);
    color: var(--secondary-color);
    padding: 4px 4px 4px 15px;
    border-radius: 50px;
    position: relative;
    min-width: 100px;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
    gap: 20px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-1:hover {
    border: 2px solid var(--background-color);
    color: var(--background-color);
}
.btn-1:before {
    content: '';
    background: url(../images/svg/arrow-top-right-.svg) no-repeat center center  var(--main-color);
    background-size: 1.1rem;
    display: inline-block;
    border-radius: 50%;
    padding: 10px;
    width: 2.2rem;
    height: 2.2rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-1:hover:before {
    background-size: 1.3rem;
}
.btn-1:after {
    content: '';
    background-color: var(--main-color);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    height: 70%;
    width: 0;
    right: 15px;


    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.btn-1:hover:after {
    content: '';
    background-color: var(--main-color);
    border-radius: 50px;
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
}


.products_archive {
    background-color: var(--background-color);
    padding: 30px 0 30px 0;
    position: relative;
    z-index: 10;
}
.product_card {

}
.product_card a {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.7rem;
    gap: 25px;
    display: flex;
    flex-direction: column;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product_card a:hover {
    border: 1px solid var(--text-color);
}
.product_card a .product_card_img {
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 100%;
    filter: grayscale(0);

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.product_card a:hover .product_card_img {
    filter: grayscale(0.9);
}
.product_card a .product_card_img:before {
    content: '';
    background: url("../images/svg/arrow-top-right-.svg") no-repeat center var(--main-color);
    background-size: contain;
    border: 12px solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    display: block;
    z-index: 10000;
    height: 50px;
    width: 50px;
    bottom: 0;
    right: 0;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.product_card a:hover .product_card_img:before {
    background-color: var(--text-color);
    border: 12px solid var(--text-color);

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product_card a .product_card_img img {
    background-color: #eee;
    object-fit: cover;
    display: block;
    height: 100%;
    width: 100%;
}
.inverted-radius {
    --r: 20px; /* the radius */
    --s: 30px; /* size of inner curve */
    --x: 10px; /* horizontal offset (no percentane) */
    --y: 10px; /* vertical offset (no percentage) */

    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background: var(--background-color);
    border-radius: var(--r);
    --_m:/calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%);
    --_g:conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)),#0000 25%,#000 0);
    --_d:(var(--s) + var(--r));
    mask:
            calc(100% - var(--_d) - var(--x)) 100% var(--_m),
            100% calc(100% - var(--_d) - var(--y)) var(--_m),
            radial-gradient(var(--s) at 100% 100%,#0000 99%,#000 calc(100% + 1px))
            calc(-1*var(--r) - var(--x)) calc(-1*var(--r) - var(--y)),
            var(--_g) calc(-1*var(--_d) - var(--x)) 0,
            var(--_g) 0 calc(-1*var(--_d) - var(--y));
    mask-repeat: no-repeat;
}

.product_card a .product_card_text {
    display: block;
}
.product_card a .product_card_text h2 {
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1.7rem;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product_card a:hover .product_card_text h2 {
    color: var(--main-color);
}
.product_card a .product_card_text p {
    color: var(--secondary-text-color);
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 1rem;
}




/*__________________________End General Style__________________________*/







/*__________________________Footer__________________________*/
.footer {
    background: url("../images/footer.jpg") no-repeat center #eee;
    padding: 170px 0 40px 0;
    background-size: cover;
    position: relative;
    display: block;
    z-index: 10;
    width: 100%;
}
.footer:before {
    content: '';
    background-color: var(--background-color);
    border-radius: 0 0 50px 50px;
    position: absolute;
    height: 70px;
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
}
.footer:after {
    content: '';
    background-color: var(--secondary-color);
    position: absolute;
    z-index: -2;
    width: 100%;
    opacity: 0.5;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}

.footer .top {
    transform: scale(0);
    position: fixed;
    display: block;
    float: right;
    right: 15px;
    bottom: 15px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.footer .top a {
    border: 1px solid  var(--background-color);
    background-color: var(--main-color);
    transform: translateY(0);
    border-radius: 50%;
    display: block;
    padding: 13px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.footer .top a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-4px);
}
.footer .top a img {
    filter: brightness(0) invert(1);
    object-fit: contain;
    display: block;
    height: 18px;
    width: 18px;
}

.footer .footer_typography {
    margin-bottom: -6rem;
    position: relative;
    text-align: center;
    opacity: 0.8;
    z-index: -1;
}
.footer .footer_typography span {
    background: linear-gradient(to bottom, #FFFFFF, #FFFFFF00);
    font-size: clamp(80px, 20vw, 380px) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    white-space: nowrap;
    font-weight: 600;
    line-height: 1;
}
.footer .footer_content {
    background-color: var(--background-color);
    border-radius: 20px;
    padding: 40px;
}
.footer .footer_content .footer_logo {
    border-right: 1px solid #ddd;
    padding: 20px;
    gap: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer .footer_content .footer_logo a {
    display: block;
}
.footer .footer_content .footer_logo img {
    max-width: 240px;
    width: 100%;
}
.footer .footer_content .footer_logo p {
    color: var(--secondary-text-color);
    font-size: 1.05rem;
    margin: 0;
}
.footer .footer_content .footer_list {
    border-right: 1px solid #ddd;
    padding: 20px;
    gap: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}
.footer .footer_content .footer_list ul {
    padding: 0;
    margin: 0;
}
.footer .footer_content .footer_list ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    display: block;
}
.footer .footer_content .footer_list ul li a {
    color: var(--secondary-text-color);
    display: block;
    padding: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.footer .footer_content .footer_list ul li a:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.footer .footer_content .footer_contact {
    padding: 20px;
    gap: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}
.footer .footer_content .footer_contact .contact_buttons {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer .footer_content .footer_contact .contact_buttons a {
    border-bottom: 1px solid var(--main-color);
    line-height: 1.3;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-color);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.footer .footer_content .footer_contact .contact_buttons a:hover {
    border-bottom: 1px solid var(--text-color);
    color: var(--main-color);
}
.footer .footer_content .footer_contact ul {
    padding: 0;
    margin: 0;
}
.footer .footer_content .footer_contact ul li {
    display: inline-block;
}
.footer .footer_content .footer_contact ul li a {
    color: var(--secondary-text-color);
    position: relative;
    font-size: 1rem;
    padding: 4px 7px;
}
.footer .footer_content .footer_contact ul li a:hover {
    color: var(--main-color);
}
.footer .footer_content .footer_contact ul li a:after {
    content: '';
    background-color: var(--main-color);
    border-radius: 50%;
    position: absolute;
    height: 6px;
    width: 6px;
    right: -6px;
    top: 11px;
}
.footer .footer_content .footer_contact ul li:last-child a:after {
    display: none;
}
.footer .footer_content .footer_copyright {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding-top: 40px;
    text-align: center;
}
.footer .footer_content .footer_copyright p {
    color: var(--secondary-text-color);
    letter-spacing: 1px;
    font-size: 1.05rem;
    margin: 0;
}
.footer .footer_content .footer_copyright p a {
    color: var(--text-color);
    font-weight: 600;
}
/*__________________________End Footer__________________________*/
