/*----------------------------------------------------

1. Global Area 
2. Header Section

******* HOME PAGE 1 *******



=====================================================================*/

/*=========
Font load
===========*/

:root {
    --lg-body-color: #6D6B6B;
    --lg-hd-color: #0F313A;
    --lg-heading: "Space Grotesk", sans-serif;
    --lg-body-font: "DM Sans", sans-serif;
    --lg-prime-c: #DC1E2E;
    --lg-prime-c2: #B41522;
    --cube-1: cubic-bezier(0.55, 0.085, 0, 0.99);
    --cube-2: all .25s cubic-bezier(.645, .045, .355, 1);
    --cube-3: cubic-bezier(0.25, 1, 0.5, 1);
}

@-webkit-keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(500px);
        transform: translateY(500px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(500px);
        transform: translateY(500px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger {
    width: 72px;
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    border: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--lg-prime-c);
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px) {
    .lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger {
        width: 50px;
    }
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger button {
    padding: 0;
    width: 30px;
    border: none;
    height: 30px;
    background-color: transparent;
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger span {
    width: 5px;
    height: 5px;
    float: left;
    margin: 2px;
    position: relative;
    border-radius: 50px;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: #fff;
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover {
    background-color: var(--lg-prime-c2);
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover span {
    background: #000;
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover span:nth-child(1) {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover span:nth-child(2) {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover span:nth-child(3) {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover span:nth-child(6) {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover span:nth-child(9) {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover span:nth-child(8) {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover span:nth-child(7) {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
}

.lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger:hover span:nth-child(4) {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    1% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    3% {
        -webkit-transform: rotate(-28deg);
        transform: rotate(-28deg);
    }
    5% {
        -webkit-transform: rotate(34deg);
        transform: rotate(34deg);
    }
    7% {
        -webkit-transform: rotate(-32deg);
        transform: rotate(-32deg);
    }
    9% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    11% {
        -webkit-transform: rotate(-28deg);
        transform: rotate(-28deg);
    }
    13% {
        -webkit-transform: rotate(26deg);
        transform: rotate(26deg);
    }
    15% {
        -webkit-transform: rotate(-24deg);
        transform: rotate(-24deg);
    }
    17% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg);
    }
    19% {
        -webkit-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }
    21% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg);
    }
    23% {
        -webkit-transform: rotate(-16deg);
        transform: rotate(-16deg);
    }
    25% {
        -webkit-transform: rotate(14deg);
        transform: rotate(14deg);
    }
    27% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    29% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    31% {
        -webkit-transform: rotate(-8deg);
        transform: rotate(-8deg);
    }
    33% {
        -webkit-transform: rotate(6deg);
        transform: rotate(6deg);
    }
    35% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
    37% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    39% {
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg);
    }
    41% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }
    43% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    1% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    3% {
        -webkit-transform: rotate(-28deg);
        transform: rotate(-28deg);
    }
    5% {
        -webkit-transform: rotate(34deg);
        transform: rotate(34deg);
    }
    7% {
        -webkit-transform: rotate(-32deg);
        transform: rotate(-32deg);
    }
    9% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    11% {
        -webkit-transform: rotate(-28deg);
        transform: rotate(-28deg);
    }
    13% {
        -webkit-transform: rotate(26deg);
        transform: rotate(26deg);
    }
    15% {
        -webkit-transform: rotate(-24deg);
        transform: rotate(-24deg);
    }
    17% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg);
    }
    19% {
        -webkit-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }
    21% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg);
    }
    23% {
        -webkit-transform: rotate(-16deg);
        transform: rotate(-16deg);
    }
    25% {
        -webkit-transform: rotate(14deg);
        transform: rotate(14deg);
    }
    27% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg);
    }
    29% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    31% {
        -webkit-transform: rotate(-8deg);
        transform: rotate(-8deg);
    }
    33% {
        -webkit-transform: rotate(6deg);
        transform: rotate(6deg);
    }
    35% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
    37% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    39% {
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg);
    }
    41% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }
    43% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

.lg-header-section {
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    position: absolute;
}

.lg-header-section .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.lg-header-section .lg-mobile-menu-btn {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-header-section .lg-mobile-menu-btn {
        display: block;
    }
}

.lg-header-section .lg-mobile-menu-btn button {
    padding: 0;
    width: 30px;
    height: 18px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.lg-header-section .lg-mobile-menu-btn button span {
    width: 19px;
    height: 2px;
    display: block;
    background-color: #fff;
}

.lg-header-section .lg-mobile-menu-btn button span:nth-child(even) {
    width: 29px;
}

.lg-header-section .dropdown {
    position: relative;
    padding-right: 17px;
}

.lg-header-section .dropdown:after {
    top: 3px;
    z-index: 2;
    color: #fff;
    right: 0px;
    content: "+";
    font-size: 14px;
    font-weight: 900;
    position: absolute;
    color: var(--lg-prime-c2);
    font-family: "Font Awesome 5 free";
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.lg-header-section .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    clip: inherit;
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    transform: scaleY(1);
}

.lg-header-section .dropdown:hover:after {
    color: var(--lg-prime-c);
}

.lg-header-section .dropdown-menu {
    left: 0;
    top: 50px;
    z-index: 100;
    margin: 0px;
    padding: 4px 4px 15px;
    height: auto;
    min-width: 270px;
    display: block;
    border: none;
    border-radius: 0;
    position: absolute;
    opacity: 0;
    background: #fff;
    border-radius: 5px;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    text-align: left;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: -8px 8px 24px 0px rgba(0, 0, 0, 0.08);
    box-shadow: -8px 8px 24px 0px rgba(0, 0, 0, 0.08);
}

.lg-header-section .dropdown-menu .dropdown {
    padding-right: 0;
}

.lg-header-section .dropdown-menu .dropdown:after {
    display: none;
}

.lg-header-section .dropdown-menu .dropdown-menu {
    top: 0px !important;
    left: 100%;
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
    -webkit-transform: scaleY(0) !important;
    transform: scaleY(0) !important;
}

.lg-header-section .dropdown-menu li {
    display: block;
    margin: 5px 0px !important;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.lg-header-section .dropdown-menu li:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
}

.lg-header-section .dropdown-menu li:last-child a {
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.lg-header-section .dropdown-menu li:before {
    display: none;
}

.lg-header-section .dropdown-menu li:after {
    color: #fff;
    right: 15px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.lg-header-section .dropdown-menu li.dropdown:hover:after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.lg-header-section .dropdown-menu li.dropdown:hover .dropdown-menu {
    top: 0;
    -webkit-transform: scaleY(1) !important;
    transform: scaleY(1) !important;
}

.lg-header-section .dropdown-menu li.dropdown:before {
    color: #fff;
    top: 10px;
    right: 15px;
}

.lg-header-section .dropdown-menu li:hover:before {
    color: #fff !important;
}

.lg-header-section .dropdown-menu a {
    width: 100%;
    line-height: 1;
    color: #000 !important;
    position: relative;
    border-radius: 0 !important;
    border-bottom: 1px solid #d7d7d7;
    display: inline-block !important;
    padding: 12px 0px 12px 18px !important;
    font-weight: 500 !important;
    font-size: 16px !important;
}

.lg-header-section .dropdown-menu a:before {
    display: none;
}

.lg-header-section .dropdown-menu a:after {
    display: none;
}

.lg-header-section .dropdown-menu a:hover,
.lg-header-section .dropdown-menu a.active {
    color: var(--lg-prime-c) !important;
    padding-left: 30px !important;
}

.lg-header-section .dropdown-menu a:hover:after,
.lg-header-section .dropdown-menu a.active:after {
    width: 100%;
}

.lg-header-section .dropdown-menu a:hover:before,
.lg-header-section .dropdown-menu a.active:before {
    opacity: 1;
    width: 5px !important;
    visibility: visible;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}

.lg-header-section .lg-header-top {
    padding: 0px 15px;
    background-color: var(--lg-hd-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-header-section .lg-header-top {
        display: none;
    }
}

.lg-header-section .lg-header-top .hd-top-wrap {
    margin: 0 auto;
    max-width: 1400px;
}

.lg-header-section .lg-header-top .hd-top-wrap .top-cta a {
    font-size: 14px;
    padding: 7px 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-header-section .lg-header-top .hd-top-wrap .top-cta a {
        padding: 7px 5px;
    }
}

.lg-header-section .lg-header-top .hd-top-wrap .top-cta a i {
    color: rgb(255, 255, 255);
    margin-right: 8px;
}

.lg-header-section .lg-header-top .hd-top-wrap .top-cta a:before {
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.24);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-header-section .lg-header-top .hd-top-wrap .top-cta a:before {
        display: none;
    }
}

.lg-header-section .lg-header-top .top-action {
    gap: 20px;
}

.lg-header-section .lg-header-top .top-action .hd-search {
    max-width: 195px;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.lg-header-section .lg-header-top .top-action .hd-search input {
    width: 100%;
    height: 36px;
    border: none;
    padding-left: 45px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.48);
}

.lg-header-section .lg-header-top .top-action .hd-search input:placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.lg-header-section .lg-header-top .top-action .hd-search button {
    top: 9px;
    left: 18px;
    padding: 0;
    border: none;
    font-size: 14px;
    position: absolute;
    color: var(--lg-prime-c2);
    background-color: transparent;
}

.lg-header-section .lg-header-top .top-action .lng-select {
    padding: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 6px;
    background-color: #fff;
}

.lg-header-section .lg-header-top .top-action .lng-select a {
    font-size: 14px;
    font-weight: 500;
    padding: 0px 8px;
    border-radius: 4px;
}

.lg-header-section .lg-header-top .top-action .lng-select a:is(.active) {
    color: #fff;
    background-color: var(--lg-prime-c);
}

.lg-header-section .lg-header-navigation {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-header-section .lg-header-navigation {
        padding-right: 15px;
    }
}

.lg-header-section .lg-header-navigation .header-nav-wrap {
    margin: 0 auto;
    max-width: 1920px;
}

.lg-header-section .lg-header-navigation .header-nav-wrap .brand-logo {
    width: 100%;
    height: 72px;
    max-width: 258px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
}

@media (max-width: 480px) {
    .lg-header-section .lg-header-navigation .header-nav-wrap .brand-logo {
        padding: 20px;
        height: 60px;
        max-width: 150px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .lg-header-section .lg-header-navigation .header-nav-wrap .brand-logo {
        padding: 20px;
        max-width: 180px;
    }
}

.lg-header-section .lg-header-navigation .logo-nav {
    width: 100%;
    max-width: 1000px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .lg-header-section .lg-header-navigation .logo-nav {
        max-width: 885px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .lg-header-section .lg-header-navigation .logo-nav {
        max-width: 750px;
    }
}

.lg-header-section .lg-header-navigation .main-navigation {
    width: 100%;
    max-width: 750px;
    padding-left: 40px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .lg-header-section .lg-header-navigation .main-navigation {
        max-width: 650px;
        padding-left: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-header-section .lg-header-navigation .main-navigation {
        display: none;
    }
}

.lg-header-section .lg-header-navigation .main-navigation li {
    margin: 0px 20px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-header-section .lg-header-navigation .main-navigation li {
        margin: 0px 10px;
    }
}

.lg-header-section .lg-header-navigation .main-navigation li a {
    color: #fff;
    font-weight: 500;
    display: inline;
    padding-bottom: 30px;
}

.lg-header-section .lg-header-navigation .main-navigation li:hover a {
    color: var(--lg-prime-c);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-header-section .lg-header-navigation .cta-action {
        display: none !important;
    }
}

.lg-header-section .lg-header-navigation .cta-action .cta-info {
    gap: 12px;
    height: 72px;
    padding-right: 40px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .lg-header-section .lg-header-navigation .cta-action .cta-info {
        padding-right: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-header-section .lg-header-navigation .cta-action .cta-info {
        display: none !important;
    }
}

.lg-header-section .lg-header-navigation .cta-action .cta-info .item-icon {
    width: 48px;
    height: 48px;
    color: #FFFFFF;
    border-radius: 100%;
    background-color: #27AAE2;
    -webkit-animation: ring 4s 0.7s ease-in-out infinite;
    animation: ring 4s 0.7s ease-in-out infinite;
}

.lg-header-section .lg-header-navigation .cta-action .cta-info .item-text span {
    color: #fff;
    opacity: 0.6;
    line-height: 1;
    font-size: 14px;
    display: block;
    font-weight: 500;
}

.lg-header-section .lg-header-navigation .cta-action .cta-info .item-text a {
    color: #fff;
    font-weight: 700;
    font-family: var(--lg-heading);
}

.lg-header-section .lg-header-navigation .cta-action .cta_btn {
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 40px;
    color: var(--lg-prime-c2);
    font-family: var(--lg-heading);
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px) {
    .lg-header-section .lg-header-navigation .cta-action .cta_btn {
        padding: 10px 20px;
    }
}

.lg-header-section .lg-header-navigation .cta-action .cta_btn:hover {
    background-color: var(--lg-hd-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px) {
    .lg-header-section .lg-header-navigation .cta-action .offcanvas-trigger {
        display: none;
    }
}

/*// Mobile Menu style*/

/*----------------------------------------------------*/

.mobile_logo {
    top: 10px;
    left: 15px;
    display: none;
    position: absolute;
}

.mobile_menu_content {
    top: 0px;
    bottom: 0;
    left: -350px;
    height: 100vh;
    z-index: 101;
    position: fixed;
    width: 310px;
    overflow-y: scroll;
    background-color: #0f0d0d;
    padding: 20px 35px 35px 35px;
    -webkit-box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
    box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.mobile_menu_content .mobile-main-navigation {
    width: 100%;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav {
    width: 100%;
}

.mobile_menu_content .dropdown:after {
    display: none;
}

.mobile_menu_content .navbar-nav .dropdown-menu {
    position: static !important;
    -webkit-transform: none !important;
    transform: none !important;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav li {
    width: 100%;
    display: block;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav li a {
    padding: 0;
    width: 100%;
    color: #fff;
    display: block;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--heading);
    text-transform: uppercase;
    padding: 10px 30px 10px 0;
}

.mobile_menu_content .m-brand-logo {
    width: 120px;
    margin: 50px auto;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_content {
    left: 0px;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}

.mobile_menu_overlay {
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    right: 0%;
    height: 120vh;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.mobile_menu_overlay_on {
    overflow: hidden;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_overlay {
    opacity: 1;
    visibility: visible;
}

.mobile_menu_button {
    right: 0px;
    z-index: 5;
    padding: 0;
    border: none;
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
    line-height: 38px;
    text-align: center;
    background-color: transparent;
}

.mobile_menu_button span {
    width: 30px;
    height: 2px;
    display: block;
    margin-bottom: 5px;
    background-color: #000;
}

.mobile_menu_button span:nth-child(2) {
    width: 25px;
}

.mobile_menu_button span:last-child {
    width: 20px;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px) {
    .mobile_menu_button {
        display: block;
    }
}

.mobile_menu .mobile-main-navigation .navbar-nav li a:after {
    display: none;
}

.mobile_menu .mobile-main-navigation .dropdown>.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu {
    border: none;
    display: none;
    -webkit-transition: none;
    transition: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 5px 0px;
    width: 100%;
    background-color: transparent;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li {
    border: none;
    padding: 0 10px;
    line-height: 1;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li:hover {
    background-color: transparent;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li a {
    color: #fff !important;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li a:hover {
    color: var(--tz-prime-c);
    background-color: transparent;
}

.mobile_menu .dropdown {
    position: relative;
}

.mobile_menu .dropdown .dropdown-btn {
    color: #9397a7;
    position: absolute;
    top: 0px;
    right: 0;
    cursor: pointer;
    width: 35px;
    font-size: 16px;
    height: 32px;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #1c1c1c;
}

.mobile_menu .dropdown .dropdown-btn.toggle-open {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile_menu .mobile_menu_close {
    top: 25px;
    right: 25px;
    cursor: pointer;
    color: #d60606;
    font-size: 20px;
    position: absolute;
}

.mobile_menu .mobile-search-bar {
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 40px;
}

.mobile_menu .mobile-search-bar input {
    color: #fff;
    width: 100%;
    height: 50px;
    border: none;
    font-size: 14px;
    padding-left: 15px;
    border-radius: 5px;
    border-bottom: none;
    background-color: #2d2d2d;
}

.mobile_menu .mobile-search-bar input::-webkit-input-placeholder {
    color: #fff;
    font-size: 14px;
}

.mobile_menu .mobile-search-bar input::-moz-placeholder {
    color: #fff;
    font-size: 14px;
}

.mobile_menu .mobile-search-bar input:-ms-input-placeholder {
    color: #fff;
    font-size: 14px;
}

.mobile_menu .mobile-search-bar input::-ms-input-placeholder {
    color: #fff;
    font-size: 14px;
}

.mobile_menu .mobile-search-bar input::placeholder {
    color: #fff;
    font-size: 14px;
}

.mobile_menu .mobile-search-bar button {
    top: 0;
    right: 0;
    color: #fff;
    padding: 0;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    background-color: var(--tz-prime-c);
}

.mobile_menu .ptx-mobile-header-social {
    margin-top: 40px;
}

.mobile_menu .ptx-mobile-header-social a {
    color: #fff;
    margin: 0px 8px;
    font-size: 15px;
}

.mobile_menu .ptx-mobile-header-social a:hover {
    color: #4400E7;
}

/*// off canvas style*/

/*----------------------------------------------------*/

.sidebar-info-contents {
    position: relative;
}

.sidebar-info-contents .content-inner {
    position: relative;
}

.sidebar-info-contents .content-inner .logo {
    padding-bottom: 20px;
    max-width: 180px;
}

.sidebar-info-contents .content-inner .logo img {
    display: inline-block;
    max-width: 100%;
}

.sidebar-info-contents .content-inner .content-box {
    position: relative;
    margin-top: 50px;
}

.sidebar-info-contents .content-inner h5 {
    color: #fff;
    font-weight: 700;
    margin: 25px 0px 15px;
}

.sidebar-info-contents .content-inner .content-box .text {
    color: #fff;
    margin-bottom: 35px;
}

.sidebar-info-contents .content-inner .social-box {
    position: relative;
    margin-top: 0px;
    padding-left: 0;
    margin-bottom: 30px;
}

.sidebar-info-contents .content-inner .social-box li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.sidebar-info-contents .content-inner .social-box li a {
    position: relative;
    width: 36px;
    height: 36px;
    color: #fff;
    z-index: 1;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar-info-contents .content-inner .social-box li a:hover {
    color: #fff;
    background-color: var(--cg-pr-c3);
}

.close-side-widget,
.close-side-widget:hover {
    color: #fff !important;
    font-size: 24px;
}

.xs-sidebar-group .xs-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    position: fixed;
    pointer-events: none;
}

.xs-sidebar-group .xs-overlay .loader-area {
    height: 100vh;
}

.xs-sidebar-group.info-group .xs-overlay {
    z-index: 10;
}

.xs-sidebar-group .preloader-wrap {
    padding: 0px;
}

.xs-sidebar-group .loader-area {
    height: 100vh;
}

.xs-sidebar-group.info-group.isActive .preloader-wrap .loader-bg {
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transition: 800ms all cubic-bezier(0.77, 0, 0.175, 1);
    transition: 800ms all cubic-bezier(0.77, 0, 0.175, 1);
}

.xs-sidebar-group.info-group .preloader-wrap .loader-bg {
    left: 0;
    width: 0;
    opacity: 0;
    opacity: 0.95;
    height: 100%;
    -webkit-transition: 800ms all cubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 800ms all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 20;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: var(--tz-title-color);
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 40px 30px;
}

.close-side-widget {
    z-index: 2;
    color: #1768dd;
    display: block;
    position: relative;
    font-size: 15px;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sidebar-info-contents .gallery-box li a {
    width: 80px;
    display: block;
    height: 80px;
    margin-bottom: 5px;
    position: relative;
}

.sidebar-info-contents .gallery-box li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sidebar-info-contents .gallery-box li a:before {
    top: 0;
    left: 0;
    width: 0%;
    content: "";
    height: 100%;
    position: absolute;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    background-color: rgb(0, 0, 0);
}

.sidebar-info-contents .gallery-box li a:after {
    left: 0;
    right: 0;
    top: 40%;
    opacity: 0;
    color: #fff;
    font-size: 18px;
    content: "\f066";
    font-weight: 900;
    text-align: center;
    position: absolute;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Font Awesome 5 free";
}

.sidebar-info-contents .gallery-box li a:hover:before {
    width: 100%;
}

.sidebar-info-contents .gallery-box li a:hover:after {
    top: 50%;
    opacity: 1;
}

/*global area*/

/*----------------------------------------------------*/

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: inherit;
    }
}

body {
    margin: 0;
    padding: 0;
    z-index: 1;
    font-size: 18px;
    margin: 0 auto;
    line-height: 1.555;
    overflow-x: hidden;
    color: var(--lg-body-color);
    font-family: var(--lg-body-font);
    background-color: #F1F3F5;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

body .container {
    max-width: 1424px;
}

body .row {
    --bs-gutter-x: 32px;
}

body .mfp-iframe-holder .mfp-close {
    right: 0;
    padding: 0;
    top: -40px;
    width: 40px;
    height: 40px;
    text-align: center;
    background-size: 200%, 1px;
}

body button.mfp-close {
    right: 0;
    padding: 0;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    background-size: 200%, 1px;
}

body:is(.ver_2) .container {
    max-width: 1428px;
}

body:is(.ver_3) .container {
    max-width: 1444px;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    outline: none;
    border-radius: 0px;
    background-size: 200%, 1px;
    background-color: var(--lg-prime-c);
}

.ul-li ul {
    margin: 0;
    padding: 0;
}

.ul-li ul li {
    list-style: none;
    display: inline-block;
}

.ul-li-block ul {
    margin: 0;
    padding: 0;
}

.ul-li-block ul li {
    display: block;
    list-style: none;
}

.over-hidden,
.split-line {
    overflow: hidden;
}

.headline h1,
.headline h2,
.headline h3,
.headline h4,
.headline h5,
.headline h6 {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.25;
    color: var(--lg-hd-color);
    font-family: var(--lg-heading);
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: #fff;
}

#preloader .preloader-logo {
    width: 100%;
    height: 100%;
}

[data-background] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a.active,
select,
select:hover,
select:focus,
select:visited {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
}

a,
span {
    display: inline-block;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-transform: inherit;
    text-decoration: none;
    -webkit-transition: inherit;
    transition: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
}

a:hover,
a:focus {
    text-decoration: none;
}

.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.background_overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.pera-content p {
    margin-bottom: 0;
}

.img-cover {
    width: 100%;
    height: 100%;
}

.img-cover img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
}

.img-cover video {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
}

.splitting.animated .char {
    -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

.splitting .whitespace {
    width: 10px;
}

.href-underline a {
    width: 100%;
    display: inline !important;
    background-position-y: -1px;
    background-repeat: no-repeat;
    background-size: 0 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 2px);
    -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.href-underline a:hover {
    color: inherit;
    background-size: 100% 100%;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.tx-tab-btn .nav-tabs .nav-item.show .nav-link,
.tx-tab-btn .nav-tabs .nav-link.active,
.tx-tab-btn .nav-tabs .nav-link {
    border: none;
    padding-top: 0;
    padding-right: 0;
    border-radius: 0;
    margin-bottom: 0;
    cursor: pointer;
    background-color: transparent;
}

.tx-tab-btn .nav-tabs {
    border: none;
}

.tx-tab-btn .nav {
    display: inherit;
}

.lg-btn {
    display: inline-block;
}

.lg-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: var(--lg-heading);
}

.lg-btn a span {
    color: #fff;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 24px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    background-color: var(--lg-prime-c);
}

.lg-btn a i {
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--lg-prime-c);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.lg-btn a:hover span {
    border-radius: 40px;
}

.lg-btn a:hover i {
    border-radius: 100%;
    -webkit-transform: translateX(5px) rotate(45deg);
    transform: translateX(5px) rotate(45deg);
}

.lg-sec-title .subtitle {
    margin-bottom: 10px;
}

.lg-sec-title .subtitle span {
    color: #111111;
    font-size: 16px;
    border-radius: 6px;
    padding: 2px 20px 0px;
    border: 1px solid var(--lg-prime-c2);
}

.lg-sec-title .sec_title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.166;
    letter-spacing: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lg-sec-title .sec_title {
        font-size: 42px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .lg-sec-title .sec_title {
        font-size: 38px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 575px) {
    .lg-sec-title .sec_title {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .lg-sec-title .sec_title {
        font-size: 30px;
    }
}

@media (max-width: 360px) {
    .lg-sec-title .sec_title {
        font-size: 30px;
    }
}

.lg-sec-title p {
    padding-top: 25px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-105 {
    margin-left: 105px;
}

.ml-110 {
    margin-left: 110px;
}

.ml-115 {
    margin-left: 115px;
}

.ml-120 {
    margin-left: 120px;
}

.ml-125 {
    margin-left: 125px;
}

.ml-130 {
    margin-left: 130px;
}

.ml-135 {
    margin-left: 135px;
}

.ml-140 {
    margin-left: 140px;
}

.ml-145 {
    margin-left: 145px;
}

.ml-150 {
    margin-left: 150px;
}

.ml-155 {
    margin-left: 155px;
}

.ml-160 {
    margin-left: 160px;
}

.ml-165 {
    margin-left: 165px;
}

.ml-170 {
    margin-left: 170px;
}

.ml-175 {
    margin-left: 175px;
}

.ml-180 {
    margin-left: 180px;
}

.ml-185 {
    margin-left: 185px;
}

.ml-190 {
    margin-left: 190px;
}

.ml-195 {
    margin-left: 195px;
}

.ml-200 {
    margin-left: 200px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-105 {
    margin-right: 105px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-115 {
    margin-right: 115px;
}

.mr-120 {
    margin-right: 120px;
}

.mr-125 {
    margin-right: 125px;
}

.mr-130 {
    margin-right: 130px;
}

.mr-135 {
    margin-right: 135px;
}

.mr-140 {
    margin-right: 140px;
}

.mr-145 {
    margin-right: 145px;
}

.mr-150 {
    margin-right: 150px;
}

.mr-155 {
    margin-right: 155px;
}

.mr-160 {
    margin-right: 160px;
}

.mr-165 {
    margin-right: 165px;
}

.mr-170 {
    margin-right: 170px;
}

.mr-175 {
    margin-right: 175px;
}

.mr-180 {
    margin-right: 180px;
}

.mr-185 {
    margin-right: 185px;
}

.mr-190 {
    margin-right: 190px;
}

.mr-195 {
    margin-right: 195px;
}

.mr-200 {
    margin-right: 200px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-105 {
    padding-top: 105px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-125 {
    padding-top: 125px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-135 {
    padding-top: 135px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-145 {
    padding-top: 145px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-155 {
    padding-top: 155px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-165 {
    padding-top: 165px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-175 {
    padding-top: 175px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-185 {
    padding-top: 185px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-195 {
    padding-top: 195px;
}

.pt-200 {
    padding-top: 200px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-105 {
    padding-bottom: 105px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-135 {
    padding-bottom: 135px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-145 {
    padding-bottom: 145px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-155 {
    padding-bottom: 155px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-165 {
    padding-bottom: 165px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-175 {
    padding-bottom: 175px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-185 {
    padding-bottom: 185px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-195 {
    padding-bottom: 195px;
}

.pb-200 {
    padding-bottom: 200px;
}

.pb-205 {
    padding-bottom: 205px;
}

.pb-210 {
    padding-bottom: 210px;
}

.pb-215 {
    padding-bottom: 215px;
}

.pb-220 {
    padding-bottom: 220px;
}

.pb-225 {
    padding-bottom: 225px;
}

.pb-230 {
    padding-bottom: 230px;
}

.pb-235 {
    padding-bottom: 235px;
}

.pb-240 {
    padding-bottom: 240px;
}

.pb-245 {
    padding-bottom: 245px;
}

.pb-250 {
    padding-bottom: 250px;
}

.pb-255 {
    padding-bottom: 255px;
}

.pb-260 {
    padding-bottom: 260px;
}

.pb-265 {
    padding-bottom: 265px;
}

.pb-270 {
    padding-bottom: 270px;
}

.pb-275 {
    padding-bottom: 275px;
}

.pb-280 {
    padding-bottom: 280px;
}

.pb-285 {
    padding-bottom: 285px;
}

.pb-290 {
    padding-bottom: 290px;
}

.pb-295 {
    padding-bottom: 295px;
}

.pb-300 {
    padding-bottom: 300px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-155 {
    padding-left: 155px;
}

.pl-160 {
    padding-left: 160px;
}

.pl-165 {
    padding-left: 165px;
}

.pl-170 {
    padding-left: 170px;
}

.pl-175 {
    padding-left: 175px;
}

.pl-180 {
    padding-left: 180px;
}

.pl-185 {
    padding-left: 185px;
}

.pl-190 {
    padding-left: 190px;
}

.pl-195 {
    padding-left: 195px;
}

.pl-200 {
    padding-left: 200px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-115 {
    padding-right: 115px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-155 {
    padding-right: 155px;
}

.pr-160 {
    padding-right: 160px;
}

.pr-165 {
    padding-right: 165px;
}

.pr-170 {
    padding-right: 170px;
}

.pr-175 {
    padding-right: 175px;
}

.pr-180 {
    padding-right: 180px;
}

.pr-185 {
    padding-right: 185px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-195 {
    padding-right: 195px;
}

.pr-200 {
    padding-right: 200px;
}

/*---------------------------------------------------- */

/******* HOME PAGE 1 *******/

/*Hero area*/

/*----------------------------------------------------*/

.lg-hero-sec {
    z-index: 1;
}

.lg-hero-sec .lg-hero-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.lg-hero-sec .lg-hero-img2 {
    top: 0%;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
}

.lg-hero-sec .lg-bg-text {
    left: 0;
    top: 47%;
    right: 0;
    width: 100%;
    z-index: -2;
    opacity: 0.25;
    margin: 0 auto;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-hero-sec .lg-bg-text {
        top: 30%;
    }
}

.lg-hero-sec .lg-bg-text h2 {
    font-size: 488px;
    font-weight: 700;
    letter-spacing: -20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-hero-sec .lg-bg-text h2 {
        font-size: 300px;
    }
}

.lg-hero-sec .lg-bg-text h2 div div div {
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lg-hero-text {
    padding-top: 230px;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-hero-text {
        padding-top: 150px;
    }
}

.lg-hero-text .hero_title {
    color: #fff;
    font-size: 72px;
    max-width: 772px;
    font-weight: 700;
    line-height: 1.11;
    letter-spacing: -2px;
    padding-bottom: 445px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-hero-text .hero_title {
        font-size: 60px;
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 575px) {
    .lg-hero-text .hero_title {
        font-size: 55px;
    }
}

@media (max-width: 480px) {
    .lg-hero-text .hero_title {
        font-size: 45px;
    }
}

@media (max-width: 360px) {
    .lg-hero-text .hero_title {
        font-size: 40px;
    }
}

.lg-hero-content {
    padding-bottom: 70px;
}

.lg-hero-content .desc-text {
    max-width: 513px;
}

.lg-hero-content .desc-text p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 32px;
}

/*---------------------------------------------------- */

/*Feat area*/

/*----------------------------------------------------*/

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to {
        -webkit-transform: rotateY(-360deg);
        transform: rotateY(-360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to {
        -webkit-transform: rotateY(-360deg);
        transform: rotateY(-360deg);
    }
}

.lg-feat-sec {
    border-bottom: 1px solid #E0E2E4;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-feat-sec {
        padding-top: 50px;
    }
}

.lg-feat-item {
    padding: 65px 15px 60px;
    border-right: 1px solid #E0E2E4;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-feat-item {
        border: none;
        padding: 30px 15px 25px;
    }
}

.lg-feat-item .item-icon-title {
    gap: 16px;
    margin-bottom: 22px;
}

.lg-feat-item .item-icon-title .item-icon {
    width: 52px;
    height: 52px;
}

.lg-feat-item .item-icon-title .item-text h3 {
    max-width: 180px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.167;
    letter-spacing: -1px;
}

.lg-feat-item .item-icon-title .item-text h3:hover {
    color: var(--lg-prime-c);
}

.lg-feat-item p {
    max-width: 380px;
}

.lg-feat-item:hover .item-icon-title .item-icon {
    -webkit-animation: 1s spin infinite;
    animation: 1s spin infinite;
}

.col-lg-4:last-child .lg-feat-item {
    border-right: none;
}

/*---------------------------------------------------- */

/*About area*/

/*----------------------------------------------------*/

@-webkit-keyframes wave {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    20% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    75% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes wave {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    20% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    75% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.lg-about-sec {
    z-index: 1;
    margin: 0 auto;
    max-width: 1920px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-about-sec {
        padding-bottom: 100px;
    }
}

.lg-about-sec .lg-ab1-img {
    left: 0;
    z-index: -2;
    bottom: 0;
    opacity: 0.32;
}

.lg-about-sec .lg-ab1-img2 {
    top: 0;
    left: 125px;
    z-index: -1;
}

.lg-about-sec .lg-ab1-img2 .item-img {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-animation: wave 5s ease-in-out infinite;
    animation: wave 5s ease-in-out infinite;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .lg-about-sec .lg-ab1-img2 {
        left: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .lg-about-sec .lg-ab1-img2 {
        left: -25%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .lg-about-sec .lg-ab1-img2 {
        left: -45%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-about-sec .lg-ab1-img2 {
        display: none;
    }
}

.lg-about-sec .lg-ab1-img2:before {
    top: 0;
    right: 0;
    z-index: 1;
    left: 30px;
    content: "";
    width: 183px;
    height: 81px;
    margin: 0 auto;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(#F1F3F5), to(rgba(241, 243, 245, 0)));
    background: linear-gradient(180deg, #F1F3F5 0%, rgba(241, 243, 245, 0) 100%);
}

.lg-about-title .lg-sec-title {
    gap: 15px;
}

.lg-about-title .sec_title {
    max-width: 858px;
}

.lg-about-feature-wrapper {
    width: 100%;
    max-width: 580px;
}

.lg-about-ft-item {
    gap: 28px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-about-ft-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.lg-about-ft-item .item-icon {
    width: 72px;
    height: 80px;
}

.lg-about-ft-item .item-text {
    max-width: 470px;
}

/*---------------------------------------------------- */

/*Counter area*/

/*----------------------------------------------------*/

.lg-counter-sec {
    padding: 0px 30px;
}

.lg-counter-content {
    gap: 12px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-counter-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.lg-counter-item {
    border-radius: 14px;
    padding: 35px 35px 30px;
    background-color: #FFFFFF;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-counter-item:is(.active) {
    background-color: var(--lg-prime-c2);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .lg-counter-item {
        width: 45%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-counter-item {
        width: 100%;
    }
}

.lg-counter-item h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
    padding-bottom: 105px;
}

.lg-counter-item .client-list {
    gap: 15px;
    padding-bottom: 86px;
}

@media (max-width: 480px) {
    .lg-counter-item .client-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.lg-counter-item .client-list .cl-list li {
    width: 44px;
    height: 44px;
    margin-left: -20px;
    border-radius: 6px;
    border: 2px solid var(--lg-prime-c2);
}

.lg-counter-item .client-list .cl-list li:nth-child {
    margin-left: 0;
}

.lg-counter-item .client-list .rate-area ul {
    line-height: 1;
}

.lg-counter-item .client-list .rate-area li {
    line-height: 1;
    font-size: 13px;
    color: #0F313A;
}

.lg-counter-item .client-list .rate-area span {
    font-size: 15px;
    color: var(--lg-hd-color);
}

.lg-counter-item .item-count {
    gap: 15px;
}

@media (max-width: 480px) {
    .lg-counter-item .item-count {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.lg-counter-item .item-count h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lg-counter-item .item-count h4 sub {
    top: 0px;
    font-size: 46px;
    color: rgba(15, 49, 58, 0.4);
}

.lg-counter-item .item-count p {
    max-width: 230px;
    text-align: right;
}

@media (max-width: 480px) {
    .lg-counter-item .item-count p {
        text-align: left;
    }
}

/*---------------------------------------------------- */

/*Service area*/

/*----------------------------------------------------*/

.lg-service-sec {
    padding: 0px 28px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-service-sec {
        padding: 0px 10px;
    }
}

.lg-service-wrapper {
    z-index: 1;
    border-radius: 20px;
    background-color: var(--lg-hd-color);
}

.lg-service-wrapper .lg-ser-img {
    top: 96px;
    left: 96px;
    z-index: -1;
    overflow: hidden;
    border-radius: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .lg-service-wrapper .lg-ser-img {
        top: 15px;
        left: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-service-wrapper .lg-ser-img {
        display: none;
    }
}

.lg-service-wrapper .lg-ser-img2 {
    left: 0;
    bottom: 0;
    z-index: -1;
}

.lg-service-wrapper .lg-ser-bg2 {
    left: 0;
    bottom: 0;
    opacity: 0.75;
}

.lg-service-wrapper .lg-ser-bg2 img {
    mix-blend-mode: luminosity;
}

.lg-service-wrapper .lg-ser-shape {
    right: 0;
    bottom: 35%;
}

.lg-service-content {
    -webkit-transform: translateX(-195px);
    transform: translateX(-195px);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .lg-service-content {
        -webkit-transform: translateX(-250px);
        transform: translateX(-250px);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-service-content {
        margin-top: 40px;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.lg-service-top {
    text-align: right;
    max-width: 850px;
}

.lg-service-top .lg-sec-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.lg-service-top .lg-sec-title .subtitle span {
    color: #fff;
}

.lg-service-top .lg-sec-title .sec_title {
    color: #FFFFFF;
}

.lg-service-top .lg-sec-title p {
    color: #FFFFFF;
    max-width: 705px;
}

.lg-service-top .lg-btn a span,
.lg-service-top .lg-btn a i {
    color: var(--lg-hd-color);
    background-color: var(--lg-prime-c2);
}

.lg-service-item {
    z-index: 1;
    margin: 0 auto;
    max-width: 524px;
    margin-top: -165px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-service-item {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

.lg-service-item .inner-item {
    gap: 40px;
    z-index: 1;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background-color: #104B59;
    padding: 14px 14px 14px 35px;
    -webkit-box-shadow: -16px -16px 50px 0px rgba(0, 0, 0, 0.2509803922);
    box-shadow: -16px -16px 50px 0px rgba(0, 0, 0, 0.2509803922);
}

.lg-service-item .inner-item:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    content: "";
    position: absolute;
    background-color: #0b2227;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-service-item:nth-child(1) {
    margin-top: 0;
}

.lg-service-item .item-text-wrap {
    max-width: 260px;
    padding-top: 18px;
}

.lg-service-item .item-text-wrap h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    padding-bottom: 30px;
}

.lg-service-item .item-text-wrap .item-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 32px;
}

.lg-service-item .item-text-wrap p {
    color: #fff;
    opacity: 0.8;
}

.lg-service-item .item-img {
    width: 173px;
    overflow: hidden;
    border-radius: 8px;
}

.lg-service-item:hover {
    z-index: 3;
}

.lg-service-item:hover .inner-item:before {
    opacity: 1;
}

/*---------------------------------------------------- */

/*Price area*/

/*----------------------------------------------------*/

.lg-price-sec {
    z-index: 1;
}

.lg-price-sec .lg-price-img {
    right: 0;
    top: 85px;
    z-index: -1;
}

.lg-price-top {
    gap: 20px 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.lg-price-top .lg-sec-title {
    max-width: 855px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .lg-price-top .lg-sec-title {
        max-width: 700px;
    }
}

.lg-price-btn {
    border-radius: 12px;
    border: 3px solid #FFFFFF;
    background-color: #F1F3F5;
}

.lg-price-btn .nav-tabs {
    padding: 8px;
    border-radius: 32px;
    display: inline-block;
    background-color: #F5F3FF;
}

.lg-price-btn .nav-tabs .price-btn {
    font-weight: 500;
    padding: 8px 28px;
    border-radius: 10px;
    color: var(--lg-hd-color);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.lg-price-btn .nav-tabs .price-btn span {
    color: #F94735;
    font-size: 13px;
}

.lg-price-btn .nav-tabs .nav-link {
    padding: 0;
    background-color: transparent;
}

.lg-price-btn .nav-tabs .nav-link:is(.active) .price-btn {
    color: #fff;
    background-color: var(--lg-hd-color);
}

.lg-price-content {
    padding: 32px;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(102.31deg, rgba(15, 49, 58, 0.12) 0%, rgba(15, 49, 58, 0) 26.59%, rgba(15, 49, 58, 0) 68.94%, rgba(15, 49, 58, 0.12) 100%) border-box;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-price-content {
        padding: 20px 15px;
    }
}

.lg-price-wrap {
    gap: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-price-wrap {
        gap: 24px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.lg-price-item {
    max-width: 444px;
    padding: 45px 24px;
    background-color: #F1F3F5;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-price-item {
        max-width: 100%;
        border-radius: 10px;
        padding: 45px 15px;
    }
}

.lg-price-item:nth-child(2) {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.lg-price-item:nth-child(3) {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.lg-price-item:is(.popular) {
    background-color: #fff;
}

.lg-price-item:is(.popular) .item-list-price:before {
    background: -webkit-gradient(linear, left top, left bottom, from(#F1F3F5), to(#FFFFFF));
    background: linear-gradient(180deg, #F1F3F5 0%, #FFFFFF 100%);
}

.lg-price-item:is(.popular) .item-btn a {
    color: #fff;
    background-color: var(--lg-hd-color);
    border: 1px solid var(--lg-hd-color);
}

.lg-price-item .item-title {
    margin-bottom: 30px;
}

.lg-price-item .item-title h3 {
    color: #0F313A;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 15px;
}

.lg-price-item .item-list-price {
    z-index: 1;
    overflow: hidden;
    padding: 30px 24px;
    position: relative;
    border-radius: 11px;
}

.lg-price-item .item-list-price:before {
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F1F3F5));
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F3F5 100%);
}

.lg-price-item .item-list-price .item-price {
    margin-bottom: 30px;
}

.lg-price-item .item-list-price .item-price h3 {
    font-size: 38px;
    font-weight: 500;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-price-item .item-list-price .item-price h3 {
        font-size: 28px;
    }
}

.lg-price-item .item-list-price .item-price sub {
    bottom: 0;
    opacity: 0.5;
    font-size: 18px;
}

.lg-price-item .item-list-price li {
    margin-bottom: 18px;
}

.lg-price-item .item-list-price li:last-child {
    margin-bottom: 0;
}

.lg-price-item .item-list-price li i {
    margin-right: 7px;
}

.lg-price-item .item-btn a {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    color: var(--lg-hd-color);
    font-family: var(--lg-heading);
    border: 1px solid rgba(15, 49, 58, 0.2);
}

.lg-price-item .item-btn a:hover {
    background-color: var(--lg-prime-c);
}

/*---------------------------------------------------- */

/*Plane area*/

/*----------------------------------------------------*/

@-webkit-keyframes an-smoke-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0) rotate(0.01deg);
        transform: translateY(0) rotate(0.01deg);
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate(10%, 0%) rotate(0.01deg);
        transform: translate(10%, 0%) rotate(0.01deg);
    }
}

@keyframes an-smoke-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0) rotate(0.01deg);
        transform: translateY(0) rotate(0.01deg);
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate(10%, 0%) rotate(0.01deg);
        transform: translate(10%, 0%) rotate(0.01deg);
    }
}

.lg-plane-sec {
    z-index: 1;
    height: 722px;
    margin-top: -150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-plane-sec {
        height: 100%;
        margin-top: 0;
    }
}

.lg-plane-sec .lg-plane-bg {
    right: 0;
    left: -6.5%;
    bottom: 0;
    z-index: -2;
    width: 113%;
    height: 325px;
    margin: 0 auto;
}

.lg-plane-sec .lg-plane-img {
    margin-top: 80px;
}

.lg-plane-sec .lg-cloud1 {
    top: 0;
    z-index: 2;
    right: 0;
    -webkit-animation: an-smoke-2 6s ease-in-out infinite;
    animation: an-smoke-2 6s ease-in-out infinite;
}

.lg-plane-sec .lg-cloud2 {
    top: 65px;
    z-index: 2;
    left: -80px;
    -webkit-animation: an-smoke-2 6s ease-in-out infinite;
    animation: an-smoke-2 6s ease-in-out infinite;
}

.lg-plane-sec .lg-cloud3 {
    right: 0;
    bottom: 0;
    z-index: -1;
    -webkit-animation: an-smoke-2 6s ease-in-out infinite;
    animation: an-smoke-2 6s ease-in-out infinite;
}

/*---------------------------------------------------- */

/*Why choose area*/

/*----------------------------------------------------*/

.lg-wc-sec {
    z-index: 1;
    background-color: var(--lg-hd-color);
}

.lg-wc-sec .lg-wc-img {
    top: -12px;
    right: 0;
    width: 49%;
    z-index: -1;
    -webkit-mask-image: url(../img/wc-mask.svg);
    mask-image: url(../img/wc-mask.svg);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transition: all 1500ms ease-in-out;
    transition: all 1500ms ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .lg-wc-sec .lg-wc-img {
        right: -10%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-wc-sec .lg-wc-img {
        display: none;
    }
}

.lg-wc-sec .lg-wc-img:is(.active) {
    -webkit-transition-delay: 1500ms;
    transition-delay: 1500ms;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.lg-wc-content {
    max-width: 790px;
}

.lg-wc-content .lg-sec-title .subtitle span {
    color: #fff;
}

.lg-wc-content .lg-sec-title .sec_title {
    color: #fff;
}

.lg-wc-content .lg-wc-btn {
    z-index: 1;
    margin-right: 60px;
}

.lg-wc-content .lg-wc-btn:before {
    top: 50%;
    left: -50%;
    z-index: -1;
    width: 0%;
    height: 1px;
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 1500ms ease-in-out;
    transition: all 1500ms ease-in-out;
    background-color: rgba(255, 255, 255, 0.24);
}

.lg-wc-content .lg-wc-btn:is(.active):before {
    width: 150%;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.lg-wc-ft-wrap {
    margin-left: 35px;
    position: relative;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-wc-ft-wrap {
        margin-left: 0;
    }
}

.lg-wc-ft-wrap:before,
.lg-wc-ft-wrap:after {
    top: 50%;
    left: 45%;
    width: 2px;
    height: 100%;
    content: "";
    opacity: 0.4;
    position: absolute;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: radial-gradient(50% 50% at 50% 50%, #D9D9D9 0%, #0F313A 100%);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-wc-ft-wrap:before,
    .lg-wc-ft-wrap:after {
        display: none;
    }
}

.lg-wc-ft-wrap:after {
    top: 48%;
    height: 2px;
    width: 100%;
}

.lg-wc-ft-item {
    z-index: 1;
    position: relative;
    padding: 35px 0px 50px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-wc-ft-item {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.lg-wc-ft-item:before {
    top: 0;
    left: -35px;
    width: 100%;
    opacity: 0;
    height: 91%;
    content: "";
    z-index: -1;
    border-radius: 10px;
    position: absolute;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background-color: var(--lg-prime-c2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-wc-ft-item:before {
        left: 0;
        height: 100%;
    }
}

.lg-wc-ft-item:is(.active):before {
    opacity: 1;
}

.lg-wc-ft-item:is(.active) .item-title h3 {
    color: var(--lg-hd-color);
}

.lg-wc-ft-item:is(.active) .item-text {
    color: #0F313A;
}

.lg-wc-ft-item:is(.active) .item-icon i svg .line_1 {
    fill: var(--lg-hd-color);
}

.lg-wc-ft-item .item-icon-title {
    gap: 24px;
    margin-bottom: 16px;
}

.lg-wc-ft-item .item-icon {
    width: 52px;
    height: 52px;
}

.lg-wc-ft-item .item-icon i svg .line_1 {
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-wc-ft-item .item-title {
    max-width: 165px;
}

.lg-wc-ft-item .item-title h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.lg-wc-ft-item .item-text {
    color: #fff;
    font-size: 16px;
}

/*---------------------------------------------------- */

/*client area*/

/*----------------------------------------------------*/

.lg-cl-title h2 {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -1px;
    color: rgba(15, 49, 58, 0.72);
}

.lg-cl-title h2 span {
    font-weight: 700;
    color: rgb(15, 49, 58);
}

.lg-bottom-client {
    margin-top: -1px;
}

.lg-cl-item {
    margin-left: -1px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px) {
    .lg-cl-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .lg-cl-item {
        width: 100%;
    }
}

.lg-cl-item:before,
.lg-cl-item:after {
    top: 9px;
    left: 9px;
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: #CDD4D7;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1215686275) inset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1215686275) inset;
}

.lg-cl-item:after {
    right: 9px;
    left: auto;
}

.lg-cl-item .item-img {
    width: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 132px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgba(15, 49, 58, 0.16);
    position: relative;
}

.lg-cl-item .item-img img {
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-cl-item .item-img {
        width: 100%;
    }
}

.lg-cl-item .item-img:before,
.lg-cl-item .item-img:after {
    bottom: 9px;
    left: 9px;
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: #CDD4D7;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1215686275) inset;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1215686275) inset;
}

.lg-cl-item .item-img:after {
    right: 9px;
    left: auto;
}

.lg-cl-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/*---------------------------------------------------- */

/*Case study area*/

/*----------------------------------------------------*/

.lg-cs-top-content .lg-sec-title {
    max-width: 740px;
}

.lg-cs-top-content {
    gap: 30px;
}

.lg-cs-content {
    gap: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-cs-serial-wrap {
        display: none;
    }
}

.lg-cs-serial-wrap .lg-serial {
    width: 68px;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 4px solid #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: var(--lg-heading);
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-cs-serial-wrap .lg-serial:is(.active) {
    border: 4px solid var(--lg-prime-c);
}

.lg-cs-item {
    padding: 12px;
    max-width: 1216px;
    margin-bottom: 6px;
    border-radius: 20px;
    background-color: #fff;
}

.lg-cs-item .item-img {
    overflow: hidden;
    border-radius: 16px;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-cs-item .item-img {
        height: 300px;
    }
    .lg-cs-item .item-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: all 500ms ease-in-out;
        transition: all 500ms ease-in-out;
    }
}

.lg-cs-item .item-text {
    gap: 15px 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 18px 28px;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-cs-item .item-text {
        padding: 18px 0px;
    }
}

.lg-cs-item .item-text .title-desc {
    max-width: 625px;
}

.lg-cs-item .item-text .pro_title {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 5px;
    letter-spacing: -1px;
}

.lg-cs-item .item-text .pro_title:hover {
    color: var(--lg-prime-c);
}

.lg-cs-item .item-text .item-tag a {
    color: #0F313A;
    font-size: 16px;
    margin: 5px 2px;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: #F1F3F5;
}

.lg-cs-item:hover .item-img img {
    mix-blend-mode: luminosity;
}

/*---------------------------------------------------- */

/*Text Scroller area*/

/*----------------------------------------------------*/

.lg-text-scrol1-bg {
    background-color: var(--lg-prime-c2);
}

.lg-text-scrol2-bg {
    width: 110%;
    margin-left: -40px;
    margin-top: -42px;
    -webkit-transform: rotate(-4.5deg);
    transform: rotate(-4.5deg);
    background-color: var(--lg-hd-color);
}

.lg-text-scrol2-bg .lg-text-scrol1 h2 {
    color: #fff;
}

.lg-text-scrol1 {
    display: flow-root;
    padding: 28px 0px 10px;
}

.lg-text-scrol1 h2 {
    font-size: 48px;
    font-weight: 800;
    display: inline-block;
    color: var(--lg-hd-color);
}

.lg-text-scrol1 i {
    top: -15px;
    margin: 0px 30px;
    position: relative;
}

/*---------------------------------------------------- */

/*Testimonial area*/

/*----------------------------------------------------*/

.lg-testi-sec .lg-sec-title {
    margin: 0 auto;
    max-width: 900px;
}

.lg-testi-slide {
    width: 117%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-testi-slide {
        width: 100%;
    }
}

.lg-testi-item {
    padding: 32px;
    border-radius: 8px;
    background-color: #fff;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.lg-testi-item .item-img-rate .item-rate h4 {
    color: #104B59;
    line-height: 0.9;
    font-size: 53px;
    font-weight: 600;
    margin-bottom: 0;
    margin-bottom: 10px;
    letter-spacing: -2px;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-testi-item .item-img-rate .item-rate span {
    opacity: 0.5;
    font-size: 22px;
    font-weight: 500;
}

.lg-testi-item .item-img-rate .item-rate li {
    color: #FAC12E;
    font-size: 16px;
}

.lg-testi-item .item-img-rate .item-img {
    width: 115px;
    height: 132px;
    overflow: hidden;
    border-radius: 6px;
}

.lg-testi-item .item-text-wrap p {
    color: #104B59;
    font-size: 20px;
    font-weight: 500;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-testi-item .item-text-wrap p i {
    color: var(--lg-prime-c);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-testi-item .item-author {
        gap: 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.lg-testi-item .item-author .auth-text h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-testi-item .item-author .auth-text span {
    opacity: 0.6;
    font-size: 16px;
    color: var(--lg-hd-color);
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-testi-item .item-author .auth-quote svg path {
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-testi-item:hover {
    background-color: #104B59;
}

.lg-testi-item:hover .item-img-rate .item-rate h4 {
    color: #fff;
}

.lg-testi-item:hover .item-text-wrap p {
    color: #FFFFFF;
}

.lg-testi-item:hover .item-author .auth-text h3 {
    opacity: 0.72;
    color: #FFFFFF;
}

.lg-testi-item:hover .item-author .auth-text span {
    opacity: 0.6;
    color: #FFFFFF;
}

.lg-testi-item:hover .item-author .auth-quote svg path {
    opacity: 0.08;
    fill: #fff;
}

.lg-testi-control {
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    max-width: 870px;
    position: relative;
}

.lg-testi-control:before {
    left: 0;
    top: 50%;
    z-index: -1;
    width: 100%;
    height: 1px;
    content: "";
    opacity: 0.12;
    position: absolute;
    background-color: #0F313A;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lg-testi-control .arrow-nav {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(16, 75, 89, 0.1215686275);
    backdrop-filter: blur(8px);
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-testi-control .arrow-nav:hover {
    color: #fff;
    background-color: var(--lg-prime-c);
}

.lg-testi-control .lg-testi-pagi {
    width: auto !important;
    height: 24px;
    padding: 0px 10px;
    background-color: #F1F3F5;
}

.lg-testi-control .lg-testi-pagi .swiper-pagination-bullet {
    width: 24px;
    opacity: 1;
    height: 24px;
    position: relative;
    margin: 0 !important;
    background-color: transparent;
    border: 1px solid transparent;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-testi-control .lg-testi-pagi .swiper-pagination-bullet:before {
    top: 8px;
    left: 8px;
    width: 6px;
    content: "";
    height: 6px;
    opacity: 0.2;
    position: absolute;
    border-radius: 100%;
    background-color: #0F313A;
}

.lg-testi-control .lg-testi-pagi .swiper-pagination-bullet:is(.swiper-pagination-bullet-active) {
    border: 1px solid var(--lg-prime-c);
}

/*---------------------------------------------------- */

/*Contact area*/

/*----------------------------------------------------*/

.lg-contact-sec {
    z-index: 1;
}

.lg-contact-sec .lg-cont-bg {
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    bottom: -105px;
}

.lg-contact-sec .lg-cont-bg:before {
    left: 0;
    top: -105px;
    width: 100%;
    z-index: 1;
    content: "";
    height: 100%;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10.58%, #F1F3F5), to(rgba(241, 243, 245, 0)));
    background: linear-gradient(180deg, #F1F3F5 10.58%, rgba(241, 243, 245, 0) 100%);
}

.lg-contact-content {
    gap: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-contact-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.lg-contact-text {
    max-width: 600px;
}

.lg-contact-form {
    z-index: 1;
    width: 100%;
    max-width: 685px;
    padding: 55px 60px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-contact-form {
        padding: 55px 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-contact-form {
        max-width: 100%;
    }
}

.lg-contact-form:before,
.lg-contact-form:after {
    top: 0;
    right: 0;
    width: 100%;
    z-index: -1;
    content: "";
    height: 100%;
    border-radius: 20px;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

.lg-contact-form:before {
    top: 10px;
    right: -10px;
}

.lg-contact-form:after {
    background-color: var(--lg-prime-c2);
}

.lg-contact-form .form-title h3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    padding-bottom: 8px;
    text-transform: uppercase;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-contact-form .form-title h3 {
        font-size: 28px;
    }
}

.lg-contact-form .form-title p {
    color: #0F313A;
}

.lg-contact-form .lg-cnt-form {
    border-radius: 12px;
    padding: 12px 20px 4px;
    border: 1px solid rgba(15, 49, 58, 0.2392156863);
}

.lg-contact-form .lg-cnt-form .row {
    --bs-gutter-x: 16px;
}

.lg-contact-form .lg-cnt-form .b-title {
    top: -26px;
    left: -8px;
    font-weight: 500;
    padding: 0px 8px;
    position: relative;
    letter-spacing: -0.5px;
    color: var(--lg-hd-color);
    font-family: var(--lg-heading);
    background-color: var(--lg-prime-c2);
}

.lg-contact-form .lg-cnt-form input,
.lg-contact-form .lg-cnt-form select {
    width: 100%;
    height: 56px;
    border: none;
    padding-left: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    background-color: #fff;
    color: rgba(15, 49, 58, 0.48);
}

.lg-contact-form .lg-cnt-form input:placeholder,
.lg-contact-form .lg-cnt-form select:placeholder {
    color: rgba(15, 49, 58, 0.48);
}

.lg-contact-form .lg-cnt-form .lg-cnt-select:before {
    top: 15px;
    right: 15px;
    font-size: 16px;
    content: "\f107";
    font-weight: 900;
    position: absolute;
    font-family: "Font Awesome 5 free";
}

.lg-contact-form .lg-cnt-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.lg-contact-form button {
    padding: 0;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: var(--lg-heading);
    background-color: transparent;
}

.lg-contact-form button span {
    color: #fff;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 24px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    background-color: var(--lg-prime-c);
}

.lg-contact-form button i {
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    background-color: var(--lg-prime-c);
}

.lg-contact-form button:hover span {
    border-radius: 40px;
}

.lg-contact-form button:hover i {
    border-radius: 100%;
    -webkit-transform: translateX(5px) rotate(45deg);
    transform: translateX(5px) rotate(45deg);
}

.lg-contact-form .ft-product-mesurment-checkbox label {
    cursor: pointer;
    position: relative;
    margin-right: 25px;
}

.lg-contact-form .ft-product-mesurment-checkbox label .slug {
    font-size: 16px;
    margin-left: 8px;
    font-weight: 500;
    color: var(--lg-hd-color);
}

.lg-contact-form .ft-product-mesurment-checkbox .checkmark-circle {
    top: 3px;
    width: 20px;
    height: 20px;
    position: relative;
}

.lg-contact-form .ft-product-mesurment-checkbox .checkmark-circle:before {
    top: 1px;
    left: 0px;
    width: 20px;
    content: "";
    height: 20px;
    position: absolute;
    border-radius: 4px;
    border: 2px solid #fff;
}

.lg-contact-form .ft-product-mesurment-checkbox .checkmark-circle:after {
    left: 5px;
    top: 6px;
    width: 10px;
    content: "";
    height: 10px;
    display: none;
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
}

.lg-contact-form .ft-product-mesurment-checkbox .condition {
    display: none;
}

.lg-contact-form .ft-product-mesurment-checkbox .condition:checked~.checkmark-circle:after {
    display: block;
}

.lg-contact-form .ft-product-mesurment-checkbox .condition:checked~.checkmark-circle:before {
    border: 2px solid #fff;
}

.lg-cnt-range span {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--lg-hd-color);
}

.lg-cnt-range #slider-range {
    height: 4px;
    width: 100%;
    border: none;
    border-radius: 30px;
    background-color: rgba(15, 49, 58, 0.15);
}

.lg-cnt-range #slider-range .ui-widget-header {
    opacity: 1;
    border-radius: 30px;
    background-color: var(--lg-hd-color);
}

.lg-cnt-range #slider-range .ui-slider-handle {
    top: -5px;
    width: 5px;
    height: 14px;
    margin-left: 0;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 30px;
    background-color: var(--lg-hd-color);
    border: none;
}

.lg-cnt-range #slider-range .ui-slider-handle:focus {
    outline: none;
}

.lg-cnt-range .range-value input {
    width: 100px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding-left: 15px;
    color: var(--lg-hd-color);
    background-color: transparent;
}

/*---------------------------------------------------- */

/*Blog area*/

/*----------------------------------------------------*/

.lg-blog-content {
    gap: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-blog-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.lg-blg-ft-item {
    width: 100%;
    max-width: 680px;
    overflow: hidden;
    border-radius: 12px;
}

.lg-blg-ft-item .item-date {
    top: 40px;
    left: 40px;
    z-index: 1;
    width: 66px;
    height: 75px;
    padding-top: 7px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8784313725);
    backdrop-filter: blur(12px);
    -webkit-box-shadow: -12px 12px 64px 0px rgba(0, 0, 0, 0.1215686275);
    box-shadow: -12px 12px 64px 0px rgba(0, 0, 0, 0.1215686275);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-blg-ft-item .item-date {
        top: 20px;
        left: 20px;
    }
}

.lg-blg-ft-item .item-date h4 {
    color: #104B59;
    line-height: 0.7;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0;
}

.lg-blg-ft-item .item-date span {
    color: #6D6B6B;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.lg-blg-ft-item .item-text {
    left: 40px;
    z-index: 1;
    bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .lg-blg-ft-item .item-text {
        left: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-blg-ft-item .item-text {
        left: 20px;
        max-width: 85%;
    }
}

.lg-blg-ft-item .item-text span {
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding-left: 18px;
    color: var(--lg-prime-c);
}

.lg-blg-ft-item .item-text span:before {
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: var(--lg-prime-c);
}

.lg-blg-ft-item .item-text .blg_title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-top: 18px;
    letter-spacing: -0.5px;
}

.lg-blg-ft-item .item-text .blg_title:hover {
    color: var(--lg-prime-c);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-blg-ft-item .item-text .blg_title {
        margin-top: 10px;
    }
}

.lg-blg-ft-item .item-img {
    position: relative;
}

.lg-blg-ft-item .item-img img {
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-blg-ft-item .item-img {
        height: 400px;
    }
}

.lg-blg-ft-item .item-img:before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(19.44%, #092C35), color-stop(71.85%, rgba(9, 44, 53, 0)));
    background: linear-gradient(360deg, #092C35 19.44%, rgba(9, 44, 53, 0) 71.85%);
}

.lg-blg-ft-item:hover .item-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.lg-blg-item {
    overflow: hidden;
    max-width: 340px;
    border-radius: 10px;
    background-color: #fff;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-blg-item {
        max-width: 100%;
    }
}

.lg-blg-item .inner-img {
    height: 224px;
    overflow: hidden;
}

.lg-blg-item .inner-img img {
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-blg-item .item-date {
    left: 40px;
    z-index: 1;
    bottom: -44px;
    width: 66px;
    height: 75px;
    padding-top: 7px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8784313725);
    backdrop-filter: blur(12px);
    -webkit-box-shadow: -12px 12px 64px 0px rgba(0, 0, 0, 0.1215686275);
    box-shadow: -12px 12px 64px 0px rgba(0, 0, 0, 0.1215686275);
}

.lg-blg-item .item-date h4 {
    color: #104B59;
    line-height: 0.7;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0;
}

.lg-blg-item .item-date span {
    color: #6D6B6B;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.lg-blg-item .item-text {
    padding: 65px 35px 35px;
}

.lg-blg-item .item-text span {
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding-left: 16px;
    color: var(--lg-prime-c);
}

.lg-blg-item .item-text span:before {
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: var(--lg-prime-c);
}

.lg-blg-item .item-text .blg_title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

.lg-blg-item .item-text .blg_title:hover {
    color: var(--lg-prime-c);
}

.lg-blg-item .item-text .blg_title span {
    padding-left: 0;
    color: var(--lg-prime-c);
}

.lg-blg-item .item-text .blg_title span:before {
    display: none;
}

.lg-blg-item:hover .inner-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/*---------------------------------------------------- */

/*Footer Section*/

/*----------------------------------------------------*/

.lg-newslatter-wrap {
    padding: 40px 0px;
    background-color: var(--lg-prime-c);
}

.lg-newslatter-wrap .nws-bg {
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.15;
    height: 100%;
}

.lg-newslatter-wrap .nws-plane {
    bottom: 0;
    right: 25px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-newslatter-wrap .nws-plane {
        display: none;
    }
}

.lg-newslatter-wrap .nws-plane img {
    mix-blend-mode: luminosity;
}

.lg-newslatter-wrap .lg-news-form {
    gap: 15px 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-newslatter-wrap .lg-news-form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

div#wpcf7-f149-o1 {
    width: 100%;
}

.lg-newslatter-wrap .lg-news-form h3 {
    color: #fff;
    max-width: 520px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px;
}

.lg-newslatter-wrap .lg-news-form form {
    gap: 8px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 445px;
    position: relative;
}

.lg-newslatter-wrap .lg-news-form form input {
    width: 100%;
    height: 56px;
    color: #FFFFFF;
    max-width: 380px;
    padding-left: 15px;
    border-radius: 12px;
    border: 2px solid #FFFFFF;
    background-color: transparent;
}

.lg-newslatter-wrap .lg-news-form form input::-webkit-input-placeholder {
    color: #FFFFFF;
}

.lg-newslatter-wrap .lg-news-form form input::-moz-placeholder {
    color: #FFFFFF;
}

.lg-newslatter-wrap .lg-news-form form input:-ms-input-placeholder {
    color: #FFFFFF;
}

.lg-newslatter-wrap .lg-news-form form input::-ms-input-placeholder {
    color: #FFFFFF;
}

.lg-newslatter-wrap .lg-news-form form input::placeholder {
    color: #FFFFFF;
}

.lg-newslatter-wrap .lg-news-form form button {
    padding: 0;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 12px;
    background-color: #fff;
    color: var(--lg-prime-c);
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.lg-newslatter-wrap .lg-news-form form button:hover {
    color: #000;
    background-color: var(--lg-prime-c2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-ft-widget-area {
        gap: 40px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.lg-ft-widget-wrap {
    margin-top: 6px;
    background-color: #09262D;
}

.ed-footer6-widget-area {
    width: 100%;
    max-width: 780px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .ed-footer6-widget-area {
        max-width: 700px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .ed-footer6-widget-area .ed-footer6-widget-cont {
        gap: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.ed-footer-1-menu li .has-dropdown {
    padding-top: 14px;
    padding-left: 20px;
    display: none;
}

.ed-footer6-widget .logo-widget {
    max-width: 420px;
}

.ed-footer6-widget .logo-widget p {
    color: #fff;
    padding-bottom: 42px;
}

.ed-footer6-widget .logo-widget .brand-logo {
    margin-bottom: 20px;
}

.ed-footer6-widget .logo-widget .logo-social {
    gap: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ed-footer6-widget .logo-widget .logo-social a {
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #FFFFFF;
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #212227;
}

.ed-footer6-widget .logo-widget .logo-social a:hover {
    background-color: var(--ed-prime-c9);
}

.ed-footer5-widget {
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .ed-footer5-widget {
        width: 100%;
    }
}

.ed-footer5-widget .widget-title {
    color: var(--lg-prime-c2);
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px) {
    .ed-footer5-widget .ed-ft-img {
        display: none;
    }
}

.ed-footer5-widget .menu-widget li {
    font-weight: 500;
    margin-bottom: 12px;
    font-family: var(--ed-heading-2);
}

.ed-footer5-widget .menu-widget li a {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.ed-footer5-widget .menu-widget li a:hover {
    color: #FFDA8A;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.ed-footer5-widget .menu-widget li:is(.dropdown) a:before {
    top: 3px;
    color: rgba(255, 255, 255, 0.8);
    right: -16px;
    font-size: 12px;
    content: "\f078";
    font-weight: 700;
    position: absolute;
    font-family: "Font Awesome 6 Free";
}

.ed-footer5-widget .menu-widget li .has-dropdown {
    padding-left: 0;
}

.ed-footer5-widget .menu-widget li .has-dropdown a {
    font-size: 16px;
    color: rgb(255, 255, 255);
}

.ed-footer5-widget .menu-widget li .has-dropdown a:before {
    display: none;
}

.ed-footer5-widget .menu-widget-2 li {
    margin-bottom: 12px;
}

.ed-footer5-widget .menu-widget-2 li a {
    padding-left: 14px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.ed-footer5-widget .menu-widget-2 li a:before {
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
}

.ed-footer5-widget .menu-widget-2 li a:hover {
    color: #FFDA8A;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.ed-footer5-widget .cta-widget {
    max-width: 260px;
}

.ed-footer5-widget .cta-widget .cta-info-item {
    gap: 10px;
    margin-bottom: 12px;
}

.ed-footer5-widget .cta-widget .cta-info-item .item-icon {
    width: 20px;
    font-size: 16px;
    margin-top: 3px;
}

.ed-footer5-widget .cta-widget .cta-info-item .item-icon i {
    color: var(--lg-prime-c);
}

.ed-footer5-widget .cta-widget .cta-info-item .item-text {
    max-width: 224px;
    color: rgba(255, 255, 255, 0.8);
}

.lg-ftr-copyright {
    z-index: 1;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-ftr-copyright {
        gap: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.lg-ftr-copyright:before {
    top: 50%;
    left: 6%;
    right: 0;
    width: 0%;
    z-index: -1;
    height: 1px;
    content: "";
    opacity: 0.32;
    margin: 0 auto;
    position: absolute;
    background-color: #F6F9FB;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 1500ms ease-in-out;
    transition: all 1500ms ease-in-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-ftr-copyright:before {
        display: none;
    }
}

.lg-ftr-copyright:is(.active):before {
    width: 60%;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.lg-ftr-copyright p a {
    color: #fff;
    font-weight: 500;
}

.lg-ftr-copyright .footer-social {
    gap: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.lg-ftr-copyright .footer-social a {
    width: 44px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: rgba(255, 255, 255, 0.4);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.lg-ftr-copyright .footer-social a:hover {
    color: #fff;
    background-color: var(--lg-prime-c);
    border: 1px solid var(--lg-prime-c);
}

.lg-scroll-top .lg-s-top {
    width: 44px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 45%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #707687;
    background-color: var(--lg-hd-color);
}

.lg-ftr-btm-text {
    margin-top: -50px;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-ftr-btm-text {
        margin-top: 0;
    }
}

.lg-ftr-btm-text i {
    bottom: -85px;
    display: block;
    position: relative;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .lg-ftr-btm-text i {
        bottom: 0;
    }
}

/*---------------------------------------------------- */

/******* INNER PAGE *******/

/*Breadcrumb area*/

/*----------------------------------------------------*/

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .sn-breadcrumb-sec {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .sn-breadcrumb-sec {
        padding-top: 80px;
    }
}

.sn-breadcrumb-sec .sn-breadcrumb-wrapper {
    overflow: hidden;
}

.sn-breadcrumb-content {
    padding: 200px 0px;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .sn-breadcrumb-content {
        padding: 75px 0px;
    }
}

.sn-breadcrumb-content .bread_title {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 25px;
    color: #fff;
}

@media only screen and (min-width: 481px) and (max-width: 575px) {
    .sn-breadcrumb-content .bread_tiftle {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .sn-breadcrumb-content .bread_title {
        font-size: 42px;
    }
}

@media (max-width: 360px) {
    .sn-breadcrumb-content .bread_title {
        font-size: 36px;
    }
}

.sn-breadcrumb-content ul {
    padding: 14px 24px;
    border-radius: 10px;
    display: inline-block;
    background: #fff;
    font-family: var(--lg-heading);
    border: 1px solid rgba(96, 91, 255, 0.2392156863);
    -webkit-box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.2509803922) inset;
    box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.2509803922) inset;
}

.sn-breadcrumb-content ul li {
    position: relative;
    margin-right: 38px;
    color: rgba(0, 0, 0, 0.52);
}

.sn-breadcrumb-content ul li:before {
    top: 2px;
    right: -35px;
    width: 24px;
    height: 24px;
    content: "";
    position: absolute;
    background-image: url(../img/ic22.svg);
}

.sn-breadcrumb-content ul li:last-child {
    margin-right: 0;
}

.sn-breadcrumb-content ul li:last-child:before {
    display: none;
}

.sn-breadcrumb-content ul li a {
    color: rgb(0, 0, 0);
}

.sn-breadcrumb-wrapper {
    position: relative;
    z-index: 1;
}

.sn-breadcrumb-wrapper:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    z-index: -1;
    opacity: .6;
}

/*---------------------------------------------------- */

/*Sidebar area*/

/*----------------------------------------------------*/

.sn-sidebar-wrap {
    padding: 16px;
    border-radius: 12px;
    background-color: #fff;
}

.sn-sidebar-widget {
    padding: 30px 28px;
    margin-bottom: 16px;
    border-radius: 12px;
    background-color: #F4F4F4;
}

.sn-sidebar-widget .widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.sn-sidebar-widget:last-child {
    margin-bottom: 0;
}

.sn-sidebar-widget .search-widget form {
    position: relative;
}

.sn-sidebar-widget .search-widget input {
    width: 100%;
    height: 54px;
    border: none;
    padding-left: 20px;
    border-radius: 5px;
    background-color: #fff;
}

.sn-sidebar-widget .search-widget input::-webkit-input-placeholder {
    color: #414141;
}

.sn-sidebar-widget .search-widget input::-moz-placeholder {
    color: #414141;
}

.sn-sidebar-widget .search-widget input:-ms-input-placeholder {
    color: #414141;
}

.sn-sidebar-widget .search-widget input::-ms-input-placeholder {
    color: #414141;
}

.sn-sidebar-widget .search-widget input::placeholder {
    color: #414141;
}

.sn-sidebar-widget .search-widget button {
    top: 0;
    right: 0;
    width: 54px;
    color: #fff;
    height: 54px;
    border: none;
    border-radius: 5px;
    position: absolute;
    background-color: var(--lg-prime-c);
}

.widget_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sn-sidebar-widget .category-widget li,
.widget_categories li {
    margin-bottom: 8px;
}

.sn-sidebar-widget .category-widget li:last-child,
.widget_categories li:last-child {
    margin-bottom: 0;
}

.sn-sidebar-widget .category-widget li a,
.widget_categories li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #414141;
    position: relative;
    border-radius: 6px;
    padding: 16px 20px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1215686275);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sn-sidebar-widget .category-widget li a:hover,
.widget_categories li a:hover {
    color: #fff;
    background-color: #000000;
}

.sn-sidebar-widget .recent-post-item {
    gap: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .sn-sidebar-widget .recent-post-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.sn-sidebar-widget .recent-post-item:last-child {
    margin-bottom: 0;
}

.sn-sidebar-widget .recent-post-item .item-img {
    width: 112px;
    height: 123px;
    overflow: hidden;
    border-radius: 4px;
}

.sn-sidebar-widget .recent-post-item .item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sn-sidebar-widget .recent-post-item .item-text {
    max-width: 190px;
}

.sn-sidebar-widget .recent-post-item .item-text span {
    color: #6B7280;
    margin-bottom: 5px;
}

.sn-sidebar-widget .recent-post-item .item-text span i {
    color: var(--lg-prime-c);
    margin-right: 5px;
}

.sn-sidebar-widget .recent-post-item .item-text h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.sn-sidebar-widget .tag-widget li a,
.tagcloud a {
    margin: 5px 2px;
    font-size: 14px !important;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 4px;
    background-color: #fff;
}

.sn-sidebar-widget .tag-widget li a:hover,
.tagcloud a:hover {
    color: #fff;
    background-color: var(--lg-prime-c);
}

.sn-sidebar-widget .follow-widget .follow-icon {
    gap: 16px;
}

.sn-sidebar-widget .follow-widget a {
    z-index: 1;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 8px;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
}

.sn-sidebar-widget .follow-widget a:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 0%;
    content: "";
    border-radius: 8px;
    position: absolute;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    background: linear-gradient(94.57deg, #34C9FF 0%, #8BA3FF 33.06%, #FD76E8 66.11%, #FF9951 100%);
}

.sn-sidebar-widget .follow-widget a:hover {
    color: #fff;
}

.sn-sidebar-widget .follow-widget a:hover:before {
    height: 100%;
}

/*---------------------------------------------------- */

/*Blog Page area*/

/*----------------------------------------------------*/

@-webkit-keyframes border_animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0;
    }
}

@keyframes border_animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0;
    }
}

.sn-blog-list-feed {
    margin: 0 auto;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    -webkit-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.1019607843);
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .sn-blog-list-feed {
        padding: 15px;
    }
}

.sn-blog-list-feed .item-img {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sn-blog-list-feed .item-img img {
    width: 100%;
    height: 345px;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .sn-blog-list-feed .item-img {
        height: 280px;
    }
}

.sn-blog-list-feed .item-img .sn-vd5-play {
    width: auto;
    height: auto;
}

.sn-blog-list-feed .item-img .inner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .sn-blog-list-feed .item-img .inner-img {
        height: 280px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .sn-blog-list-feed .item-img .blog-item-img-slide {
        height: 280px;
    }
}

.sn-blog-list-feed .item-img .blog-item-img-slide .slide-item-img {
    width: 100%;
    height: 100%;
}

.sn-blog-list-feed .item-img .blog-item-img-slide .slide-item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sn-blog-list-feed .item-text .blog_title {
    color: #261723;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    padding-bottom: 15px;
    font-family: var(--dg-body-font);
}

@media (max-width: 480px) {
    .sn-blog-list-feed .item-text .blog_title {
        font-size: 26px;
    }
}

.sn-blog-list-feed .item-text p {
    padding-bottom: 20px;
}

.sn-blog-list-feed .item-text .read_more {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.sn-blog-list-feed .item-text .read_more span {
    gap: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.sn-blog-list-feed .item-text .read_more span:hover {
    letter-spacing: 1px;
}

.sn-blog-list-feed .item-text .read_more span:hover i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sn-blog-list-feed .item-text .read_more i {
    width: 32px;
    color: #fff;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    margin-left: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--lg-prime-c);
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.sn-blog-list-feed .blog-item-meta {
    margin-bottom: 5px;
    padding-bottom: 12px;
}

.sn-blog-list-feed .blog-item-meta a {
    color: #504E4E;
    font-size: 18px;
    font-weight: 500;
    margin-right: 50px;
    margin-bottom: 10px;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .sn-blog-list-feed .blog-item-meta a {
        margin-right: 15px;
    }
}

.sn-blog-list-feed .blog-item-meta a i {
    margin-right: 5px;
}

.sn-blog-list-feed .blog-item-meta a i img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.sn-blog-list-feed .blog-item-meta a:last-child {
    margin-right: 0;
}

.blog-item-arrow .nav-arrow {
    top: 50%;
    z-index: 1;
    width: 48px;
    height: 48px;
    color: #fff;
    position: absolute;
    border-radius: 100%;
    border: 2px solid #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    backdrop-filter: blur(5px);
}

.blog-item-arrow .nav-arrow:hover {
    color: #fff;
    border: 2px solid var(--lg-prime-c);
    background: var(--lg-prime-c);
}

.blog-item-arrow .log-blog-button-prev {
    left: 30px;
}

.blog-item-arrow .log-blog-button-next {
    right: 30px;
}

.sn-vd5-play {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 100%;
}

.sn-vd5-play .video-play-btn {
    left: 0;
    top: 50%;
    right: 0;
    opacity: 1;
    margin: 0 auto;
    position: absolute;
    visibility: visible;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sn-vd5-play .video-play-btn .video_btn_border {
    border: 15px solid rgba(255, 255, 255, 0.7);
}

.sn-vd5-play .video-play-btn a {
    width: 108px;
    height: 108px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
}

.sn-vd5-play .video-play-btn .video_btn_border {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    position: absolute;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    border: 15px solid rgba(255, 255, 255, 0.7);
    -webkit-animation: border_animation 3.9s linear 0s infinite;
    animation: border_animation 3.9s linear 0s infinite;
}

.sn-vd5-play .video-play-btn .video_btn_border.border_wrap-2 {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.sn-vd5-play .video-play-btn .video_btn_border.border_wrap-3 {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
}

/*---------------------------------------------------- */

/*Blog Details area*/

/*----------------------------------------------------*/

.b-thumbnail-wrap {
    padding-top: 100px;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .b-thumbnail-wrap {
        padding-top: 80px;
    }
}

.b-thumbnail {
    margin: 0 auto;
    max-width: 1816px;
    border-radius: 16px;
}

.b-thumbnail h3 {
    margin: 0 auto;
    font-size: 48px;
    line-height: 1;
    max-width: 765px;
    font-weight: 700;
    text-align: center;
    padding: 255px 15px;
    color: #fff;
}

@media only screen and (min-width: 481px) and (max-width: 575px) {
    .b-thumbnail h3 {
        font-size: 40px;
        padding: 150px 15px;
    }
}

@media (max-width: 480px) {
    .b-thumbnail h3 {
        font-size: 30px;
    }
}

.b-thumbnail .b-thumb-meta {
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    max-width: 680px;
    background-color: #F5F5F5;
    padding: 25px 15px 23px;
    border-radius: 12px 12px 0px 0px;
}

@media (max-width: 480px) {
    .b-thumbnail .b-thumb-meta {
        padding: 15px 15px 13px;
    }
}

.b-thumbnail .b-thumb-meta a {
    color: #535862;
    font-size: 18px;
    margin: 0px 35px;
}

@media only screen and (min-width: 481px) and (max-width: 575px),
(max-width: 480px) {
    .b-thumbnail .b-thumb-meta a {
        margin: 0px 10px;
    }
}

@media (max-width: 480px) {
    .b-thumbnail .b-thumb-meta a {
        margin: 0px 5px;
    }
}

.b-thumbnail .b-thumb-meta a i {
    margin-right: 5px;
    color: var(--ag-color-1);
}

.sn-b-details-content {
    margin: 0 auto;
    max-width: 730px;
}

.sn-b-details-content h3 {
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 28px;
}

.sn-b-details-content .wp-block-image {
    margin: 30px 0px;
    margin-left: -150px;
    margin-right: -150px;
}

.sn-b-details-content p {
    margin-bottom: 40px;
}

p.form-submit {
    display: none;
}

.sn-b-details-content blockquote {
    margin-top: 30px;
    color: #414141;
    font-size: 20px;
    font-weight: 500;
    padding: 40px 30px;
    font-style: italic;
    position: relative;
    border-radius: 8px;
    margin-bottom: 30px;
    background-color: #FFFFFF;
    border-left: 4px solid #34C9FF;
    border-right: 4px solid #FF9951;
}

.sn-b-details-content blockquote span {
    display: block;
    margin-top: 8px;
    padding-left: 55px;
    position: relative;
    text-transform: uppercase;
}

.sn-b-details-content blockquote span:before {
    left: 0;
    top: 12px;
    width: 40px;
    content: "";
    height: 2px;
    border-radius: 4px;
    position: absolute;
    background: linear-gradient(94.57deg, #34C9FF 0%, #8BA3FF 33.06%, #FD76E8 66.11%, #FF9951 100%);
}

.sn-b-details-content blockquote:after {
    top: 20px;
    left: 20px;
    width: 57px;
    opacity: 0.1;
    content: "";
    height: 39px;
    position: absolute;
}

.art-blog-share-tag {
    margin: 0 auto;
    max-width: 730px;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.art-blog-share-tag span {
    color: #261723;
    font-size: 20px;
    display: block;
    font-weight: 700;
    margin-right: 15px;
}

.art-blog-share-tag .art-blog-tag a {
    margin: 5px;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    background-color: #fff;
}

.art-blog-share-tag .art-blog-tag a:hover {
    color: #fff;
    background-color: var(--lg-prime-c);
}

.art-blog-share-tag .art-blog-share a {
    width: 36px;
    margin: 5px;
    height: 36px;
    border-radius: 100%;
    display: inline-block;
}

.art-blog-details-author {
    padding: 30px;
    gap: 30px 25px;
    margin: 0 auto;
    max-width: 730px;
    margin-top: 40px;
    border-radius: 10px;
    background: #E8EAEC;
}

.art-blog-details-author .admin-title-social {
    margin-bottom: 10px;
}

.art-blog-details-author .inner-img {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 100%;
    border: 4px solid #fff;
}

.art-blog-details-author .inner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.art-blog-details-author .inner-text {
    max-width: 490px;
}

.art-blog-details-author .inner-text h4 {
    color: #261723;
    line-height: 1;
    font-size: 24px;
    font-weight: 500;
}

.art-blog-details-author .inner-text p {
    color: #261723;
}

.art-blog-details-author .inner-social {
    margin-top: 15px;
}

.art-blog-details-author .inner-social a {
    color: #261723;
    margin-right: 15px;
}

.art-blog-details-author .inner-social a:hover {
    color: var(--art-base-color-1);
}

.art-b-comment-form {
    padding: 45px;
    margin: 0 auto;
    max-width: 730px;
    border-radius: 12px;
    margin-top: 60px;
    background-color: #F4F4F4;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.art-b-comment-form h3 {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 30px;
}

.art-b-comment-form input,
.art-b-comment-form textarea {
    width: 100%;
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 8px;
    padding-left: 24px;
    margin-bottom: 16px;
    background-color: #fff;
}

.art-b-comment-form textarea {
    height: 148px;
    padding-top: 20px;
}

.art-b-comment-form button {
    z-index: 1;
    padding: 0;
    border: none;
    overflow: hidden;
    font-weight: 500;
    position: relative;
    border-radius: 10px;
    color: var(--sn-black1);
}

.art-b-comment-form button span {
    border-radius: 10px;
    padding: 14px 25px;
    position: relative;
}

.art-b-comment-form button span:after {
    top: 2px;
    left: 1.7px;
    z-index: -1;
    content: "";
    position: absolute;
    border-radius: 11px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(46.15%, #DDD1DC), to(#FFFFFF));
    background: linear-gradient(180deg, #FFFFFF 0%, #DDD1DC 46.15%, #FFFFFF 100%);
}

.art-b-comment-form button:before {
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    content: "";
    height: 100%;
    opacity: 1;
    position: absolute;
    border-radius: 10px;
    -webkit-transition: all 800ms ease-in-out;
    transition: all 800ms ease-in-out;
    -webkit-transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background-image: linear-gradient(94.57deg, #34C9FF 0%, #8BA3FF 33.06%, #FD76E8 66.11%, #FF9951 100%);
}

.art-b-comment-form button:hover:before {
    -webkit-transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) skew(0deg, 0deg);
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(180deg) skew(0deg, 0deg);
}

/*---------------------------------------------------- */

/*# sourceMappingURL=style.css.map */