:root {
    --log-body-color: #6A6A6A;
    --log-heading: "Urbanist", sans-serif;
    --log-body-font: "Urbanist", sans-serif;
    --log-heading-2: "Outfit", sans-serif;
    --log-body-font-2: "Jost", sans-serif;
    --laa-h-font-1: "Inter", sans-serif;
    --laa-clr-pr-1: #27AAE2;
    --laa-clr-sd-1: #F62459;
    --laa-clr-sd-2: #fa7238;
    --laa-clr-sd-3: #ff5c01;
    --laa-clr-sd-4: #183e38;
    --laa-clr-sd-5: #1A3D38;
    --laa-clr-h1: #1A2D4E;
    --laa-clr-p1: #222222;
    --laa-cube-1: cubic-bezier(0.19, 1, 0.22, 1);
}

#tx_preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    justify-content: center;
    align-items: center;
    display: flex;
    background: white;
}

#tx_preloader .loader_inner {
    max-width: 350px;
}

@media (max-width: 767px) {
    #tx_preloader .loader_inner {
        max-width: 250px;
    }
}

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

.log-header-section .dropdown {
    position: relative;
}

.log-header-section .dropdown:after {
    top: 6px;
    right: -14px;
    content: "\f107";
    font-size: 14px;
    font-weight: 700;
    font-weight: 900;
    position: absolute;
    color: #000;
    font-family: "Font Awesome 5 Pro";
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

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

.log-header-section .dropdown-menu {
    left: 0;
    top: 70px;
    z-index: 100;
    margin: 0px;
    padding: 20px 0;
    height: auto;
    min-width: 230px;
    display: block;
    border: none;
    border-radius: 0;
    position: absolute;
    opacity: 0;
    background: #104b59;
    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;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.log-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;
}

.log-header-section .dropdown-menu .dropdown-menu a {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

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

.log-header-section .dropdown-menu li:last-child {
    border-bottom: none;
}

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

.log-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;
}

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

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

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

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

.log-header-section .dropdown-menu a {
    margin: 0px 30px;
    position: relative;
    display: inline-block;
    padding: 5px 0px !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 17px !important;
}

.log-header-section .dropdown-menu a:after {
    left: 0;
    right: 0;
    width: 0%;
    height: 1px;
    bottom: 5px;
    content: "";
    margin: 0 auto;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-header-section .dropdown-menu a:before {
    top: 5px;
    opacity: 0;
    left: -15px;
    color: var(--laa-clr-sd-2);
    content: "\f105";
    position: absolute;
    visibility: hidden;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-header-section .dropdown-menu a:hover,
.log-header-section .dropdown-menu a.active {
    color: var(--laa-clr-sd-2) !important;
    margin-left: 40px;
}

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

.log-header-section .dropdown-menu a:hover:before,
.log-header-section .dropdown-menu a.active:before {
    opacity: 1;
    left: -12px;
    visibility: visible;
}

.log-header-section .navbar-nav {
    display: inherit;
}

.log-header-section.sticky-on {
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 0;
    position: fixed;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    background-color: #fff;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
}

.log-header-section .mobile-menu-btn {
    border: none;
    color: #fff;
    display: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    margin-left: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    white-space: nowrap;
    background-color: #057b76;
}

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

@media (max-width: 767px) {
    .log-header-section .mobile-menu-btn {
        padding: 10px 15px;
    }
}

.log-header-section .mobile-menu-btn i {
    margin-right: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_one {
        background-color: #fff;
    }
}

.log-header-section.header_type_one .brand-logo a {
    width: 180px;
    display: block;
}

@media (max-width: 480px) {
    .log-header-section.header_type_one .brand-logo a {
        max-width: 130px;
    }
}

.log-header-section.header_type_one.sticky-on .header-top-content {
    display: none;
}

.log-header-section.header_type_one.sticky-on .header-action .ofcanvas-btn {
    height: 80px;
}

.log-header-section.header_type_one.sticky-on .dropdown-menu {
    top: 55px;
}

.log-header-section.header_type_one .header-top-content {
    background-color: #104b59;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_one .header-top-content {
        display: none;
    }
}

.log-header-section.header_type_one .header-top-content .header-top-info {
    padding: 5px 25px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_one .header-top-content .header-top-info {
        padding: 5px 15px;
    }
}

.log-header-section.header_type_one .header-top-content .header-top-info .top-info li {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    position: relative;
    margin-right: 90px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_one .header-top-content .header-top-info .top-info li {
        margin-right: 50px;
    }
}

.log-header-section.header_type_one .header-top-content .header-top-info .top-info li:before {
    top: 5px;
    width: 2px;
    content: "";
    right: -44px;
    height: 12px;
    position: absolute;
    background-color: #1e6677;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_one .header-top-content .header-top-info .top-info li:before {
        right: -26px;
    }
}

.log-header-section.header_type_one .header-top-content .header-top-info .top-info li:last-child {
    margin-right: 0;
}

.log-header-section.header_type_one .header-top-content .header-top-info .top-info li:last-child:before {
    display: none;
}

.log-header-section.header_type_one .header-top-content .header-top-info .top-info li i {
    margin-right: 5px;
}

.log-header-section.header_type_one .header-top-content .header-top-info .top-social a {
    color: #fff;
    font-size: 15px;
    margin-left: 28px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_one .header-top-content .header-top-info .top-social a {
        margin-left: 15px;
    }
}

.log-header-section.header_type_one .header-top-content .header-top-info .top-social a:hover {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_one .header-top-content .header-top-info .top-social a:first-child {
    margin-left: 0;
}

.log-header-section.header_type_one .log-header-navigation-content {
    padding-left: 28px;
    background-color: #fff;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_one .log-header-navigation-content {
        padding-left: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_one .log-header-navigation-content {
        padding: 15px 0px;
    }
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_one .log-header-navigation-content .brand-logo {
        max-width: 150px;
    }
}

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

.log-header-section.header_type_one .main-navigation li {
    margin: 0px 35px;
    position: relative;
}

.log-header-section.header_type_one .main-navigation li:before {
    top: 16px;
    width: 7px;
    height: 3px;
    content: "";
    right: -40px;
    position: absolute;
    background-color: var(--log-body-color);
}

.log-header-section.header_type_one .main-navigation li a {
    font-size: 18px;
    font-weight: 800;
    padding-bottom: 45px;
}

.log-header-section.header_type_one .main-navigation li:last-child:before {
    display: none;
}

.log-header-section.header_type_one .main-navigation li:hover:after,
.log-header-section.header_type_one .main-navigation li.active:after {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_one .main-navigation li:hover a,
.log-header-section.header_type_one .main-navigation li.active a {
    color: var(--laa-clr-sd-2);
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_one .main-navigation li {
        margin: 0px 25px;
    }
    .log-header-section.header_type_one .main-navigation li:before {
        right: -28px;
    }
}

.log-header-section.header_type_one .header-action .search-btn {
    color: #fff;
    width: 67px;
    height: 67px;
    border-radius: 100%;
    border: 8px solid #ffe0d2;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-header-section.header_type_one .header-action .search-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_one .header-action .search-btn {
        display: none;
    }
}

.log-header-section.header_type_one .header-action .search-btn:hover {
    background-color: #104b59;
}

.log-header-section.header_type_one .header-action .ofcanvas-btn {
    color: #fff;
    width: 77px;
    height: 110px;
    border: none;
    margin-left: 80px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_one .header-action .ofcanvas-btn:hover {
    background-color: #104b59;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-header-section.header_type_one .header-action .ofcanvas-btn {
        margin-left: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-header-section.header_type_one .header-action .ofcanvas-btn {
        margin-left: 20px;
        height: 85px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_one .header-action .ofcanvas-btn {
        display: none;
    }
}

.log-header-section.header_type_two {
    top: 25px;
}

.log-header-section.header_type_two .brand-logo a {
    width: 180px;
    display: block;
}

.log-header-section.header_type_two .dropdown-menu {
    top: 66px;
}

.log-header-section.header_type_two.sticky-on {
    top: 0;
}

.log-header-section.header_type_two.sticky-on .log-header-top-content {
    display: none !important;
}

.log-header-section.header_type_two.sticky-on .log-header-navigation-action {
    margin-top: 0;
    padding: 10px 15px;
}

.log-header-section.header_type_two.sticky-on .dropdown-menu {
    top: 58px;
}

.log-header-section.header_type_two .log-header-top-content {
    max-width: 98%;
    margin: 0 auto;
    padding: 10px 40px 30px;
    background-color: #023644;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

@media (max-width: 767px) {
    .log-header-section.header_type_two .log-header-top-content {
        display: none !important;
    }
}

.log-header-section.header_type_two .log-header-top-content .top-info li {
    margin-right: 40px;
}

.log-header-section.header_type_two .log-header-top-content .top-info li:last-child {
    margin-right: 0;
}

.log-header-section.header_type_two .log-header-top-content .top-info li a {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.log-header-section.header_type_two .log-header-top-content .top-info li a i {
    margin-right: 5px;
}

.log-header-section.header_type_two .log-header-top-content .top-info li a:hover {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_two .log-header-top-content .top-social a {
    color: #fff;
    font-size: 15px;
    margin-left: 30px;
}

.log-header-section.header_type_two .log-header-top-content .top-social a:first-child {
    margin-left: 0;
}

.log-header-section.header_type_two .log-header-top-content .top-social a:hover {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_two .log-header-navigation-action {
    margin-top: -20px;
    padding: 18px 50px;
    border-radius: 60px;
    background-color: #fff;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_two .log-header-navigation-action .brand-logo {
        max-width: 150px;
    }
}

@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) {
    .log-header-section.header_type_two .log-header-navigation-action {
        padding: 18px 30px;
    }
}

@media (max-width: 767px) {
    .log-header-section.header_type_two .log-header-navigation-action {
        border-radius: 0;
        padding: 10px 15px;
    }
}

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

.log-header-section.header_type_two .main-navigation li {
    margin: 0px 38px;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-header-section.header_type_two .main-navigation li {
        margin: 0px 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),
(max-width: 767px) {
    .log-header-section.header_type_two .main-navigation li {
        margin: 0px 25px;
    }
}

.log-header-section.header_type_two .main-navigation li:before {
    top: 15px;
    width: 8px;
    height: 3px;
    right: -38px;
    content: "";
    position: absolute;
    background-color: #363539;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_two .main-navigation li:before {
        right: -30px;
    }
}

.log-header-section.header_type_two .main-navigation li:last-child:before {
    display: none;
}

.log-header-section.header_type_two .main-navigation li a {
    color: #363539;
    font-size: 18px;
    font-weight: 800;
    padding-bottom: 40px;
}

.log-header-section.header_type_two .main-navigation li:hover:after,
.log-header-section.header_type_two .main-navigation li.active:after {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_two .main-navigation li:hover a,
.log-header-section.header_type_two .main-navigation li.active a {
    color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_two .header-action {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.log-header-section.header_type_two .header-action .search-btn {
    color: #fff;
    width: 67px;
    height: 67px;
    border-radius: 100%;
    border: 8px solid #ffe0d2;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_two .header-action .search-btn {
        display: none;
    }
}

.log-header-section.header_type_two .header-action .ofcanvas-cart {
    border: none;
    margin-left: 10px;
    position: relative;
    background-color: transparent;
}

.log-header-section.header_type_two .header-action .ofcanvas-cart span {
    top: 15px;
    right: 0;
    width: 15px;
    height: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 8px;
    font-weight: 800;
    position: absolute;
    -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-color: #f1b1af;
}

.log-header-section.header_type_two.ver_2 .dropdown-menu {
    top: 60px;
}

.log-header-section.header_type_two.ver_2 .dropdown-menu li a {
    font-weight: 600 !important;
}

@media (max-width: 480px) {
    .log-header-section.header_type_two.ver_2 .brand-logo a {
        width: 130px;
    }
}

.log-header-section.header_type_two.ver_2 .log-header-content .log-header-star {
    top: -30px;
    left: -10px;
    z-index: -1;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_two.ver_2 .log-header-content .log-header-star {
        display: none;
    }
}

.log-header-section.header_type_two.ver_2 .log-header-top-content {
    width: 87%;
    background-color: var(--laa-clr-sd-3);
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_two.ver_2 .log-header-top-content {
        width: 92%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_two.ver_2 .log-header-top-content {
        display: none !important;
    }
}

.log-header-section.header_type_two.ver_2 .log-header-top-content .top-info li {
    margin-right: 18px;
}

.log-header-section.header_type_two.ver_2 .log-header-top-content .top-info li a {
    font-size: 14px;
    font-weight: 400;
}

.log-header-section.header_type_two.ver_2 .log-header-top-content .top-info li a:hover {
    color: #fff;
}

.log-header-section.header_type_two.ver_2 .log-header-top-content .top-social ul {
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-header-section.header_type_two.ver_2 .log-header-top-content .top-social li {
    font-size: 16px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_two.ver_2 .log-header-top-content .top-social li {
        font-size: 14px;
    }
}

.log-header-section.header_type_two.ver_2 .log-header-top-content .top-social li a {
    width: 28px;
    color: #fff;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: 1.3px solid #FFFFFF;
}

.log-header-section.header_type_two.ver_2 .log-header-top-content .top-social li a:hover {
    background-color: #1a3d38;
    border: 1.3px solid #1a3d38;
}

.log-header-section.header_type_two.ver_2 .log-header-top-content .top-social li a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_two.ver_2 .log-header-top-content .top-social li a {
        width: 30px;
        height: 30px;
    }
}

.log-header-section.header_type_two.ver_2 .log-header-navigation-action {
    padding: 18px 20px 18px 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),
(max-width: 767px) {
    .log-header-section.header_type_two.ver_2 .log-header-navigation-action {
        border-radius: 5px;
        padding: 18px 15px 18px 15px;
    }
}

@media (max-width: 480px) {
    .log-header-section.header_type_two.ver_2 .log-header-navigation-action {
        padding: 15px 15px 15px 15px;
    }
}

.log-header-section.header_type_two.ver_2 .main-navigation li {
    margin: 0px 23px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_two.ver_2 .main-navigation li {
        margin: 0px 10px;
    }
}

.log-header-section.header_type_two.ver_2 .main-navigation li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--laa-clr-sd-5);
}

.log-header-section.header_type_two.ver_2 .main-navigation li:before {
    display: none;
}

.log-header-section.header_type_two.ver_2 .main-navigation li:hover a,
.log-header-section.header_type_two.ver_2 .main-navigation li.active a {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_two.ver_2 .header-action {
    gap: 20px;
}

.log-header-section.header_type_two.ver_2 .header-action .header-cta-btn a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 25px;
    border-radius: 10px;
    white-space: nowrap;
    border: 1px solid transparent;
    font-family: var(--log-headinΩg-2);
    background-color: var(--laa-clr-sd-3);
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_two.ver_2 .header-action .header-cta-btn a {
        font-size: 14px;
        font-weight: 500;
        padding: 15px 15px;
    }
}

.log-header-section.header_type_two.ver_2 .header-action .header-cta-btn a:hover {
    background-color: transparent;
    color: var(--laa-clr-sd-2);
    border: 1px solid var(--laa-clr-sd-2);
}

@media (max-width: 767px) {
    .log-header-section.header_type_two.ver_2 .header-action .header-cta-btn {
        display: none;
    }
}

.log-header-section.header_type_two.ver_2 .header-action .search-btn {
    height: 56px;
    width: 56px;
    color: #212121;
    border: 1px solid #FF5C01;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: transparent;
}

.log-header-section.header_type_two.ver_2 .header-action .search-btn:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_two.ver_2.sticky-on .log-header-content .log-header-star {
    display: none;
}

.log-header-section.header_type_three {
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1920px;
}

.log-header-section.header_type_three .brand-logo a {
    width: 250px;
    display: block;
}

.log-header-section.header_type_three.sticky-on .log-header-content .brand-logo {
    height: 100px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_three.sticky-on .log-header-content .brand-logo {
        height: 80px;
    }
}

@media (max-width: 767px) {
    .log-header-section.header_type_three.sticky-on .log-header-content .brand-logo {
        height: 65px;
    }
}

.log-header-section.header_type_three.sticky-on .log-header-cta-navigation .log-header-cta-info {
    display: none !important;
}

.log-header-section.header_type_three .log-header-content .brand-logo {
    width: 100%;
    height: 148px;
    max-width: 315px;
    background-color: #fff;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-header-section.header_type_three .log-header-content .brand-logo {
        padding: 15px;
        max-width: 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),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .brand-logo {
        padding: 10px;
        height: 120px;
        max-width: 180px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .brand-logo {
        height: 80px;
        max-width: 150px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .brand-logo {
        height: 65px;
    }
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation {
    width: 100%;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info {
    padding: 8px 100px;
    background-color: var(--laa-clr-sd-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info {
        display: none !important;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info {
        padding: 8px 50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info {
        padding: 8px 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),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info {
        padding: 5px 30px;
    }
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info .top-info li {
    margin-right: 40px;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info .top-info li:last-child {
    margin-right: 0;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info .top-info li a {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info .top-info li a i {
    margin-right: 5px;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info .top-info li a:hover {
    color: #fff;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info .top-social a {
    color: #fff;
    font-size: 15px;
    margin-left: 30px;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info .top-social a:hover {
    color: #fff;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-cta-info .top-social a:first-child {
    margin-left: 0;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-navigation-action {
    background-color: #043a49;
    padding: 20px 100px 20px 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-navigation-action {
        padding: 20px 50px 20px 20px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-navigation-action {
        padding: 20px 20px 20px 20px;
    }
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-navigation-action {
        padding: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .log-header-navigation-action {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: end !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation {
        display: none;
    }
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li {
    margin: 0px 38px;
    position: relative;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li {
        margin: 0px 28px;
    }
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li {
        margin: 0px 20px;
    }
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li:before {
    top: 15px;
    width: 8px;
    height: 3px;
    right: -38px;
    content: "";
    position: absolute;
    background-color: #fff;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li:before {
        display: none;
    }
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li:after {
    color: #fff;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li:last-child:before {
    display: none;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li a {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding-bottom: 40px;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li:hover:after,
.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li.active:after {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li:hover a,
.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation li.active a {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .main-navigation .dropdown-menu {
    top: 65px;
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .header-action {
    gap: 30px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .header-action {
        gap: 15px;
    }
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .header-action .search-btn {
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 4px solid #404a48;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-3);
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .header-action .search-btn:hover {
    color: #fff;
    background-color: #000;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .header-action .search-btn {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .header-action .header-cta {
        display: none;
    }
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .header-action .header-cta a {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 50px;
    white-space: nowrap;
    border-radius: 50px;
    display: inline-block;
    background-color: var(--laa-clr-sd-3);
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_three .log-header-content .log-header-cta-navigation .header-action .header-cta a {
        padding: 16px 30px;
    }
}

.log-header-section.header_type_three .log-header-content .log-header-cta-navigation .header-action .header-cta a:hover {
    color: #fff;
    background-color: #000;
}

.log-header-section.header_type_four.sticky-on .log-header-top-content {
    display: none;
}

.log-header-section.header_type_four .log-header-top-content {
    background-color: var(--laa-clr-sd-3);
}

.log-header-section.header_type_four .log-header-top-content .log-header-top-wrap {
    margin: 0 auto;
    max-width: 1730px;
    padding: 8px 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_four .log-header-top-content .log-header-top-wrap {
        display: none !important;
    }
}

.log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-info li {
    font-size: 16px;
    margin-right: 50px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-info li {
        margin-right: 15px;
        font-size: 14px;
    }
}

.log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-info li:last-child {
    margin-right: 0;
}

.log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-info li a {
    color: #fff;
}

.log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-info li a i {
    margin-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),
(max-width: 767px) {
    .log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-info li a i {
        margin-right: 5px;
    }
}

.log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-social span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-right: 15px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-social span {
        font-size: 14px;
        margin-right: 10px;
    }
}

.log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-social ul {
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-social li {
    font-size: 16px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-social li {
        font-size: 14px;
    }
}

.log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-social li a {
    width: 34px;
    color: #fff;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: 1.3px solid #FFFFFF;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_four .log-header-top-content .log-header-top-wrap .top-social li a {
        width: 30px;
        height: 30px;
    }
}

.log-header-section.header_type_four .log-header-navigation {
    padding: 17px 0px;
    background-color: #FFF1EB;
}

@media (max-width: 480px) {
    .log-header-section.header_type_four .log-header-navigation {
        padding: 15px 0px;
    }
}

.log-header-section.header_type_four .log-header-navigation-area .brand-logo {
    max-width: 170px;
}

.log-header-section.header_type_four .log-header-navigation-area .brand-logo a {
    width: 170px;
    display: block;
}

@media (max-width: 480px) {
    .log-header-section.header_type_four .log-header-navigation-area .brand-logo {
        max-width: 130px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_four .main-navigation {
        display: none !important;
    }
}

.log-header-section.header_type_four .main-navigation li {
    margin: 0px 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--log-heading-2);
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_four .main-navigation li {
        margin: 0px 15px;
    }
}

.log-header-section.header_type_four .main-navigation li a {
    color: #090909;
    font-size: 16px;
    position: relative;
    padding-bottom: 35px;
}

.log-header-section.header_type_four .main-navigation li a:before {
    left: 0;
    right: 0;
    top: 23px;
    width: 0%;
    height: 1px;
    content: "";
    margin: 0 auto;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_four .main-navigation li a {
        font-size: 15px;
    }
}

.log-header-section.header_type_four .main-navigation li:hover:after,
.log-header-section.header_type_four .main-navigation li.active:after {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_four .main-navigation li:hover a,
.log-header-section.header_type_four .main-navigation li.active a {
    color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_four .main-navigation li:hover a:before,
.log-header-section.header_type_four .main-navigation li.active a:before {
    width: 100%;
}

.log-header-section.header_type_four .main-navigation .dropdown-menu {
    top: 60px;
}

.log-header-section.header_type_four .main-navigation .dropdown-menu li {
    margin-bottom: 5px !important;
}

.log-header-section.header_type_four .main-navigation .dropdown-menu li a {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.log-header-section.header_type_four .main-navigation .dropdown-menu li a:before {
    display: none;
}

.log-header-section.header_type_four .header-action {
    gap: 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),
(max-width: 767px) {
    .log-header-section.header_type_four .header-action {
        gap: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_four .header-action .header-search {
        display: none;
    }
}

.log-header-section.header_type_four .header-action .header-search button {
    width: 56px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #FFD7CA;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-header-section.header_type_four .header-action .header-search button i {
    color: #1A3D38;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_four .header-action .header-search button {
        width: 45px;
        height: 45px;
    }
}

.log-header-section.header_type_four .header-action .header-search button:hover {
    color: #fff;
    border: 1px solid var(--laa-clr-sd-2);
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-header-section.header_type_four .header-action .cta-btn {
        display: none !important;
    }
}

.log-header-section.header_type_four .header-action .cta-btn a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 22px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    white-space: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--log-heading-2);
    background-color: var(--laa-clr-sd-3);
}

.log-header-section.header_type_four .header-action .cta-btn a:hover {
    background-color: #1A3D38;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_four .header-action .cta-btn a {
        font-size: 14px;
        font-weight: 500;
        padding: 15px 20px;
    }
}

.log-header-section.header_type_four .header-action .cta-btn a i {
    font-size: 22px;
    margin-left: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_four .header-action .cta-btn a i {
        display: none;
    }
}

.log-header-section.header_type_six {
    background-color: rgba(33, 33, 33, 0.4392156863);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.log-header-section.header_type_six.sticky-on {
    background-color: #212121;
}

.log-header-section.header_type_six .header-content {
    padding: 15px 50px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_six .header-content {
        padding: 15px 15px;
    }
}

.log-header-section.header_type_six .header-content .brand-logo a {
    width: 200px;
    display: block;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_six .header-content .brand-logo a {
        max-width: 180px;
    }
}

@media (max-width: 767px) {
    .log-header-section.header_type_six .header-content .brand-logo a {
        max-width: 150px;
    }
}

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

.log-header-section.header_type_six .header-content .main-navigation li {
    margin: 0px 35px;
    text-transform: uppercase;
    font-family: var(--log-heading-2);
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .log-header-section.header_type_six .header-content .main-navigation li {
        margin: 0px 20px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .log-header-section.header_type_six .header-content .main-navigation li {
        margin: 0px 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-header-section.header_type_six .header-content .main-navigation li {
        margin: 0px 5px;
    }
}

.log-header-section.header_type_six .header-content .main-navigation li:after {
    display: none;
}

.log-header-section.header_type_six .header-content .main-navigation li .dropdown-menu {
    top: 60px;
}

.log-header-section.header_type_six .header-content .main-navigation li .dropdown-menu li a {
    margin: 0px 20px;
    font-weight: 500 !important;
    font-size: 16px !important;
}

.log-header-section.header_type_six .header-content .main-navigation li .dropdown-menu li a:before {
    display: none;
}

.log-header-section.header_type_six .header-content .main-navigation li a {
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 20px 8px 35px;
    font-family: var(--log-heading-2);
}

.log-header-section.header_type_six .header-content .main-navigation li a:before {
    left: 0;
    bottom: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 0%;
    position: absolute;
    -webkit-transition: all 500ms cubic-bezier(0.31, -0.105, 0.43, 1.4);
    transition: all 500ms cubic-bezier(0.31, -0.105, 0.43, 1.4);
    background-color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_six .header-content .main-navigation li:hover a:before,
.log-header-section.header_type_six .header-content .main-navigation li.active a:before {
    height: 100%;
}

.log-header-section.header_type_six .header-content .header-action-area {
    gap: 0px 40px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_six .header-content .header-action-area {
        gap: 0px 15px;
    }
}

.log-header-section.header_type_six .header-content .header-action-area .header-search button {
    color: #fff;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 100%;
    background-color: #4A4949;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-header-section.header_type_six .header-content .header-action-area .header-search button:hover {
    background-color: var(--laa-clr-sd-2);
}

@media (max-width: 767px) {
    .log-header-section.header_type_six .header-content .header-action-area .header-search {
        display: none;
    }
}

@media (max-width: 767px) {
    .log-header-section.header_type_six .header-content .header-action-area .header-cta-btn {
        display: none;
    }
}

.log-header-section.header_type_six .header-content .header-action-area .header-cta-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100px;
    white-space: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #FA7238;
    color: var(--laa-clr-sd-2);
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_six .header-content .header-action-area .header-cta-btn a {
        padding: 16px 25px;
    }
}

.log-header-section.header_type_six .header-content .header-action-area .header-cta-btn a:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_six .header-content .header-action-area .header-cta-btn i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 25px;
    margin-left: 10px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_six .header-content .header-action-area .header-cta-btn i {
        display: none;
    }
}

.log-header-section.header_type_six .header-content .header-action-area .header-cta-info {
    gap: 15px;
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_six .header-content .header-action-area .header-cta-info {
        display: none !important;
    }
}

.log-header-section.header_type_six .header-content .header-action-area .header-cta-info span,
.log-header-section.header_type_six .header-content .header-action-area .header-cta-info a {
    line-height: 1;
    display: block;
}

.log-header-section.header_type_six .header-content .header-action-area .header-cta-info .inner-icon {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    background-color: var(--laa-clr-sd-2);
}

.log-header-section.header_type_six .header-content .header-action-area .header-cta-info .inner-icon i {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
}

.log-header-section.header_type_six .header-content .header-action-area .header-cta-info .inner-text span {
    font-size: 14px;
    padding-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.log-header-section.header_type_six .header-content .header-action-area .header-cta-info .inner-text a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--log-heading-2);
}

@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),
(max-width: 767px) {
    .log-header-section.header_type_six .header-content .header-action-area .header-cta-info .inner-text a {
        font-size: 18px;
    }
}

/*// Search style*/

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

.search-body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 300px;
    z-index: 1000;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: -webkit-transform 0.7s ease;
    transition: -webkit-transform 0.7s ease;
    transition: transform 0.7s ease;
    transition: transform 0.7s ease, -webkit-transform 0.7s ease;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
}

.search-body.search-open {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.search-body .search-form {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-body .search-form .search-form-area {
    width: 100%;
    z-index: 9991;
    max-width: 850px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.search-body .search-form input {
    width: 100%;
    color: #000;
    height: 60px;
    border: none;
    padding: 0px 30px;
    background-color: #f3f3f3;
}

.search-body .search-form input::-webkit-input-placeholder {
    color: #000;
    font-weight: 500;
}

.search-body .search-form input::-moz-placeholder {
    color: #000;
    font-weight: 500;
}

.search-body .search-form input:-ms-input-placeholder {
    color: #000;
    font-weight: 500;
}

.search-body .search-form input::-ms-input-placeholder {
    color: #000;
    font-weight: 500;
}

.search-body .search-form input::placeholder {
    color: #000;
    font-weight: 500;
}

.search-body .search-form button {
    top: 0;
    right: 0;
    color: #fff;
    border: none;
    width: 120px;
    height: 60px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: var(--laa-clr-sd-2);
}

.search-body .search-form button:hover {
    background-color: #000;
}

.search-body .outer-close {
    top: 40px;
    right: 55px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    line-height: 50px;
    border-radius: 3px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: var(--laa-clr-sd-2);
}

.search-body .outer-close i {
    color: #fff;
}

.search-body .outer-close:hover {
    background-color: #000;
}

.search-open {
    opacity: 1;
    visibility: visible;
}

/*// 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;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 38px;
    text-align: center;
}

.mobile_menu_button:hover {
    color: #fff;
}

.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(--base-color);
    background-color: transparent;
}

.mobile_menu .dropdown {
    position: relative;
}

.mobile_menu .dropdown .dropdown-btn {
    color: #9397a7;
    position: absolute;
    top: 0px;
    right: 0;
    cursor: pointer;
    width: 30px;
    font-size: 16px;
    height: 30px;
    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(--laa-clr-sd-2);
}

.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;
}

.mobile_menu .mbl-cta-btn {
    margin-top: 30px;
}

.mobile_menu .mbl-cta-btn a {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 5px;
    display: inline-block;
    font-family: var(--log-heading-2);
    background-color: var(--laa-clr-sd-2);
}

/*// 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;
    margin: 0 auto;
}

.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-size: 24px;
    font-weight: 800;
    margin: 25px 0px 20px;
}

.sidebar-info-contents .content-inner .content-box .text {
    color: rgba(255, 255, 255, 0.8);
    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(--laa-clr-sd-2);
}

.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%;
    z-index: 20;
    max-width: 500px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #104b59;
    -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: 100px 40px;
    text-align: center;
}

.close-side-widget {
    color: #1768dd;
    font-size: rem(15px);
    display: block;
}

.sidebar-widget-container {
    top: 0;
    opacity: 0;
    position: relative;
    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;
    margin-bottom: 5px;
    position: relative;
}

.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;
    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 Pro";
}

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

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

/* cart sidebar */

.cart_sidebar {
    padding: 30px;
    padding-bottom: 50px;
}

.cart_sidebar_top {
    background-color: #0e0f11;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 30px;
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart_sidebar .heading_title {
    line-height: 1;
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}

.cart_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 25px;
}

.cart_item:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #0e0f11;
}

.cart_item .item_image {
    display: block;
    min-width: 70px;
    overflow: hidden;
    position: relative;
    margin-right: 10px;
    width: 60px;
    padding: 5px;
}

.cart_item .item_title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

.cart_item .item_price {
    line-height: 1;
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    opacity: 0.6;
}

.cart_item .remove_btn {
    top: 5px;
    right: 0px;
    padding: 0;
    border: none;
    color: var(--base-color);
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    position: absolute;
    border-radius: 100%;
    background: transparent;
}

.cart_sidebar {
    top: 0;
    width: 300px;
    right: -320px;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    overflow-y: scroll;
    scrollbar-width: none;
    background-color: #000;
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.29);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.29);
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.cart_sidebar.active {
    right: 0px;
}

.cart_sidebar .tx-close {
    right: -11px;
    border: none;
}

.cart_sidebar .tx-close:before,
.cart_sidebar .tx-close:after {
    background-color: #fff;
}

.cart_sidebar_bottom {
    padding: 30px 30px 55px;
}

.cart_sidebar_button a {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 14px 25px 16px;
}

.cart_sidebar_button a:not(:last-child) {
    margin-bottom: 10px;
}

.cart_sidebar_button a:nth-child(2) {
    color: #fff;
    background: #0e0f11;
}

.cart_sidebar .total_price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
    padding: 10px 0px;
    margin-bottom: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    border-top: 1px solid #0e0f11;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*global area*/

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

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

body {
    margin: 0;
    padding: 0;
    z-index: 1;
    font-size: 20px;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    color: var(--log-body-color);
    font-family: var(--log-body-font);
    background-color: #fff;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

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

body .split-line {
    overflow: hidden;
}

body .mfp-iframe-holder .mfp-close {
    right: 0;
    padding: 0;
    top: -40px;
    width: 40px;
    height: 40px;
    text-align: center;
    background: var(--laa-clr-sd-2);
}

body button.mfp-close {
    right: 0;
    padding: 0;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    background: var(--laa-clr-sd-2);
}

.home_ver_2 {
    font-size: 20px;
    line-height: 1.5;
    font-family: var(--log-body-font-2);
}

.home_ver_2 .container {
    max-width: 1320px;
}

.log_dark_version {
    color: #E8E8E8;
    background-color: #1B1A1A;
}

.log_dark_version .container {
    max-width: 1290px;
}

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: 30px;
    background: var(--laa-clr-sd-2);
}

.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;
}

.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;
}

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

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

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url("../img/loader.gif") no-repeat center center;
}

.scrollup {
    width: 55px;
    right: 20px;
    z-index: 5;
    height: 55px;
    bottom: 20px;
    display: none;
    position: fixed;
    border-radius: 100%;
    line-height: 55px;
    background: var(--laa-clr-sd-2);
}

.scrollup i {
    color: #fff;
}

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

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

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

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:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
}

.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;
}

.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;
    padding-bottom: 4px;
    -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%;
}

.log-btn-1 a {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 18px 30px;
    border-radius: 40px;
    white-space: nowrap;
    display: inline-block;
    border: 2px solid transparent;
    background-color: var(--laa-clr-sd-2);
}

@media (max-width: 767px) {
    .log-btn-1 a {
        padding: 14px 25px;
    }
}

.log-btn-1 a i {
    margin-left: 8px;
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
}

.log-btn-1 a:hover {
    color: var(--laa-clr-sd-2);
    background-color: transparent;
    border: 2px solid var(--laa-clr-sd-2);
    -webkit-box-shadow: 0 5px 0 0 var(--laa-clr-sd-3);
    box-shadow: 0 5px 0 0 var(--laa-clr-sd-3);
}

.log-btn-1 a:hover i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.log-btn-2 a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 40px;
    display: inline-block;
    background-color: #363539;
    border: 2px solid transparent;
}

@media (max-width: 767px) {
    .log-btn-2 a {
        padding: 12px 30px;
    }
}

.log-btn-2 a:hover {
    color: var(--laa-clr-sd-2);
    background-color: transparent;
    border: 2px solid var(--laa-clr-sd-2);
    -webkit-box-shadow: 0 5px 0 0 var(--laa-clr-sd-3);
    box-shadow: 0 5px 0 0 var(--laa-clr-sd-3);
}

.log-btn-3 a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 25px;
    position: relative;
    border-radius: 100px;
    display: inline-block;
    font-family: var(--log-heading-2);
    background-color: var(--laa-clr-sd-2);
}

.log-btn-3 a:before {
    left: 0;
    right: 0;
    width: 100%;
    content: "";
    height: 100%;
    bottom: -4px;
    position: absolute;
    border-radius: 100px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-bottom: 2px solid var(--laa-clr-sd-5);
}

.log-btn-3 a:after {
    top: 25px;
    right: 35px;
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-btn-3 a span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.log-btn-3 a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 24px;
    margin-left: 10px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-btn-3 a:hover {
    background-color: #003E4D;
}

.log-btn-3 a:hover:before {
    bottom: -2px;
    border-bottom: 2px solid var(--laa-clr-sd-2);
}

.log-btn-3 a:hover:after {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.log-btn-3 a:hover i {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.log-btn-5 {
    padding: 6px;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.log-btn-5:before,
.log-btn-5:after {
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 60px;
    position: absolute;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    background-color: var(--laa-clr-sd-3);
}

.log-btn-5:after {
    width: 2px;
    height: 50px;
}

.log-btn-5 a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-family: var(--log-heading-2);
    background-color: var(--laa-clr-sd-3);
}

.log-btn-5 a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    margin-left: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-btn-5 a:before,
.log-btn-5 a:after {
    top: -6px;
    right: -6px;
    content: "";
    height: 2px;
    width: 60px;
    position: absolute;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    background-color: var(--laa-clr-sd-3);
}

.log-btn-5 a:after {
    width: 2px;
    height: 50px;
}

.log-btn-5:hover:before {
    width: 100%;
}

.log-btn-5:hover:after {
    height: 100%;
}

.log-btn-5:hover a:before {
    width: 110%;
}

.log-btn-5:hover a:after {
    height: 120%;
}

.log-btn-5:hover a i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.log-btn-4 {
    display: inline-block;
}

.log-btn-4 a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    border-radius: 40px;
    border: 2px solid transparent;
    font-family: var(--log-heading-2);
    background-color: var(--laa-clr-sd-2);
}

.log-btn-4 a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
    margin-left: 10px;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

.log-btn-4 a:hover {
    color: var(--laa-clr-sd-2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: transparent;
    border: 2px solid var(--laa-clr-sd-2);
}

.log-btn-4 a:hover i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@-webkit-keyframes run {
    0% {
        left: 0;
    }
    50% {
        left: 68px;
    }
    100% {
        left: 0;
    }
}

@keyframes run {
    0% {
        left: 0;
    }
    50% {
        left: 68px;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes run_2 {
    0% {
        right: 0;
    }
    50% {
        right: 65px;
    }
    100% {
        right: 0;
    }
}

@keyframes run_2 {
    0% {
        right: 0;
    }
    50% {
        right: 65px;
    }
    100% {
        right: 0;
    }
}

.log-section-title-1 .subtitle {
    font-size: 15px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 40px;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--laa-clr-sd-2);
    border: 2px dashed var(--laa-clr-sd-2);
}

.log-section-title-1 .section_title {
    font-size: 55px;
    font-weight: 800;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-1 .section_title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .log-section-title-1 .section_title {
        font-size: 32px;
    }
}

.log-section-title-1 p {
    padding-top: 15px;
}

.log-section-title-1.text-center {
    margin: 0 auto;
    max-width: 715px;
}

.log-section-title-2 .subtitle {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--laa-clr-sd-4);
}

.log-section-title-2 .subtitle span {
    top: 5px;
    line-height: 1;
    margin-left: 5px;
    position: relative;
}

.log-section-title-2 .section_title {
    font-size: 55px;
    font-weight: 800;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-2 .section_title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .log-section-title-2 .section_title {
        font-size: 32px;
    }
}

.log-section-title-2 p {
    padding-top: 15px;
}

.log-section-title-2.text-center {
    margin: 0 auto;
    max-width: 570px;
}

.log-section-title-2.text-center .subtitle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.log-section-title-3 .subtitle {
    font-size: 18px;
    font-weight: 700;
    padding-left: 78px;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--laa-clr-sd-2);
    font-family: var(--log-heading-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-3 .subtitle {
        padding-left: 0;
    }
}

.log-section-title-3 .subtitle span {
    display: inline-block;
    position: relative;
    padding-right: 78px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-3 .subtitle span {
        padding-right: 0;
    }
}

.log-section-title-3 .subtitle span:before {
    right: 0;
    top: 12px;
    content: "";
    height: 2px;
    width: 68px;
    display: none;
    border-radius: 5px;
    position: absolute;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-3 .subtitle span:before {
        display: none;
    }
}

.log-section-title-3 .subtitle span:after {
    top: 8px;
    right: 0px;
    width: 10px;
    height: 10px;
    content: "";
    display: none;
    position: absolute;
    border-radius: 100%;
    -webkit-animation: linear infinite;
    animation: linear infinite;
    -webkit-animation-name: run_2;
    animation-name: run_2;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-3 .subtitle span:after {
        display: none;
    }
}

.log-section-title-3 .subtitle:before {
    left: 0;
    top: 12px;
    content: "";
    height: 2px;
    width: 68px;
    border-radius: 5px;
    position: absolute;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-3 .subtitle:before {
        display: none;
    }
}

.log-section-title-3 .subtitle:after {
    top: 8px;
    left: 0px;
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    border-radius: 100%;
    -webkit-animation: linear infinite;
    animation: linear infinite;
    -webkit-animation-name: run;
    animation-name: run;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-3 .subtitle:after {
        display: none;
    }
}

.log-section-title-3.text-center .subtitle span:before,
.log-section-title-3.text-center .subtitle span:after {
    display: block;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-3.text-center .subtitle span:before,
    .log-section-title-3.text-center .subtitle span:after {
        display: none;
    }
}

.log-section-title-3 .section_title {
    font-size: 55px;
    font-weight: 800;
    color: var(--laa-clr-sd-5);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-3 .section_title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .log-section-title-3 .section_title {
        font-size: 32px;
    }
}

.log-section-title-3 p {
    color: #6A6A6A;
    font-size: 20px;
    padding-top: 25px;
}

.log-section-title-4 .subtitle {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: #FFE4E3;
    color: var(--laa-clr-sd-3);
    font-family: var(--log-heading-2);
}

@media (max-width: 480px) {
    .log-section-title-4 .subtitle {
        font-size: 14px;
        padding: 5px 15px;
    }
}

.log-section-title-4 .section_title {
    font-size: 55px;
    font-weight: 800;
    color: var(--laa-clr-sd-5);
}

@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: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-4 .section_title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-4 .section_title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .log-section-title-4 .section_title {
        font-size: 32px;
    }
}

.log-section-title-4 p {
    padding-top: 20px;
}

.log-section-title-5 .subtitle {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 20px;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
    font-family: var(--log-heading-2);
    background-color: rgba(255, 255, 255, 0.1019607843);
}

.log-section-title-5 .subtitle:before,
.log-section-title-5 .subtitle:after {
    top: 0;
    width: 3px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: var(--laa-clr-sd-2);
}

.log-section-title-5 .subtitle:before {
    left: 0;
}

.log-section-title-5 .subtitle:after {
    right: 0;
}

.log-section-title-5 .section_title {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-section-title-5 .section_title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .log-section-title-5 .section_title {
        font-size: 32px;
    }
}

.log-section-title-5 p {
    padding-top: 20px;
}

.log-pagination li {
    margin: 0px 5px;
}

.log-pagination a {
    width: 54px;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    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;
    color: var(--laa-clr-sd-4);
    border: 1px solid rgba(0, 0, 0, 0.1490196078);
    font-family: var(--log-heading);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-pagination a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

.log-pagination a:hover {
    color: var(--laa-clr-sd-2);
    border: 1px solid var(--laa-clr-sd-2);
}

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

.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    contain: layout style size;
    pointer-events: none;
    will-change: transform;
    -webkit-transition: opacity 0.3s, color 0.4s;
    transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    display: block;
    width: 48px;
    height: 48px;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    background: var(--laa-clr-sd-2);
    border-radius: 50%;
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.1s;
    transition: transform 0.3s ease-in-out, opacity 0.1s, -webkit-transform 0.3s ease-in-out;
}

.cb-cursor-text {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: scale(0) rotate(10deg);
    transform: scale(0) rotate(10deg);
    opacity: 0;
    font-weight: 700;
    color: white;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    font-family: var(--log-heading);
    letter-spacing: -0.01em;
    -webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
    transition: opacity 0.4s, -webkit-transform 0.3s;
    transition: opacity 0.4s, transform 0.3s;
    transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s;
}

@supports (mix-blend-mode: exclusion) {
    .cb-cursor.-exclusion,
    .cb-cursor.-opaque {
        mix-blend-mode: exclusion;
    }
}

@supports (mix-blend-mode: exclusion) {
    .cb-cursor.-exclusion:before,
    .cb-cursor.-opaque:before {
        background: white;
    }
}

.cb-cursor.-normal,
.cb-cursor.-text {
    mix-blend-mode: normal;
}

.cb-cursor.-normal:before,
.cb-cursor.-text:before {
    background: var(--laa-clr-sd-2);
}

.cb-cursor.-inverse {
    color: white;
}

.cb-cursor.-visible:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.cb-cursor.-visible.-active:before {
    -webkit-transform: scale(0.23);
    transform: scale(0.23);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
    -webkit-transform: scale(0.15);
    transform: scale(0.15);
}

.cb-cursor.-text:before {
    opacity: 0.85;
    -webkit-transform: scale(1.7);
    transform: scale(1.7);
}

.cb-cursor.-text .cb-cursor-text {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.cb-cursor.-text.-active:before {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
    -webkit-transform: scale(1.32);
    transform: scale(1.32);
}

.cb-cursor.-opaque.-active:before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.cb-cursor.-lg:before {
    -webkit-transform: scale(2);
    transform: scale(2);
}

.cb-cursor.-hidden:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.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 *******/

/*Slider Section*/

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

.log-slider-section-1 {
    margin: 0 auto;
    max-width: 1920px;
}

.log-nav-arrow-pagination .log-nav-arrow {
    z-index: 1;
    color: #fff;
    cursor: pointer;
    font-size: 36px;
    position: relative;
}

.log-nav-arrow-pagination .log-nav-arrow:before {
    top: 5px;
    left: -25px;
    z-index: -1;
    width: 45px;
    content: "";
    height: 45px;
    border-radius: 100%;
    position: absolute;
    background-color: #141414;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-nav-arrow-pagination .log-nav-arrow.next-arrow:before {
    left: auto;
    right: -25px;
}

.log-nav-arrow-pagination .log-nav-arrow:hover:before {
    background-color: var(--laa-clr-sd-2);
}

.log-nav-arrow-pagination .swiper-pagination-bullet {
    opacity: 1;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    border: 2px solid #fff;
    margin: 0px 7px !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-nav-arrow-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent;
}

.log-nav-arrow-pagination .log-main-pagination {
    line-height: 1;
    margin: 0px 20px;
}

.log-main-slider-nav-pagition {
    z-index: 2;
    right: 130px;
    bottom: 40px;
}

@media (max-width: 767px) {
    .log-main-slider-nav-pagition {
        left: 0;
        right: 0;
        width: 120px;
        margin: 0 auto;
    }
    .log-main-slider-nav-pagition .swiper-pagination-bullet {
        display: none;
    }
}

.log-main-slider-item-1 {
    overflow: hidden;
    z-index: 1;
}

.log-main-slider-item-1 .log-slider-side-img {
    top: 0;
    opacity: 0;
    z-index: -1;
    right: -150px;
    visibility: hidden;
}

.log-main-slider-item-1 .log-main-slider-content {
    padding: 375px 0px 125px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slider-item-1 .log-main-slider-content {
        padding: 250px 0px 150px;
    }
}

@media (max-width: 480px) {
    .log-main-slider-item-1 .log-main-slider-content {
        padding: 220px 0px 150px;
    }
}

.log-main-slider-item-1 .log-main-slider-content .log-main-slider-img {
    bottom: 0;
    opacity: 0;
    right: -65px;
    visibility: hidden;
}

@media (max-width: 767px) {
    .log-main-slider-item-1 .log-main-slider-content .log-main-slider-img {
        display: none;
    }
}

.log-main-slider-item-1 .log-main-slider-text {
    z-index: 2;
    max-width: 650px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slider-item-1 .log-main-slider-text {
        max-width: 550px;
    }
}

@media (max-width: 480px) {
    .log-main-slider-item-1 .log-main-slider-text {
        text-align: center;
    }
}

.log-main-slider-item-1 .log-main-slider-text .slider-slug {
    opacity: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 25px;
    visibility: hidden;
    border-radius: 40px;
    margin-bottom: 14px;
    display: inline-block;
    background-color: #15375f;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}

.log-main-slider-item-1 .log-main-slider-text .slider_title {
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    line-height: 1.25;
    padding-bottom: 15px;
}

@media (max-width: 480px) {
    .log-main-slider-item-1 .log-main-slider-text .slider_title {
        text-align: center;
    }
}

.log-main-slider-item-1 .log-main-slider-text .slider_title .split-line {
    opacity: 0;
    visibility: hidden;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .log-main-slider-item-1 .log-main-slider-text .slider_title {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .log-main-slider-item-1 .log-main-slider-text .slider_title {
        font-size: 55px;
    }
}

@media (max-width: 480px) {
    .log-main-slider-item-1 .log-main-slider-text .slider_title {
        font-size: 40px;
    }
}

.log-main-slider-item-1 .log-main-slider-text p {
    opacity: 0;
    color: #fff;
    font-size: 20px;
    max-width: 615px;
    visibility: hidden;
    padding-left: 27px;
    position: relative;
    margin-bottom: 55px;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slider-item-1 .log-main-slider-text p {
        font-size: 18px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slider-item-1 .log-main-slider-text p {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .log-main-slider-item-1 .log-main-slider-text p {
        padding-left: 0;
        font-size: 16px;
    }
    .log-main-slider-item-1 .log-main-slider-text p:before {
        display: none;
    }
}

.log-main-slider-item-1 .log-main-slider-text p:before {
    top: 0;
    left: 0;
    width: 6px;
    content: "";
    height: 0%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    border-radius: 40px;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-main-slider-item-1 .log-main-slider-text p a {
    text-decoration: underline;
}

.log-main-slider-item-1 .log-main-slider-text .log-btn-1 {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.swiper-slide-active .log-main-slider-item-1 .log-slider-side-img {
    right: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.swiper-slide-active .log-main-slider-item-1 .log-main-slider-content .log-main-slider-img {
    opacity: 1;
    right: 65px;
    visibility: visible;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

@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),
(max-width: 767px) {
    .swiper-slide-active .log-main-slider-item-1 .log-main-slider-content .log-main-slider-img {
        right: -180px;
    }
}

.swiper-slide-active .log-main-slider-item-1 .log-main-slider-text .slider-slug {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.swiper-slide-active .log-main-slider-item-1 .log-main-slider-text .slider_title .split-line {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.swiper-slide-active .log-main-slider-item-1 .log-main-slider-text .slider_title .split-line:nth-child(1) {
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.swiper-slide-active .log-main-slider-item-1 .log-main-slider-text .slider_title .split-line:nth-child(2) {
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.swiper-slide-active .log-main-slider-item-1 .log-main-slider-text .slider_title .split-line:nth-child(3) {
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.swiper-slide-active .log-main-slider-item-1 .log-main-slider-text p {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.swiper-slide-active .log-main-slider-item-1 .log-main-slider-text p:before {
    opacity: 1;
    height: 100%;
    visibility: visible;
    -webkit-transition-delay: 1700ms;
    transition-delay: 1700ms;
}

.swiper-slide-active .log-main-slider-item-1 .log-main-slider-text .log-btn-1 {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

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

/*Sponsor Section*/

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

.log-sponsor-item {
    height: 69px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-sponsor-item:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

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

/*Feature Section*/

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

.log-feature-section-1 {
    overflow: hidden;
}

.log-feature-item-1 {
    z-index: 1;
    margin: 0 auto;
    max-width: 420px;
    margin-bottom: 30px;
}

.log-feature-item-1:before,
.log-feature-item-1:after {
    left: 0;
    bottom: 0;
    content: "";
    z-index: -1;
    width: 100%;
    height: 80%;
    position: absolute;
    border-radius: 160px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
}

@media (max-width: 480px) {
    .log-feature-item-1:before,
    .log-feature-item-1:after {
        border-radius: 120px;
    }
}

.log-feature-item-1:after {
    opacity: 0;
    z-index: -2;
    -webkit-box-shadow: none;
    box-shadow: none;
    visibility: hidden;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-feature-item-1 .feature-img {
    width: 225px;
    height: 225px;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 33px;
    border-radius: 100%;
}

.log-feature-item-1 .feature-img img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
}

.log-feature-item-1 .feature-text {
    margin: 0 auto;
    max-width: 305px;
    padding-bottom: 50px;
}

.log-feature-item-1 .feature-text h3 {
    color: #080808;
    font-size: 26px;
    font-weight: 800;
    padding-bottom: 10px;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.log-feature-item-1 .feature-text p {
    font-size: 18px;
    font-weight: 500;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.log-feature-item-1:hover:before {
    background-color: #003e4d;
}

.log-feature-item-1:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}

.log-feature-item-1:hover .feature-img img {
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

.log-feature-item-1:hover .feature-text h3,
.log-feature-item-1:hover .feature-text p {
    color: #fff;
}

.log-bottom-text {
    color: #000000;
    font-size: 17px;
    font-weight: 700;
}

.log-bottom-text img {
    margin: 0px 10px;
}

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

/*About Section*/

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

@-webkit-keyframes log_icon_shake {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
        transform: rotate(-15deg) scale(1) skew(1deg);
    }
    20% {
        -webkit-transform: rotate(30deg) scale(1) skew(1deg);
        transform: rotate(30deg) scale(1) skew(1deg);
    }
    30% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
        transform: rotate(-15deg) scale(1) skew(1deg);
    }
    40% {
        -webkit-transform: rotate(30deg) scale(1) skew(1deg);
        transform: rotate(30deg) scale(1) skew(1deg);
    }
    100%,
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes log_icon_shake {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
        transform: rotate(-15deg) scale(1) skew(1deg);
    }
    20% {
        -webkit-transform: rotate(30deg) scale(1) skew(1deg);
        transform: rotate(30deg) scale(1) skew(1deg);
    }
    30% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
        transform: rotate(-15deg) scale(1) skew(1deg);
    }
    40% {
        -webkit-transform: rotate(30deg) scale(1) skew(1deg);
        transform: rotate(30deg) scale(1) skew(1deg);
    }
    100%,
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }
}

.log-about-section-1 {
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

.log-about-content-1 {
    gap: 45px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@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),
(max-width: 767px) {
    .log-about-content-1 {
        gap: 45px 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),
(max-width: 767px) {
    .log-about-content-1 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-about-img-1 {
    width: 100%;
    max-width: 650px;
}

.log-about-img-1 .inner-img-1 {
    max-width: 540px;
    overflow: hidden;
    border-top-left-radius: 200px;
    border-bottom-right-radius: 200px;
}

@media (max-width: 767px) {
    .log-about-img-1 .inner-img-1 {
        text-align: center;
    }
}

.log-about-img-1 .inner-img-1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-about-img-1 .inner-img-2 {
    z-index: 2;
    overflow: hidden;
    position: relative;
    margin-top: -115px;
    border-bottom-left-radius: 80px;
}

@media (max-width: 767px) {
    .log-about-img-1 .inner-img-2 {
        display: none;
    }
}

.log-about-img-1 .inner-img-3 {
    right: 0;
    z-index: 3;
    width: 470px;
    bottom: 140px;
    height: 275px;
    overflow: hidden;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
}

.log-about-img-1 .inner-img-3 video {
    width: 100%;
    height: 100%;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
}

@media (max-width: 767px) {
    .log-about-img-1 .inner-img-3 {
        width: 100%;
        border-radius: 0;
        margin-top: 40px;
        position: static !important;
    }
    .log-about-img-1 .inner-img-3 video {
        border-radius: 0;
    }
}

.log-about-img-1.active .inner-img-3 {
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.log-about-text-1 {
    width: 100%;
    max-width: 590px;
}

.log-about-text-1 .log-section-title-1 {
    max-width: 580px;
}

.log-about-list-item {
    gap: 20px;
}

@media (max-width: 767px) {
    .log-about-list-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-about-exp-text {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
}

.log-about-exp-text svg {
    width: 134px;
    height: 134px;
}

.log-about-exp-text svg .round-text {
    color: #212121;
    font-size: 20px;
    font-weight: 800;
}

.log-about-list-area {
    width: 100%;
    max-width: 330px;
    padding: 35px 50px;
    border-radius: 150px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
}

@media (max-width: 480px) {
    .log-about-list-area {
        padding: 35px 15px;
        border-radius: 20px;
    }
}

.log-about-list-area li {
    color: #000000;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 6px;
}

.log-about-list-area li:last-child {
    margin-bottom: 0;
}

.log-about-list-area li i {
    margin-right: 10px;
    color: var(--laa-clr-sd-2);
}

.log-about-cta-grp {
    gap: 30px 35px;
}

.log-about-cta-grp .log-about-cta {
    gap: 15px;
    max-width: 320px;
}

.log-about-cta-grp .log-about-cta .inner-icon {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    border: 8px solid #fedfd2;
    background-color: var(--laa-clr-sd-2);
}

.log-about-cta-grp .log-about-cta .inner-icon i {
    color: #000000;
    -webkit-animation: log_icon_shake 1.8s ease-out infinite;
    animation: log_icon_shake 1.8s ease-out infinite;
}

.log-about-cta-grp .log-about-cta .inner-text {
    max-width: 190px;
}

.log-about-cta-grp .log-about-cta .inner-text span {
    color: #000000;
    font-size: 17px;
    font-weight: 800;
    display: block;
}

.log-about-cta-grp .log-about-cta .inner-text a {
    color: #000000;
    font-size: 21px;
    font-weight: 800;
}

.log-about-cta-grp .log-about-cta .inner-text.ver_2 span {
    font-size: 15px;
    font-weight: 500;
}

.log-about-cta-grp .log-about-cta .inner-text.ver_2 a {
    color: #023240;
    font-size: 20px;
    font-weight: 900;
}

.log-about-cta-grp .log-about-cta.ver_2 {
    gap: 0;
}

.log-about-cta-grp .log-about-cta.ver_2 .inner-icon {
    background-color: #fff;
    border: 8px solid #4e5a56;
}

.log-about-cta-grp .log-about-cta.ver_2 .inner-icon i {
    color: var(--laa-clr-sd-2);
}

.log-about-cta-grp .log-about-cta.ver_2 .inner-text span {
    color: #ff3838;
    font-weight: 700;
}

.log-about-cta-grp .log-about-cta.ver_2 .inner-text a {
    color: #fff;
}

.log-about-cta-grp .log-about-cta.ver_3 {
    gap: 20px;
}

.log-about-cta-grp .log-about-cta.ver_3 .inner-icon {
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
}

.log-about-cta-grp .log-about-cta.ver_3 .inner-icon i {
    font-size: 60px;
    color: var(--laa-clr-sd-2);
}

.log-about-cta-grp .log-about-cta.ver_3 .inner-text {
    max-width: 215px;
}

.log-about-cta-grp .log-about-cta.ver_3 .inner-text a {
    font-size: 22px;
    font-weight: 700;
    color: var(--laa-clr-sd-5);
}

.log-about-cta-grp .log-about-cta.ver_3 .inner-text span {
    color: var(--laa-clr-sd-2);
}

.log-about-cta-grp .log-about-cta.ver_4 .inner-icon {
    border: none;
}

.log-about-cta-grp .log-about-cta.ver_4 .inner-icon i {
    color: #fff;
    font-size: 30px;
}

.log-about-cta-grp .log-about-cta.ver_4 .inner-text span {
    color: var(--laa-clr-sd-2);
}

.log-about-cta-grp .log-about-cta.ver_4 .inner-text a {
    color: #fff;
}

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

/*Feature Tab Section*/

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

.log-feature-tab-section {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-feature-tab-section:before {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #0e4e5a;
}

.log-feature-tab-section:after {
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    content: "";
    height: 135px;
    position: absolute;
    background-color: #fff;
}

@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),
(max-width: 767px) {
    .log-feature-tab-section:after {
        display: none;
    }
}

.log-feature-tab-section .log-feature-side-img {
    top: 0;
    right: 0;
    width: 30%;
    height: 85%;
    opacity: 0.28;
}

.log-feature-tab-section .log-feature-side-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-feature-tab-btn-wrap {
    z-index: 2;
    position: relative;
}

.log-feature-tab-btn-text {
    width: 100%;
    max-width: 400px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-feature-tab-btn-text {
        max-width: 350px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-tab-btn-text {
        max-width: 100%;
    }
}

.log-feature-tab-btn-text .log-section-title-1 .section_title {
    color: #fff;
}

.log-feature-tab-btn li {
    font-size: 18px;
    font-weight: 800;
}

.log-feature-tab-btn li:last-child .nav-link {
    border-bottom: none !important;
}

@media (max-width: 480px) {
    .log-feature-tab-btn li {
        font-size: 16px;
    }
}

.log-feature-tab-btn .nav-tabs .nav-link {
    color: #fff;
    width: 100%;
    padding-top: 18px;
    padding-left: 40px;
    position: relative;
    position: relative;
    padding-bottom: 18px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-bottom: 2px solid #1e6576;
}

.log-feature-tab-btn .nav-tabs .nav-link:before {
    top: 0;
    left: 0;
    width: 0%;
    opacity: 0;
    height: 100%;
    z-index: -1;
    content: "";
    visibility: hidden;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-top-left-radius: 40px;
    background-color: var(--laa-clr-sd-2);
    border-bottom-left-radius: 40px;
}

.log-feature-tab-btn .nav-tabs .nav-link:after {
    top: 18px;
    right: 0px;
    opacity: 0;
    color: #fff;
    content: "\f0a9";
    font-weight: 900;
    visibility: hidden;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: "Font Awesome 5 Pro";
}

@media (max-width: 480px) {
    .log-feature-tab-btn .nav-tabs .nav-link:after {
        display: none;
    }
}

.log-feature-tab-btn .nav-tabs .nav-link i {
    top: 22px;
    left: 12px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-feature-tab-btn .nav-tabs .nav-link.active {
    z-index: 1;
    padding-top: 18px;
    padding-left: 25px;
    padding-bottom: 18px;
    border-bottom: 2px solid transparent;
}

.log-feature-tab-btn .nav-tabs .nav-link.active i {
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.log-feature-tab-btn .nav-tabs .nav-link.active:before {
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.log-feature-tab-btn .nav-tabs .nav-link.active:after {
    opacity: 1;
    right: 20px;
    visibility: visible;
    -webkit-transition-delay: 350ms;
    transition-delay: 350ms;
}

.log-feature-tab-area {
    max-width: 820px;
}

@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),
(max-width: 767px) {
    .log-feature-tab-area {
        max-width: 750px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-tab-area {
        max-width: 100%;
    }
}

.log-feature-tab-img-text {
    padding-bottom: 55px;
}

.log-feature-tab-img-text .item-img {
    overflow: hidden;
    border-radius: 20px;
    display: inline-block;
}

.log-feature-tab-img-text .item-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.log-feature-tab-img-text .item-text-area {
    left: 0;
    right: 0;
    width: 87%;
    opacity: 0;
    bottom: 70px;
    margin: 0 auto;
    position: absolute;
    visibility: hidden;
    border-radius: 15px;
    padding: 45px 70px 35px 50px;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    background-color: var(--laa-clr-sd-2);
    -webkit-transform: translate3d(31px, 28px, 26px);
    transform: translate3d(31px, 28px, 26px);
}

@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),
(max-width: 767px) {
    .log-feature-tab-img-text .item-text-area {
        gap: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-tab-img-text .item-text-area {
        width: 100%;
        position: static;
        padding: 45px 30px 35px 30px;
    }
}

.log-feature-tab-img-text .item-text-area .item-text {
    max-width: 305px;
}

.log-feature-tab-img-text .item-text-area .item-text h3 {
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    padding-bottom: 5px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px),
(max-width: 480px) {
    .log-feature-tab-img-text .item-text-area .item-text h3 {
        font-size: 28px;
    }
}

.log-feature-tab-img-text .item-text-area .item-text p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.log-feature-tab-img-text .item-text-area .item-list {
    max-width: 215px;
}

.log-feature-tab-img-text .item-text-area .item-list li {
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
}

.log-feature-tab-img-text .item-text-area .item-list li i {
    margin-right: 5px;
}

.log-feature-tab-img-text .item-text-area .item-list li:last-child {
    margin-bottom: 0;
}

.tab-content>.active.tab-pane:is(.show) .log-feature-tab-img-text .item-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.tab-content>.active.tab-pane:is(.show) .log-feature-tab-img-text .item-text-area {
    opacity: 1;
    bottom: 0px;
    visibility: visible;
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-tab-btn-wrap {
        gap: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

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

/*Service Section*/

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

.log-service-section-1 {
    overflow: hidden;
}

.log-service-item-1 {
    gap: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 45px 45px 45px 110px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
}

@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),
(max-width: 767px) {
    .log-service-item-1 {
        padding: 45px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-service-item-1 .service-text {
    max-width: 300px;
}

.log-service-item-1 .service-text .ser_title {
    font-size: 27px;
    font-weight: 800;
    padding-bottom: 6px;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-service-item-1 .service-text .ser_title {
        font-size: 24px;
    }
}

.log-service-item-1 .service-text p {
    font-size: 18px;
    font-weight: 500;
}

.log-service-item-1 .service-icon {
    width: 133px;
    height: 133px;
    border-radius: 100%;
    -webkit-transition: 500ms cubic-bezier(0.4, 0.65, 0.81, 0.58);
    transition: 500ms cubic-bezier(0.4, 0.65, 0.81, 0.58);
}

.log-service-item-1:hover .service-icon {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
}

.log-service-content-1 .col-lg-6:nth-child(1) .log-service-item-1 {
    border-top-left-radius: 200px;
}

@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),
(max-width: 767px) {
    .log-service-content-1 .col-lg-6:nth-child(1) .log-service-item-1 {
        border-top-left-radius: 20px;
    }
}

.log-service-content-1 .col-lg-6:nth-child(1) .log-service-item-1 .service-icon {
    background-color: #fae6ff;
}

.log-service-content-1 .col-lg-6:nth-child(1) .log-service-item-1:hover {
    background-color: #fae6ff;
}

.log-service-content-1 .col-lg-6:nth-child(1) .log-service-item-1:hover .service-icon {
    background-color: #fff;
}

.log-service-content-1 .col-lg-6:nth-child(2) .log-service-item-1 {
    padding: 45px 110px 45px 45px;
    border-top-right-radius: 200px;
}

@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),
(max-width: 767px) {
    .log-service-content-1 .col-lg-6:nth-child(2) .log-service-item-1 {
        border-top-right-radius: 20px;
        padding: 45px;
    }
}

.log-service-content-1 .col-lg-6:nth-child(2) .log-service-item-1 .service-icon {
    background-color: #e6faff;
}

.log-service-content-1 .col-lg-6:nth-child(2) .log-service-item-1:hover {
    background-color: #e6faff;
}

.log-service-content-1 .col-lg-6:nth-child(2) .log-service-item-1:hover .service-icon {
    background-color: #fff;
}

.log-service-content-1 .col-lg-6:nth-child(3) .log-service-item-1 {
    border-bottom-left-radius: 200px;
}

@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),
(max-width: 767px) {
    .log-service-content-1 .col-lg-6:nth-child(3) .log-service-item-1 {
        border-bottom-left-radius: 20px;
    }
}

.log-service-content-1 .col-lg-6:nth-child(3) .log-service-item-1 .service-icon {
    background-color: #e6fff4;
}

.log-service-content-1 .col-lg-6:nth-child(3) .log-service-item-1:hover {
    background-color: #e6fff4;
}

.log-service-content-1 .col-lg-6:nth-child(3) .log-service-item-1:hover .service-icon {
    background-color: #fff;
}

.log-service-content-1 .col-lg-6:nth-child(4) .log-service-item-1 {
    padding: 45px 110px 45px 45px;
    border-bottom-right-radius: 200px;
}

@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),
(max-width: 767px) {
    .log-service-content-1 .col-lg-6:nth-child(4) .log-service-item-1 {
        padding: 45px;
        border-bottom-right-radius: 20px;
    }
}

.log-service-content-1 .col-lg-6:nth-child(4) .log-service-item-1 .service-icon {
    background-color: #ffe6ed;
}

.log-service-content-1 .col-lg-6:nth-child(4) .log-service-item-1:hover {
    background-color: #ffe6ed;
}

.log-service-content-1 .col-lg-6:nth-child(4) .log-service-item-1:hover .service-icon {
    background-color: #fff;
}

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

/*Project Section*/

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

.log-project-section-1 {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-project-section-1:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(16, 75, 89, 0.8);
}

.log-project-section-1 .log-project-bg {
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.log-project-section-1 .log-project-bg img {
    width: 100%;
    height: 100%;
}

.log-project-section-1 .log-section-title-1 .section_title {
    color: #fff;
}

.log-project-item-1 {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 506px;
}

.log-project-item-1:before {
    left: 0;
    bottom: 0;
    opacity: 0;
    content: "";
    z-index: 1;
    width: 100%;
    height: 100%;
    visibility: hidden;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: rgba(0, 0, 0, 0.7);
}

.log-project-item-1 .log-project-shape {
    left: -50%;
    z-index: 1;
    opacity: 0;
    bottom: -100%;
    width: 1000px;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-1 .item-img img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-1 .item-text {
    left: 0;
    right: 0;
    width: 80%;
    z-index: 2;
    bottom: 46px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 30px 40px 20px;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    background-color: var(--laa-clr-sd-2);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.log-project-item-1 .item-text span {
    opacity: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    visibility: hidden;
    display: inline-block;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-1 .item-text .project_title {
    opacity: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    visibility: hidden;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-1:hover:before {
    opacity: 1;
    visibility: visible;
}

.log-project-item-1:hover .log-project-shape {
    opacity: 1;
    bottom: -60%;
    visibility: visible;
}

.log-project-item-1:hover .item-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.log-project-item-1:hover .item-text {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.log-project-item-1:hover .item-text span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition-delay: 350ms;
    transition-delay: 350ms;
}

.log-project-item-1:hover .item-text .project_title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition-delay: 450ms;
    transition-delay: 450ms;
}

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

/*skill-quote Section*/

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

@-webkit-keyframes RotateAnim {
    from {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
    to {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
}

@keyframes RotateAnim {
    from {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
    to {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
}

.log-skill-wrap-1 {
    max-width: 650px;
    padding-top: 45px;
}

.log-skill-wrap-1 .log-section-title-1 p {
    max-width: 570px;
}

.skill-set-percent {
    width: 100%;
    max-width: 640px;
    margin-bottom: 22px;
}

.skill-set-percent h4 {
    font-size: 16px;
    font-weight: 800;
    padding-bottom: 5px;
    padding-left: 17px;
    color: var(--laa-clr-sd-4);
}

.skill-set-percent .progress {
    height: 24px;
    border-radius: 0;
    position: relative;
    overflow: visible;
    border-radius: 30px;
    background-color: #ededed;
}

.skill-set-percent .progress span {
    top: 2px;
    right: 13px;
    font-size: 14px;
    font-weight: 900;
    position: absolute;
    color: var(--laa-clr-sd-4);
}

.skill-set-percent .progress-bar {
    top: 3px;
    width: 0;
    left: 17px;
    float: left;
    height: 18px;
    position: relative;
    border-radius: 30px;
    background: #057b76;
    -webkit-transition: 1s all ease-in-out;
    transition: 1s all ease-in-out;
}

.log-client-list {
    gap: 15px;
}

.log-client-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-client-list li {
    color: #fff;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    line-height: 38px;
    margin-left: -16px;
    text-align: center;
    border-radius: 100%;
    border: 2px solid #fff;
    background-color: #002966;
}

.log-client-list li:nth-child(1) {
    margin-left: 0;
}

.log-client-list .client-number-text {
    color: #363539;
    font-size: 18px;
    font-weight: 800;
    max-width: 195px;
}

.log-quote-form-wrap-1 {
    z-index: 1;
    width: 100%;
    padding: 50px;
    max-width: 555px;
    border-radius: 60px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-quote-form-wrap-1 {
        padding: 30px 20px;
    }
}

.log-quote-form-wrap-1:before {
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    border-radius: 60px;
    -webkit-transform: skew(0deg);
    transform: skew(0deg);
    background-color: #015c59;
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
}

@media (max-width: 767px) {
    .log-quote-form-wrap-1:before {
        display: none;
    }
}

.log-quote-form-wrap-1.active:before {
    -webkit-transform: skew(-3deg);
    transform: skew(-3deg);
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.log-quote-form-wrap-1:after {
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    content: "";
    height: 100%;
    border-radius: 60px;
    position: absolute;
    background-color: #fff;
}

.log-quote-form-wrap-1 h3 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    padding-bottom: 26px;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-quote-form-wrap-1 h3 {
        font-size: 26px;
    }
}

.log-quote-form-wrap-1 label {
    color: #104b59;
    font-size: 16px;
    font-weight: 800;
    padding-left: 8px;
    padding-bottom: 15px;
}

.log-quote-form-wrap-1 .log-distance-range {
    margin-top: 18px;
}

.log-quote-form-wrap-1 .input-field {
    margin-bottom: 6px;
}

.log-quote-form-wrap-1 .input-field .inner-icon {
    top: 18px;
    right: 30px;
    color: #808080;
    font-size: 16px;
    position: absolute;
}

.log-quote-form-wrap-1 .input-field input {
    width: 100%;
    border: none;
    height: 60px;
    color: #808080;
    font-size: 15px;
    font-weight: 800;
    padding-left: 30px;
    border-radius: 60px;
    background-color: #f3f2f2;
}

.log-quote-form-wrap-1 .input-field input::-webkit-input-placeholder {
    color: #808080;
    font-size: 15px;
    font-weight: 600;
}

.log-quote-form-wrap-1 .input-field input::-moz-placeholder {
    color: #808080;
    font-size: 15px;
    font-weight: 600;
}

.log-quote-form-wrap-1 .input-field input:-ms-input-placeholder {
    color: #808080;
    font-size: 15px;
    font-weight: 600;
}

.log-quote-form-wrap-1 .input-field input::-ms-input-placeholder {
    color: #808080;
    font-size: 15px;
    font-weight: 600;
}

.log-quote-form-wrap-1 .input-field input::placeholder {
    color: #808080;
    font-size: 15px;
    font-weight: 600;
}

.log-quote-form-wrap-1 .log-quote-select label {
    display: block;
    padding-bottom: 8px;
}

.log-quote-form-wrap-1 .log-quote-select .freight-input {
    position: relative;
}

.log-quote-form-wrap-1 .log-quote-select .freight-input:before {
    top: 19px;
    right: 20px;
    font-size: 15px;
    content: "\f078";
    font-weight: 400;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
}

.log-quote-form-wrap-1 .log-quote-select .freight-input select {
    width: 100%;
    height: 60px;
    border: none;
    color: #808080;
    font-size: 15px;
    font-weight: 600;
    padding-left: 20px;
    border-radius: 60px;
    -webkit-appearance: none;
    background-color: #f3f2f2;
}

.log-quote-form-wrap-1 button {
    color: #fff;
    width: 100%;
    border: none;
    margin-top: 25px;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 40px;
    text-transform: uppercase;
    background-color: #363539;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-quote-form-wrap-1 button:hover {
    background-color: var(--laa-clr-sd-2);
}

.log-quote-form-wrap-1.ver_2 {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 60px;
    background-color: #022538;
}

@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),
(max-width: 767px) {
    .log-quote-form-wrap-1.ver_2 {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .log-quote-form-wrap-1.ver_2 {
        border-radius: 20px;
    }
}

.log-quote-form-wrap-1.ver_2:before,
.log-quote-form-wrap-1.ver_2:after {
    display: none;
}

.log-quote-form-wrap-1.ver_2 h3 {
    color: #fff;
}

.log-quote-form-wrap-1.ver_2 label {
    color: #fff;
}

.log-distance-range label {
    padding-bottom: 0px;
}

.log-distance-range .wc-input-range {
    margin-left: 8px;
    margin-bottom: 5px;
}

.log-distance-range .wc-input-range span {
    color: #fff;
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
}

.log-distance-range .wc-input-range #slider-range {
    height: 12px;
    width: 300px;
    border: none;
    border-radius: 30px;
    margin-right: 15px;
    background-color: #057b76;
}

.log-distance-range .wc-input-range #slider-range .ui-widget-header {
    background-color: #057b76;
}

.log-distance-range .wc-input-range #slider-range .ui-slider-handle {
    top: -7px;
    width: 24px;
    height: 24px;
    margin-left: 0;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 100%;
    background-color: #015c59;
    border: 5px solid #015c59;
}

.log-distance-range .wc-input-range #slider-range .ui-slider-handle:focus {
    outline: none;
}

.log-distance-range .wc-input-range .range-value input {
    color: #fff;
    width: 110px;
    height: 40px;
    border: none;
    font-size: 14px;
    font-weight: 800;
    border-radius: 5px;
    padding-left: 15px;
    background-color: var(--laa-clr-sd-4);
}

.log-skill-quote-wrap-1 {
    gap: 40px 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@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),
(max-width: 767px) {
    .log-skill-quote-wrap-1 {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

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

/*Team Section*/

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

.log-team-section-1 {
    z-index: 1;
    overflow: hidden;
}

.log-team-section-1:before {
    z-index: -1;
    bottom: 0;
    width: 100%;
    content: "";
    height: 85px;
    position: absolute;
    background-color: #fff;
}

.log-team-section-1 .log-team-side {
    left: 0;
    bottom: 85px;
}

@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),
(max-width: 767px) {
    .log-team-section-1 .log-team-side {
        display: none;
    }
}

.log-team-item-1 {
    margin: 0 auto;
    max-width: 305px;
    margin-bottom: 30px;
    padding-bottom: 38px;
}

.log-team-item-1 .item-img {
    z-index: 2;
    overflow: hidden;
    position: relative;
    border-radius: 50px;
}

.log-team-item-1 .item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.log-team-item-1 .item-text {
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 72%;
    margin: 0 auto;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-team-item-1 .item-text h3 {
    color: #fff;
    padding: 8px;
    font-size: 18px;
    font-weight: 800;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: var(--laa-clr-sd-2);
}

.log-team-item-1 .item-hover-text {
    left: 0;
    right: 0;
    width: 72%;
    bottom: 0;
    z-index: 3;
    margin: 0 auto;
    border-radius: 50px;
    background-color: #fff;
    padding: 20px 20px 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
}

.log-team-item-1 .item-hover-text h3 {
    opacity: 0;
    line-height: 1;
    font-size: 24px;
    font-weight: 800;
    visibility: hidden;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    color: var(--laa-clr-sd-4);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-team-item-1 .item-hover-text span {
    opacity: 0;
    font-size: 14px;
    visibility: hidden;
    display: inline-block;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    color: var(--laa-clr-sd-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-team-item-1:hover .item-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.log-team-item-1:hover .item-hover-text {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.log-team-item-1:hover .item-hover-text h3 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

.log-team-item-1:hover .item-hover-text span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.log-team-item-1:hover .item-text {
    bottom: 40px;
}

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

/*Circle progress Section*/

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

.log-circle-progress-wrap {
    border-radius: 120px;
    padding: 40px 70px 25px;
    background-color: #057b76;
}

@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),
(max-width: 767px) {
    .log-circle-progress-wrap {
        gap: 40px 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-circle-progress-item {
    max-width: 355px;
}

.log-circle-progress-item .counter-boxed {
    gap: 22px;
}

@media (max-width: 480px) {
    .log-circle-progress-item .counter-boxed {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-circle-progress-item .inner-text {
    left: 0;
    right: 0;
    top: 50%;
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    text-align: center;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.log-circle-progress-item .log-circle-prog-text {
    width: 100%;
    max-width: 185px;
}

@media (max-width: 480px) {
    .log-circle-progress-item .log-circle-prog-text {
        text-align: center;
    }
}

.log-circle-progress-item .log-circle-prog-text h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    padding-bottom: 8px;
}

.log-circle-progress-item .log-circle-prog-text h3 span {
    font-size: 18px;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
}

.log-circle-progress-item .log-circle-prog-text p {
    color: #fff;
    font-size: 18px;
}

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

/*Faq Section*/

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

.log-faq-testimonial-section {
    z-index: 1;
    margin-top: -140px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-faq-testimonial-section {
        margin-top: 0;
    }
}

@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),
(max-width: 767px) {
    .log-faq-accordion-text-area {
        gap: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-faq-accordion-text-area:before {
    left: 0;
    width: 0%;
    right: 0;
    bottom: 0;
    height: 2px;
    content: "";
    margin: 0 auto;
    position: absolute;
    background-color: #f4f4f4;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.log-faq-accordion-text-area.active:before {
    width: 100%;
    -webkit-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.log-faq-text-area {
    max-width: 590px;
}

.log-faq-text-area .log-section-title-1 p {
    max-width: 575px;
}

.log-faq-accordion-area {
    width: 100%;
    max-width: 650px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-faq-accordion-area.ver_2 {
        margin: 0 auto;
        margin-top: 40px;
    }
}

.log-faq-accordion-area.ver_2 .accordion-item {
    margin-bottom: 15px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 21px 0px rgba(19, 19, 19, 0.05);
    box-shadow: 0px 0px 21px 0px rgba(19, 19, 19, 0.05);
}

.log-faq-accordion-area.ver_2 .accordion-button {
    padding: 20px 25px;
    border-radius: 10px !important;
}

.log-faq-accordion-area.ver_2 .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--laa-clr-sd-4);
}

.log-faq-accordion-area.ver_2 .accordion-button:not(.collapsed):after {
    color: #003152;
    background-color: #f6f7fb;
}

.log-faq-accordion-area.ver_2 .accordion-body {
    padding: 0px 40px 30px 80px;
}

@media (max-width: 480px) {
    .log-faq-accordion-area.ver_2 .accordion-body {
        padding-left: 30px;
    }
}

.log-faq-accordion-area.ver_2 .accordion-button::after {
    top: 21px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: #406882;
}

.log-faq-accordion-area .accordion-item,
.log-faq-accordion-area .accordion-button:not(.collapsed),
.log-faq-accordion-area .accordion-button {
    background-color: transparent;
}

.log-faq-accordion-area .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 14px;
    position: relative;
}

.log-faq-accordion-area .accordion-button {
    padding: 0;
    border: none;
    font-size: 20px;
    font-weight: 900;
    position: relative;
    padding: 20px 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--laa-clr-sd-4);
    border-radius: 40px !important;
    font-family: var(--log-heading);
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.09);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.09);
}

.log-faq-accordion-area .accordion-button span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 85%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.log-faq-accordion-area .accordion-button span b {
    color: #fff;
    width: 36px;
    height: 33px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 15px;
    border-radius: 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #003152;
}

@media (max-width: 480px) {
    .log-faq-accordion-area .accordion-button span b {
        color: #003152;
        background-color: transparent;
    }
}

.log-faq-accordion-area .accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.log-faq-accordion-area .accordion-body {
    font-size: 18px;
    line-height: 30px;
    line-height: 1.667;
    padding: 20px 0px 0px 35px;
}

.log-faq-accordion-area .accordion-button::after {
    top: 15px;
    right: 25px;
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: "\f067";
    font-weight: 400;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    background-image: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fde8e5;
    color: var(--laa-clr-sd-2);
    font-family: "Font Awesome 5 Pro";
}

.log-faq-accordion-area .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #07847f;
}

.log-faq-accordion-area .accordion-button:not(.collapsed):after {
    color: #07847f;
    content: "\f068";
    background-color: #00615e;
}

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

/*Blog Section*/

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

.log-blog-item-1 {
    margin: 0 auto;
    max-width: 407px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.2);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.2);
}

.log-blog-item-1 .blog-img-meta {
    padding-bottom: 32px;
}

.log-blog-item-1 .blog-img-meta .item-meta {
    z-index: 1;
    left: 32px;
    color: #fff;
    bottom: 0px;
    font-size: 16px;
    font-weight: 900;
    position: absolute;
    padding: 20px 30px;
    border-radius: 40px;
    background-color: rgba(250, 114, 56, 0.4);
}

.log-blog-item-1 .blog-img-meta .item-meta:before {
    top: 8px;
    left: 8px;
    width: 92%;
    z-index: -1;
    content: "";
    height: 77%;
    position: absolute;
    border-radius: 40px;
    background-color: var(--laa-clr-sd-2);
}

.log-blog-item-1 .item-img {
    overflow: hidden;
    position: relative;
}

.log-blog-item-1 .item-img:before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    opacity: 0;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: rgba(5, 123, 118, 0.5);
}

.log-blog-item-1 .item-img img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: scale(1.3) translateX(-20px);
    transform: scale(1.3) translateX(-20px);
}

.log-blog-item-1 .blog-text {
    padding: 25px 40px 30px;
    border-bottom: 2px solid #f4f4f4;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 480px) {
    .log-blog-item-1 .blog-text {
        padding: 25px 20px 30px;
    }
}

.log-blog-item-1 .blog-text .blog_title {
    color: #080808;
    font-size: 26px;
    font-weight: 800;
    padding-bottom: 8px;
}

.log-blog-item-1 .blog-text .blog_title a:hover {
    color: var(--laa-clr-sd-2);
}

@media (max-width: 480px) {
    .log-blog-item-1 .blog-text .blog_title {
        font-size: 22px;
    }
}

.log-blog-item-1 .blog-text p {
    color: #6a6a6a;
    font-weight: 500;
}

.log-blog-item-1 .blog-author-more {
    padding: 20px 40px;
}

@media (max-width: 480px) {
    .log-blog-item-1 .blog-author-more {
        padding-left: 20px;
    }
}

.log-blog-item-1 .blog-author-more .author-meta {
    margin-top: 5px;
    padding-left: 60px;
}

.log-blog-item-1 .blog-author-more .author-meta:before {
    top: -5px;
    left: 0;
    width: 47px;
    content: "";
    height: 47px;
    position: absolute;
    border-radius: 100%;
    background-color: #ffe0d2;
}

.log-blog-item-1 .blog-author-more .author-meta:after {
    top: 3px;
    left: 9px;
    width: 30px;
    content: "";
    height: 30px;
    position: absolute;
    border-radius: 100%;
    background-color: #ff7e44;
}

.log-blog-item-1 .blog-author-more .author-meta h3 {
    line-height: 0.75;
    font-size: 15px;
    font-weight: 800;
    color: var(--laa-clr-sd-4);
}

.log-blog-item-1 .blog-author-more .author-meta span {
    color: #515151;
    line-height: 1;
    font-size: 13px;
}

.log-blog-item-1 .blog-author-more .read_more {
    top: 0;
    right: 0;
    width: 77px;
    color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-blog-item-1 .blog-author-more .read_more a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.log-blog-item-1 .blog-author-more .read_more:hover {
    width: 90px;
}

.log-blog-item-1 .blog-author-more .read_more:hover a {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.log-blog-item-1:hover .item-img:before {
    opacity: 1;
}

.log-blog-item-1:hover .item-img img {
    -webkit-transform: scale(1.3) translateX(0px);
    transform: scale(1.3) translateX(0px);
}

.log-blog-feed-content {
    margin: 0 auto;
    max-width: 840px;
}

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

/******* HOME PAGE 2 *******/

/*Slider Section*/

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

.log-slider-section-2 {
    margin: 0 auto;
    max-width: 1920px;
}

.log-main-slide-item-2 {
    z-index: 1;
    overflow: hidden;
}

.log-main-slide-item-2 .log-main-shape-img1 {
    left: 0;
    z-index: -1;
    top: -35px;
    width: 100%;
    height: 100%;
}

.log-main-slide-item-2 .log-main-shape-img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-main-slide-item-2 .log-main-shape-img2 {
    left: 0;
    z-index: -2;
    bottom: 250px;
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
}

.log-main-slide-item-2 .log-main-shape-img2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-main-slide-item-2 .log-main-side-img {
    bottom: 0;
    left: -50%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slide-item-2 .log-main-side-img {
        display: none;
    }
}

.log-main-slide-item-2 .log-main-shape-img3 {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    opacity: 0.055;
}

.log-main-slide-item-2 .log-main-shape-img3 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-main-slide-item-2 .log-main-shape-img4 {
    left: 0;
    top: 50%;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(-30%) scale(1.5);
    transform: translateY(-30%) scale(1.5);
}

.log-main-slide-item-2 .log-main-slider-img-text {
    gap: 40px;
    padding: 245px 0px 200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slide-item-2 .log-main-slider-img-text {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .log-main-slide-item-2 .log-main-slider-img-text {
        padding: 200px 0px 200px;
    }
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-img .log-about-exp-text {
    top: 20px;
    z-index: 1;
    left: 20px;
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
    -webkit-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
}

@media (max-width: 480px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-img .log-about-exp-text {
        display: none !important;
    }
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-img .item-img {
    width: 645px;
    height: 645px;
    overflow: hidden;
    border-radius: 100%;
}

@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),
(max-width: 767px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-img .item-img {
        width: 550px;
        height: 550px;
    }
}

@media (max-width: 767px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-img .item-img {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-img .item-img {
        width: 310px;
        height: 310px;
    }
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-img .item-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text {
    max-width: 595px;
}

@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),
(max-width: 767px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text {
        max-width: 500px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text {
        margin: 0 auto;
        text-align: center;
    }
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text .subtitle {
    opacity: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    visibility: hidden;
    padding: 10px 30px;
    margin-bottom: 12px;
    border-radius: 40px;
    display: inline-block;
    background-color: #023644;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}

@media (max-width: 480px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text .subtitle {
        font-size: 18px;
    }
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text .slider_title {
    color: #fff;
    font-size: 90px;
    font-weight: 800;
    line-height: 1.111;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text .slider_title {
        font-size: 70px;
    }
}

@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),
(max-width: 767px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text .slider_title {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text .slider_title {
        font-size: 45px;
    }
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text .slider_title .split-line:nth-child(odd) {
    -webkit-transition: all 1300ms ease;
    transition: all 1300ms ease;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text .slider_title .split-line:nth-child(even) {
    -webkit-transition: all 1300ms ease;
    transition: all 1300ms ease;
    -webkit-clip-path: polygon(100% 1%, 100% 1%, 100% 100%, 100% 100%);
    clip-path: polygon(100% 1%, 100% 1%, 100% 100%, 100% 100%);
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text p {
    opacity: 0;
    color: #fff;
    visibility: hidden;
    padding-top: 18px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.log-main-slide-item-2 .log-main-slider-img-text .log-main-slider-text .log-btn-2 {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.swiper-slide-active .log-main-side-img {
    opacity: 1;
    left: -14%;
    visibility: visible;
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

@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),
(max-width: 767px) {
    .swiper-slide-active .log-main-side-img {
        left: -25%;
    }
}

.swiper-slide-active .log-main-shape-img2 {
    bottom: 65px;
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}

.swiper-slide-active .log-main-shape-img4 {
    opacity: 0.04;
    visibility: visible;
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}

.swiper-slide-active .log-main-slider-img-text .log-main-slider-img .log-about-exp-text {
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.swiper-slide-active .log-main-slider-img-text .log-main-slider-img .item-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.swiper-slide-active .log-main-slider-img-text .log-main-slider-text .subtitle {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.swiper-slide-active .log-main-slider-img-text .log-main-slider-text .slider_title .split-line:nth-child(odd) {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.swiper-slide-active .log-main-slider-img-text .log-main-slider-text .slider_title .split-line:nth-child(even) {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-transition-delay: 900ms;
    transition-delay: 900ms;
}

.swiper-slide-active .log-main-slider-img-text .log-main-slider-text p {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.swiper-slide-active .log-main-slider-img-text .log-main-slider-text .log-btn-2 {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.log-main-pagination-2 .swiper-pagination-bullet {
    opacity: 1;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    border: 2px solid #fff;
    margin: 0px 7px !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-main-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent;
}

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

/*Service Section*/

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

.log-service-section-2 {
    overflow: hidden;
}

.log-service-item-2 {
    z-index: 1;
    padding: 50px 50px 100px;
}

@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),
(max-width: 767px) {
    .log-service-item-2 {
        padding: 50px 25px 100px;
    }
}

.log-service-item-2:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-size: contain;
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
    background-repeat: no-repeat;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    background-image: url(../img/shape/service-bg.webp);
}

@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),
(max-width: 767px) {
    .log-service-item-2:before {
        background-image: none;
        background-color: var(--laa-clr-sd-2);
    }
}

.log-service-item-2 .item-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto;
    margin-bottom: 20px;
    -webkit-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.log-service-item-2 .item-text .service_title {
    font-size: 27px;
    font-weight: 800;
    padding-bottom: 10px;
    color: var(--laa-clr-sd-4);
}

.log-service-item-2 .item-text p {
    font-size: 18px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-service-item-2 .item-arrow {
    left: 0;
    right: 0;
    opacity: 0;
    bottom: 40px;
    visibility: hidden;
    text-align: center;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.log-service-item-2 .item-arrow a {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border-radius: 100%;
    color: var(--laa-clr-sd-2);
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 43px 0px rgba(19, 19, 19, 0.08);
    box-shadow: 0px 0px 43px 0px rgba(19, 19, 19, 0.08);
}

.log-service-item-2.active .item-icon {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.log-service-item-2.active:before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.log-service-item-2.active .item-arrow {
    opacity: 1;
    bottom: 10px;
    visibility: visible;
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

.log-service-item-2.active .service_title {
    color: #fff;
}

@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),
(max-width: 767px) {
    .log-service-item-2.active .item-arrow {
        bottom: 30px;
    }
}

.log-service-item-2.active .item-text p {
    color: #fff;
}

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

/*About Section*/

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

.log-about-section-2 {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
    background-color: #f5f5f5;
}

.log-about-section-2 .log-about-map-shape {
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    z-index: -1;
}

.log-about-section-2 .log-about-map-shape img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-section-2 .log-about-map-shape {
        display: none;
    }
}

.log-about-section-2 .log-about-img-2 {
    top: 0;
    left: 0;
    z-index: -1;
    width: 35.5%;
    height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-section-2 .log-about-img-2 {
        display: none;
    }
}

.log-about-section-2 .log-about-img-2:before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    content: "";
    opacity: 0.87;
    height: 100%;
    position: absolute;
    background-color: #057b76;
}

.log-about-section-2 .log-about-img-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-about-content-2 {
    gap: 30px 95px;
}

@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),
(max-width: 767px) {
    .log-about-content-2 {
        gap: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-content-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-about-img-wrap-2 {
    max-width: 530px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-about-img-wrap-2 {
        max-width: 400px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-img-wrap-2 {
        max-width: 530px;
    }
}

.log-about-img-wrap-2 .item-img {
    overflow: hidden;
    border-radius: 400px;
    display: inline-block;
    border-bottom-right-radius: 0;
}

.log-about-text-wrap-2 {
    max-width: 590px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-feature-area {
        gap: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-about-feature-area.ver_2 {
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(9, 9, 9, 0.06);
}

.log-about-feature-item-2 {
    gap: 20px;
}

.log-about-feature-item-2 .item-icon {
    width: 79px;
    height: 79px;
    border-radius: 100%;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-about-feature-item-2 .item-text {
    max-width: 180px;
}

.log-about-feature-item-2 .item-text h3 {
    color: #080808;
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 5px;
}

.log-about-feature-item-2 .item-text p {
    font-size: 16px;
}

.log-about-feature-item-2.ver_2 {
    gap: 20px;
}

.log-about-feature-item-2.ver_2 .item-icon {
    width: 65px;
}

.log-about-feature-item-2.ver_2 .item-icon i {
    font-size: 64px;
    color: var(--laa-clr-sd-2);
}

.log-about-feature-item-2.ver_2 .item-text {
    max-width: 230px;
}

.log-about-feature-item-2.ver_2 .item-text h3 {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 10px;
    color: var(--laa-clr-sd-5);
}

.log-about-feature-item-2:hover .item-icon {
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.log-about-text-desc-2 {
    color: #6a6a6a;
    font-weight: 500;
}

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

/*Price Section*/

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

@-webkit-keyframes border_animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(1.05);
        transform: scale(1.24);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
        opacity: 0;
    }
}

@keyframes border_animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(1.05);
        transform: scale(1.24);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
        opacity: 0;
    }
}

.log-pricng-tab-btn {
    width: 100%;
    max-width: 415px;
}

.log-pricng-tab-btn li {
    position: relative;
    margin-bottom: -40px;
}

.log-pricng-tab-btn li:nth-child(odd) {
    z-index: 2;
}

.log-pricng-tab-btn li:nth-child(even) {
    z-index: 1;
}

.log-pricing-plan {
    width: 100%;
    height: 150px;
    overflow: hidden;
    padding-top: 38px;
    position: relative;
    border-radius: 100%;
    padding-left: 115px;
    background-color: #fff;
    border: 2px solid #0f3d4a;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-pricing-plan:before {
    top: 0;
    right: 0;
    height: 100%;
    width: 25px;
    content: "";
    position: absolute;
    background-color: #0f3d4a;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-pricing-plan:after {
    top: 50%;
    right: 0px;
    opacity: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    content: "\f101";
    position: absolute;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: "Font Awesome 5 Pro";
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-pricing-plan {
        padding-left: 60px;
    }
}

.log-pricing-plan .plan-price {
    color: #0f3d4a;
    font-size: 24px;
    font-weight: 800;
}

.log-pricing-plan .plan-price span {
    font-size: 15px;
    font-weight: 800;
}

.log-pricing-plan h3 {
    color: #0f3d4a;
    font-size: 24px;
    font-weight: 800;
}

@media (max-width: 767px) {
    .log-pricing-plan h3 {
        font-size: 20px;
    }
}

.nav-link.active .log-pricing-plan {
    border: 2px solid var(--laa-clr-sd-2);
}

.nav-link.active .log-pricing-plan:before {
    width: 80px;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .nav-link.active .log-pricing-plan:before {
        width: 30px;
    }
}

.nav-link.active .log-pricing-plan:after {
    opacity: 1;
    right: 35px;
    visibility: visible;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .nav-link.active .log-pricing-plan:after {
        display: none;
    }
}

.log-pricing-tab-content {
    max-width: 795px;
}

.log-pricing-desc-area .price-img-desc .item-img {
    overflow: hidden;
    border-radius: 35px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-pricing-desc-area .price-img-desc .item-img {
        height: 300px;
    }
    .log-pricing-desc-area .price-img-desc .item-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.log-pricing-desc-area .price-img-desc .play-icon {
    left: 0;
    top: 50%;
    right: 0;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.log-pricing-desc-area .price-img-desc .play-icon .video_btn_border {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    border: 20px solid var(--laa-clr-sd-2);
    -webkit-animation: border_animation 3.9s linear 0s infinite;
    animation: border_animation 3.9s linear 0s infinite;
}

.log-pricing-desc-area .price-img-desc .play-icon .video_btn_border.border_wrap-2 {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.log-pricing-desc-area .price-img-desc .play-icon .video_btn_border.border_wrap-3 {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
}

.log-pricing-desc-area .price-img-desc .play-icon a {
    color: #fff;
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    border-radius: 100%;
    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: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-pricing-desc-area .price-text-desc {
        gap: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-pricing-desc-area .price-text-desc .price-title {
    max-width: 260px;
}

.log-pricing-desc-area .price-text-desc .price-title span {
    font-size: 14px;
    font-weight: 800;
    color: var(--laa-clr-sd-2);
}

.log-pricing-desc-area .price-text-desc .price-title h3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-pricing-desc-area .price-text-desc .price-title h3 {
        font-size: 30px;
    }
}

.log-pricing-desc-area .price-text-desc ul li {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--laa-clr-sd-4);
}

.log-pricing-desc-area .price-text-desc ul li i {
    margin-right: 8px;
}

.log-pricing-desc-area .price-text-desc ul li:last-child {
    margin-bottom: 0;
}

.log-pricing-content {
    gap: 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),
(max-width: 767px) {
    .log-pricing-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

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

/*Project Section*/

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

.log-project-top-content {
    gap: 20px;
}

.log-project-top-content .log-section-title-1 {
    max-width: 515px;
}

@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),
(max-width: 767px) {
    .log-project-top-content {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        text-align: center;
    }
}

.log-project-filter-btn button {
    margin: 5px;
    border: none;
    font-size: 15px;
    font-weight: 800;
    padding: 20px 22px;
    border-radius: 10px;
    background-color: #f6f7fb;
    color: var(--laa-clr-sd-4);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-filter-btn button i {
    margin-right: 8px;
    color: var(--laa-clr-sd-2);
}

.log-project-filter-btn button.is-checked {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

.log-project-filter-btn button.is-checked i {
    color: #fff;
}

.log-project-content-2 {
    margin: 0px 95px;
}

@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),
(max-width: 767px) {
    .log-project-content-2 {
        margin: 0px 15px;
    }
}

.log-project-item-2 {
    overflow: hidden;
    border-radius: 20px;
}

.log-project-item-2:before {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    content: "";
    opacity: 0;
    position: absolute;
    background-color: #0f3d4a;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.log-project-item-2 .item-img {
    overflow: hidden;
    border-radius: 20px;
}

.log-project-item-2 .item-img img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-2 .log_more_btn {
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translateY(-50%) scale(1.4);
    transform: translateY(-50%) scale(1.4);
}

.log-project-item-2 .read-more-btn {
    top: 50%;
    left: 0;
    right: 0;
    width: 190px;
    height: 190px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    position: absolute;
    -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: 2px dashed #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-2 .read-more-btn:before {
    top: 50%;
    content: "";
    width: 126px;
    height: 126px;
    position: absolute;
    border-radius: 100%;
    border: 2px dashed #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.log-project-item-2 .read-more-btn:after {
    top: 50%;
    content: "";
    width: 190px;
    height: 190px;
    position: absolute;
    border-radius: 100%;
    border: 32px solid rgba(255, 255, 255, 0.2);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.log-project-item-2 .read-more-btn .hover-arrow {
    left: 0;
    top: 50%;
    right: 0;
    color: #fff;
    font-size: 40px;
    position: absolute;
    text-align: center;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

.log-project-item-2 .read-more-btn svg {
    fill: #fff;
    width: 170px;
    height: 170px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--gt-heading-3);
    -webkit-animation: spin 10s linear 0s infinite;
    animation: spin 10s linear 0s infinite;
}

@media (max-width: 480px) {
    .log-project-item-2 .read-more-btn svg {
        display: none;
    }
}

.log-project-item-2:hover .item-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.log-project-item-2:hover .log_more_btn {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}

.log-project-item-2:hover:before {
    opacity: 0.7;
}

.filtr-container-area {
    margin: 0px -15px;
}

.filtr-container-area .grid-sizer {
    width: 25%;
}

.filtr-container-area .grid-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.filtr-container-area .grid-item {
    padding: 15px;
}

.filtr-container-area .grid-size-25 {
    width: 25%;
}

@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) {
    .filtr-container-area .grid-size-25 {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .filtr-container-area .grid-size-25 {
        width: 100%;
    }
}

.filtr-container-area .grid-size-50 {
    width: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .filtr-container-area .grid-size-50 {
        width: 100%;
    }
}

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

/*Process Section*/

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

@-webkit-keyframes icon-bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes icon-bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.log-process-section {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-process-section .log-process-line {
    left: 0;
    top: 70%;
    z-index: -1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .log-process-item {
        margin-bottom: 40px;
    }
}

.log-process-item .process-text h3 {
    color: #222d39;
    font-size: 26px;
    font-weight: 800;
    padding-bottom: 10px;
}

.log-process-item .process-text p {
    color: #666666;
    margin: 0 auto;
    font-size: 18px;
    max-width: 250px;
}

.log-process-item .process-icon {
    z-index: 1;
}

.log-process-item .process-icon .item-icon {
    width: 266px;
    margin: 0 auto;
}

.log-process-item .process-icon .item-icon .inner-shape {
    left: -5px;
    top: -105px;
    z-index: -1;
    width: 277px;
    height: 266px;
    margin: 0 auto;
}

.log-process-item .process-icon .item-serial {
    top: 10px;
    z-index: -2;
    color: #ebf0fc;
    font-size: 60px;
    font-weight: 900;
    position: relative;
}

.log-process-item:hover .process-icon .inner-icon {
    -webkit-animation: icon-bounce 1s ease-out infinite;
    animation: icon-bounce 1s ease-out infinite;
}

.log-process-content .col-lg-3:nth-child(odd) .log-process-item .process-text {
    padding-bottom: 75px;
}

.log-process-content .col-lg-3:nth-child(even) .log-process-item {
    margin-top: 10px;
}

.log-process-content .col-lg-3:nth-child(even) .log-process-item .process-text {
    padding-top: 55px;
}

.log-process-content .col-lg-3:nth-child(even) .log-process-item .process-icon .item-serial {
    top: -15px;
}

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

/*Skill Section*/

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

.log-skill-section-2 {
    overflow: hidden;
}

.log-skill-content-2 {
    gap: 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),
(max-width: 767px) {
    .log-skill-content-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-skill-img-wrap {
    z-index: 1;
    width: 100%;
    max-width: 660px;
    padding-bottom: 110px;
}

@media (max-width: 480px) {
    .log-skill-img-wrap {
        text-align: center;
    }
}

.log-skill-img-wrap .item-img-1 {
    overflow: hidden;
    display: inline-block;
}

@media (max-width: 480px) {
    .log-skill-img-wrap .item-img-1 {
        padding-top: 0;
    }
}

.log-skill-img-wrap .item-img-2 {
    top: 0;
    right: 0;
    z-index: -1;
    overflow: hidden;
}

@media (max-width: 480px) {
    .log-skill-img-wrap .item-img-2 {
        margin-top: 30px;
        position: static !important;
    }
}

.log-skill-img-wrap .item-img-3 {
    right: 85px;
    bottom: 20px;
    overflow: hidden;
}

@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) {
    .log-skill-img-wrap .item-img-3 {
        right: 25px;
    }
}

@media (max-width: 480px) {
    .log-skill-img-wrap .item-img-3 {
        margin-top: 30px;
        position: static !important;
    }
}

.log-skill-text-wrap {
    width: 100%;
    max-width: 605px;
}

.log-skill-text-wrap .log-skill-wrap-1 {
    padding-top: 0;
}

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

/*Video Play Section*/

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

.log-video-play-section {
    z-index: 1;
    overflow: hidden;
}

.log-video-play-section .log-video-bg {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.log-video-play-section .log-video-bg:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
}

.log-video-play-section .log-video-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-video-play-icon {
    padding: 270px 0px 290px;
}

@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),
(max-width: 767px) {
    .log-video-play-icon {
        padding: 150px 0px 140px;
    }
}

.log-video-play-icon a {
    color: #fff;
    width: 140px;
    height: 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 40px;
    margin: 0 auto;
    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: var(--laa-clr-sd-2);
}

.log-video-play-icon a .video_btn_border {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    border: 20px solid var(--laa-clr-sd-2);
    -webkit-animation: border_animation 3.9s linear 0s infinite;
    animation: border_animation 3.9s linear 0s infinite;
}

.log-video-play-icon a .video_btn_border.border_wrap-2 {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.log-video-play-icon a .video_btn_border.border_wrap-3 {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-video-play-icon a {
        width: 100px;
        height: 100px;
        font-size: 30px;
    }
}

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

/*Faq Testumonial Section*/

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

.log-faq-testimonial-content {
    padding: 50px 30px;
    border-radius: 40px;
    background-color: #f9f9f9;
}

@media (max-width: 767px) {
    .log-faq-testimonial-content {
        padding: 30px 0px;
    }
}

.log-faq-testimonial-wrap {
    padding: 55px 45px;
    border-radius: 30px;
    background-color: #fff;
}

@media (max-width: 767px) {
    .log-faq-testimonial-wrap {
        padding: 30px 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-testimonial-slider-wrap {
        margin: 0 auto;
        max-width: 650px;
    }
}

.log-testimonial-item {
    max-width: 540px;
}

.log-testimonial-item .testi-quote i {
    font-size: 40px;
    color: #e8e8e8;
}

.log-testimonial-item .testi-text {
    color: #6a6a6a;
    font-size: 26px;
    margin-top: 5px;
    font-weight: 600;
    line-height: 1.346;
}

.log-testimonial-item .testi-author {
    gap: 17px;
}

.log-testimonial-item .testi-author .inner-img {
    width: 65px;
    height: 65px;
    overflow: hidden;
    border-radius: 100%;
}

.log-testimonial-item .testi-author .inner-text h3 {
    line-height: 1;
    font-size: 20px;
    font-weight: 800;
    color: var(--laa-clr-sd-4);
}

.log-testimonial-item .testi-author .inner-text span {
    font-size: 16px;
}

.log-testi-slider-nav-pagition {
    bottom: 0;
    right: 70px;
}

@media (max-width: 767px) {
    .log-testi-slider-nav-pagition {
        margin-top: 30px;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: static !important;
    }
}

.log-testi-slider-nav-pagition .log-nav-arrow {
    margin: 0px 10px;
}

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

/*Blog Section*/

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

.log-blog-section-2 {
    z-index: 1;
    overflow: hidden;
}

.log-blog-section-2:before {
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    content: "";
    height: 98px;
    position: absolute;
    background-color: #0f1114;
}

.log-blog-section-2 .log-blog-bg {
    left: 0;
    z-index: -1;
    width: 100%;
    bottom: -20%;
    height: 100%;
}

.log-blog-section-2 .log-blog-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-blog-item-2 {
    margin: 0 auto;
    max-width: 415px;
    margin-bottom: 30px;
}

.log-blog-item-2 .blog-img {
    overflow: hidden;
    border-radius: 30px;
}

.log-blog-item-2 .blog-img .item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: perspective(0px) rotateX(0deg) rotateY(0deg) scaleX(1) scaleY(1);
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) scaleX(1) scaleY(1);
}

.log-blog-item-2 .blog-img .blog-meta {
    bottom: 0;
    left: 20px;
    width: 95px;
    height: 87px;
    background-color: #0f3d4a;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-blog-item-2 .blog-img .blog-meta .month-meta {
    color: #fff;
    height: 100%;
    width: 26px;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 600;
    text-align: center;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background-color: #072a34;
}

.log-blog-item-2 .blog-img .blog-meta .date-meta {
    top: 7px;
    left: 42px;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    position: absolute;
}

.log-blog-item-2 .blog-img .blog-meta .year-meta {
    left: 35px;
    bottom: 12px;
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    position: absolute;
}

.log-blog-item-2 .blog-text {
    padding-top: 25px;
    padding-left: 20px;
}

.log-blog-item-2 .blog-text .blog_title {
    color: #080808;
    font-size: 28px;
    font-weight: 900;
}

.log-blog-item-2 .blog-text .blog_title:hover {
    color: var(--laa-clr-sd-2);
}

.log-blog-item-2:hover .blog-img .blog-meta {
    background-color: var(--laa-clr-sd-2);
}

.log-blog-item-2:hover .blog-img .item-img img {
    -webkit-transform: perspective(600px) rotateX(0.06deg) rotateY(0deg) scaleX(1.1) scaleY(1.1);
    transform: perspective(600px) rotateX(0.06deg) rotateY(0deg) scaleX(1.1) scaleY(1.1);
}

.log-footer-cta-3 {
    z-index: 2;
    border-radius: 30px;
    background-color: #164f5c;
    padding: 60px 155px 55px 55px;
}

@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),
(max-width: 767px) {
    .log-footer-cta-3 {
        padding-right: 60px;
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .log-footer-cta-3 {
        padding-left: 60px;
    }
}

@media (max-width: 480px) {
    .log-footer-cta-3 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.log-footer-cta-3 .log-footer-cta-info-text {
    gap: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-cta-3 .log-footer-cta-info-text {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 767px) {
    .log-footer-cta-3 .log-footer-cta-info-text {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-footer-cta-3 .log-footer-cta-img {
    bottom: 0;
    left: 38%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-footer-cta-3 .log-footer-cta-img {
        left: 45%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-cta-3 .log-footer-cta-img {
        display: none;
    }
}

.log-footer-cta-text-desc {
    max-width: 385px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-footer-cta-text-desc {
        max-width: 300px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-cta-text-desc {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .log-footer-cta-text-desc {
        margin: 0 auto;
        text-align: center;
    }
}

.log-footer-cta-text-desc .sec-title {
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.286;
    padding-bottom: 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),
(max-width: 767px) {
    .log-footer-cta-text-desc .sec-title {
        font-size: 28px;
    }
}

.log-footer-cta-text-desc p {
    color: #fff;
}

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

/******* HOME PAGE 3 *******/

/*Slider Section*/

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

.log-tracking-tab-content {
    right: 16%;
    z-index: 3;
    width: 100%;
    bottom: 150px;
    max-width: 740px;
    position: absolute;
}

.log-tracking-tab-content .log-slider-track-btn {
    overflow: hidden;
    display: inline-block;
    background-color: #07313d;
    border-top-left-radius: 25px;
}

.log-tracking-tab-content .log-slider-track-btn .nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
}

.log-tracking-tab-content .log-slider-track-btn .nav-link.active {
    padding: 15px 30px;
    background-color: var(--laa-clr-sd-3);
}

.log-tracking-tab-content .log-track-form-field {
    margin-top: -9px;
    padding: 40px 45px;
    background-color: #07313d;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

@media (max-width: 480px) {
    .log-tracking-tab-content .log-track-form-field {
        padding: 20px 15px;
    }
}

.log-tracking-tab-content .log-track-form-field form {
    position: relative;
}

.log-tracking-tab-content .log-track-form-field input {
    color: #fff;
    width: 100%;
    height: 85px;
    font-size: 15px;
    font-weight: 600;
    padding-left: 50px;
    border-radius: 50px;
    border: 2px solid #14586a;
    background-color: transparent;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-tracking-tab-content .log-track-form-field input {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .log-tracking-tab-content .log-track-form-field input {
        height: 60px;
    }
}

.log-tracking-tab-content .log-track-form-field input::-webkit-input-placeholder {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.log-tracking-tab-content .log-track-form-field input::-moz-placeholder {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.log-tracking-tab-content .log-track-form-field input:-ms-input-placeholder {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.log-tracking-tab-content .log-track-form-field input::-ms-input-placeholder {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.log-tracking-tab-content .log-track-form-field input::placeholder {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.log-tracking-tab-content .log-track-form-field button {
    top: 8px;
    right: 8px;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 700;
    position: absolute;
    padding: 20px 33px;
    border-radius: 50px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-3);
}

@media (max-width: 480px) {
    .log-tracking-tab-content .log-track-form-field button {
        height: 55px;
        margin-top: 20px;
        position: static;
        text-align: center;
        padding: 15px 35px;
    }
}

.log-tracking-tab-content .log-track-form-field button:hover {
    color: #fff;
    background-color: #000;
}

@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),
(max-width: 767px) {
    .log-tracking-tab-content {
        right: 9%;
    }
}

@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),
(max-width: 767px) {
    .log-tracking-tab-content {
        right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-tracking-tab-content {
        left: 15px;
        margin: 0 auto;
        max-width: 93%;
    }
}

.log-slider-section-3 {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
    background-color: #1a1d1e;
}

.log-slider-section-3:before {
    left: -2%;
    z-index: 2;
    width: 105%;
    content: "";
    height: 180px;
    bottom: -128px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-section-3:before {
        display: none;
    }
}

.log-slider-section-3 .log-slider-shape2 {
    left: -10%;
    z-index: 3;
    bottom: -10px;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .log-slider-section-3 .log-slider-shape2 {
        left: -18%;
    }
}

@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),
(max-width: 767px) {
    .log-slider-section-3 .log-slider-shape2 {
        display: none;
    }
}

.log-main-slider-item-3 {
    z-index: 1;
    overflow: hidden;
    position: relative;
    padding: 350px 0px 370px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slider-item-3 {
        padding: 240px 0px 270px;
    }
}

@media (max-width: 480px) {
    .log-main-slider-item-3 {
        padding: 200px 0px 270px;
    }
}

.log-main-slider-item-3 .log-slider-shape {
    top: 0;
    opacity: 0;
    right: -45%;
    z-index: -2;
    opacity: 0.3;
    visibility: hidden;
}

.log-main-slider-item-3 .log-slider-img-3 {
    bottom: 0;
    left: -35%;
    opacity: 0;
    z-index: -1;
    height: 100%;
    visibility: hidden;
}

.log-main-slider-item-3 .log-slider-img-3 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-main-slider-item-3 .log-slider-main-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.log-main-slider-item-3 .log-main-slider-text {
    width: 100%;
    max-width: 740px;
}

.log-main-slider-item-3 .log-main-slider-text .subtitle {
    color: #fff;
    font-weight: 700;
    padding: 7px 25px;
    border-radius: 30px;
    margin-bottom: 20px;
    display: inline-block;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    background-color: var(--laa-clr-sd-3);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

@media (max-width: 480px) {
    .log-main-slider-item-3 .log-main-slider-text .subtitle {
        font-size: 16px;
        padding: 5px 20px;
    }
}

.log-main-slider-item-3 .log-main-slider-text .slider_title_2 {
    opacity: 0;
    color: #fff;
    font-size: 65px;
    font-weight: 800;
    visibility: hidden;
    max-width: 600px;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .log-main-slider-item-3 .log-main-slider-text .slider_title_2 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .log-main-slider-item-3 .log-main-slider-text .slider_title_2 {
        font-size: 40px;
    }
}

.log-main-slider-item-3 .log-main-slider-text p {
    opacity: 0;
    color: #fff;
    max-width: 600px;
    visibility: hidden;
    padding-top: 20px;
    padding-bottom: 60px;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.swiper-slide-active .log-main-slider-item-3 .log-slider-img-3 {
    opacity: 1;
    left: -18%;
    visibility: visible;
    -webkit-transition: all 2000ms ease;
    transition: all 2000ms ease;
}

.swiper-slide-active .log-main-slider-item-3 .log-slider-shape {
    right: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 2500ms ease;
    transition: all 2500ms ease;
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.swiper-slide-active .log-main-slider-item-3 .log-main-slider-text .subtitle {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.swiper-slide-active .log-main-slider-item-3 .log-main-slider-text .slider_title_2 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}

.swiper-slide-active .log-main-slider-item-3 .log-main-slider-text p {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slider-nav-2 {
        gap: 15px;
        margin: 30px 0px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-main-slider-nav-2 .log-main-prev-2,
.log-main-slider-nav-2 .log-main-next-2 {
    top: 50%;
    color: #fff;
    width: 63px;
    z-index: 2;
    height: 63px;
    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;
}

.log-main-slider-nav-2 .log-main-prev-2:hover,
.log-main-slider-nav-2 .log-main-next-2:hover {
    color: #fff;
    border: 2px solid var(--laa-clr-sd-2);
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-main-slider-nav-2 .log-main-prev-2,
    .log-main-slider-nav-2 .log-main-next-2 {
        width: 50px;
        height: 50px;
        position: static;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

.log-main-slider-nav-2 .log-main-prev-2 {
    left: 85px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-main-slider-nav-2 .log-main-prev-2 {
        left: 20px;
    }
}

.log-main-slider-nav-2 .log-main-next-2 {
    right: 85px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-main-slider-nav-2 .log-main-next-2 {
        right: 20px;
    }
}

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

/*Category Section*/

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

.log-category-content {
    margin: 0px -10px;
}

.log-category-content li {
    margin: 10px;
}

.log-category-item {
    gap: 24px;
    width: 307px;
    height: 150px;
    padding: 15px;
    border-radius: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 2px solid #c3d0d8;
}

@media (max-width: 480px) {
    .log-category-item {
        width: 285px;
    }
}

.log-category-item:hover {
    border: 2px solid var(--laa-clr-sd-3);
    -webkit-box-shadow: 0 10px 0 0 var(--laa-clr-sd-3);
    box-shadow: 0 10px 0 0 var(--laa-clr-sd-3);
}

.log-category-item .item-icon {
    width: 65px;
    height: 65px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-category-item .item-text {
    text-align: left;
}

.log-category-item .item-text span {
    color: #003757;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: 20px;
    margin-bottom: 5px;
    display: inline-block;
    background-color: #e1f4ff;
}

.log-category-item .item-text h3 {
    font-size: 25px;
    font-weight: 800;
    color: var(--laa-clr-sd-4);
}

.log-category-item:hover .item-icon {
    -webkit-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.log-bottom-text-btn a {
    font-weight: 800;
    color: var(--laa-clr-sd-4);
}

.log-bottom-text-btn a i {
    margin-left: 8px;
    color: var(--laa-clr-sd-3);
}

.log-bottom-text-btn a:hover {
    color: var(--laa-clr-sd-2);
}

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

/*About Section*/

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

.log-about-content-3 {
    gap: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@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),
(max-width: 767px) {
    .log-about-content-3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-about-img-3 {
    width: 100%;
    max-width: 685px;
}

.log-about-img-3 .item-img-1 {
    overflow: hidden;
    border-radius: 400px;
    display: inline-block;
}

.log-about-img-3 .item-img-2 {
    right: 0;
    top: 75px;
    position: absolute;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-img-3 .item-img-2 {
        display: none;
    }
}

.log-about-img-3 .item-counter {
    right: 5px;
    bottom: 35px;
    width: 225px;
    height: 225px;
    position: absolute;
    border-radius: 100%;
    background-color: #0f3d4a;
}

@media (max-width: 480px) {
    .log-about-img-3 .item-counter {
        width: 150px;
        height: 150px;
    }
}

.log-about-img-3 .item-counter .inner-text {
    text-align: center;
}

.log-about-img-3 .item-counter .inner-text h3 {
    color: #fff;
    line-height: 1;
    font-size: 60px;
    font-weight: 700;
}

@media (max-width: 480px) {
    .log-about-img-3 .item-counter .inner-text h3 {
        font-size: 30px;
    }
}

.log-about-img-3 .item-counter .inner-text span {
    color: #fff;
}

@media (max-width: 480px) {
    .log-about-img-3 .item-counter .inner-text p {
        font-size: 14px;
    }
}

.log-about-text-3 {
    width: 100%;
    max-width: 575px;
}

.log-about-feature-list-3 {
    gap: 30px;
}

.log-about-feature-list-3 .item-img {
    width: 240px;
    height: 155px;
    overflow: hidden;
    border-radius: 150px;
}

.log-about-feature-list-3 .item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-about-feature-list-3 .item-text h3 {
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 10px;
    color: var(--laa-clr-sd-4);
}

.log-about-feature-list-3 .item-text ul li {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--laa-clr-sd-4);
}

.log-about-feature-list-3 .item-text ul li:last-child {
    margin-bottom: 0;
}

.log-about-feature-list-3 .item-text ul li i {
    color: var(--laa-clr-sd-3);
    margin-right: 10px;
}

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

/*Service Section*/

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

.log-service-section-3 {
    z-index: 1;
    overflow: hidden;
}

.log-service-section-3:before {
    left: 0;
    z-index: -1;
    width: 105%;
    top: -115px;
    content: "";
    height: 150px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
}

.log-service-section-3:after {
    left: 0;
    z-index: -1;
    bottom: -115px;
    width: 105%;
    content: "";
    height: 150px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
}

.log-service-item-3 {
    margin: 0 auto;
    max-width: 634px;
    padding-bottom: 60px;
    margin-bottom: 40px;
}

@media (max-width: 480px) {
    .log-service-item-3 {
        margin-bottom: 20px;
    }
}

.log-service-item-3 .service-img {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.log-service-item-3 .service-img img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-service-item-3 .service-img:before,
.log-service-item-3 .service-img:after {
    top: 0;
    left: 0;
    content: "";
    width: 0%;
    z-index: 1;
    opacity: 0.25;
    height: 100%;
    position: absolute;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-service-item-3 .service-img:after {
    right: 0;
    left: auto;
}

.log-service-item-3 .service-text {
    left: 0;
    right: 0;
    gap: 20px;
    width: 90%;
    bottom: 0;
    z-index: 2;
    margin: 0 auto;
    padding: 26px 70px;
    border-radius: 100px;
    background-color: #022538;
}

@media (max-width: 480px) {
    .log-service-item-3 .service-text {
        width: 100%;
        border-radius: 0;
        margin-top: -15px;
        padding: 40px 30px 28px;
        position: static !important;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
}

.log-service-item-3 .service-text .item-icon {
    width: 60px;
    color: #fff;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 500ms cubic-bezier(0.4, 0.65, 0.81, 0.58);
    transition: 500ms cubic-bezier(0.4, 0.65, 0.81, 0.58);
}

.log-service-item-3 .service-text .item-text span {
    color: #053c5b;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 13px;
    margin-bottom: 8px;
    border-radius: 30px;
    display: inline-block;
    background-color: #e1f4ff;
}

.log-service-item-3 .service-text .item-text h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
}

@media (max-width: 480px) {
    .log-service-item-3 .service-text .item-text h3 {
        font-size: 22px;
    }
}

.log-service-item-3:hover .service-text .item-icon {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
}

.log-service-item-3:hover .service-img:before,
.log-service-item-3:hover .service-img:after {
    width: 100%;
}

.log-service-item-3:hover .service-img:after {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.log-service-item-3:hover .service-img img {
    -webkit-transform: rotate(5deg) scale(1.2);
    transform: rotate(5deg) scale(1.2);
}

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

/*Quote Section*/

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

.log-request-form-section-2 {
    overflow: hidden;
}

.log-request-form-section-2 .log-req-side-img {
    z-index: -2;
    right: -22%;
    bottom: -10%;
}

@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),
(max-width: 767px) {
    .log-request-form-section-2 .log-req-side-img {
        display: none;
    }
}

.log-request-form-content-2 {
    gap: 40px 80px;
}

@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),
(max-width: 767px) {
    .log-request-form-content-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-request-form-content-2 .log-request-form-text-2 {
    max-width: 620px;
}

.log-request-feature-box {
    gap: 20px;
}

.log-request-feature-box .log-req-ft-item {
    width: 225px;
    height: 120px;
    border-radius: 10px;
    background-color: #f8f8f8;
}

.log-request-feature-box .log-req-ft-item span {
    font-size: 18px;
    font-weight: 800;
    color: var(--laa-clr-sd-3);
}

.log-request-feature-box .log-req-ft-item h3,
.log-request-feature-box .log-req-ft-item h3 span {
    color: #090909;
    font-size: 42px;
    font-weight: 800;
}

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

/*Project Section*/

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

.log-project-section-3 {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-project-section-3 .background_overlay {
    z-index: -1;
    opacity: 0.8;
    background-color: #022538;
}

.log-project-section-3 .log-section-title-2 .subtitle {
    color: #fff;
}

.log-project-section-3 .log-section-title-2 .section_title {
    color: #fff;
}

.log-project-section-3:before {
    left: -2%;
    z-index: 0;
    width: 105%;
    top: -115px;
    content: "";
    height: 150px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
}

@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),
(max-width: 767px) {
    .log-project-section-3:before {
        display: none;
    }
}

.log-project-section-3:after {
    left: -2%;
    z-index: -1;
    bottom: -100px;
    width: 105%;
    content: "";
    height: 450px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
}

@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),
(max-width: 767px) {
    .log-project-section-3:after {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.log-project-content-3 {
    gap: 10px;
    margin: 0px 90px;
}

@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),
(max-width: 767px) {
    .log-project-content-3 {
        margin: 0px 15px;
    }
}

@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),
(max-width: 767px) {
    .log-project-content-3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-project-item-3 {
    overflow: hidden;
    border-radius: 15px;
}

.log-project-item-3 .item-wrap:before {
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: rgba(0, 0, 0, 0.7);
}

.log-project-item-3 .item-img img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-3 .item-text {
    top: 50%;
    left: 50%;
    opacity: 0;
    z-index: 1;
    position: absolute;
    border-radius: 100%;
    -webkit-transition: 500ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: 500ms cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.log-project-item-3 .item-text a {
    width: 110px;
    color: #fff;
    height: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 800;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    white-space: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--laa-clr-sd-3);
}

.log-project-item-3:hover .item-wrap:before {
    opacity: 1;
}

.log-project-item-3:hover .item-text {
    opacity: 1;
}

.log-project-item-3:hover .item-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

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

/*Price Section*/

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

.log-price-plan-section {
    overflow: hidden;
}

.log-price-plan-item {
    border-radius: 15px;
    margin-bottom: 35px;
    padding: 55px 20px 20px;
    background-color: #f5f7fa;
}

.log-price-plan-item .price-title-price {
    gap: 20px;
    padding-left: 10px;
}

.log-price-plan-item .price-title-price .item-icon {
    width: 105px;
    height: 104px;
    border-radius: 100%;
    background-color: #fff;
}

.log-price-plan-item .price-title-price .item-value h3 {
    color: #1a1919;
    font-size: 30px;
    font-weight: 800;
}

@media (max-width: 480px) {
    .log-price-plan-item .price-title-price .item-value h3 {
        font-size: 24px;
    }
}

.log-price-plan-item .price-title-price .item-value h2 {
    color: #1a1919;
    font-size: 60px;
    font-weight: 800;
}

@media (max-width: 480px) {
    .log-price-plan-item .price-title-price .item-value h2 {
        font-size: 40px;
    }
}

.log-price-plan-item .price-title-price .item-value h2 sub {
    bottom: 0;
    color: #1a1919;
    font-size: 20px;
    font-weight: 500;
}

.log-price-plan-item .item-plan-name h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 13px 30px;
    border-radius: 40px;
    display: inline-block;
    background-color: #0f3d4a;
}

.log-price-plan-item .item-plan-list {
    margin-top: -25px;
    border-radius: 30px;
    background-color: #fff;
    padding: 60px 35px 20px;
}

@media (max-width: 480px) {
    .log-price-plan-item .item-plan-list {
        padding: 60px 20px 20px;
    }
}

.log-price-plan-item .item-plan-list ul li {
    ont-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--laa-clr-sd-4);
}

.log-price-plan-item .item-plan-list ul li i {
    margin-right: 5px;
    color: var(--laa-clr-sd-3);
}

.log-price-plan-item .price-btn a {
    color: #013b4f;
    font-size: 18px;
    font-weight: 900;
}

.log-price-plan-item .price-btn a i {
    margin-left: 8px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--laa-clr-sd-3);
}

.log-price-plan-item .price-btn a:hover {
    color: var(--laa-clr-sd-3);
}

.log-price-plan-item .price-btn a:hover i {
    margin-left: 12px;
}

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

/*Team Section*/

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

.log-team-section-3 {
    z-index: 1;
    overflow: hidden;
}

.log-team-section-3:before,
.log-team-section-3:after {
    top: 0;
    z-index: -1;
    width: 100%;
    content: "";
    height: 200px;
    position: absolute;
    background-color: #fff;
}

.log-team-section-3:after {
    top: auto;
    bottom: 0;
    height: 270px;
}

@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),
(max-width: 767px) {
    .log-team-section-3:after {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-section-3 .log-bottom-text-btn {
        margin-top: 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),
(max-width: 767px) {
    .log-team-section-3 .log-bottom-text-btn a {
        color: #fff;
    }
}

.log-team-item-3 {
    max-width: 421px;
    padding-bottom: 22px;
}

.log-team-item-3 .team-name-social {
    left: 0;
    right: 0;
    width: 88%;
    z-index: 1;
    opacity: 0;
    bottom: 30px;
    margin: 0 auto;
    overflow: hidden;
    padding: 15px 40px;
    position: absolute;
    border-radius: 50px;
    visibility: hidden;
    background-color: #222429;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-team-item-3 .team-name-social:before {
    top: 0;
    right: 0;
    z-index: -1;
    width: 50%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: var(--laa-clr-sd-3);
}

.log-team-item-3 .team-name-social .item-name h3 {
    color: #fff;
    line-height: 1;
    font-size: 20px;
    font-weight: 800;
}

.log-team-item-3 .team-name-social .item-name span {
    line-height: 1;
    font-size: 15px;
    color: #fff;
    opacity: .8;
}

.log-team-item-3 .team-name-social .item-social a {
    color: #ffff;
    font-size: 16px;
    margin-left: 25px;
}

.log-team-item-3 .team-name-social .item-social a:hover {
    color: #fff;
}

.log-team-item-3 .team-name-social .item-social a:first-child {
    margin-left: 0;
}

.log-team-item-3:hover .team-name-social {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.log-team-vision-text {
    max-width: 560px;
    padding-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-vision-text {
        margin: 0 auto;
    }
}

.log-team-vision-text .log-section-title-2 .subtitle {
    color: #fff;
}

.log-team-vision-text .log-section-title-2 .section_title {
    color: #fff;
}

.log-team-vision-text .log-section-title-2 p {
    color: #fff;
}

.log-team-vision-text .log-about-cta-grp .log-about-cta .inner-icon {
    border: 8px solid #484c49;
}

.log-team-vision-text .log-about-cta-grp .log-about-cta .inner-text span,
.log-team-vision-text .log-about-cta-grp .log-about-cta .inner-text a {
    color: #fff;
}

.log-team-vision-tab {
    border-radius: 40px;
    background-color: #fff;
    padding: 70px 65px 55px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
}

@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),
(max-width: 767px) {
    .log-team-vision-tab {
        padding: 70px 30px 55px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-vision-tab {
        margin: 0 auto;
        max-width: 560px;
        margin-top: 40px;
    }
}

.log-team-vision-btn {
    overflow: hidden;
    border-radius: 30px;
    display: inline-block;
}

.log-team-vision-btn .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-team-vision-btn .nav-tabs .nav-link {
    z-index: 1;
    color: #0f3d4a;
    font-size: 15px;
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    padding: 10px 25px !important;
}

@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),
(max-width: 767px) {
    .log-team-vision-btn .nav-tabs .nav-link {
        padding: 10px 15px !important;
    }
}

.log-team-vision-btn .nav-tabs .nav-link:before {
    top: 0;
    width: 0%;
    right: 0;
    z-index: -1;
    left: auto;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-3);
}

.log-team-vision-btn .nav-tabs .nav-link.active {
    color: #fff;
}

.log-team-vision-btn .nav-tabs .nav-link.active:before {
    left: 0;
    width: 100%;
    right: auto;
}

.log-team-vision-btn .nav-tabs li:nth-child(odd) .nav-link {
    background-color: #eeeeee;
}

.log-team-vision-btn .nav-tabs li:nth-child(even) .nav-link {
    background-color: #f2f2f2;
}

.log-team-vision-text-img .item-img {
    overflow: hidden;
    display: inline-block;
    border-radius: 10px;
}

.log-team-vision-text-img .item-text {
    color: #383838;
    margin-top: 17px;
}

.log-team-vision-text-img .item-text p {
    font-weight: 500;
    padding-bottom: 25px;
}

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

/*Secure Service Section*/

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

@-webkit-keyframes TXSKEW {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes TXSKEW {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.log-secure-service-item {
    gap: 40px;
    padding: 55px;
    margin-bottom: 20px;
    border-radius: 120px;
    border: 2px solid #0f3d4a;
}

@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),
(max-width: 767px) {
    .log-secure-service-item {
        gap: 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),
(max-width: 767px) {
    .log-secure-service-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-secure-service-item .item-serial {
    width: 60px;
    height: 60px;
    color: #252525;
    font-size: 20px;
    font-weight: 900;
    border-radius: 100%;
    background-color: var(--laa-clr-sd-2);
}

.log-secure-service-item .secure_title {
    font-size: 28px;
    font-weight: 800;
    max-width: 435px;
    color: var(--laa-clr-sd-4);
}

@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),
(max-width: 767px) {
    .log-secure-service-item .secure_title {
        max-width: 380px;
    }
}

.log-secure-service-item .secure-value {
    padding: 15px 50px;
    border-radius: 50px;
    background-color: var(--laa-clr-sd-2);
}

@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),
(max-width: 767px) {
    .log-secure-service-item .secure-value {
        padding: 12px 30px;
    }
}

.log-secure-service-item .secure-value h3,
.log-secure-service-item .secure-value span {
    color: #252525;
    line-height: 1;
    font-size: 30px;
    font-weight: 900;
}

@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),
(max-width: 767px) {
    .log-secure-service-item .secure-value h3,
    .log-secure-service-item .secure-value span {
        font-size: 25px;
    }
}

.log-secure-service-item .secure-value span {
    font-size: 20px;
}

@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),
(max-width: 767px) {
    .log-secure-service-item .secure-value span {
        font-size: 18px;
    }
}

.log-secure-service-item .secure-img {
    top: 50px;
    right: 45px;
    width: 347px;
    height: 238px;
    -webkit-mask-size: cover;
    mask-size: cover;
    position: absolute;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transform: translate(0, -50%) scale(0.5);
    -khtml-transform: translate(0, -50%) scale(0.5);
    transform: translate(0, -50%) scale(0.5);
    opacity: 0;
    -webkit-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    -webkit-mask-image: url(../img/shape/sc1.webp);
    mask-image: url(../img/shape/sc1.webp);
}

@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),
(max-width: 767px) {
    .log-secure-service-item .secure-img {
        display: none;
    }
}

.log-secure-service-item:hover .secure-img,
.log-secure-service-item.active .secure-img {
    -webkit-transform: translate(0, -50%) scale(1);
    transform: translate(0, -50%) scale(1);
    opacity: 1;
}

.log-secure-service-item:hover .secure-img .item-img,
.log-secure-service-item.active .secure-img .item-img {
    -webkit-animation-name: TXSKEW;
    animation-name: TXSKEW;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

/*Award Section*/

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

.log-award-section-3 {
    overflow: hidden;
}

.log-award-content-3 {
    gap: 45px;
}

@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),
(max-width: 767px) {
    .log-award-content-3 {
        gap: 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),
(max-width: 767px) {
    .log-award-content-3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-award-img-3 {
    max-width: 542px;
}

.log-award-img-3 .item-img {
    overflow: hidden;
    border-radius: 15px;
}

.log-award-text-3 {
    width: 100%;
    max-width: 720px;
}

.log-award-slider-3 {
    padding: 0px 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-award-slider-3 {
        padding: 0px 0px;
    }
}

.log-award-item-3 {
    gap: 28px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-award-item-3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-award-item-3 .item-img {
    width: 199px;
    height: 199px;
    overflow: hidden;
    border-radius: 20px;
}

.log-award-item-3 .item-text {
    max-width: 350px;
}

.log-award-item-3 .item-text h4 {
    color: #444444;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
}

.log-award-item-3 .item-text h3 {
    color: #000000;
    font-size: 21px;
    font-weight: 800;
    padding-bottom: 12px;
}

.log-award-item-3 .item-text p {
    font-size: 17px;
    font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-award-slider-nav {
        gap: 15px;
        margin-top: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-award-slider-nav .award-arrow {
    top: 50%;
    width: 55px;
    color: #000;
    height: 55px;
    position: absolute;
    border-radius: 100%;
    border: 1px solid #8c8c8c;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-award-slider-nav .award-arrow:hover {
    background-color: var(--laa-clr-sd-3);
    border: 1px solid var(--laa-clr-sd-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-award-slider-nav .award-arrow {
        position: static;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.log-award-slider-nav .log-award-prev-2 {
    left: 0;
}

.log-award-slider-nav .log-award-next-2 {
    right: 0;
}

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

/*Blog Section*/

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

.log-blog-item-3 {
    border-radius: 20px;
    padding: 40px 25px 115px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-blog-item-3 .blog-serial {
    color: #0f3d4a;
    line-height: 1;
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 22px;
}

.log-blog-item-3 .blog-meta {
    margin-bottom: 15px;
}

.log-blog-item-3 .blog-meta span {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 30px;
    display: inline-block;
    background-color: #0f3d4a;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-blog-item-3 .blog_title {
    color: #000000;
    font-size: 29px;
    font-weight: 800;
    padding-bottom: 10px;
}

.log-blog-item-3 p {
    color: #444444;
    font-size: 18px;
    font-weight: 500;
}

.log-blog-item-3 .blog-arrow {
    left: 0;
    right: 0;
    opacity: 0;
    bottom: 20px;
    text-align: center;
    visibility: hidden;
    position: absolute;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-blog-item-3 .blog-arrow a {
    width: 66px;
    height: 66px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #0e0701;
    margin: 0 auto;
    -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-color: var(--laa-clr-sd-3);
}

.log-blog-item-3 .blog-arrow a i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

.log-blog-item-3 .blog-arrow a:hover {
    background-color: #fff;
}

.log-blog-item-3 .blog-arrow a:hover i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.log-blog-item-3:hover,
.log-blog-item-3.active {
    background-color: var(--laa-clr-sd-3);
}

.log-blog-item-3:hover .blog-arrow,
.log-blog-item-3.active .blog-arrow {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.log-blog-item-3:hover .blog-meta span,
.log-blog-item-3.active .blog-meta span {
    color: var(--laa-clr-sd-3);
    background-color: transparent;
}

.log-blog-item-3.active .blog_title,
.log-blog-item-3.active .blog-serial,
.log-blog-item-3.active p {
    color: #fff;
}

.log-blog-item-3.active .blog-arrow a {
    background: #fff;
}

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

/*Testimonial Section*/

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

@-webkit-keyframes float {
    0% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
    50% {
        -webkit-transform: translatey(-20px);
        transform: translatey(-20px);
    }
    100% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
    50% {
        -webkit-transform: translatey(-20px);
        transform: translatey(-20px);
    }
    100% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

.log-testimonial-content-2 {
    gap: 40px 70px;
}

@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),
(max-width: 767px) {
    .log-testimonial-content-2 {
        gap: 40px 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-testimonial-content-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-testimonial-img-wrap-2 {
    width: 100%;
    height: 430px;
    max-width: 610px;
}

@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),
(max-width: 767px) {
    .log-testimonial-img-wrap-2 {
        max-width: 500px;
        width: 100%;
    }
}

.log-testimonial-img-wrap-2 .carousel-indicators {
    margin: 0;
    display: inherit;
    position: static;
}

.log-testimonial-img-wrap-2 .carousel-indicators [data-bs-target] {
    margin: 0;
    margin: 0;
    opacity: 1;
    width: 103px;
    border: none;
    height: 103px;
    text-indent: 0;
    overflow: hidden;
    position: absolute;
    border-radius: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 2px solid transparent;
    background-color: rgb(95, 95, 95);
    -webkit-animation: float 4s ease-in-out infinite;
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 480px) {
    .log-testimonial-img-wrap-2 .carousel-indicators [data-bs-target] {
        width: 70px;
        height: 70px;
    }
}

.log-testimonial-img-wrap-2 .carousel-indicators [data-bs-target]:nth-child(1) {
    top: 50px;
    left: 100px;
}

@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),
(max-width: 767px) {
    .log-testimonial-img-wrap-2 .carousel-indicators [data-bs-target]:nth-child(1) {
        left: 50px;
    }
}

.log-testimonial-img-wrap-2 .carousel-indicators [data-bs-target]:nth-child(2) {
    right: 0;
    top: 30px;
    -webkit-animation: float 5s ease-in-out infinite;
    animation: float 5s ease-in-out infinite;
}

.log-testimonial-img-wrap-2 .carousel-indicators [data-bs-target]:nth-child(3) {
    bottom: 0;
    left: 30%;
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
}

@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),
(max-width: 767px) {
    .log-testimonial-img-wrap-2 .carousel-indicators [data-bs-target]:nth-child(3) {
        left: 15%;
    }
}

.log-testimonial-img-wrap-2 .carousel-indicators [data-bs-target]:nth-child(4) {
    right: 0;
    bottom: 15%;
    -webkit-animation: float 3s ease-in-out infinite;
    animation: float 3s ease-in-out infinite;
}

.log-testimonial-img-wrap-2 .carousel-indicators [data-bs-target]:nth-child(5) {
    bottom: 42%;
    right: 33%;
    -webkit-animation: float 7s ease-in-out infinite;
    animation: float 7s ease-in-out infinite;
}

.log-testimonial-img-wrap-2 .carousel-indicators .active {
    border: 2px solid #eda209;
}

.log-testimonial-item-wrap-2 {
    width: 100%;
    max-width: 610px;
}

.log-testimonial-item-2 {
    width: 100%;
    padding: 50px 50px;
    border-radius: 20px;
    background-color: #f6f6f6;
}

@media (max-width: 480px) {
    .log-testimonial-item-2 {
        padding: 30px 20px;
    }
}

.log-testimonial-item-2 .testi-rate-quote {
    margin-bottom: 20px;
}

.log-testimonial-item-2 .testi-rate-quote .testi-rate {
    padding: 2px 25px 6px;
    border-radius: 30px;
    background-color: #ef991f;
}

.log-testimonial-item-2 .testi-rate-quote .testi-rate li {
    color: #fff;
    font-size: 14px;
}

.log-testimonial-item-2 .testi-rate-quote .testi-quote i {
    line-height: 1;
    color: #000000;
    font-size: 55px;
}

.log-testimonial-item-2 .testi-text-desc {
    color: #232222;
    font-size: 25px;
    font-weight: 700;
    font-style: italic;
}

@media (max-width: 480px) {
    .log-testimonial-item-2 .testi-text-desc {
        font-size: 20px;
    }
}

.log-testimonial-item-2 .testi-author-item {
    gap: 8px;
    margin-top: 35px;
}

.log-testimonial-item-2 .testi-author-item .inner-img {
    width: 55px;
    height: 55px;
    overflow: hidden;
    border-radius: 100%;
}

.log-testimonial-item-2 .testi-author-item .inner-text h3 {
    color: #363539;
    line-height: 1;
    font-size: 20px;
    font-weight: 800;
}

.log-testimonial-item-2 .testi-author-item .inner-text span {
    color: #9192a6;
}

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

/******* HOME PAGE 4 *******/

/*Slider Section*/

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

.log-slider-section-4 {
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-slider-main-item-4 .slider-main-text-img {
    padding: 315px 0px 200px;
}

@media (max-width: 480px) {
    .log-slider-main-item-4 .slider-main-text-img {
        padding: 250px 0px 165px;
    }
}

.log-slider-main-item-4 .slider-side-shape {
    right: 0;
    top: 70px;
    z-index: 2;
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

@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),
(max-width: 767px) {
    .log-slider-main-item-4 .slider-side-shape {
        display: none;
    }
}

.log-slider-main-item-4 .slider-side-img {
    right: 0;
    top: 90px;
    z-index: 2;
    overflow: hidden;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-image: url(../img/shape/slider-img.webp);
    mask-image: url(../img/shape/slider-img.webp);
}

@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),
(max-width: 767px) {
    .log-slider-main-item-4 .slider-side-img {
        display: none;
    }
}

.log-slider-main-item-4 .slider-side-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
}

.log-slider-main-item-4 .slider-side-img:before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(236, 57, 0, 0.5);
}

.log-slider-main-item-4 .slider-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.log-slider-main-item-4 .slider-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-slider-main-item-4 .slider-main-text {
    z-index: 3;
    max-width: 700px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-main-item-4 .slider-main-text {
        margin: 0 auto;
        text-align: center;
    }
}

.log-slider-main-item-4 .slider-main-text .slider-slug {
    opacity: 0;
    font-weight: 700;
    visibility: hidden;
    padding-left: 80px;
    display: inline-block;
    color: var(--laa-clr-sd-2);
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    font-family: var(--log-heading-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-main-item-4 .slider-main-text .slider-slug {
        padding-left: 0;
    }
}

.log-slider-main-item-4 .slider-main-text .slider-slug:before {
    left: 0;
    top: 15px;
    opacity: 0;
    content: "";
    height: 2px;
    width: 0px;
    border-radius: 5px;
    position: absolute;
    visibility: hidden;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-main-item-4 .slider-main-text .slider-slug:before {
        display: none;
    }
}

.log-slider-main-item-4 .slider-main-text .slider-slug:after {
    top: 11px;
    left: 68px;
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-main-item-4 .slider-main-text .slider-slug:after {
        display: none;
    }
}

.log-slider-main-item-4 .slider-main-text .slider_title_2 {
    color: #fff;
    opacity: 0;
    visibility: hidden;
    font-size: 80px;
    font-weight: 800;
    line-height: 1.2;
    padding: 20px 0px 30px;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-main-item-4 .slider-main-text .slider_title_2 {
        text-align: center;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-main-item-4 .slider-main-text .slider_title_2 {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .log-slider-main-item-4 .slider-main-text .slider_title_2 {
        font-size: 40px;
    }
}

.log-slider-main-item-4 p {
    color: #fff;
    max-width: 620px;
    padding-bottom: 45px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-main-item-4 p {
        margin: 0 auto;
    }
}

.log-slider-main-item-4 .log-btn-3 {
    padding-bottom: 5px;
    -webkit-clip-path: polygon(100% 100%, 0 100%, 0 100%, 100% 100%);
    clip-path: polygon(100% 100%, 0 100%, 0 100%, 100% 100%);
}

.log-slider-main-item-4 .log-btn-3 a:before {
    border-bottom: 2px solid #fff;
}

.slider-main-img {
    bottom: 0;
    opacity: 0;
    z-index: 2;
    right: 50px;
    visibility: hidden;
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
}

@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),
(max-width: 767px) {
    .slider-main-img {
        right: -200px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .slider-main-img {
        display: none;
    }
}

.swiper-slide-active .log-slider-main-item-4 .slider-side-shape {
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.swiper-slide-active .log-slider-main-item-4 .slider-side-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.swiper-slide-active .log-slider-main-item-4 .slider-main-img {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.swiper-slide-active .log-slider-main-item-4 .slider-main-text .slider-slug {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.swiper-slide-active .log-slider-main-item-4 .slider-main-text .slider-slug:before {
    width: 68px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.swiper-slide-active .log-slider-main-item-4 .slider-main-text .slider-slug:after {
    left: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 2000ms ease;
    transition: all 2000ms ease;
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.swiper-slide-active .log-slider-main-item-4 .slider-main-text .slider_title_2 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
}

.swiper-slide-active .log-slider-main-item-4 p {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

.swiper-slide-active .log-slider-main-item-4 .log-btn-3 {
    -webkit-clip-path: polygon(100% 100%, 0 100%, 0 0, 100% 0);
    clip-path: polygon(100% 100%, 0 100%, 0 0, 100% 0);
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.log-main-slider-nav-pagition-2 {
    z-index: 2;
    right: 60px;
    bottom: 50px;
}

@media (max-width: 480px) {
    .log-main-slider-nav-pagition-2 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@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),
(max-width: 767px) {
    .log-main-slider-nav-pagition-2 {
        left: 0;
        right: 0;
        width: 200px;
        margin: 0 auto;
    }
}

.log-main-slider-nav-pagition-2 .log-main-prev-3,
.log-main-slider-nav-pagition-2 .log-main-next-3 {
    color: #6A6A6A;
    font-size: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-main-slider-nav-pagition-2 .log-main-prev-3:hover,
.log-main-slider-nav-pagition-2 .log-main-next-3:hover {
    color: var(--laa-clr-sd-2);
}

@media (max-width: 480px) {
    .log-main-slider-nav-pagition-2 .log-main-prev-3,
    .log-main-slider-nav-pagition-2 .log-main-next-3 {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 16px;
        margin: 0px 8px;
        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: #fff1ee;
    }
    .log-main-slider-nav-pagition-2 .log-main-prev-3:hover,
    .log-main-slider-nav-pagition-2 .log-main-next-3:hover {
        color: #fff;
        background-color: var(--laa-clr-sd-2);
    }
}

.log-main-slider-nav-pagition-2 .log-main-pagination-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px 20px;
}

@media (max-width: 480px) {
    .log-main-slider-nav-pagition-2 .log-main-pagination-3 {
        display: none;
    }
}

.log-main-slider-nav-pagition-2 .log-main-pagination-3 .swiper-pagination-bullet {
    width: 54px;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 30px;
    font-weight: 700;
    line-height: 54px;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--log-heading-2);
}

.log-main-slider-nav-pagition-2 .log-main-pagination-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: rgb(255, 255, 255);
    background-color: var(--laa-clr-sd-2);
}

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

/*Sponsor Section*/

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

.log-sponsor-section-4 {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
    padding-bottom: 150px;
}

@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),
(max-width: 767px) {
    .log-sponsor-section-4 {
        padding-bottom: 0;
    }
}

.log-sponsor-section-4 .log-sponsor-content-wrap-4 {
    z-index: 1;
    overflow: hidden;
    padding: 80px 0px 140px;
    background-color: #FFE9E2;
}

@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),
(max-width: 767px) {
    .log-sponsor-section-4 .log-sponsor-content-wrap-4 {
        padding: 50px 0px;
    }
}

.log-sponsor-section-4 .log-sponsor-content-wrap-4:before,
.log-sponsor-section-4 .log-sponsor-content-wrap-4:after {
    left: -4%;
    width: 70%;
    content: "";
    z-index: -1;
    bottom: -150px;
    height: 200px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
}

@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),
(max-width: 767px) {
    .log-sponsor-section-4 .log-sponsor-content-wrap-4:before,
    .log-sponsor-section-4 .log-sponsor-content-wrap-4:after {
        display: none;
    }
}

.log-sponsor-section-4 .log-sponsor-content-wrap-4:after {
    z-index: 2;
    left: auto;
    right: -4%;
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
}

.log-sponsor-section-4 .log-sponsor-content-wrap-4 .tringle-shape {
    left: -4%;
    width: 74%;
    content: "";
    z-index: -2;
    bottom: -145px;
    height: 200px;
    position: absolute;
    -webkit-transform: rotate(8deg);
    transform: rotate(10deg);
    background-color: var(--laa-clr-sd-2);
}

@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),
(max-width: 767px) {
    .log-sponsor-section-4 .log-sponsor-content-wrap-4 .tringle-shape {
        display: none;
    }
}

.log-sponsor-section-4 .log-sponsor-content-wrap-4 .sponsor-shape-bg {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -3;
    height: 100%;
    opacity: 0.08;
}

.log-sponsor-section-4 .log-sponsor-content-wrap-4 .sponsor-shape-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-sponsor-section-4 .log-sponsor-bg {
    top: 0;
    right: 0;
    width: 50%;
    z-index: 1;
    height: 100%;
}

@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),
(max-width: 767px) {
    .log-sponsor-section-4 .log-sponsor-bg {
        display: none;
    }
}

.log-sponsor-section-4 .log-sponsor-bg:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(9, 9, 9, 0.6);
}

.log-sponsor-section-4 .log-sponsor-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-sponsor-section-4 .log-truck-img {
    right: 0;
    top: 35px;
    z-index: 3;
}

@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),
(max-width: 767px) {
    .log-sponsor-section-4 .log-truck-img {
        right: -150px;
    }
}

@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),
(max-width: 767px) {
    .log-sponsor-section-4 .log-truck-img {
        display: none;
    }
}

.log-sponsor-section-4 .log-plane-img {
    top: 30px;
    z-index: 2;
    left: -50px;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .log-sponsor-section-4 .log-plane-img {
        left: -150px;
    }
}

@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),
(max-width: 767px) {
    .log-sponsor-section-4 .log-plane-img {
        display: none;
    }
}

.log-sponsor-content-4 .log-sponsor-item-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 750px;
}

@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),
(max-width: 767px) {
    .log-sponsor-content-4 .log-sponsor-item-4 {
        max-width: 550px;
    }
}

@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),
(max-width: 767px) {
    .log-sponsor-content-4 .log-sponsor-item-4 {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .log-sponsor-content-4 .log-sponsor-item-4 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-sponsor-content-4 .log-sponsor-item-4 li {
    width: 170px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 25px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@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),
(max-width: 767px) {
    .log-sponsor-content-4 .log-sponsor-item-4 li {
        width: 150px;
    }
}

@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),
(max-width: 767px) {
    .log-sponsor-content-4 .log-sponsor-item-4 li {
        width: 140px;
    }
}

.log-sponsor-content-4 .log-sponsor-item-4 li img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-sponsor-content-4 .log-sponsor-item-4 li:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

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

/*About Section*/

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

@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),
(max-width: 767px) {
    .log-about-section-4 {
        padding-top: 70px;
    }
}

.log-about-section-4 .log-about-content-4 {
    gap: 30px;
    margin: 0 auto;
    max-width: 1500px;
}

@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),
(max-width: 767px) {
    .log-about-section-4 .log-about-content-4 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-about-section-4 .log-about-side-img {
    left: 0;
    bottom: 0;
    opacity: 0.6;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-section-4 .log-about-side-img {
        display: none;
    }
}

.log-about-img-wrap-4 {
    width: 100%;
    max-width: 700px;
}

.log-about-img-wrap-4 .log-about-img-item-wrap {
    gap: 35px;
    padding-bottom: 180px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-img-wrap-4 .log-about-img-item-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-about-img-wrap-4 .item-about-img {
    overflow: hidden;
    border-radius: 30px;
}

.log-about-img-wrap-4 .item-img-3 {
    bottom: 0;
    right: 140px;
}

.log-about-img-wrap-4 .item-img-3 img {
    border-radius: 30px;
    border: 10px solid #fff;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-img-wrap-4 .item-img-3 {
        display: none;
    }
}

.log-about-text-wrap-4 {
    width: 100%;
    max-width: 700px;
    padding-top: 58px;
    padding-left: 15px;
}

@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),
(max-width: 767px) {
    .log-about-text-wrap-4 {
        padding-left: 0;
        max-width: 625px;
    }
}

@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),
(max-width: 767px) {
    .log-about-text-wrap-4 {
        padding-top: 0;
    }
}

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

/*Service Testimonial Section*/

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

.log-service-testimonial-section-4 {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-service-testimonial-section-4:before {
    bottom: 0;
    content: "";
    width: 100%;
    height: 275px;
    position: absolute;
    background-color: #fff;
}

.log-service-testimonial-section-4 .log-service-side-img {
    left: -20px;
    bottom: 280px;
}

.log-service-testimonial-section-4 .log-ser-test-bg {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.log-service-testimonial-section-4 .log-ser-test-bg .background_overlay {
    background-color: rgba(0, 62, 77, 0.85);
}

.log-service-testimonial-section-4 .log-ser-test-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-service-content-4 {
    gap: 60px;
}

@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),
(max-width: 767px),
(max-width: 480px) {
    .log-service-content-4 {
        gap: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-service-content-4 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-service-content-4:after {
    top: -27%;
    right: -52%;
    z-index: -1;
    width: 827px;
    content: "";
    height: 827px;
    position: absolute;
    border-radius: 100%;
    border: 1px solid #fff;
}

@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),
(max-width: 767px),
(max-width: 480px) {
    .log-service-content-4:after {
        display: none;
    }
}

.log-service-slider-for {
    width: 100%;
    max-width: 810px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-service-slider-for {
        max-width: 100%;
    }
}

.log-service-text-4 {
    width: 100%;
    max-width: 470px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-service-text-4 {
        max-width: 420px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-service-text-4 {
        width: 100%;
        margin: 0 auto;
        max-width: 570px;
    }
}

.log-service-text-4 .log-section-title-3 .section_title {
    color: #fff;
}

.log-service-text-4 .log-section-title-3 p {
    color: rgba(255, 255, 255, 0.8);
}

.log-service-text-4 .log-btn-3 a:before {
    border-bottom: 2px solid #fff;
}

.log-service-text-4 .log-btn-3 a:hover:before {
    border-bottom: 2px solid var(--laa-clr-sd-2);
}

.log-service-item-wrap-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px 70px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@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),
(max-width: 767px),
(max-width: 480px) {
    .log-service-item-wrap-4 {
        gap: 30px 40px;
    }
}

.log-service-item-wrap-4 .log-service-item-4 {
    width: 100%;
    z-index: 1;
    max-width: 410px;
    overflow: hidden;
    padding: 45px 40px;
    border-radius: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-service-item-wrap-4 .log-service-item-4 {
        margin: 0 auto;
        max-width: 570px;
    }
}

.log-service-item-wrap-4 .log-service-item-4:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
}

.log-service-item-wrap-4 .log-service-item-4 .item-icon {
    padding-left: 25px;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.log-service-item-wrap-4 .log-service-item-4 .item-icon i {
    font-size: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--laa-clr-sd-2);
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
}

.log-service-item-wrap-4 .log-service-item-4 .item-icon:before {
    left: 0;
    width: 0%;
    content: "";
    height: 2px;
    bottom: 0px;
    position: absolute;
    background-color: rgb(249, 213, 204);
}

.log-service-item-wrap-4 .log-service-item-4 .item-icon:after {
    left: 0;
    width: 0;
    height: 0;
    content: "";
    bottom: 0px;
    z-index: -1;
    position: absolute;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    border-bottom: 80px solid rgb(249, 213, 204);
    border-right: 80px solid transparent;
}

.log-service-item-wrap-4 .log-service-item-4 .ser_title {
    opacity: 0;
    font-size: 36px;
    font-weight: 700;
    visibility: hidden;
    padding-bottom: 20px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    color: var(--laa-clr-sd-5);
}

.log-service-item-wrap-4 .log-service-item-4 p {
    opacity: 0;
    color: #6A6A6A;
    line-height: 1.5;
    padding-bottom: 25px;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    font-family: var(--log-heading-2);
}

.log-service-item-wrap-4 .log-service-item-4 .read_more {
    opacity: 0;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    visibility: hidden;
    padding: 13px 25px;
    border-radius: 100px;
    position: relative;
    display: inline-block;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    font-family: var(--log-heading-2);
    background-color: var(--laa-clr-sd-2);
}

.log-service-item-wrap-4 .log-service-item-4 .read_more:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 0%;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    background-color: #1A3D38;
}

.log-service-item-wrap-4 .log-service-item-4 .read_more i {
    margin-right: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-service-item-wrap-4 .log-service-item-4 .read_more:hover:before {
    width: 100%;
}

.log-service-item-wrap-4 .log-service-item-4 .read_more:hover i {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.log-service-item-wrap-4 .log-service-img-4 {
    opacity: 0;
    width: 285px;
    height: 285px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    visibility: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 3px dashed var(--laa-clr-sd-2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-service-item-wrap-4 .log-service-img-4 {
        display: none;
    }
}

.log-service-item-wrap-4 .log-service-img-4 img {
    width: 265px;
    height: 265px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
}

.log-ser-slider-nav-4 {
    right: 0;
    z-index: 2;
    height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-ser-slider-nav-4 {
        right: 15%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-ser-slider-nav-4 {
        gap: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: static !important;
    }
}

.log-ser-slider-nav-4 .log-ser-prev-4,
.log-ser-slider-nav-4 .log-ser-next-4 {
    color: #fff;
    width: 80px;
    height: 80px;
    cursor: pointer;
    position: absolute;
    border-radius: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-ser-slider-nav-4 .log-ser-prev-4:hover,
.log-ser-slider-nav-4 .log-ser-next-4:hover {
    background-color: #fff;
    color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-ser-slider-nav-4 .log-ser-prev-4,
    .log-ser-slider-nav-4 .log-ser-next-4 {
        width: 50px;
        height: 50px;
        position: static !important;
    }
}

.log-ser-slider-nav-4 .log-ser-prev-4 {
    top: -70px;
    right: -25px;
}

@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),
(max-width: 767px),
(max-width: 480px) {
    .log-ser-slider-nav-4 .log-ser-prev-4 {
        right: 0;
        top: 0px;
    }
}

.log-ser-slider-nav-4 .log-ser-next-4 {
    right: 25px;
    bottom: -70px;
}

@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),
(max-width: 767px),
(max-width: 480px) {
    .log-ser-slider-nav-4 .log-ser-next-4 {
        right: 0;
        bottom: 0px;
    }
}

.log-testimonial-slider-wrap-4 {
    border-radius: 20px;
    padding: 50px 50px 30px;
    background-color: #FFF2EE;
}

@media (max-width: 480px) {
    .log-testimonial-slider-wrap-4 {
        padding: 30px 30px 30px;
    }
}

.log-testimonial-slider-wrap-4:before {
    top: 0;
    right: 36%;
    width: 1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: rgba(26, 61, 56, 0.2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-testimonial-slider-wrap-4:before {
        display: none;
    }
}

.log-testimonial-item-4 {
    overflow: hidden;
}

.log-testimonial-item-4 .log-testimonial-text {
    max-width: 670px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-testimonial-item-4 .log-testimonial-text {
        max-width: 650px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-testimonial-item-4 .log-testimonial-text {
        max-width: 100%;
    }
}

.log-testimonial-item-4 .log-testimonial-text .quote-icon {
    opacity: 0;
    visibility: hidden;
    margin-bottom: 25px;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
}

@media (max-width: 480px) {
    .log-testimonial-item-4 .log-testimonial-text .quote-icon {
        margin-bottom: 15px;
    }
}

.log-testimonial-item-4 .log-testimonial-text .quote-icon i {
    font-size: 55px;
    color: var(--laa-clr-sd-2);
}

@media (max-width: 480px) {
    .log-testimonial-item-4 .log-testimonial-text .quote-icon i {
        font-size: 40px;
    }
}

.log-testimonial-item-4 .log-testimonial-text .log-testimonial-desc {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    color: var(--laa-clr-sd-5);
    font-family: var(--log-heading-2);
}

@media (max-width: 480px) {
    .log-testimonial-item-4 .log-testimonial-text .log-testimonial-desc {
        font-size: 20px;
    }
}

.log-testimonial-item-4 .log-testimonial-text .log-testi-author {
    margin-top: 35px;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
}

.log-testimonial-item-4 .log-testimonial-text .log-testi-author:before {
    left: 0;
    top: 12px;
    height: 1px;
    opacity: 0;
    width: 0%;
    content: "";
    visibility: hidden;
    position: absolute;
    background-color: #D3C8C5;
}

.log-testimonial-item-4 .log-testimonial-text .log-testi-author h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--laa-clr-sd-3);
}

@media (max-width: 480px) {
    .log-testimonial-item-4 .log-testimonial-text .log-testi-author h3 {
        font-size: 20px;
    }
}

.log-testimonial-item-4 .log-testimonial-text .log-testi-author span {
    font-size: 18px;
    color: var(--laa-clr-sd-5);
}

.log-testimonial-item-4 .log-testimonial-img .item-shape {
    right: 0;
    bottom: 0;
    z-index: -1;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}

.log-testimonial-item-4 .log-testimonial-img .item-img {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-testimonial-item-4 .log-testimonial-img {
        display: none;
    }
}

.swiper-slide-active .log-testimonial-item-4 .quote-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.swiper-slide-active .log-testimonial-item-4 .log-testimonial-desc {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.swiper-slide-active .log-testimonial-item-4 .log-testi-author {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.swiper-slide-active .log-testimonial-item-4 .log-testi-author:before {
    opacity: 1;
    width: 65%;
    visibility: visible;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .swiper-slide-active .log-testimonial-item-4 .log-testi-author:before {
        display: none;
    }
}

.swiper-slide-active .log-testimonial-item-4 .log-testimonial-img .item-img {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.swiper-slide-active .log-testimonial-item-4 .log-testimonial-img .item-shape {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.swiper-slide-active .log-service-item-wrap-4 .log-service-img-4 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.swiper-slide-active .log-service-item-wrap-4 .log-service-item-4 .item-icon i {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.swiper-slide-active .log-service-item-wrap-4 .log-service-item-4 .item-icon:before {
    width: 100%;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.swiper-slide-active .log-service-item-wrap-4 .log-service-item-4 .item-icon:after {
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.swiper-slide-active .log-service-item-wrap-4 .log-service-item-4 .ser_title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.swiper-slide-active .log-service-item-wrap-4 .log-service-item-4 p {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.swiper-slide-active .log-service-item-wrap-4 .log-service-item-4 .read_more {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

.log-testi-slider-nav-4 {
    top: 50%;
    z-index: 2;
    right: 32.4%;
    width: 60px;
    height: 120px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid #D3C8C5;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #FFF2EE;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-testi-slider-nav-4 {
        height: 60px;
        width: 120px;
        margin: 0 auto;
        margin-top: 40px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: static !important;
    }
}

.log-testi-slider-nav-4:before {
    top: 50%;
    width: 100%;
    height: 1px;
    content: "";
    position: absolute;
    background-color: #D3C8C5;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-testi-slider-nav-4:before {
        height: 100%;
        width: 1px;
    }
}

.log-testi-slider-nav-4 .log-test-prev-4,
.log-testi-slider-nav-4 .log-test-next-4 {
    width: 100%;
    height: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-testi-slider-nav-4 .log-test-prev-4,
    .log-testi-slider-nav-4 .log-test-next-4 {
        width: 50%;
        height: 100%;
    }
}

.log-testi-slider-nav-4 .log-test-prev-4:hover,
.log-testi-slider-nav-4 .log-test-next-4:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

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

/*Why Choose Section*/

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

.log-why-choose-section-4 {
    overflow: hidden;
}

.log-why-choose-section-4 .log-side-img {
    top: 0;
    left: -10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-why-choose-section-4 .log-side-img {
        display: none;
    }
}

.log-why-choose-section-4 .container {
    max-width: 1390px;
}

.log-why-choose-content-4 {
    gap: 65px;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-why-choose-content-4 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-why-choose-content-4:before {
    bottom: 0;
    right: 60px;
    height: 0%;
    width: 546px;
    z-index: -1;
    content: "";
    position: absolute;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    background-color: rgba(255, 92, 1, 0.08);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-why-choose-content-4:before {
        width: 415px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-why-choose-content-4:before {
        display: none;
    }
}

.log-why-choose-content-4.active:before {
    height: 88%;
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.log-why-choose-content-4 .log-why-choose-flot-img {
    left: 0;
    right: 120px;
    bottom: -10px;
    text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-why-choose-content-4 .log-why-choose-flot-img {
        bottom: -100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-why-choose-content-4 .log-why-choose-flot-img {
        display: none;
    }
}

.log-why-choose-text-wrap-4 {
    max-width: 590px;
}

.log-why-choose-feature {
    gap: 20px;
}

@media (max-width: 767px),
(max-width: 480px) {
    .log-why-choose-feature {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.wc-feature-item-4 {
    gap: 15px;
    z-index: 1;
    position: relative;
    padding: 15px 15px 15px 0px;
}

.wc-feature-item-4:before {
    top: 0;
    right: 0;
    width: 86%;
    content: "";
    z-index: -1;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    border: 1px solid rgba(33, 33, 33, 0.1);
}

.wc-feature-item-4 .inner-icon {
    width: 76px;
    height: 70px;
    border-radius: 10px;
    background-color: #003E4D;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.wc-feature-item-4 .inner-icon i {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 45px;
}

.wc-feature-item-4 .inner-text {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    max-width: 180px;
    font-family: var(--log-heading-2);
    color: var(--laa-clr-sd-5);
}

.wc-feature-item-4:hover .inner-icon {
    background-color: var(--laa-clr-sd-2);
}

.log-why-choose-progress h4 {
    padding-left: 0;
    font-weight: 600;
    padding-bottom: 15px;
    color: var(--laa-clr-sd-5);
}

.log-why-choose-progress .skill-set-percent .progress-bar {
    left: 3px;
    height: 16px;
    background-color: var(--laa-clr-sd-2);
}

.log-why-choose-progress .skill-set-percent .progress {
    background-color: transparent;
    border: 1px dashed var(--laa-clr-sd-2);
}

.log-why-choose-progress .skill-set-percent .progress span {
    right: 0;
    top: -33px;
    font-size: 18px;
    font-weight: 600;
    color: var(--laa-clr-sd-2);
}

.log-why-choose-img-wrap-4 {
    gap: 30px;
    max-width: 700px;
}

@media (max-width: 480px) {
    .log-why-choose-img-wrap-4 {
        gap: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .log-why-choose-img-wrap-4 .why-choose-img-1 .item-img {
        margin-bottom: 0;
    }
}

.log-why-choose-img-wrap-4 .item-img {
    overflow: hidden;
    border-radius: 20px;
    margin: 30px 0px;
}

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

/*Price Section*/

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

.log-pricing-section-4 {
    z-index: 1;
}

.log-pricing-section-4:before {
    left: 0;
    top: -95px;
    height: 75%;
    content: "";
    opacity: 0.1;
    width: 0%;
    max-width: 315px;
    position: absolute;
    -webkit-transition: all 3000ms ease;
    transition: all 3000ms ease;
    background-color: var(--laa-clr-sd-4);
}

@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),
(max-width: 767px) {
    .log-pricing-section-4:before {
        display: none;
    }
}

.log-pricing-section-4.active:before {
    width: 100%;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.log-pricing-section-4 .log-price-bg {
    top: 0;
    right: 0;
    width: 90%;
    z-index: -1;
    height: 75%;
}

@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),
(max-width: 767px) {
    .log-pricing-section-4 .log-price-bg {
        width: 100%;
    }
}

.log-pricing-section-4 .log-price-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-pricing-section-4 .log-price-bg:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background: rgba(0, 62, 77, 0.83);
}

.log-pricing-section-4 .log-section-title-3 .section_title {
    color: #fff;
}

.log-price-item-4 {
    z-index: 1;
    padding: 40px;
    margin: 0 auto;
    max-width: 390px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 2px solid transparent;
    -webkit-box-shadow: 0px 0px 40px 2px rgba(0, 0, 0, 0.1019607843);
    box-shadow: 0px 0px 40px 2px rgba(0, 0, 0, 0.1019607843);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-price-item-4 {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .log-price-item-4 {
        max-width: 360px;
        padding: 30px 20px;
    }
}

.log-price-item-4 .price-plan-title {
    margin-bottom: 12px;
}

.log-price-item-4 .price-plan-title span {
    width: 100%;
    font-size: 24px;
    display: block;
    font-weight: 700;
    position: relative;
    font-family: var(--log-heading-2);
    color: var(--laa-clr-sd-5);
}

.log-price-item-4 .price-plan-title span:before,
.log-price-item-4 .price-plan-title span:after {
    top: 16px;
    width: 0px;
    content: "";
    height: 2px;
    position: absolute;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    background-color: var(--laa-clr-sd-2);
}

@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),
(max-width: 767px) {
    .log-price-item-4 .price-plan-title span:before,
    .log-price-item-4 .price-plan-title span:after {
        display: none;
    }
}

.log-price-item-4 .price-plan-title span:before {
    left: 0;
}

.log-price-item-4 .price-plan-title span:after {
    right: 0;
}

.log-price-item-4.active .price-plan-title span:before,
.log-price-item-4.active .price-plan-title span:after {
    width: 74px;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.log-price-item-4 .price-img {
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@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),
(max-width: 767px) {
    .log-price-item-4 .price-img {
        margin-bottom: 20px;
    }
}

.log-price-item-4 .price-value {
    font-size: 52px;
    font-weight: 800;
    padding-bottom: 15px;
    margin-bottom: 35px;
    color: var(--laa-clr-sd-5);
    border-bottom: 1px solid #D9D9D9;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-price-item-4 .price-value {
        font-size: 45px;
    }
}

@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),
(max-width: 767px) {
    .log-price-item-4 .price-value {
        font-size: 36px;
        margin-bottom: 25px;
    }
}

.log-price-item-4 .price-value sub {
    left: 0px;
    bottom: 23px;
    font-size: 30px;
    font-weight: 600;
    color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-price-item-4 .price-value sub {
        bottom: 15px;
    }
}

@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),
(max-width: 767px) {
    .log-price-item-4 .price-value sub {
        font-size: 20px;
        bottom: 12px;
    }
}

.log-price-item-4 .price-value sup {
    top: 0;
    left: 8px;
    font-size: 20px;
    color: var(--laa-clr-sd-2);
    font-weight: 500;
}

@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),
(max-width: 767px) {
    .log-price-item-4 .price-value sup {
        font-size: 18px;
    }
}

.log-price-item-4 .price-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 14px;
    color: var(--laa-clr-sd-5);
}

.log-price-item-4 .price-list li i {
    top: 1px;
    margin-right: 12px;
    position: relative;
    color: var(--laa-clr-sd-2);
}

.log-price-item-4 .price-btn {
    margin-top: 40px;
}

.log-price-item-4 .price-btn a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 15px;
    border-radius: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--laa-clr-sd-2);
    font-family: var(--log-heading-2);
    border: 2px solid var(--laa-clr-sd-2);
}

.log-price-item-4 .price-btn a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 25px;
    margin-left: 10px;
}

.log-price-item-4 .price-btn a:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

.log-price-item-4 .price-bottom-img {
    left: 0;
    bottom: 0;
    z-index: -1;
}

.log-price-item-4 .price-bottom-img:before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(rgba(255, 255, 255, 0.4)));
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.4) 100%);
}

.log-price-item-4:hover {
    border: 2px solid var(--laa-clr-sd-2);
}

.log-price-item-4:hover .price-img {
    border-radius: 15px;
}

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

/*Request Quote Section*/

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

.log-request-quote-section-4 {
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-request-quote-section-4 .item-img {
    border-radius: 15px;
    overflow: hidden;
}

.log-request-quote-section-4 .log-request-quote-img2 {
    top: 140px;
    z-index: 2;
    right: 125px;
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .log-request-quote-section-4 .log-request-quote-img2 {
        right: 50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-request-quote-section-4 .log-request-quote-img2 {
        right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .log-request-quote-section-4 .log-request-quote-img2 {
        display: none;
    }
}

.log-request-quote-section-4 .log-request-quote-img3 {
    z-index: 2;
    right: 250px;
    bottom: 0px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2509803922);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2509803922);
}

@media only screen and (min-width: 1600px) and (max-width: 1799px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
    .log-request-quote-section-4 .log-request-quote-img3 {
        right: 50px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-request-quote-section-4 .log-request-quote-img3 {
        right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .log-request-quote-section-4 .log-request-quote-img3 {
        display: none;
    }
}

.log-request-quote-content-4 {
    max-width: 825px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .log-request-quote-content-4 {
        max-width: 100%;
    }
}

.log-request-quote-content-4 .log-section-title-3 {
    max-width: 650px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .log-request-quote-content-4 .log-section-title-3 {
        margin: 0 auto;
        text-align: center;
    }
}

.log-request-quote-text-img {
    z-index: 1;
}

.log-request-quote-text-img .log-request-quote-img1 {
    top: 0;
    right: 50px;
    z-index: -2;
    overflow: hidden;
    border-radius: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-request-quote-text-img .log-request-quote-img1 {
        right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .log-request-quote-text-img .log-request-quote-img1 {
        display: none;
    }
}

.log-request-quote-btn {
    margin-top: 65px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .log-request-quote-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .log-request-quote-btn .nav-tabs li {
        width: 100%;
    }
}

.log-request-quote-btn .nav-tabs .nav-link {
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
    padding: 16px 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: var(--laa-clr-sd-4);
    font-family: var(--log-heading-2);
    background-color: rgba(14, 68, 80, 0.33);
}

@media (max-width: 480px) {
    .log-request-quote-btn .nav-tabs .nav-link {
        width: 100%;
        border-radius: 0;
    }
}

.log-request-quote-btn .nav-tabs .nav-link.active {
    color: #fff;
    padding: 16px 25px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: var(--laa-clr-sd-2);
}

@media (max-width: 480px) {
    .log-request-quote-btn .nav-tabs .nav-link.active {
        border-radius: 0;
    }
}

.log-request-quote-tab {
    padding: 40px 30px;
    background-color: #003E4D;
    border-radius: 0px 15px 15px 15px;
}

@media (max-width: 480px) {
    .log-request-quote-tab {
        border-radius: 0;
    }
}

.log-request-quote-form-wrap .input-field-wrap {
    gap: 0px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.log-request-quote-form-wrap .input-field-wrap .input-field {
    width: 49%;
    height: 60px;
    margin-bottom: 22px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .log-request-quote-form-wrap .input-field-wrap .input-field {
        width: 100%;
    }
}

.log-request-quote-form-wrap .input-field-wrap .input-field.ver_2 {
    width: 32%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .log-request-quote-form-wrap .input-field-wrap .input-field.ver_2 {
        width: 100%;
    }
}

.log-request-quote-form-wrap .input-field-wrap .input-field i {
    top: 20px;
    left: 20px;
    color: #fff;
    font-size: 22px;
    position: absolute;
}

.log-request-quote-form-wrap .input-field-wrap .input-field i:after {
    top: -5px;
    width: 1px;
    content: "";
    right: -19px;
    height: 30px;
    position: absolute;
    background-color: #567C84;
}

.log-request-quote-form-wrap .input-field-wrap .input-field input {
    width: 100%;
    height: 100%;
    font-size: 18px;
    padding-left: 77px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3019607843);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.log-request-quote-form-wrap .input-field-wrap .input-field input::-webkit-input-placeholder {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.log-request-quote-form-wrap .input-field-wrap .input-field input::-moz-placeholder {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.log-request-quote-form-wrap .input-field-wrap .input-field input:-ms-input-placeholder {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.log-request-quote-form-wrap .input-field-wrap .input-field input::-ms-input-placeholder {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.log-request-quote-form-wrap .input-field-wrap .input-field input::placeholder {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.log-request-quote-form-wrap button {
    width: 100%;
    height: 60px;
    border: none;
    font-size: 18px;
    margin-top: 8px;
    font-weight: 700;
    border-radius: 100px;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--log-heading-2);
}

.log-request-quote-form-wrap button:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

.log-request-quote-form-wrap .log-distance-range {
    width: 100%;
    margin-bottom: 20px;
}

.log-request-quote-form-wrap .log-distance-range label {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--log-heading-2);
}

.log-request-quote-form-wrap .log-distance-range .wc-input-range {
    margin-left: 0;
}

.log-request-quote-form-wrap .log-distance-range .wc-input-range #slider-range {
    width: 100%;
}

.log-request-quote-form-wrap .log-distance-range .wc-input-range #slider-range,
.log-request-quote-form-wrap .log-distance-range .wc-input-range #slider-range .ui-widget-header,
.log-request-quote-form-wrap .log-distance-range .wc-input-range .range-value input {
    background-color: var(--laa-clr-sd-2);
}

.log-request-quote-form-wrap .log-distance-range .wc-input-range #slider-range .ui-slider-handle {
    background-color: var(--laa-clr-sd-2);
    border: 5px solid var(--laa-clr-sd-2);
}

.log-request-quote-form-wrap .input-service {
    width: 100%;
    margin-bottom: 20px;
}

.log-request-quote-form-wrap .input-service label {
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: var(--log-heading-2);
}

.log-request-quote-form-wrap .input-service .services-input {
    position: relative;
}

.log-request-quote-form-wrap .input-service .services-input:before {
    top: 19px;
    right: 20px;
    font-size: 15px;
    content: "\f078";
    font-weight: 400;
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Font Awesome 5 Pro";
}

.log-request-quote-form-wrap .input-service select {
    width: 100%;
    height: 60px;
    font-size: 18px;
    padding-left: 30px;
    border-radius: 100px;
    -webkit-appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.3019607843);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
}

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

/*Project Section*/

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

.log-project-section-4 {
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-project-section-4 .log-section-title-3 {
    margin: 0 auto;
    max-width: 720px;
}

.log-project-item-4 {
    overflow: hidden;
    max-width: 550px;
    margin: 0px 10px;
    display: inline-block;
}

@media (max-width: 767px) {
    .log-project-item-4 {
        max-width: 300px;
    }
}

.log-project-item-4 .item-img {
    overflow: hidden;
}

.log-project-item-4 .item-img img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-4:before {
    left: 0;
    width: 100%;
    content: "";
    z-index: 1;
    height: 100%;
    bottom: -150px;
    position: absolute;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(236, 57, 0, 0)), to(#EC3900));
    background: linear-gradient(180deg, rgba(236, 57, 0, 0) 0%, #EC3900 100%);
}

@media (max-width: 767px) {
    .log-project-item-4:before {
        bottom: -50px;
    }
}

.log-project-item-4 .item-text {
    left: 0;
    right: 0;
    z-index: 2;
    bottom: 40px;
    margin: 0 auto;
    max-width: 85%;
}

@media (max-width: 767px) {
    .log-project-item-4 .item-text {
        bottom: 20px;
    }
}

.log-project-item-4 .item-text .pro-cate {
    opacity: 0;
    visibility: hidden;
    margin-bottom: 10px;
    display: inline-block;
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-4 .item-text .pro-cate a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 100px;
    display: inline-block;
    font-family: var(--log-heading-2);
    background-color: var(--laa-clr-sd-2);
}

@media (max-width: 767px) {
    .log-project-item-4 .item-text .pro-cate a {
        font-size: 14px;
        padding: 6px 15px;
    }
}

.log-project-item-4 .item-text .project_title {
    opacity: 0;
    visibility: hidden;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    padding-bottom: 20px;
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 767px) {
    .log-project-item-4 .item-text .project_title {
        font-size: 20px;
    }
}

.log-project-item-4 .item-text ul li {
    opacity: 0;
    visibility: hidden;
    color: #fff;
    margin-bottom: 10px;
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-project-item-4 .item-text ul li i {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .log-project-item-4 .item-text ul li i {
        margin-right: 5px;
    }
}

@media (max-width: 767px) {
    .log-project-item-4 .item-text ul li {
        font-size: 16px;
    }
}

.log-project-item-4:hover:before {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.log-project-item-4:hover .item-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.log-project-item-4:hover .item-text .pro-cate {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.log-project-item-4:hover .item-text .project_title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}

.log-project-item-4:hover .item-text ul li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.log-project-item-4:hover .item-text ul li:nth-child(1) {
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.log-project-item-4:hover .item-text ul li:nth-child(2) {
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

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

/*Process Section*/

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

.project-process-bg {
    z-index: 2;
}

.project-process-bg .section-bg {
    bottom: 0;
    width: 100%;
    height: 55%;
    z-index: -1;
    opacity: 0.3;
}

.project-process-bg .section-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.project-process-bg .section-bg:before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
    content: "";
    position: absolute;
    background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .project-process-bg .section-bg {
        display: none;
    }
}

.project-process-bg .log-wp-side {
    right: 0;
    top: -110px;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .project-process-bg .log-wp-side {
        top: -50px;
        width: 350px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .project-process-bg .log-wp-side {
        display: none;
    }
}

.log-work-process-section-4 .container {
    max-width: 1450px;
}

.log-work-process-item-4 {
    margin-bottom: 30px;
}

.log-work-process-item-4 .inner-icon {
    z-index: 1;
    width: 180px;
    color: #fff;
    height: 180px;
    overflow: hidden;
    margin: 0 auto;
    font-size: 70px;
    position: relative;
    border-radius: 100%;
    margin-bottom: 25px;
    background-color: #003E4D;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.log-work-process-item-4 .inner-icon i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.log-work-process-item-4 .inner-icon:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-work-process-item-4 .inner-text h3 {
    font-size: 30px;
    font-weight: 800;
    padding-bottom: 10px;
    color: var(--laa-clr-sd-5);
}

.log-work-process-item-4:hover .inner-icon {
    -webkit-transition-delay: 550ms;
    transition-delay: 550ms;
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
}

.log-work-process-item-4:hover .inner-icon:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

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

/*Blog Section*/

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

.log-blog-top-content-4 {
    gap: 30px;
}

.log-blog-top-content-4 .log-section-title-3 {
    max-width: 620px;
}

.log-blog-item-4 {
    margin: 0 auto;
    max-width: 410px;
    margin-bottom: 30px;
    padding: 30px 30px 0px;
    background-color: #F2F7FA;
}

.log-blog-item-4 .blog_title {
    font-size: 28px;
    font-weight: 800;
    padding-bottom: 18px;
    color: var(--laa-clr-sd-5);
    border-bottom: 1px solid #D6DFE4;
}

@media (max-width: 480px) {
    .log-blog-item-4 .blog_title {
        font-size: 24px;
    }
}

.log-blog-item-4 .item-meta {
    color: #6A6A6A;
    font-weight: 500;
    margin: 15px 0px 20px;
}

@media (max-width: 480px) {
    .log-blog-item-4 .item-meta {
        font-size: 16px;
    }
}

.log-blog-item-4 .item-meta a {
    color: var(--laa-clr-sd-5);
    font-family: var(--log-heading-2);
}

.log-blog-item-4 .item-img {
    margin: 0 auto;
    overflow: hidden;
    max-width: 346px;
    border-radius: 20px 20px 0px 0px;
}

.log-blog-item-4 .item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: perspective(0px) rotateX(0deg) rotateY(0deg) scaleX(1) scaleY(1);
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) scaleX(1) scaleY(1);
}

.log-blog-item-4:hover .item-img img {
    -webkit-transform: perspective(600px) rotateX(0.06deg) rotateY(0deg) scaleX(1.1) scaleY(1.1);
    transform: perspective(600px) rotateX(0.06deg) rotateY(0deg) scaleX(1.1) scaleY(1.1);
}

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

/*Counter Section*/

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

.log-counter-section-4 {
    z-index: 1;
    overflow: hidden;
    padding: 60px 15px;
}

.log-counter-section-4 .section-bg {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.log-counter-section-4 .section-bg:before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.62;
    position: absolute;
    background-color: #EC3900;
}

.log-counter-section-4 .section-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-counter-content-4 {
    gap: 10px 70px;
    margin: 0 auto;
    max-width: 1495px;
}

.log-counter-item-4 {
    width: 320px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-counter-item-4 {
        width: auto;
    }
}

.log-counter-item-4 h3 {
    color: #fff;
    width: 140px;
    font-size: 80px;
    font-weight: 800;
    margin-right: 60px;
    position: relative;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-counter-item-4 h3 {
        width: auto;
        font-size: 40px;
        margin-right: 20px;
    }
}

.log-counter-item-4 h3:before {
    top: 20px;
    right: -34px;
    width: 2px;
    content: "";
    height: 62px;
    position: absolute;
    background-color: #fff;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-counter-item-4 h3:before {
        display: none;
    }
}

.log-counter-item-4 p {
    width: 100%;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    width: 150px;
}

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

/******* HOME PAGE 5 *******/

/*Slider Section*/

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

.log-slider-section-5 {
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-slider-section-5 .log-slider-bg-5 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.log-slider-section-5 .log-slider-bg-5 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-slider-section-5 .log-slider-bg-5:before {
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.9;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #FFEFE5;
}

.log-slider-item-5 {
    padding: 280px 0px 235px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-item-5 {
        padding: 210px 0px 155px;
    }
}

.log-slider-item-5 .slider-truck {
    opacity: 0;
    right: -25%;
    bottom: -50px;
    visibility: hidden;
}

@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),
(max-width: 767px) {
    .log-slider-item-5 .slider-truck {
        display: none;
    }
}

.log-slider-item-5 .slider-svg-img-1 {
    right: 0;
    bottom: 0;
    z-index: -1;
    -webkit-clip-path: polygon(0 100%, 0 100%, 0 0, 0 0);
    clip-path: polygon(0 100%, 0 100%, 0 0, 0 0);
}

@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),
(max-width: 767px) {
    .log-slider-item-5 .slider-svg-img-1 {
        display: none;
    }
}

.log-slider-item-5 .slider-svg-img-2 {
    right: 0;
    top: 192px;
    -webkit-clip-path: polygon(100% 100%, 100% 100%, 100% 0, 100% 0);
    clip-path: polygon(100% 100%, 100% 100%, 100% 0, 100% 0);
}

@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),
(max-width: 767px) {
    .log-slider-item-5 .slider-svg-img-2 {
        display: none;
    }
}

.log-slider-item-5 .log-slider-shape-1 {
    top: -35%;
    right: -23%;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.log-slider-item-5 .log-slider-shape-2 {
    top: -100%;
    left: -15%;
    opacity: 0.7;
}

.log-slider-item-5 .log-slider-text {
    max-width: 620px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .log-slider-item-5 .log-slider-text {
        margin-left: 50px;
    }
}

@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),
(max-width: 767px) {
    .log-slider-item-5 .log-slider-text {
        margin: 0 auto;
        text-align: center;
    }
}

.log-slider-item-5 .log-slider-text .slider_title_2 {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.14;
    padding-bottom: 25px;
    color: var(--laa-clr-sd-5);
    -webkit-clip-path: polygon(0 100%, 0 0, 0 0, 0 100%);
    clip-path: polygon(0 100%, 0 0, 0 0, 0 100%);
}

.log-slider-item-5 .log-slider-text .slider_title_2 span {
    color: var(--laa-clr-sd-3);
    -webkit-clip-path: polygon(0 100%, 100% 0, 100% 0, 0% 100%);
    clip-path: polygon(0 100%, 100% 0, 100% 0, 0% 100%);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-slider-item-5 .log-slider-text .slider_title_2 {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .log-slider-item-5 .log-slider-text .slider_title_2 {
        font-size: 40px;
    }
}

.log-slider-item-5 .log-slider-text p {
    opacity: 0;
    line-height: 1.5;
    visibility: hidden;
    color: var(--laa-clr-sd-5);
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.log-slider-item-5 .log-slider-text .log-slider-btn-grp {
    opacity: 0;
    gap: 20px 50px;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

@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),
(max-width: 767px) {
    .log-slider-item-5 .log-slider-text .log-slider-btn-grp {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-slider-item-5 .log-slider-text .slider-cta {
    gap: 10px;
}

.log-slider-item-5 .log-slider-text .slider-cta .inner-icon {
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 28px;
    border-radius: 100%;
    background-color: var(--laa-clr-sd-3);
}

@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),
(max-width: 767px) {
    .log-slider-item-5 .log-slider-text .slider-cta .inner-text {
        text-align: left;
    }
}

.log-slider-item-5 .log-slider-text .slider-cta .inner-text span {
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--laa-clr-sd-3);
    font-family: var(--log-heading-2);
}

.log-slider-item-5 .log-slider-text .slider-cta .inner-text h3 {
    line-height: 1;
    font-size: 26px;
    font-weight: 700;
    color: var(--laa-clr-sd-5);
}

.swiper-slide-active .log-slider-item-5 .slider-svg-img-1 {
    -webkit-transition: all 3500ms ease;
    transition: all 3500ms ease;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

.swiper-slide-active .log-slider-item-5 .slider-svg-img-2 {
    -webkit-transition: all 3500ms ease;
    transition: all 3500ms ease;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

.swiper-slide-active .log-slider-item-5 .slider-truck {
    right: 0%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 2000ms ease;
    transition: all 2000ms ease;
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .swiper-slide-active .log-slider-item-5 .slider-truck {
        right: -10%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .swiper-slide-active .log-slider-item-5 .slider-truck {
        right: -15%;
    }
}

.swiper-slide-active .log-slider-item-5 .log-slider-shape-1 {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.swiper-slide-active .log-slider-item-5 .log-slider-shape-2 {
    top: -45%;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.swiper-slide-active .log-slider-item-5 .log-slider-text .slider_title_2 {
    -webkit-transition: all 2000ms ease;
    transition: all 2000ms ease;
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
}

.swiper-slide-active .log-slider-item-5 .log-slider-text .slider_title_2 span {
    -webkit-transition: all 2000ms ease;
    transition: all 2000ms ease;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
    clip-path: polygon(0 100%, 0 0, 100% 0, 100% 100%);
}

.swiper-slide-active .log-slider-item-5 .log-slider-text p {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}

.swiper-slide-active .log-slider-item-5 .log-slider-text .log-slider-btn-grp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.log-main-slider-nav-pagition-3 {
    top: 50%;
    z-index: 2;
    left: 60px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .log-main-slider-nav-pagition-3 {
        left: 15px;
    }
}

@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),
(max-width: 767px) {
    .log-main-slider-nav-pagition-3 {
        display: none;
    }
}

.log-main-slider-nav-pagition-3 .log-main-prev-5,
.log-main-slider-nav-pagition-3 .log-main-next-5 {
    color: #6A6A6A;
    font-size: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-main-slider-nav-pagition-3 .log-main-prev-5:hover,
.log-main-slider-nav-pagition-3 .log-main-next-5:hover {
    color: var(--laa-clr-sd-2);
}

@media (max-width: 480px) {
    .log-main-slider-nav-pagition-3 .log-main-prev-5,
    .log-main-slider-nav-pagition-3 .log-main-next-5 {
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 16px;
        margin: 0px 8px;
        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: #fff1ee;
    }
    .log-main-slider-nav-pagition-3 .log-main-prev-5:hover,
    .log-main-slider-nav-pagition-3 .log-main-next-5:hover {
        color: #fff;
        background-color: var(--laa-clr-sd-2);
    }
}

.log-main-slider-nav-pagition-3 .log-main-pagination-5 {
    margin: 15px 0px;
}

@media (max-width: 480px) {
    .log-main-slider-nav-pagition-3 .log-main-pagination-5 {
        display: none;
    }
}

.log-main-slider-nav-pagition-3 .log-main-pagination-5 .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin: 10px 0px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: transparent;
    color: var(--laa-clr-sd-5);
    font-family: var(--log-heading-2);
}

.log-main-slider-nav-pagition-3 .log-main-pagination-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: rgb(255, 255, 255);
    background-color: var(--laa-clr-sd-2);
}

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

/*Feature Section*/

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

.log-feature-section-5 {
    margin: 0 auto;
    max-width: 1920px;
}

.log-feature-content-5 {
    max-width: 1590px;
    margin-top: -89px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-content-5 {
        margin-top: -119px;
    }
}

.log-feature-content-5 .feature-bg {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 254px;
    overflow: hidden;
    border-bottom-right-radius: 500px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-content-5 .feature-bg {
        display: none;
    }
}

.log-feature-content-5 .feature-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-feature-content-5 .feature-bg:before {
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.75;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #EC3900;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-area-5 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-feature-item-5 {
    z-index: 1;
    width: 100%;
    height: 343px;
    max-width: 300px;
    padding-top: 30px;
    margin-left: 18px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #FFF8F8;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-image: url(../img/shape/hex-4.webp);
    mask-image: url(../img/shape/hex-4.webp);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-item-5 {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .log-feature-item-5 {
        margin-left: 0;
    }
}

.log-feature-item-5 .log-feature-bg {
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.log-feature-item-5 .log-feature-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 2500ms ease;
    transition: all 2500ms ease;
}

.log-feature-item-5 .log-feature-bg:before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
}

.log-feature-item-5 .log-feature-border {
    top: 11px;
    left: 11px;
    z-index: -1;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.log-feature-item-5 .inner-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto;
    -webkit-mask-size: auto;
    mask-size: auto;
    margin-bottom: 15px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-mask-position: center center;
    mask-position: center center;
    background-color: rgba(236, 57, 0, 0.13);
    -webkit-mask-image: url(../img/shape/hex-3.webp);
    mask-image: url(../img/shape/hex-3.webp);
}

.log-feature-item-5 .inner-icon i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 42px;
    color: var(--laa-clr-sd-3);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-feature-item-5 .inner-text h3 {
    color: #000000;
    font-size: 22px;
    font-weight: 800;
    padding-bottom: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-feature-item-5 .inner-text p {
    color: #6A6A6A;
    font-size: 16px;
    margin: 0 auto;
    max-width: 256px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-feature-item-5:hover .log-feature-bg {
    opacity: 1;
    visibility: visible;
}

.log-feature-item-5:hover .log-feature-bg img {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

.log-feature-item-5:hover .log-feature-border {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

.log-feature-item-5:hover .inner-text h3 {
    color: #fff;
}

.log-feature-item-5:hover .inner-text p {
    color: #fff;
}

.log-feature-item-5:hover .inner-icon {
    background-color: var(--laa-clr-sd-3);
}

.log-feature-item-5:hover .inner-icon i {
    color: #fff;
}

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

/*About Section*/

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

.log-about-section-5 {
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-section-5 {
        padding-top: 50px;
    }
}

.log-about-section-5 .about-circle {
    top: 0;
    right: -25%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-section-5 .about-circle {
        display: none;
    }
}

.log-about-section-5 .about-side-img {
    right: -20px;
    bottom: -40px;
}

@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),
(max-width: 767px) {
    .log-about-section-5 .about-side-img {
        display: none;
    }
}

.log-about-content-5 {
    margin: 0 auto;
    gap: 40px 50px;
    max-width: 1435px;
}

@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),
(max-width: 767px) {
    .log-about-content-5 {
        gap: 40px 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),
(max-width: 767px) {
    .log-about-content-5 {
        gap: 20px 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-about-img-wrap-5 {
    max-width: 755px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-about-img-wrap-5 {
        max-width: 50%;
    }
}

@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),
(max-width: 767px) {
    .log-about-img-wrap-5 {
        max-width: 715px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-img-wrap-5 {
        text-align: center;
    }
}

.log-about-img-wrap-5 .item-img-1 {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.log-about-img-wrap-5 .about-exp {
    width: 100%;
    height: 206px;
    max-width: 355px;
}

.log-about-img-wrap-5 .client-count {
    margin-bottom: 30px;
}

.log-about-img-exp-5 .about-exp {
    z-index: 1;
    overflow: hidden;
    padding-left: 40px;
    padding-top: 35px;
    border-radius: 12px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-img-exp-5 .about-exp {
        margin: 0 auto;
    }
}

.log-about-img-exp-5 .about-exp:before {
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #003E4D;
}

.log-about-img-exp-5 .about-exp h3 {
    color: #fff;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
}

.log-about-img-exp-5 .about-exp p {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
}

.log-about-text-5 {
    max-width: 615px;
}

.log-about-feature-5 .about-ft-item-5 {
    position: relative;
    padding-left: 42px;
    margin-bottom: 20px;
}

.log-about-feature-5 .about-ft-item-5:before,
.log-about-feature-5 .about-ft-item-5:after {
    left: 0;
    top: 5px;
    width: 20px;
    content: "";
    height: 20px;
    position: absolute;
    border: 2px solid var(--laa-clr-sd-3);
}

.log-about-feature-5 .about-ft-item-5:before {
    top: 10px;
    left: 5px;
}

.log-about-feature-5 .about-ft-item-5:after {
    background-color: var(--laa-clr-sd-3);
}

.log-about-feature-5 .about-ft-item-5 h3 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 5px;
    color: var(--laa-clr-sd-5);
}

.log-about-feature-5 .about-ft-item-5 p {
    color: #6A6A6A;
    font-size: 18px;
}

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

/*Service Section*/

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

.log-service-section-5 {
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}

.log-service-section-5 .log-service-shape {
    top: 0;
    right: -10%;
    z-index: -1;
    opacity: 0.15;
    width: 0%;
    height: 700px;
    max-width: 63%;
    border-radius: 100px 0px 0px 100px;
    background-color: var(--laa-clr-sd-3);
}

@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),
(max-width: 767px) {
    .log-service-section-5 .log-service-shape {
        display: none;
    }
}

.log-service-section-5 .log-service-shape.active {
    width: 100%;
    -webkit-transition: all 2500ms ease;
    transition: all 2500ms ease;
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.log-service-section-5 .log-service-shape2 {
    top: 0;
    left: -30px;
}

.log-service-section-5 .log-service-side-2 {
    left: 0;
    bottom: -45px;
}

@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),
(max-width: 767px) {
    .log-service-section-5 .log-service-side-2 {
        display: none;
    }
}

.log-service-text-area-5 {
    width: 100%;
    max-width: 450px;
}

@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),
(max-width: 767px) {
    .log-service-text-area-5 {
        max-width: 100%;
    }
}

.log-service-content-5 {
    gap: 35px;
    margin-right: -450px;
}

@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),
(max-width: 767px) {
    .log-service-content-5 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 0;
    }
}

.log-service-item-5 {
    margin: 0 auto;
    max-width: 380px;
}

.log-service-item-5 .item-img {
    overflow: hidden;
    border-radius: 20px;
}

.log-service-item-5 .item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-service-item-5 .item-text {
    left: 0;
    right: 0;
    width: 87%;
    bottom: 20px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px 25px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: rgba(33, 33, 33, 0.5019607843);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.log-service-item-5 .item-text .item-icon {
    top: -35px;
    width: 70px;
    height: 70px;
    right: -15px;
    border-radius: 100%;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-service-item-5 .item-text .item-icon i {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-service-item-5 .item-text .service_title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 5px;
}

.log-service-item-5 .item-text p {
    color: #fff;
    font-size: 16px;
}

.log-service-item-5:hover .item-img img {
    -webkit-transform: scale(1.05) translateX(-10px);
    transform: scale(1.05) translateX(-10px);
}

.log-service-item-5:hover .item-text {
    background-color: var(--laa-clr-sd-3);
}

.log-service-item-5:hover .item-text .item-icon {
    background-color: #fff;
}

.log-service-item-5:hover .item-text .item-icon i {
    color: var(--laa-clr-sd-3);
}

.log-service-slider-area-5 {
    max-width: 1595px;
    margin-right: -450px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-service-slider-area-5 {
        max-width: 1200px;
    }
}

@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),
(max-width: 767px) {
    .log-service-slider-area-5 {
        max-width: 100%;
        margin-right: 0;
    }
}

.log-ser-nav-5 {
    gap: 15px;
}

@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),
(max-width: 767px) {
    .log-ser-nav-5 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-ser-nav-5 .log-ser-prev-5,
.log-ser-nav-5 .log-ser-next-5 {
    width: 96px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #6A6A6A;
    cursor: pointer;
    border-radius: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid rgba(119, 118, 118, 0.2);
}

.log-ser-nav-5 .log-ser-prev-5:hover,
.log-ser-nav-5 .log-ser-next-5:hover {
    color: #fff;
    border: 1px solid var(--laa-clr-sd-3);
    background-color: var(--laa-clr-sd-3);
}

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

/*Price Section*/

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

.log-pricing-section-5 {
    z-index: 1;
    overflow: hidden;
    padding-top: 115px;
    padding-bottom: 270px;
}

.log-pricing-section-5.inner_version {
    padding-bottom: 100px;
}

.log-pricing-section-5 .price-bg {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.log-pricing-section-5 .price-bg:before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    opacity: 0.87;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #003E4D;
}

.log-pricing-section-5 .price-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-pricing-section-5 .price-shape {
    top: 0;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-pricing-section-5 .price-shape {
        display: none;
    }
}

.log-pricing-section-5 .log-section-title-4 .section_title {
    color: #fff;
}

.log-pricing-section-5 .log-section-title-4 p {
    color: #fff;
    margin: 0 auto;
    max-width: 705px;
}

.log-pricing-item-5 {
    margin: 0 auto;
    max-width: 613px;
    overflow: hidden;
    padding: 40px 30px;
    margin-bottom: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1019607843);
}

.log-pricing-item-5 .item-content {
    gap: 30px 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-pricing-item-5 .item-content {
        gap: 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),
(max-width: 767px) {
    .log-pricing-item-5 .item-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-pricing-item-5 .item-text {
    max-width: 220px;
}

.log-pricing-item-5 .item-text h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
}

.log-pricing-item-5 .item-text p {
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.log-pricing-item-5 .item-text h2 {
    font-size: 64px;
    font-weight: 800;
    padding-top: 15px;
    padding-bottom: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: rgba(255, 255, 255, 0.2);
}

.log-pricing-item-5 .item-text a {
    width: 100%;
    color: #FF5C01;
    font-size: 16px;
    max-width: 222px;
    font-weight: 600;
    padding: 16px 15px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid #FF5C01;
    font-family: var(--log-heading-2);
}

.log-pricing-item-5 .item-text a:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

.log-pricing-item-5 .item-list {
    color: #fff;
    position: relative;
}

.log-pricing-item-5 .item-list:before {
    top: 0;
    left: -27px;
    width: 1px;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.12);
}

@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),
(max-width: 767px) {
    .log-pricing-item-5 .item-list:before {
        display: none;
    }
}

.log-pricing-item-5 .item-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
}

.log-pricing-item-5 .item-list li i {
    margin-right: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: rgb(118, 120, 125);
}

.log-pricing-item-5 .item-list li:last-child {
    margin-bottom: 0;
}

.log-pricing-item-5:hover .item-text h2 {
    color: rgb(255, 255, 255);
}

.log-pricing-item-5:hover .item-list i {
    color: var(--laa-clr-sd-2);
}

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

/*Why choose Section*/

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

.log-why-choose-section-5 {
    z-index: 2;
    overflow: hidden;
    margin-top: -192px;
}

.log-why-choose-section-5 .wc-shape1 {
    left: 0;
    top: 0px;
    z-index: 2;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px),
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),
(max-width: 767px) {
    .log-why-choose-section-5 .wc-shape1 {
        display: none;
    }
}

.log-why-choose-section-5 .wc-shape2 {
    top: 190px;
    right: -15%;
    z-index: 2;
}

@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),
(max-width: 767px) {
    .log-why-choose-section-5 .wc-shape2 {
        display: none;
    }
}

.log-why-choose-content-5 {
    z-index: 1;
    padding: 70px;
    margin: 0 auto;
    max-width: 1380px;
    background-color: #fff;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-why-choose-content-5 {
        padding: 30px 20px;
    }
}

.log-why-choose-content-5 .log-wc-img1 {
    top: 70px;
    right: 70px;
    overflow: hidden;
}

@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),
(max-width: 767px) {
    .log-why-choose-content-5 .log-wc-img1 {
        display: none;
    }
}

.log-why-choose-content-5 .log-wc-img2 {
    top: 60%;
    right: 300px;
    overflow: hidden;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-why-choose-content-5 .log-wc-img2 {
        right: 15px;
    }
}

@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),
(max-width: 767px) {
    .log-why-choose-content-5 .log-wc-img2 {
        display: none;
    }
}

.log-why-choose-text-5 {
    max-width: 570px;
}

@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),
(max-width: 767px) {
    .log-why-choose-text-5 {
        margin: 0 auto;
        max-width: 620px;
    }
}

.log-about-list-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 10px;
    padding: 30px 30px 15px;
    background-color: rgb(255, 242, 238);
}

.log-about-list-6:before {
    top: 50%;
    left: 48%;
    width: 1px;
    content: "";
    height: 75%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgb(217, 217, 217);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-list-6:before {
        display: none;
    }
}

.log-about-list-6 ul {
    width: 50%;
    font-family: var(--log-heading-2);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-list-6 ul {
        width: 100%;
    }
}

.log-about-list-6 ul li {
    width: 100%;
    color: #1A3D38;
    margin-bottom: 15px;
}

.log-about-list-6 ul li img {
    margin-right: 5px;
    color: var(--laa-clr-sd-2);
}

.log-about-list-6 ul.list-item-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 40px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-list-6 ul.list-item-2 {
        padding-left: 0;
    }
}

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

/*Team Section*/

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

.log-team-item-5 {
    margin: 0 auto;
    max-width: 402px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-team-item-5 .item-text {
    left: 0;
    right: 0;
    top: 30px;
    position: absolute;
}

.log-team-item-5 .item-text h3 {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 10px;
    color: var(--laa-clr-sd-4);
}

@media (max-width: 767px) {
    .log-team-item-5 .item-text h3 {
        font-size: 26px;
        padding-bottom: 5px;
    }
}

.log-team-item-5 .item-text span {
    color: var(--laa-clr-sd-3);
}

@media (max-width: 767px) {
    .log-team-item-5 .item-text span {
        font-size: 14px;
    }
}

.log-team-item-5 .item-social {
    left: 20px;
    bottom: 85px;
    position: absolute;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-item-5 .item-social {
        bottom: 65px;
    }
}

.log-team-item-5 .item-social a {
    opacity: 0;
    color: #fff;
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    margin-bottom: 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;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    background-color: var(--laa-clr-sd-2);
}

.log-team-item-5 .item-social a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-item-5 .item-social a {
        height: 35px;
        width: 35px;
        font-size: 14px;
        margin-bottom: 5px;
    }
}

.log-team-item-5 .social-plus {
    left: 20px;
    width: 50px;
    bottom: 25px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    border-radius: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 3.5px solid #000000;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-team-item-5 .social-plus i {
    color: #000000;
    font-size: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-item-5 .social-plus {
        width: 35px;
        height: 35px;
    }
}

.log-team-item-5:hover {
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
}

.log-team-item-5:hover .item-social a {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.log-team-item-5:hover .item-social a:nth-child(1) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.log-team-item-5:hover .item-social a:nth-child(2) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.log-team-item-5:hover .item-social a:nth-child(3) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.log-team-item-5:hover .item-social a:nth-child(4) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.log-team-item-5:hover .social-plus {
    border: 3.5px solid var(--laa-clr-sd-2);
}

.log-team-item-5:hover .social-plus i {
    color: var(--laa-clr-sd-2);
}

.dest-bottom-text {
    padding-top: 45px;
    text-align: center;
    font-weight: 600;
    font-family: var(--log-heading-2);
}

@media (max-width: 480px) {
    .dest-bottom-text {
        padding-top: 20px;
    }
}

.dest-bottom-text a {
    color: var(--laa-clr-sd-2);
    position: relative;
}

.dest-bottom-text a:before {
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    content: "";
    height: 1px;
    margin: 0 auto;
    position: absolute;
    background-color: var(--laa-clr-sd-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.dest-bottom-text a:hover:before {
    width: 100%;
}

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

/*Project Section*/

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

.log-project-section-5 {
    z-index: 1;
    overflow: hidden;
}

.log-project-section-5:before {
    bottom: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 140px;
    position: absolute;
    background-color: #fff;
}

.log-project-section-5 .project-bg {
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.log-project-section-5 .project-bg:before {
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: var(--laa-clr-sd-2);
}

.log-project-section-5 .project-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-project-top-content .log-section-title-4 {
    max-width: 577px;
}

.log-project-top-content .log-section-title-4 .section_title {
    color: #fff;
}

.log-project-top-content .top-text {
    color: #fff;
    max-width: 425px;
}

.log-project-item-5 {
    margin: 0 auto;
    overflow: hidden;
    max-width: 580px;
}

.log-project-item-5:before {
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    bottom: -270px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-3);
    -webkit-clip-path: polygon(24% 36%, 100% 79%, 100% 100%, 0 100%, 0 61%);
    clip-path: polygon(24% 36%, 100% 79%, 100% 100%, 0 100%, 0 61%);
}

.log-project-item-5 .item-text {
    left: 50px;
    bottom: 30px;
    max-width: 440px;
}

@media (max-width: 480px) {
    .log-project-item-5 .item-text {
        left: 15px;
        bottom: 15px;
        max-width: 100%;
    }
}

.log-project-item-5 .item-text .item-cate {
    margin-bottom: 20px;
    display: inline-block;
}

.log-project-item-5 .item-text .item-cate a {
    font-size: 16px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 100px;
    background-color: #fff;
    color: var(--laa-clr-sd-2);
    font-family: var(--log-heading-2);
}

@media (max-width: 480px) {
    .log-project-item-5 .item-text .item-cate a {
        font-size: 14px;
        padding: 10px 15px;
    }
}

.log-project-item-5 .item-text .item_title {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
}

@media (max-width: 480px) {
    .log-project-item-5 .item-text .item_title {
        font-size: 24px;
    }
}

.log-project-item-5:hover:before {
    bottom: 0px;
}

.log-project-slider-5 {
    max-width: 1800px;
    margin-right: -500px;
}

@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),
(max-width: 767px) {
    .log-project-slider-5 {
        max-width: 100%;
        margin-right: 0;
    }
}

@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),
(max-width: 767px) {
    .log-project-arrow-nav {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-project-arrow-nav:before {
    left: 0;
    top: 20px;
    width: 80%;
    height: 2px;
    content: "";
    position: absolute;
    background: rgb(255, 173, 135);
}

@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),
(max-width: 767px) {
    .log-project-arrow-nav:before {
        display: none;
    }
}

.log-project-arrow-nav .log-pro-nav-5 {
    gap: 15px;
}

.log-project-arrow-nav .log-pro-nav-5 .log-pro-prev-5,
.log-project-arrow-nav .log-pro-nav-5 .log-pro-next-5 {
    color: #fff;
    width: 96px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    border-radius: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 2px solid rgb(255, 255, 255);
}

.log-project-arrow-nav .log-pro-nav-5 .log-pro-prev-5:hover,
.log-project-arrow-nav .log-pro-nav-5 .log-pro-next-5:hover {
    background-color: #fff;
    color: var(--laa-clr-sd-2);
}

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

/*Process Section*/

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

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-process-item-6 {
        margin-bottom: 40px;
    }
}

.log-process-item-6 .tx-shape,
.log-process-item-6:before {
    top: 55px;
    content: "";
    right: -65px;
    width: 102px;
    height: 36px;
    position: absolute;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-process-item-6:before {
        display: none;
    }
}

.log-process-item-6 .inner-icon {
    width: 145px;
    height: 145px;
    margin: 0 auto;
    line-height: 50px;
    border-radius: 100%;
    margin-bottom: 25px;
    border: 2px solid #ededed;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

.log-process-item-6 .inner-icon i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 70px;
    color: var(--laa-clr-sd-3);
}

.log-process-item-6 .inner-icon span {
    top: 0;
    right: 0;
    color: #fff;
    width: 38px;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    position: absolute;
    -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-color: var(--laa-clr-sd-3);
}

.log-process-item-6 .inner-text h3 {
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 10px;
    color: var(--laa-clr-sd-5);
}

@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),
(max-width: 767px) {
    .log-process-item-6 .inner-text h3 {
        font-size: 20px;
    }
}

.log-process-item-6:hover .inner-icon {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.log-process-content-5 {
    margin-bottom: 50px;
}

.log-porcess-counter {
    padding: 23px 0px;
    position: relative;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-porcess-counter {
        gap: 30px;
    }
}

.log-porcess-counter:before {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #D9D9D9;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@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),
(max-width: 767px) {
    .log-porcess-counter:before {
        display: none;
    }
}

.log-process-counter-item {
    gap: 30px;
}

.log-process-counter-item .inner-icon {
    width: 84px;
    height: 84px;
    border-radius: 100%;
    background-color: var(--laa-clr-sd-2);
}

.log-process-counter-item .inner-icon i {
    color: #fff;
    font-size: 45px;
}

.log-process-counter-item .inner-text {
    gap: 30px;
}

.log-process-counter-item .inner-text h3 {
    width: 135px;
    color: #1A3D38;
    font-size: 40px;
    font-weight: 800;
}

@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),
(max-width: 767px) {
    .log-process-counter-item .inner-text h3 {
        font-size: 32px;
    }
}

.log-process-counter-item .inner-text i {
    font-size: 25px;
    margin-right: 20px;
    color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-process-counter-item .inner-text i {
        display: none;
    }
}

.col-lg-3:last-child .log-process-item-6:before {
    display: none;
}

.col-lg-3:nth-child(even) .log-process-item-6:before {
    background-image: url(../img/shape/process-arrow-2.webp);
}

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

/*quote Section*/

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

.log-quote-section-5 {
    z-index: 1;
}

.log-quote-section-5 .process-side {
    right: 0;
    top: -120px;
    max-width: 300px;
}

@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),
(max-width: 767px) {
    .log-quote-section-5 .process-side {
        display: none;
    }
}

.log-quote-section-5:before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    z-index: -1;
    height: 135px;
    position: absolute;
    background-color: #fff;
}

.log-quote-section-5 .log-quote-bg {
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.log-quote-section-5 .log-quote-bg:before {
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.87;
    height: 100%;
    content: "";
    position: absolute;
    background-color: #003E4D;
}

.log-quote-section-5 .log-quote-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-quote-tab-area-5 {
    max-width: 721px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-quote-tab-area-5 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-quote-tab-btn-5 {
    width: 156px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-quote-tab-btn-5 {
        width: 100%;
    }
    .log-quote-tab-btn-5 ul {
        text-align: center;
    }
    .log-quote-tab-btn-5 ul li {
        display: inline-block;
    }
}

.log-quote-tab-btn-5 .nav-link {
    padding: 0;
    width: 156px;
    height: 167px;
    position: relative;
    padding-left: 10px;
}

.log-quote-tab-btn-5 .nav-link.active .log-quote-plan {
    border: 3px solid var(--laa-clr-sd-2);
}

.log-quote-tab-btn-5 .nav-link.active .log-quote-plan h3 {
    margin-left: -10px;
}

.log-quote-tab-btn-5 .nav-link.active .log-quote-plan h3:before {
    width: 100%;
}

.log-quote-tab-btn-5 .log-quote-plan {
    z-index: 1;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.log-quote-tab-btn-5 .log-quote-plan h3 {
    color: #fff;
    z-index: 1;
    font-size: 16px;
    font-weight: 800;
    margin-left: 0px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 10px 10px 10px 20px;
}

.log-quote-tab-btn-5 .log-quote-plan h3:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 0%;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    background-color: var(--laa-clr-sd-2);
}

.log-quote-tab-btn-5 .log-quote-plan:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
}

.log-quote-form-5 {
    padding: 50px;
    max-width: 565px;
    background-color: var(--laa-clr-sd-2);
}

@media (max-width: 767px) {
    .log-quote-form-5 {
        padding: 20px 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-quote-form-5 {
        margin: 0 auto;
    }
}

.log-quote-form-5 .form-img {
    overflow: hidden;
    max-height: 106px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.log-quote-form-5 .form-img img {
    -o-object-fit: cover;
    object-fit: cover;
}

.log-quote-form-5 .input-field {
    margin-bottom: 20px;
}

.log-quote-form-5 .input-field .inner-icon {
    top: 18px;
    right: 15px;
    color: #808080;
    font-size: 16px;
    position: absolute;
}

.log-quote-form-5 .input-field input {
    width: 100%;
    height: 62px;
    border: none;
    padding-left: 15px;
    border-radius: 5px;
    -webkit-appearance: none;
}

.log-quote-form-5 .input-field input::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 600;
}

.log-quote-form-5 .input-field input::-moz-placeholder {
    font-size: 16px;
    font-weight: 600;
}

.log-quote-form-5 .input-field input:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 600;
}

.log-quote-form-5 .input-field input::-ms-input-placeholder {
    font-size: 16px;
    font-weight: 600;
}

.log-quote-form-5 .input-field input::placeholder {
    font-size: 16px;
    font-weight: 600;
}

.log-quote-form-5 button {
    color: #fff;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 17px 30px;
    border-radius: 5px;
    background-color: #000;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-quote-form-5 button:hover {
    color: var(--laa-clr-sd-2);
    background-color: #fff;
}

.log-quote-content-5 {
    gap: 30px 60px;
}

@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),
(max-width: 767px) {
    .log-quote-content-5 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-quote-tab-content-5 {
        width: 100%;
    }
}

.log-quote-text-5 {
    width: 100%;
    max-width: 480px;
}

@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),
(max-width: 767px) {
    .log-quote-text-5 {
        max-width: 720px;
    }
}

.log-quote-text-5 .log-section-title-4 .section_title {
    color: #fff;
}

.log-quote-text-5 .log-section-title-4 p {
    color: #fff;
}

.log-quote-text-5 .log-about-cta-grp .log-about-cta.ver_3 .inner-text a {
    color: #fff;
}

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

/*Blog Section*/

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

.log-blog-top-content-5 {
    gap: 20px;
}

.log-blog-top-content-5 .log-section-title-4 {
    max-width: 610px;
}

.log-blog-top-content-5 .top-text {
    max-width: 495px;
}

.log-blog-item-5 {
    margin: 0 auto;
    max-width: 402px;
    padding-bottom: 132px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-blog-item-5 {
        margin-bottom: 30px;
    }
}

.log-blog-item-5 .item-img {
    height: 295px;
    overflow: hidden;
    border-radius: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-blog-item-5 .item-text {
    right: 0;
    bottom: 0;
    position: absolute;
    max-width: 90%;
    padding: 22px 25px;
    background-color: #fff;
    border-top-left-radius: 30px;
}

.log-blog-item-5 .item-text .item-meta {
    color: #6A6A6A;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
    font-family: var(--log-heading-2);
}

.log-blog-item-5 .item-text .item-meta i {
    margin-right: 10px;
    color: var(--laa-clr-sd-2);
}

.log-blog-item-5 .item-text .blog_title {
    color: #212121;
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 15px;
}

@media (max-width: 767px) {
    .log-blog-item-5 .item-text .blog_title {
        font-size: 22px;
    }
}

.log-blog-item-5 .item-text .read_more {
    z-index: 1;
    color: #6A6A6A;
    font-size: 18px;
    font-weight: 500;
    padding-left: 15px;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--log-heading-2);
}

.log-blog-item-5 .item-text .read_more:before {
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    width: 0%;
    height: 44px;
    position: absolute;
    border-radius: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-blog-item-5 .item-text .read_more i {
    color: #fff;
    width: 44px;
    height: 44px;
    font-size: 20px;
    margin-left: 10px;
    line-height: 46px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-blog-item-5 .item-text .read_more:hover {
    color: #fff;
}

.log-blog-item-5 .item-text .read_more:hover:before {
    width: 100%;
}

.log-blog-item-5 .item-text .read_more:hover i {
    background-color: #1A3D38;
}

.log-blog-item-5:hover {
    padding-bottom: 0px;
}

.log-blog-item-5:hover .item-img {
    height: 427px;
    max-height: 427px;
}

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

/*Sponsor Section*/

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

.log-sponsor-section-5 {
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
    padding: 45px 0px;
}

.log-sponsor-section-5 .section-bg {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.log-sponsor-section-5 .section-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-sponsor-section-5 .section-bg:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.62;
    position: absolute;
    background-color: #E71800;
}

.log-sponsor-scroller-5 .sponsor-item {
    display: inline-block;
}

.log-sponsor-scroller-5 .sponsor-item .inner-img {
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

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

/******* HOME PAGE 6 *******/

/*Banner  Section*/

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

.log-banner-section-6 {
    z-index: 1;
    overflow: hidden;
}

.log-banner-section-6:before {
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    z-index: 3;
    height: 195px;
    position: absolute;
    background: -webkit-gradient(linear, left bottom, left top, from(#1B1A1A), color-stop(28.5%, rgba(27, 26, 26, 0.87)), to(rgba(27, 26, 26, 0)));
    background: linear-gradient(0deg, #1B1A1A 0%, rgba(27, 26, 26, 0.87) 28.5%, rgba(27, 26, 26, 0) 100%);
}

.log-banner-section-6 .log-banner-img-6 {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
}

.log-banner-section-6 .log-banner-img-6 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-banner-section-6 .log-banner-image-6 {
    right: -100%;
    bottom: 0;
    z-index: 2;
    max-width: 692px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-banner-section-6 .log-banner-image-6 {
        right: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-banner-section-6 .log-banner-image-6 {
        right: -150px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-banner-section-6 .log-banner-image-6 {
        display: none;
    }
}

.log-banner-section-6 .log-banner-box-6 {
    bottom: -100%;
    right: -150px;
}

.log-banner-section-6 .log-banner-shape-6 {
    top: 50%;
    left: -134px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.log-banner-section-6.active .log-banner-image-6 {
    right: 10%;
    -webkit-transition: all 2500ms ease;
    transition: all 2500ms ease;
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.log-banner-section-6.active .log-banner-box-6 {
    bottom: -150px;
    -webkit-transition: all 2500ms ease;
    transition: all 2500ms ease;
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.log-banner-text-img-6 {
    z-index: 3;
    padding: 230px 0px;
}

@media (max-width: 767px) {
    .log-banner-text-img-6 {
        padding: 190px 0px 150px;
    }
}

.log-banner-text-img-6 .log-banner-text-6 {
    max-width: 620px;
}

.log-banner-text-img-6 .log-banner-text-6 .subtitle {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 20px;
    position: relative;
    display: inline-block;
    font-family: var(--log-heading-2);
    background-color: rgba(255, 255, 255, 0.1019607843);
}

.log-banner-text-img-6 .log-banner-text-6 .subtitle:before,
.log-banner-text-img-6 .log-banner-text-6 .subtitle:after {
    top: 0;
    width: 3px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: var(--laa-clr-sd-2);
}

.log-banner-text-img-6 .log-banner-text-6 .subtitle:before {
    left: 0;
}

.log-banner-text-img-6 .log-banner-text-6 .subtitle:after {
    right: 0;
}

.log-banner-text-img-6 .log-banner-text-6 .banner_title {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.13;
    padding: 15px 0px 25px;
}

.log-banner-text-img-6 .log-banner-text-6 .banner_title span {
    color: var(--laa-clr-sd-2);
}

@media (max-width: 767px) {
    .log-banner-text-img-6 .log-banner-text-6 .banner_title {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .log-banner-text-img-6 .log-banner-text-6 .banner_title {
        font-size: 40px;
    }
}

.log-banner-text-img-6 .log-banner-text-6 p {
    color: #fff;
    padding-bottom: 45px;
}

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

/*Service  Section*/

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

.log-feature-section-6 {
    background-color: #393939;
}

.log-feature-section-6 .feature-side-1 {
    left: 0;
    bottom: 0;
    z-index: 1;
}

@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),
(max-width: 767px) {
    .log-feature-section-6 .feature-side-1 {
        display: none;
    }
}

.log-feature-section-6 .feature-side-2 {
    top: 0;
    right: 0;
}

@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),
(max-width: 767px) {
    .log-feature-section-6 .feature-side-2 {
        display: none;
    }
}

.log-feature-content-6 {
    margin: 0 auto;
    max-width: 1380px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-content-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-feature-item-6 {
    gap: 20px;
    width: 25%;
    z-index: 1;
    padding: 35px 18px 25px 48px;
    border-right: 1px solid #777676;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-feature-item-6 {
        padding: 25px 18px 25px 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-item-6 {
        width: 50%;
        border: none;
        padding: 25px 18px 25px 20px;
    }
}

@media (max-width: 767px) {
    .log-feature-item-6 {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 25px 18px 25px 15px;
    }
}

.log-feature-item-6:before {
    right: 0;
    top: 15px;
    left: 0px;
    z-index: -1;
    width: 93%;
    content: "";
    height: 0%;
    margin: 0 auto;
    position: absolute;
    border-radius: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-feature-item-6:before {
        top: 0;
        width: 100%;
    }
}

.log-feature-item-6 .item-icon {
    width: 70px;
    margin-top: 12px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-feature-item-6 .item-icon {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .log-feature-item-6 .item-icon {
        width: 40px;
    }
}

.log-feature-item-6 .item-icon i {
    color: #fff;
    font-size: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-feature-item-6 .item-icon i {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .log-feature-item-6 .item-icon i {
        font-size: 40px;
    }
}

.log-feature-item-6 .item-text {
    max-width: 180px;
}

.log-feature-item-6 .item-text span {
    font-size: 18px;
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--laa-clr-sd-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-feature-item-6 .item-text h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-feature-item-6 .item-text h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .log-feature-item-6 .item-text h3 {
        font-size: 20px;
    }
}

.log-feature-item-6:last-child {
    border: none;
}

.log-feature-item-6.active .item-text span {
    color: #fff;
    margin-bottom: 5px;
}

.log-feature-item-6.active:before {
    height: 100%;
}

.log-feature-item-6:hover .item-icon {
    -webkit-animation: log_icon_shake 1.8s ease-out infinite;
    animation: log_icon_shake 1.8s ease-out infinite;
}

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

/*About  Section*/

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

.log-about-section-6 {
    z-index: 1;
}

.log-about-section-6 .log-about-content-wrap-6 {
    margin: 0 auto;
    max-width: 1370px;
}

.log-about-section-6 .log-about-side-img {
    right: 0;
    bottom: 0;
    z-index: -1;
}

.log-about-content-6 {
    gap: 40px 75px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-about-content-6 {
        gap: 40px 30px;
        padding: 0px 15px;
    }
}

@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),
(max-width: 767px) {
    .log-about-content-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0px 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-about-img-wrap-6 {
    gap: 30px;
    width: 100%;
    max-width: 698px;
}

@media (max-width: 480px) {
    .log-about-img-wrap-6 {
        gap: 10px;
    }
}

.log-about-img-wrap-6 .item-img-1 .inner-img {
    overflow: hidden;
    border-radius: 0px 120px 0px 120px;
}

.log-about-img-wrap-6 .item-img-grp .item-img-2 {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 80px 0px 80px 0px;
}

.log-about-img-wrap-6 .item-img-grp .item-img-3 {
    z-index: 1;
}

.log-about-img-wrap-6 .item-img-grp .item-img-3:before {
    top: -15px;
    content: "";
    width: 100%;
    z-index: -1;
    right: -15px;
    height: 100%;
    position: absolute;
    border-radius: 0px 80px 80px 80px;
    border: 2px solid var(--laa-clr-sd-2);
}

.log-about-img-wrap-6 .item-img-grp .item-img-3 .inner-img {
    overflow: hidden;
    border-radius: 0px 80px 80px 80px;
}

.log-about-text-wrap-6 {
    max-width: 608px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-about-text-wrap-6 {
        max-width: 570px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-text-wrap-6 {
        max-width: 700px;
    }
}

.log-about-list-6.dark_ver {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 10px;
    padding: 30px 30px 15px;
    background-color: #212121;
}

.log-about-list-6.dark_ver:before {
    top: 50%;
    left: 48%;
    width: 1px;
    content: "";
    height: 75%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgba(217, 217, 217, 0.2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-list-6.dark_ver:before {
        display: none;
    }
}

.log-about-list-6.dark_ver ul {
    width: 50%;
    font-family: var(--log-heading-2);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-list-6.dark_ver ul {
        width: 100%;
    }
}

.log-about-list-6.dark_ver ul li {
    width: 100%;
    color: #fff;
    margin-bottom: 15px;
}

.log-about-list-6.dark_ver ul li img {
    margin-right: 10px;
    color: var(--laa-clr-sd-2);
}

.log-about-list-6.dark_ver ul.list-item-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 40px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-about-list-6.dark_ver ul.list-item-2 {
        padding-left: 0;
    }
}

.log-about-btn-grp-6 {
    gap: 20px 50px;
}

.log-client-list {
    gap: 15px;
}

.log-client-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-client-list li {
    color: #fff;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    line-height: 38px;
    margin-left: -25px;
    text-align: center;
    border-radius: 100%;
    background-color: #002966;
    border: 2px solid #1B1A1A;
}

.log-client-list li:nth-child(1) {
    margin-left: 0;
}

.log-client-list .client-number-text {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.log-client-list .client-number-text span {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--laa-clr-sd-2);
}

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

/*Service  Section*/

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

.log-service-section-6 {
    z-index: 1;
    overflow: hidden;
}

.log-service-section-6 .log-service-side-img {
    left: 0;
    bottom: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .log-service-section-6 .log-service-side-img {
        left: -100px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-service-section-6 .log-service-side-img {
        left: -180px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-service-section-6 .log-service-side-img {
        display: none;
    }
}

.log-service-section-6 .log-service-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.log-service-section-6 .log-service-bg:before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.96;
    position: absolute;
    background-color: #2B2A2A;
}

.log-service-section-6 .log-service-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-service-top-content-6 {
    gap: 20px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.log-service-arrow-6 .service-button-prev,
.log-service-arrow-6 .service-button-next {
    width: 80px;
    height: 80px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px dashed var(--laa-clr-sd-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-service-arrow-6 .service-button-prev,
    .log-service-arrow-6 .service-button-next {
        height: 50px;
        width: 50px;
    }
}

.log-service-arrow-6 .service-button-prev i,
.log-service-arrow-6 .service-button-next i {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.log-service-arrow-6 .service-button-prev:hover,
.log-service-arrow-6 .service-button-next:hover {
    border: 1px solid var(--laa-clr-sd-3);
    background-color: var(--laa-clr-sd-3);
}

.log-service-arrow-6 .service-button-prev {
    margin-right: -20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-service-arrow-6 .service-button-prev {
        margin-right: 0;
    }
}

.log-service-arrow-6 .service-button-prev i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.log-service-slider-content-6 {
    gap: 40px 60px;
    margin-right: -450px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-service-slider-content-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 0;
    }
}

.log-service-text-6 {
    width: 100%;
    max-width: 380px;
    padding-top: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-service-text-6 {
        max-width: 100%;
    }
}

.log-service-text-6:before {
    top: 0;
    width: 1px;
    content: "";
    right: -25px;
    height: 0%;
    position: absolute;
    background-color: #4A4A4A;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-service-text-6:before {
        display: none;
    }
}

.log-service-text-6 p {
    padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-service-text-6 p {
        padding-bottom: 20px;
    }
}

.log-service-text-6.active:before {
    height: 100%;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.log-service-item-6 {
    margin: 0 auto;
    overflow: hidden;
    max-width: 350px;
    background-color: #393939;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 360px) {
    .log-service-item-6 .item-img-icon {
        overflow: hidden;
    }
}

.log-service-item-6 .item-img-icon .inner-img {
    height: 214px;
    -webkit-mask-size: auto;
    mask-size: auto;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top;
    mask-position: top;
    -webkit-mask-image: url(../img/shape/service-mask.webp);
    mask-image: url(../img/shape/service-mask.webp);
}

@media (max-width: 360px) {
    .log-service-item-6 .item-img-icon .inner-img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

.log-service-item-6 .item-img-icon .inner-icon {
    left: 62px;
    bottom: 12px;
    position: absolute;
}

@media (max-width: 360px) {
    .log-service-item-6 .item-img-icon .inner-icon {
        left: 0;
        bottom: 0;
        width: 70px;
        height: 70px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -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;
    }
}

.log-service-item-6 .item-img-icon .inner-icon i {
    font-size: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--laa-clr-sd-3);
}

.log-service-item-6 .item-text {
    z-index: 1;
    overflow: hidden;
    padding: 25px 30px;
}

.log-service-item-6 .item-text:before,
.log-service-item-6 .item-text:after {
    width: 70%;
    height: 70%;
    content: "";
    z-index: -1;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

@media (max-width: 360px) {
    .log-service-item-6 .item-text:before,
    .log-service-item-6 .item-text:after {
        display: none;
    }
}

.log-service-item-6 .item-text:before {
    left: -118px;
    bottom: -118px;
}

.log-service-item-6 .item-text:after {
    top: -118px;
    right: -118px;
}

.log-service-item-6 .item-text .service_title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-service-item-6 .item-text p {
    height: 85px;
    font-size: 18px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-service-item-6:hover {
    border-radius: 40px;
    background-color: #fff;
}

.log-service-item-6:hover .item-text:before {
    width: 130%;
    height: 130%;
    left: -136px;
    bottom: -115px;
    -webkit-transform: rotate(27deg);
    transform: rotate(27deg);
}

.log-service-item-6:hover .item-text:after {
    top: -160px;
}

.log-service-item-6:hover .item-text .service_title {
    color: #212121;
}

.log-service-item-6:hover .item-text p {
    color: #212121;
}

.log-service-slider-area-6 {
    max-width: 1475px;
    margin-right: -450px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-service-slider-area-6 {
        margin-right: 0;
        max-width: 100%;
    }
}

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

/*Quote  Section*/

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

.log-quote-section-6 {
    overflow: hidden;
    background-color: #1B1A1A;
}

.log-quote-section-6 .log-quote-side-1 {
    right: 0;
    bottom: 0;
}

@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),
(max-width: 767px) {
    .log-quote-section-6 .log-quote-side-1 {
        display: none;
    }
}

.log-quote-section-6 .log-quote-side-2 {
    z-index: 2;
    bottom: 0px;
    left: -120px;
}

@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),
(max-width: 767px) {
    .log-quote-section-6 .log-quote-side-2 {
        display: none;
    }
}

.log-quote-form-6 {
    z-index: 1;
    overflow: hidden;
    padding: 60px 35px;
    border-radius: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-quote-form-6 {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .log-quote-form-6 {
        padding: 40px 20px;
    }
}

.log-quote-form-6:before {
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    content: "";
    opacity: 0.9;
    position: absolute;
    background-color: var(--laa-clr-sd-3);
}

.log-quote-form-6 .log-quote-form-btn {
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-family: var(--log-heading-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .log-quote-form-6 .log-quote-form-btn {
        text-align: center;
    }
}

.log-quote-form-6 .log-quote-form-btn li {
    margin-right: 15px;
    margin-bottom: 10px;
}

.log-quote-form-6 .log-quote-form-btn li:last-child {
    margin-right: 0;
}

@media (max-width: 767px) {
    .log-quote-form-6 .log-quote-form-btn li {
        margin-right: 0;
    }
}

.log-quote-form-6 .log-quote-form-btn .nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    padding: 16px 32px;
    background-color: #FFA37C;
}

.log-quote-form-6 .log-quote-form-btn .nav-link.active {
    padding: 16px 32px;
    border-radius: 5px;
    background-color: #fff;
    color: var(--laa-clr-sd-3);
}

.log-quote-form-field label {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--log-heading-2);
}

.log-quote-form-field input {
    width: 100%;
    height: 60px;
    border: none;
    padding-left: 20px;
    border-radius: 5px;
    background-color: #FFA37C;
}

.log-quote-form-field input::-webkit-input-placeholder {
    color: #fff;
}

.log-quote-form-field input::-moz-placeholder {
    color: #fff;
}

.log-quote-form-field input:-ms-input-placeholder {
    color: #fff;
}

.log-quote-form-field input::-ms-input-placeholder {
    color: #fff;
}

.log-quote-form-field input::placeholder {
    color: #fff;
}

.log-quote-form-field .input-field {
    margin-bottom: 25px;
}

.log-quote-form-field .log-distance-range .wc-input-range #slider-range {
    width: 100%;
    background-color: #FFA37C;
}

.log-quote-form-field .log-distance-range .wc-input-range #slider-range .ui-widget-header {
    background-color: #fff;
}

.log-quote-form-field .log-distance-range .wc-input-range #slider-range .ui-slider-handle {
    border-color: #fff;
    background-color: #fff;
}

.log-quote-form-field .log-distance-range .wc-input-range .range-value input {
    background-color: #FFA37C;
}

.log-quote-form-field .freight-input {
    position: relative;
}

.log-quote-form-field .freight-input:before {
    top: 19px;
    right: 20px;
    font-size: 15px;
    content: "\f078";
    font-weight: 400;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
}

.log-quote-form-field .freight-input select {
    width: 100%;
    height: 60px;
    border: none;
    padding-left: 20px;
    border-radius: 5px;
    background-color: #FFA37C;
    -webkit-appearance: none;
}

.log-quote-form-field button {
    width: 100%;
    border: none;
    height: 60px;
    font-size: 16px;
    margin-top: 30px;
    font-weight: 700;
    border-radius: 5px;
    background-color: #fff;
    text-transform: uppercase;
    color: var(--laa-clr-sd-3);
    font-family: var(--log-heading-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-quote-form-field button:hover {
    background-color: #212121;
}

.log-distance-range label {
    padding-bottom: 0px;
}

.log-distance-range .wc-input-range {
    margin-left: 8px;
    margin-bottom: 5px;
}

.log-distance-range .wc-input-range span {
    color: #fff;
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
}

.log-distance-range .wc-input-range #slider-range {
    height: 12px;
    width: 300px;
    border: none;
    border-radius: 30px;
    margin-right: 15px;
    background-color: #057b76;
}

.log-distance-range .wc-input-range #slider-range .ui-widget-header {
    background-color: #057b76;
}

.log-distance-range .wc-input-range #slider-range .ui-slider-handle {
    top: -7px;
    width: 24px;
    height: 24px;
    margin-left: 0;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 100%;
    background-color: #015c59;
    border: 5px solid #015c59;
}

.log-distance-range .wc-input-range #slider-range .ui-slider-handle:focus {
    outline: none;
}

.log-distance-range .wc-input-range .range-value input {
    color: #fff;
    width: 110px;
    height: 40px;
    border: none;
    font-size: 14px;
    font-weight: 800;
    border-radius: 5px;
    padding-left: 15px;
    background-color: var(--laa-clr-sd-4);
}

.log-quote-text-area-6 {
    padding-left: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-quote-text-area-6 {
        padding-left: 0;
    }
}

.log-quote-feature-item {
    z-index: 1;
    gap: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    padding: 20px 20px 10px;
    border: 1px solid #393939;
}

@media (max-width: 767px) {
    .log-quote-feature-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-quote-feature-item:before,
.log-quote-feature-item:after {
    bottom: 0;
    z-index: -1;
    right: 0;
    width: 0%;
    height: 100%;
    content: "";
    position: absolute;
    border-radius: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-3);
}

.log-quote-feature-item:after {
    background-color: #393939;
}

.log-quote-feature-item .item-icon {
    width: 60px;
    font-size: 65px;
    color: var(--laa-clr-sd-3);
}

@media (max-width: 767px) {
    .log-quote-feature-item .item-icon {
        margin-bottom: 15px;
    }
}

.log-quote-feature-item .item-icon i {
    color: #777676;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 767px) {
    .log-quote-feature-item .item-icon i {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.log-quote-feature-item .item-text {
    max-width: 470px;
}

.log-quote-feature-item .item-text h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 8px;
}

.log-quote-feature-item .item-text p {
    font-size: 16px;
}

.log-quote-feature-item:hover:before {
    width: 100%;
    right: -5px;
    bottom: -5px;
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}

.log-quote-feature-item:hover:after {
    width: 100%;
}

.log-quote-feature-item:hover .item-icon i {
    color: var(--laa-clr-sd-3);
}

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

/*Case Study Section*/

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

.log-case-study-section {
    overflow: hidden;
}

.log-case-study-section .container {
    max-width: 1515px;
}

.log-case-study-section .log-case-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    position: absolute;
}

.log-case-study-section .log-case-bg img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-case-content {
    margin-top: 35px;
    padding-top: 40px;
    position: relative;
}

.log-case-content:before,
.log-case-content:after {
    top: 0;
    left: 0;
    right: 0;
    width: 0%;
    height: 1px;
    content: "";
    margin: 0 auto;
    position: absolute;
    background-color: #676667;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.log-case-content:after {
    left: 50%;
    width: 1px;
    height: 0%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@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),
(max-width: 767px) {
    .log-case-content:after {
        display: none;
    }
}

.log-case-content.active:before {
    width: 100%;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

.log-case-content.active:after {
    height: 95%;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.log-case-item {
    max-width: 695px;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 35px;
}

.log-case-item:before {
    left: 0;
    right: 0;
    height: 1px;
    bottom: 0;
    content: "";
    width: 100%;
    position: absolute;
    background-color: #676667;
}

.log-case-item .item-img {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.log-case-item .item-img img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-case-item .case-cate {
    left: 60px;
    bottom: 0;
    color: #212121;
    font-weight: 500;
    padding: 9px 30px;
    border-radius: 10px;
    background-color: #fff;
    border: 6px solid #212121;
    font-family: var(--log-heading-2);
    background-color: var(--laa-clr-sd-3);
}

.log-case-item .case_title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-case-item .case_title {
        font-size: 28px;
    }
}

.log-case-item.no-border:before {
    display: none;
}

.log-case-item:hover .item-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.log-case-item.white_version .case_title {
    color: var(--laa-clr-sd-4);
}

.log-case-more-btn {
    max-width: 695px;
    margin-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-case-more-btn {
        margin-top: 0px;
    }
}

.log-case-more-btn a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border-radius: 100px;
    font-family: var(--log-heading-2);
    border: 2px solid var(--laa-clr-sd-2);
}

.log-case-more-btn a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 25px;
    margin-left: 8px;
}

.log-case-more-btn a:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

.log-case-right-content,
.log-case-left-content {
    max-width: 695px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-case-right-content,
    .log-case-left-content {
        margin: 0 auto;
        margin-bottom: 40px;
    }
}

.log-case-right-content {
    margin-left: 40px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .log-case-right-content {
        margin-left: 10px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-case-right-content {
        margin-left: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-case-right-content {
        margin: 0 auto;
    }
}

.log-case-title-text {
    padding: 30px;
    color: #E8E8E8;
    line-height: 1.5;
    border-radius: 10px;
    margin-bottom: 40px;
    background-color: var(--laa-clr-sd-2);
}

.log-text-scroll-section {
    margin: 0 auto;
    max-width: 1920px;
    overflow: hidden;
    padding: 50px 0px;
}

.log-text-scroll-content {
    border-top: 1px solid var(--laa-clr-sd-2);
    border-bottom: 1px solid var(--laa-clr-sd-2);
}

.log-text-scroller {
    display: flow-root;
    background-color: #FA7238;
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
}

.log-text-scroller .scroll-item {
    width: 190px;
    height: 80px;
    margin: 0px 27px;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    background-color: #FA7238;
}

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

/*Why Choose Section*/

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

.log-why-choose-section-6 {
    overflow: hidden;
}

.log-why-choose-section-6 .log-section-title-5 {
    margin: 0 auto;
    max-width: 695px;
}

.log-wc-item-6 {
    max-width: 352px;
    padding: 20px 25px;
    border-radius: 20px;
    margin-bottom: 110px;
    background-color: #393939;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-wc-item-6 {
        max-width: 100%;
        margin-bottom: 30px;
        padding: 30px 25px;
    }
}

.log-wc-item-6 .item-icon {
    margin-bottom: 10px;
}

.log-wc-item-6 .item-icon i {
    font-size: 46px;
    color: var(--laa-clr-sd-2);
}

.log-wc-item-6 .item-text h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
}

.log-wc-item-6 .item-text p {
    font-size: 16px;
}

.log-why-choose-item-content-1 .wc-item-wrap .log-wc-item-6:nth-child(1) {
    -webkit-transform: translateX(144px);
    transform: translateX(144px);
}

@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),
(max-width: 767px) {
    .log-why-choose-item-content-1 .wc-item-wrap .log-wc-item-6:nth-child(1) {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.log-why-choose-item-content-1 .wc-item-wrap .log-wc-item-6:nth-child(3) {
    -webkit-transform: translateX(190px) translateY(85px);
    transform: translateX(190px) translateY(85px);
}

@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),
(max-width: 767px) {
    .log-why-choose-item-content-1 .wc-item-wrap .log-wc-item-6:nth-child(3) {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.log-why-choose-item-content-2 .wc-item-wrap .log-wc-item-6:nth-child(1) {
    -webkit-transform: translateX(-250px) translateY(-20px);
    transform: translateX(-250px) translateY(-20px);
}

@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),
(max-width: 767px) {
    .log-why-choose-item-content-2 .wc-item-wrap .log-wc-item-6:nth-child(1) {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.log-why-choose-item-content-2 .wc-item-wrap .log-wc-item-6:nth-child(3) {
    -webkit-transform: translateX(-155px) translateY(80px);
    transform: translateX(-155px) translateY(80px);
}

@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),
(max-width: 767px) {
    .log-why-choose-item-content-2 .wc-item-wrap .log-wc-item-6:nth-child(3) {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.log-why-choose-content-6 {
    z-index: 1;
}

.log-why-choose-content-6 .log-why-circle-img {
    left: 0;
    right: 0;
    top: 47%;
    z-index: -1;
    margin: 0 auto;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-why-choose-content-6 .log-why-circle-img {
        display: none;
    }
}

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

/*Faq Section*/

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

.log-faq-section-6 {
    z-index: 2;
    position: relative;
}

.log-faq-text-area-6 {
    max-width: 510px;
}

@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),
(max-width: 767px) {
    .log-faq-text-area-6 {
        max-width: 100%;
    }
}

.log-faq-content-6 {
    gap: 30px 50px;
}

@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),
(max-width: 767px) {
    .log-faq-content-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-faq-accordion-6 {
    width: 100%;
    padding: 35px;
    max-width: 708px;
    border-radius: 20px;
    background-color: #212121;
}

@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),
(max-width: 767px) {
    .log-faq-accordion-6 {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .log-faq-accordion-6 {
        padding: 20px 15px;
    }
}

.log-faq-accordion-6 .accordion-item {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 10px;
    padding: 0px 22px;
    border: 1px solid #4A4949;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 480px) {
    .log-faq-accordion-6 .accordion-item {
        padding: 0px 15px;
    }
}

.log-faq-accordion-6 .accordion-item.faq_active {
    border: 1px solid var(--laa-clr-sd-2);
}

.log-faq-accordion-6 .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--laa-clr-sd-4);
}

.log-faq-accordion-6 .accordion-button:not(.collapsed):after {
    color: #003152;
    background-color: #f6f7fb;
}

.log-faq-accordion-6 .accordion-body {
    color: #fff;
}

.log-faq-accordion-6 .accordion-button::after {
    top: 21px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: #777676;
}

.log-faq-accordion-6 .accordion-item,
.log-faq-accordion-6 .accordion-button:not(.collapsed),
.log-faq-accordion-6 .accordion-button {
    background-color: transparent;
}

.log-faq-accordion-6 .accordion-button {
    color: #fff;
    border: none;
    font-size: 22px;
    font-weight: 500;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    padding: 18px 0px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--log-heading-2);
}

@media (max-width: 480px) {
    .log-faq-accordion-6 .accordion-button {
        font-size: 20px;
    }
}

.log-faq-accordion-6 .accordion-button i {
    margin-right: 10px;
    color: var(--laa-clr-sd-3);
}

.log-faq-accordion-6 .accordion-button span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 85%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.log-faq-accordion-6 .accordion-button span b {
    color: #fff;
    width: 36px;
    height: 33px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 15px;
    border-radius: 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #003152;
}

@media (max-width: 480px) {
    .log-faq-accordion-6 .accordion-button span b {
        color: #003152;
        background-color: transparent;
    }
}

.log-faq-accordion-6 .accordion-button:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.log-faq-accordion-6 .accordion-body {
    font-size: 18px;
    line-height: 30px;
    padding: 18px 0px;
    line-height: 1.667;
}

.log-faq-accordion-6 .accordion-button::after {
    top: 22px;
    right: 0px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: "\f067";
    font-weight: 400;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    background-image: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #777676;
    color: var(--laa-clr-sd-2);
    font-family: "Font Awesome 5 Pro";
}

.log-faq-accordion-6 .accordion-button:not(.collapsed) {
    color: #fff;
    border-bottom: 1px solid var(--laa-clr-sd-2);
}

.log-faq-accordion-6 .accordion-button:not(.collapsed):after {
    color: #000;
    content: "\f068";
    background-color: var(--laa-clr-sd-2);
}

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

/*Video Play Section*/

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

.log-video-play-section-6 {
    z-index: 1;
    overflow: hidden;
    margin-top: -190px;
    padding: 250px 0px 130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-video-play-section-6 {
        margin-top: 0;
        padding-top: 120px;
    }
}

.log-video-play-section-6 .section-bg {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.log-video-play-section-6 .section-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-video-play-content-6 {
        display: block !important;
    }
}

.log-video-play-content-6 .video-play {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.log-video-play-content-6 .video-play a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-video-play-content-6 .video-play {
        top: 0;
        display: inline-block;
        position: relative !important;
        -webkit-transform: translateY(0) !important;
        transform: translateY(0) !important;
    }
}

.log-video-play-content-6 .log-video-play-text-6 {
    max-width: 580px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-video-play-content-6 .log-video-play-text-6 {
        padding-top: 30px;
    }
}

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

/*Counter Testimonial Section*/

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

.log-counter-testimonial-section {
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
    padding-right: 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),
(max-width: 767px) {
    .log-counter-testimonial-section {
        padding-right: 0;
    }
}

.log-counter-testimonial-section:before {
    bottom: 0;
    right: 0;
    width: 65%;
    content: "";
    height: 630px;
    position: absolute;
    background-color: #262626;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .log-counter-testimonial-section:before {
        width: 85%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-counter-testimonial-section:before {
        width: 90%;
    }
}

@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),
(max-width: 767px) {
    .log-counter-testimonial-section:before {
        display: none;
    }
}

@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),
(max-width: 767px) {
    .log-counter-testimonial-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-counter-content-6 {
    z-index: 1;
    width: 100%;
    max-width: 560px;
    margin-left: 14%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .log-counter-content-6 {
        margin-left: 5%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-counter-content-6 {
        margin-left: 0%;
    }
}

@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),
(max-width: 767px) {
    .log-counter-content-6 {
        margin: 0 auto;
        max-width: 750px;
    }
}

@media (max-width: 767px) {
    .log-counter-content-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.log-counter-content-6 .background_overlay {
    opacity: 0.7;
    z-index: -1;
    background-color: var(--laa-clr-sd-2);
}

.log-counter-content-6 .counter-item-6 {
    width: 50%;
    padding-top: 25px;
    text-align: center;
    position: relative;
    margin-bottom: 110px;
}

@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),
(max-width: 767px) {
    .log-counter-content-6 .counter-item-6 {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .log-counter-content-6 .counter-item-6 {
        width: 100%;
    }
}

.log-counter-content-6 .counter-item-6:before,
.log-counter-content-6 .counter-item-6:after {
    top: 50%;
    right: 0;
    width: 2px;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.4);
}

@media only screen and (min-width: 1600px) and (max-width: 1799px),
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),
(max-width: 767px) {
    .log-counter-content-6 .counter-item-6:before,
    .log-counter-content-6 .counter-item-6:after {
        display: none;
    }
}

.log-counter-content-6 .counter-item-6:after {
    left: 0;
    top: auto;
    width: 85%;
    height: 2px;
    right: auto;
    bottom: -60px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.log-counter-content-6 .counter-item-6:nth-child(3):before,
.log-counter-content-6 .counter-item-6:nth-child(5):before {
    display: none;
}

.log-counter-content-6 .counter-item-6:nth-child(3):after {
    right: 0;
    left: auto;
}

.log-counter-content-6 .counter-item-6:nth-child(4),
.log-counter-content-6 .counter-item-6:nth-child(5) {
    margin-bottom: 0;
}

.log-counter-content-6 .counter-item-6:nth-child(4):after,
.log-counter-content-6 .counter-item-6:nth-child(5):after {
    display: none;
}

.log-counter-content-6 .counter-item-6 .item-icon {
    margin-bottom: 10px;
}

@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),
(max-width: 767px) {
    .log-counter-content-6 .counter-item-6 .item-icon {
        margin-bottom: 5px;
    }
}

.log-counter-content-6 .counter-item-6 .item-icon i {
    color: #fff;
    font-size: 80px;
}

@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),
(max-width: 767px) {
    .log-counter-content-6 .counter-item-6 .item-icon i {
        font-size: 60px;
    }
}

.log-counter-content-6 .counter-item-6 .item-text h3 {
    color: #fff;
    font-size: 52px;
    font-weight: 900;
}

@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),
(max-width: 767px) {
    .log-counter-content-6 .counter-item-6 .item-text h3 {
        font-size: 40px;
    }
}

.log-counter-content-6 .counter-item-6 .item-text p {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

@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),
(max-width: 767px) {
    .log-counter-content-6 .counter-item-6 .item-text p {
        font-size: 18px;
    }
}

.log-testimonial-wrap-6 {
    width: 100%;
    max-width: 1050px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-testimonial-wrap-6 {
        max-width: 910px;
    }
}

@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),
(max-width: 767px) {
    .log-testimonial-wrap-6 {
        margin: 0 auto;
    }
}

.log-testimonial-wrap-6 .log-testimonial-slider-wrap-4 {
    padding-bottom: 0;
    background-color: transparent;
}

.log-testimonial-wrap-6 .log-testimonial-item-4 .log-testimonial-text .log-testimonial-desc {
    color: #fff;
    font-weight: 400;
    font-size: 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),
(max-width: 767px) {
    .log-testimonial-wrap-6 .log-testimonial-item-4 .log-testimonial-text .log-testimonial-desc {
        font-size: 22px;
    }
}

.log-testimonial-wrap-6 .log-testimonial-item-4 .log-testimonial-text {
    max-width: 580px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-testimonial-wrap-6 .log-testimonial-item-4 .log-testimonial-text {
        max-width: 480px;
    }
}

@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),
(max-width: 767px) {
    .log-testimonial-wrap-6 .log-testimonial-item-4 .log-testimonial-text {
        max-width: 100%;
    }
}

.log-testimonial-wrap-6 .log-testimonial-slider-wrap-4:before {
    display: none;
}

.log-testimonial-wrap-6 .swiper-slide-active .log-testimonial-item-4 .log-testi-author:before {
    width: 60%;
}

@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),
(max-width: 767px) {
    .log-testimonial-wrap-6 .swiper-slide-active .log-testimonial-item-4 .log-testi-author:before {
        display: none;
    }
}

.log-testimonial-wrap-6 .log-testimonial-item-4 .log-testimonial-text .log-testi-author span {
    color: #fff;
}

.log-testimonial-wrap-6 .log-testimonial-item-4 {
    gap: 40px;
}

.log-testimonial-wrap-6 .log-testimonial-item-4 .log-testimonial-img .item-img {
    overflow: hidden;
}

.log-testimonial-wrap-6 .log-testi-slider-nav-5 {
    top: 50%;
    right: -25px;
    z-index: 2;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@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),
(max-width: 767px) {
    .log-testimonial-wrap-6 .log-testi-slider-nav-5 {
        position: static !important;
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}

@media (max-width: 767px) {
    .log-testimonial-wrap-6 .log-testi-slider-nav-5 {
        width: 100%;
    }
}

.log-testimonial-wrap-6 .log-testi-slider-nav-5 .testi-nav {
    font-size: 30px;
    color: var(--laa-clr-sd-2);
}

.log-testimonial-wrap-6 .log-testi-slider-nav-5 .swiper-pagination-bullet {
    opacity: 1;
    width: 50px;
    height: 50px;
    display: block;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: rgba(255, 255, 255, 0.5);
    background-color: transparent;
    font-family: var(--log-heading-2);
}

@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),
(max-width: 767px) {
    .log-testimonial-wrap-6 .log-testi-slider-nav-5 .swiper-pagination-bullet {
        display: none;
    }
}

.log-testimonial-wrap-6 .log-testi-slider-nav-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: rgb(255, 255, 255);
    background-color: var(--laa-clr-sd-2);
}

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

/*Blog Section*/

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

.log-blog-top-content {
    gap: 30px;
}

.log-blog-top-content .log-section-title-5 {
    max-width: 630px;
}

.log-blog-top-content .log-blog-text {
    max-width: 490px;
}

.log-blog-item-6 {
    margin: 0 auto;
    max-width: 402px;
    margin-bottom: 30px;
}

.log-blog-item-6 .item-img-meta {
    padding-bottom: 18px;
}

.log-blog-item-6 .item-img {
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
}

.log-blog-item-6 .item-img img {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-blog-item-6 .item-meta {
    bottom: 0;
    left: 25px;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 20px;
    white-space: nowrap;
    display: inline-block;
    border-radius: 100px;
    border: 4px solid #1B1A1A;
    font-family: var(--log-heading-2);
    background-color: var(--laa-clr-sd-2);
}

@media (max-width: 480px) {
    .log-blog-item-6 .item-meta {
        padding: 10px 20px;
    }
}

.log-blog-item-6 .item-text .blog_title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding: 20px 0px;
    border-bottom: 1px solid #393939;
}

@media (max-width: 480px) {
    .log-blog-item-6 .item-text .blog_title {
        font-size: 24px;
    }
}

.log-blog-item-6 .log-author .item-img {
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 100%;
    margin-right: 14px;
}

.log-blog-item-6 .log-author .item-text span {
    color: #777676;
    font-size: 14px;
}

.log-blog-item-6 .log-author .item-text h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.log-blog-item-6 .read_more a {
    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: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--laa-clr-sd-2);
}

.log-blog-item-6 .read_more a:hover {
    background-color: var(--laa-clr-sd-2);
}

.log-blog-item-6 .read_more i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-blog-item-6:hover .item-img img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

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

/******* Inner Pages *******/

/*Breadcrumb  Section*/

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

.log-breadcrumb-section {
    z-index: 1;
}

.log-breadcrumb-section .background_overlay {
    z-index: -1;
    background-color: rgba(246, 36, 89, 0.3);
    border-radius: 20px;
}

.log-breadcrumb-section .breadcrumb-content {
    padding: 290px 0px 160px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-breadcrumb-section .breadcrumb-content {
        padding: 180px 0px 120px;
    }
}

.log-breadcrumb-section .breadcrumb-content .breadcrumb_title {
    color: #fff;
    font-size: 65px;
    font-weight: 900;
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .log-breadcrumb-section .breadcrumb-content .breadcrumb_title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-breadcrumb-section .breadcrumb-content .breadcrumb_title {
        font-size: 40px;
        padding-bottom: 10px;
    }
}

.log-breadcrumb-section .breadcrumb-content ul {
    padding: 13px 30px;
    border-radius: 100px;
    background-color: #fff;
    display: inline-block;
    background-color: #003E4D;
    border: 1px dashed var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-breadcrumb-section .breadcrumb-content ul {
        padding: 10px 20px;
        border-radius: 5px;
    }
}

.log-breadcrumb-section .breadcrumb-content ul li {
    font-size: 22px;
    font-weight: 700;
    margin-right: 40px;
    position: relative;
    color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-breadcrumb-section .breadcrumb-content ul li {
        font-size: 18px;
        margin-right: 25px;
    }
}

.log-breadcrumb-section .breadcrumb-content ul li:before {
    top: 7px;
    right: -35px;
    position: absolute;
    color: var(--laa-clr-sd-1);
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url('../img/bread-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-breadcrumb-section .breadcrumb-content ul li:before {
        right: -25px;
    }
}

.log-breadcrumb-section .breadcrumb-content ul li:last-child {
    margin-right: 0;
}

.log-breadcrumb-section .breadcrumb-content ul li:last-child:before {
    display: none;
}

.log-breadcrumb-section .breadcrumb-content ul li a {
    color: #fff;
}

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

/*Service Feed  Section*/

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

.log-service-feed-top-content .log-section-title-1 {
    max-width: 500px;
}

.log-service-feed-top-content .log-blog-text {
    max-width: 600px;
}

.log-service-feed-content .log-service-item-5 {
    margin-bottom: 30px;
}

.log-service-feed-section .container {
    max-width: 1230px;
}

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

/*Service Details  Section*/

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

.log-service-details-text .thumb-img {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.log-service-details-text h2 {
    font-size: 44px;
    font-weight: 800;
    padding-bottom: 20px;
    color: var(--laa-clr-sd-4);
}

.log-service-details-text p {
    padding-bottom: 20px;
}

.log-service-details-text h3 {
    font-size: 32px;
    font-weight: 800;
    padding-bottom: 20px;
    color: var(--laa-clr-sd-4);
}

.log-service-details-text .service-details-list {
    margin-top: 15px;
    margin-bottom: 30px;
}

.log-service-details-text .service-details-list .item-list li {
    margin-bottom: 15px;
}

.log-service-details-text .service-details-list .item-list li i {
    color: var(--laa-clr-sd-2);
    margin-right: 10px;
}

.log-service-details-text .service-details-img-list {
    margin-bottom: 30px;
}

.log-service-details-text .service-details-img-list .item-img {
    overflow: hidden;
    border-radius: 10px;
}

.log-service-details-text .log-faq-accordion-area {
    max-width: 100%;
}

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

/*Testimonial Feed Section*/

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

.log-testimonial-feed-item {
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(26, 61, 56, 0.08);
    box-shadow: 0px 0px 30px 0px rgba(26, 61, 56, 0.08);
}

.log-testimonial-feed-item .item-author-quote .author-img-text {
    gap: 20px;
}

.log-testimonial-feed-item .item-author-quote .author-img-text .author-img {
    width: 94px;
    height: 94px;
    overflow: hidden;
    border-radius: 100%;
}

.log-testimonial-feed-item .item-author-quote .author-img-text .author-text {
    max-width: 250px;
}

.log-testimonial-feed-item .item-author-quote .author-img-text .author-text h3 {
    line-height: 1;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--laa-clr-sd-4);
}

.log-testimonial-feed-item .item-author-quote .author-img-text .author-text span {
    color: #6A6A6A;
    font-size: 16px;
    line-height: 1;
}

.log-testimonial-feed-item .item-author-quote .author-img-text .author-text li {
    color: #FFC107;
    font-size: 18px;
}

.log-testimonial-feed-item .item-author-quote .author-quote i {
    font-size: 40px;
    color: var(--laa-clr-sd-2);
}

.log-testimonial-feed-item .item-desc {
    font-size: 24px;
    font-weight: 500;
    margin-top: 25px;
    font-family: var(--log-heading);
}

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

/*Team Details Section*/

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

.log-team-details-img {
    max-width: 432px;
    overflow: hidden;
    border-radius: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-details-img {
        margin-bottom: 30px;
    }
}

.log-team-details-info {
    padding-left: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-details-info {
        margin-bottom: 30px;
    }
}

.log-team-details-info .team-title-degi {
    margin-bottom: 25px;
}

.log-team-details-info .team-title-degi h3 {
    line-height: 1;
    font-size: 42px;
    font-weight: 800;
    padding-bottom: 10px;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-details-info .team-title-degi h3 {
        font-size: 34px;
    }
}

.log-team-details-info .team-title-degi span {
    color: var(--laa-clr-sd-2);
}

.log-team-details-info .team-info li {
    color: #6A6A6A;
    margin-bottom: 15px;
}

.log-team-details-info .team-info li span {
    margin-right: 20px;
    color: var(--laa-clr-sd-4);
}

.log-team-details-info .team-social {
    margin-top: 30px;
}

.log-team-details-info .team-social h4 {
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 20px;
    color: var(--laa-clr-sd-4);
}

.log-team-details-info .team-social a {
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 100%;
    margin-right: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--laa-clr-sd-2);
    border: 1px solid var(--laa-clr-sd-2);
}

.log-team-details-info .team-social a:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-skill {
        margin-bottom: 30px;
    }
}

.log-team-skill h3 {
    font-size: 30px;
    font-weight: 800;
    padding-bottom: 15px;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-skill h3 {
        font-size: 24px;
    }
}

.log-team-skill p {
    font-size: 18px;
    padding-bottom: 25px;
}

.log-team-skill .skill-set-percent {
    margin-bottom: 30px;
}

.log-team-skill .skill-set-percent .progress-bar {
    top: 0;
    left: 0;
    height: 10px;
    background-color: var(--laa-clr-sd-2);
}

.log-team-skill .skill-set-percent h4 {
    padding-left: 0;
    padding-bottom: 8px;
}

.log-team-skill .skill-set-percent .progress {
    height: 10px;
}

.log-team-skill .skill-set-percent .progress span {
    right: 0;
    top: -25px;
}

.log-team-personal-info h3 {
    font-size: 30px;
    font-weight: 800;
    padding-bottom: 15px;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-personal-info h3 {
        font-size: 24px;
    }
}

.log-team-personal-info p {
    padding-bottom: 15px;
}

.comment-respond {
    padding: 50px;
    border-radius: 10px;
    background-color: #F7F7F7;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-team-contact-form {
        padding: 30px 15px;
    }
}

.comment-respond h3,
.log-team-contact-form h3 {
    font-size: 36px;
    font-weight: 800;
    padding-bottom: 10px;
    color: var(--laa-clr-h1);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .comment-respond h3,
    .log-team-contact-form h3 {
        font-size: 30px;
    }
}

.comment-respond p,
.log-team-contact-form p {
    color: #6A6A6A;
}

.comment-respond input,
.comment-respond textarea,
.log-team-contact-form input,
.log-team-contact-form textarea {
    width: 100%;
    height: 62px;
    border: none;
    border: none;
    padding-left: 30px;
    border-radius: 100px;
    background-color: #fff;
}

.comment-respond input::-webkit-input-placeholder,
.comment-respond textarea::-webkit-input-placeholder,
.log-team-contact-form input::-webkit-input-placeholder,
.log-team-contact-form textarea::-webkit-input-placeholder {
    color: #6A6A6A;
    font-size: 16px;
}

.comment-respond form input::-moz-placeholder,
.comment-respond form textarea::-moz-placeholder,
.log-team-contact-form input::-moz-placeholder,
.log-team-contact-form textarea::-moz-placeholder {
    color: #6A6A6A;
    font-size: 16px;
}

.comment-respond form input:-ms-input-placeholder,
.comment-respond form textarea:-ms-input-placeholder,
.log-team-contact-form input:-ms-input-placeholder,
.log-team-contact-form textarea:-ms-input-placeholder {
    color: #6A6A6A;
    font-size: 16px;
}

.comment-respond form input::-ms-input-placeholder,
.comment-respond form textarea::-ms-input-placeholder,
.log-team-contact-form input::-ms-input-placeholder,
.log-team-contact-form textarea::-ms-input-placeholder {
    color: #6A6A6A;
    font-size: 16px;
}

.comment-respond form input::placeholder,
.comment-respond form textarea::placeholder,
.log-team-contact-form input::placeholder,
.log-team-contact-form textarea::placeholder {
    color: #6A6A6A;
    font-size: 16px;
}

.comment-respond form textarea,
.log-team-contact-form textarea {
    width: 100%;
    height: 178px;
    padding-top: 20px;
    border-radius: 10px;
}

.comment-respond form .submit-btn button,
.log-team-contact-form .submit-btn button {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    border: none;
    padding: 15px 30px;
    border-radius: 100px;
    background-color: #36353A;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-respond form .submit-btn button:hover,
.log-team-contact-form .submit-btn button:hover {
    background-color: var(--laa-clr-sd-2);
}

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

/*Process Section*/

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

.log-work-process-img {
    overflow: hidden;
}

.log-work-process-img:before {
    top: 0;
    left: -60%;
    width: 110%;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.7);
}

.log-work-process-img .item-text {
    left: 30px;
    color: #fff;
    bottom: 30px;
    max-width: 315px;
    position: absolute;
}

.log-work-process-feed-area {
    margin: 0 auto;
    max-width: 1024px;
}

.log-work-process-feed-item {
    margin-bottom: 130px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-work-process-feed-item {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-work-process-feed-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-work-process-feed-item:nth-child(even) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-work-process-feed-item:nth-child(even) {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-work-process-feed-item:nth-child(even) .item-text {
    left: 0;
}

.log-work-process-feed-item .item-img {
    width: 100%;
    max-width: 627px;
}

.log-work-process-feed-item .item-text {
    right: 0;
    bottom: 0;
    z-index: 1;
    max-width: 570px;
    position: absolute;
    padding: 50px 40px 70px;
    background-color: #fff;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-work-process-feed-item .item-text {
        position: static;
        padding: 30px 15px 0px;
    }
}

.log-work-process-feed-item .item-text span {
    left: 0;
    top: -35px;
    opacity: 0.08;
    z-index: -1;
    line-height: 1;
    font-size: 500px;
    font-weight: 800;
    position: absolute;
    color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-work-process-feed-item .item-text span {
        top: auto;
        bottom: 0;
    }
}

.log-work-process-feed-item .item-text h3 {
    font-size: 44px;
    font-weight: 800;
    padding-bottom: 15px;
    color: var(--laa-clr-sd-4);
}

@media (max-width: 767px) {
    .log-work-process-feed-item .item-text h3 {
        font-size: 30px;
    }
}

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

/*Client Section*/

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

.log-client-content .item-img img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

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

/*Project Section*/

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

.log-project-feed-content {
    margin: 0 auto;
    overflow: hidden;
    max-width: 1670px;
    padding: 40px 15px;
}

.log-project-feed-content .log-project-item-4 {
    margin: 0 auto;
    display: block;
    max-width: 530px;
    margin-bottom: 26px;
}

@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),
(max-width: 767px) {
    .log-project-feed-content .log-project-item-4 .item-text {
        bottom: 20px;
    }
}

@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),
(max-width: 767px) {
    .log-project-feed-content .log-project-item-4 .item-text .pro-cate a {
        font-size: 14px;
        padding: 6px 15px;
    }
}

@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),
(max-width: 767px) {
    .log-project-feed-content .log-project-item-4 .item-text .project_title {
        font-size: 20px;
    }
}

@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),
(max-width: 767px) {
    .log-project-feed-content .log-project-item-4 .item-text ul li {
        font-size: 16px;
    }
}

@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),
(max-width: 767px) {
    .log-project-feed-content .log-project-item-4 .item-text ul li i {
        margin-right: 5px;
    }
}

.log-project-feed-content-2 {
    margin: 0 auto;
    max-width: 1190px;
    padding-top: 40px;
}

.log-project-feed-content-2 .log-project-item-5 {
    margin-bottom: 30px;
}

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

/*Tracking Section*/

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

.log-tracking-content {
    z-index: 1;
    padding: 70px 15px 90px;
}

.log-tracking-content .background_overlay {
    z-index: -1;
    background-color: rgba(255, 255, 255, 0.7);
}

.tracking-form {
    margin: 0 auto;
    margin-top: 40px;
    max-width: 1100px;
}

.tracking-form input {
    width: 100%;
    height: 60px;
    border: none;
    padding-left: 30px;
    margin-bottom: 20px;
    border-radius: 40px;
    background-color: #fff;
}

.tracking-form input::-webkit-input-placeholder {
    font-size: 16px;
}

.tracking-form input::-moz-placeholder {
    font-size: 16px;
}

.tracking-form input:-ms-input-placeholder {
    font-size: 16px;
}

.tracking-form input::-ms-input-placeholder {
    font-size: 16px;
}

.tracking-form input::placeholder {
    font-size: 16px;
}

.tracking-form .track-btn {
    margin-top: 20px;
}

.tracking-form .track-btn button {
    color: #fff;
    border: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    font-weight: 600;
    border-radius: 40px;
    padding: 12px 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.tracking-form .track-btn button:hover {
    background-color: #003E4D;
}

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

/*Project Details Section*/

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

.log-project-details-text {
    max-width: 850px;
}

.log-project-details-text h2 {
    font-size: 50px;
    font-weight: 800;
    padding-bottom: 20px;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .log-project-details-text h2 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-project-details-text h2 {
        font-size: 30px;
    }
}

.log-project-details-text p {
    padding-bottom: 30px;
}

.log-project-details-text .thumb-img {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
}

.log-project-details-info {
    border-radius: 10px;
    background-color: #003E4D;
    padding-bottom: 25px;
}

.log-project-details-info h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    padding: 30px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.log-project-details-info .item-info-area {
    padding: 20px 40px;
}

.log-project-details-info .item-info-area .item-info {
    color: #fff;
    font-size: 18px;
    padding: 20px 0px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.log-project-details-info .item-info-area .item-info span {
    display: block;
}

.log-project-details-info .item-info-area .item-info .in-title {
    font-weight: 600;
}

.log-project-details-info .log-social-share li {
    margin: 0px 5px;
}

.log-project-details-info .log-social-share a {
    color: #fff;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    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;
    border: 1px solid #FFFFFF;
}

.log-project-details-info .log-social-share a:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
    border: 1px solid var(--laa-clr-sd-2);
}

.log-project-details-list-section {
    background-color: #FFF6F2;
}

.log-project-details-list-section.ver_2 {
    background-color: transparent;
}

.log-project-details-list-content {
    gap: 30px 60px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@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),
(max-width: 767px) {
    .log-project-details-list-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-project-details-list-content .log-pd-list-img {
    max-width: 584px;
    display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-project-details-list-content .log-pd-list-img {
        max-width: 50%;
    }
}

@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),
(max-width: 767px) {
    .log-project-details-list-content .log-pd-list-img {
        max-width: 584px;
        width: 100%;
    }
}

.log-project-details-list-content .log-pd-list-img:before {
    top: -18px;
    right: -18px;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    border-top-right-radius: 200px;
    border: 3px solid var(--laa-clr-sd-2);
}

.log-project-details-list-content .log-pd-list-img .item-img {
    overflow: hidden;
    border-top-right-radius: 200px;
}

.log-project-details-list-content .log-pd-list-img.ver_2 {
    z-index: 1;
    margin-left: 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),
(max-width: 767px) {
    .log-project-details-list-content .log-pd-list-img.ver_2 {
        margin-left: 0;
    }
}

.log-project-details-list-content .log-pd-list-img.ver_2:after {
    z-index: -1;
    top: -15px;
    right: -15px;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    border-top-right-radius: 200px;
    background-color: rgba(0, 62, 77, 0.15);
}

.log-project-details-list-content .log-pd-list-img.ver_2:before {
    display: none;
}

.log-project-details-list-content .log-pd-list-text {
    max-width: 650px;
    padding-top: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-project-details-list-content .log-pd-list-text {
        max-width: 50%;
        padding-top: 0;
    }
}

@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),
(max-width: 767px) {
    .log-project-details-list-content .log-pd-list-text {
        max-width: 650px;
        width: 100%;
        padding-top: 0;
    }
}

.log-project-details-list-content .log-pd-list-text h3 {
    color: var(--laa-clr-sd-4);
    font-size: 40px;
    font-weight: 800;
    padding-bottom: 10px;
}

.log-project-details-list-content .log-pd-list-text p {
    padding-bottom: 20px;
}

.log-project-details-list-content .log-pd-list-text li {
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--laa-clr-sd-4);
}

.log-project-details-list-content .log-pd-list-text li i {
    margin-right: 5px;
    color: var(--laa-clr-sd-2);
}

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

/*Request Quote Section*/

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

.rq-form-btn {
    margin: 0 auto;
    max-width: 900px;
    padding: 25px 30px;
    border-radius: 17px;
    background-color: #FFF8F4;
    border: 1px solid #FFD6C5;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .rq-form-btn {
        padding: 30px 15px;
    }
}

.rq-form-btn .nav-tabs .nav-link {
    z-index: 1;
    padding: 0;
    width: 252px;
    position: relative;
    padding-bottom: 20px;
    margin: 0px 10px 15px;
}

.rq-form-btn .nav-tabs .nav-link:before {
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 80%;
    content: "";
    position: absolute;
    border-radius: 10px;
    background-color: #FFE7DD;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.rq-form-btn .nav-tabs .nav-link i {
    color: #fff;
    width: 88px;
    height: 88px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 55px;
    margin: 0 auto;
    border-radius: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--laa-clr-sd-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.rq-form-btn .nav-tabs .nav-link span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--laa-clr-sd-4);
    font-family: var(--log-heading);
}

.rq-form-btn .nav-tabs .nav-link.active:before {
    background-color: var(--laa-clr-sd-2);
}

.rq-form-btn .nav-tabs .nav-link.active span {
    color: #fff;
}

.rq-form-btn .nav-tabs .nav-link.active i {
    background-color: #003E4D;
}

.log-rq-form-tab {
    padding: 50px;
    margin: 0 auto;
    max-width: 1100px;
    margin-top: 50px;
    border-radius: 20px;
    border: 1px solid rgba(9, 9, 9, 0.1490196078);
    -webkit-box-shadow: 0px 0px 30px 2px rgba(0, 0, 0, 0.0509803922);
    box-shadow: 0px 0px 30px 2px rgba(0, 0, 0, 0.0509803922);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-rq-form-tab {
        padding: 30px 15px;
    }
}

.log-rq-form-wrap h3 {
    font-size: 40px;
    font-weight: 800;
    padding-bottom: 40px;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-rq-form-wrap h3 {
        font-size: 30px;
    }
}

.log-rq-form-wrap input,
.log-rq-form-wrap select,
.log-rq-form-wrap textarea {
    width: 100%;
    height: 60px;
    border: none;
    padding-left: 20px;
    border-radius: 60px;
    margin-bottom: 20px;
    background-color: rgba(0, 62, 77, 0.04);
}

.log-rq-form-wrap input::-webkit-input-placeholder,
.log-rq-form-wrap select::-webkit-input-placeholder,
.log-rq-form-wrap textarea::-webkit-input-placeholder {
    font-size: 18px;
}

.log-rq-form-wrap input::-moz-placeholder,
.log-rq-form-wrap select::-moz-placeholder,
.log-rq-form-wrap textarea::-moz-placeholder {
    font-size: 18px;
}

.log-rq-form-wrap input:-ms-input-placeholder,
.log-rq-form-wrap select:-ms-input-placeholder,
.log-rq-form-wrap textarea:-ms-input-placeholder {
    font-size: 18px;
}

.log-rq-form-wrap input::-ms-input-placeholder,
.log-rq-form-wrap select::-ms-input-placeholder,
.log-rq-form-wrap textarea::-ms-input-placeholder {
    font-size: 18px;
}

.log-rq-form-wrap input::placeholder,
.log-rq-form-wrap select::placeholder,
.log-rq-form-wrap textarea::placeholder {
    font-size: 18px;
}

.log-rq-form-wrap select {
    font-size: 18px;
    -webkit-appearance: none;
}

.log-rq-form-wrap textarea {
    height: 175px;
    padding-top: 20px;
    border-radius: 20px;
}

.log-rq-form-wrap .fr-select-option:before {
    top: 15px;
    right: 15px;
    content: "\f078";
    font-weight: 400;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
}

.log-rq-form-wrap .quote-btn {
    margin-top: 15px;
}

.log-rq-form-wrap .quote-btn button {
    color: #fff;
    border: none;
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 100px;
    text-transform: uppercase;
    background-color: #36353A;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-rq-form-wrap .quote-btn button:hover {
    background-color: var(--laa-clr-sd-2);
}

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

/*Blog List Section*/

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

.log-blog-list-item {
    margin: 0 auto;
    max-width: 858px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 62, 77, 0.08);
    box-shadow: 0px 0px 30px 0px rgba(0, 62, 77, 0.08);
}

.log-blog-list-item.details_version {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
}

.log-blog-list-item.details_version .item-text {
    padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-blog-list-item .item-img {
        width: 100%;
        height: 250px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-blog-list-item .item-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.log-blog-list-item .item-img .play-icon {
    left: 0;
    top: 50%;
    right: 0;
    text-align: center;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.log-blog-list-item .item-img .play-icon a {
    color: #fff;
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -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(--laa-clr-sd-2);
}

.log-blog-list-item .item-text {
    padding: 0px 40px 40px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-blog-list-item .item-text {
        padding: 0px 15px 30px;
    }
}

.log-blog-list-item .item-text .item-meta {
    margin-bottom: 20px;
    padding: 20px 0px 15px;
    border-bottom: 1px solid rgba(0, 62, 77, 0.15);
}

.log-blog-list-item .item-text .item-meta a {
    font-size: 14px;
    font-weight: 600;
    margin: 0px 60px;
    position: relative;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-blog-list-item .item-text .item-meta a {
        margin: 0px 30px;
    }
}

@media (max-width: 480px) {
    .log-blog-list-item .item-text .item-meta a {
        margin: 0px 10px;
    }
    .log-blog-list-item .item-text .item-meta a i {
        margin-right: 5px;
    }
}

.log-blog-list-item .item-text .item-meta a:before {
    top: 8px;
    width: 8px;
    content: "";
    height: 2px;
    right: -60px;
    position: absolute;
    background-color: #363539;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-blog-list-item .item-text .item-meta a:before {
        display: none;
    }
}

.log-blog-list-item .item-text .item-meta a i {
    margin-right: 10px;
}

.log-blog-list-item .item-text .item-meta a:last-child:before {
    display: none;
}

.log-blog-list-item .item-text .blog_title {
    font-size: 32px;
    font-weight: 800;
    padding-bottom: 10px;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-blog-list-item .item-text .blog_title {
        font-size: 26px;
    }
}

.log-blog-list-item .item-text p {
    padding-bottom: 20px;
}

.log-blog-list-item .item-text .read_more {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 17px 28px;
    border-radius: 40px;
    display: inline-block;
    background-color: #36353A;
    font-family: var(--log-heading);
}

@media (max-width: 767px) {
    .log-blog-list-item .item-text .read_more {
        padding: 15px 25px;
    }
}

.log-blog-list-item .item-text .read_more:hover {
    background-color: var(--laa-clr-sd-2);
}

.log-blog-list-item .item-text .read_more i {
    margin-left: 8px;
}

.blog-item-arrow .nav-arrow {
    top: 50%;
    z-index: 1;
    width: 62px;
    height: 62px;
    color: #fff;
    position: absolute;
    border-radius: 100%;
    background-color: #6A6A6A;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-item-arrow .nav-arrow:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

.blog-item-arrow .log-blog-button-prev {
    left: 30px;
}

.blog-item-arrow .log-blog-button-next {
    right: 30px;
}

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

/*Blog Details Section*/

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

.log-blog-details-text .blog_title {
    font-size: 36px;
    font-weight: 800;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-blog-details-text .blog_title {
        font-size: 30px;
    }
}

.log-blog-details-text h2,
.log-blog-details-text h3 {
    color: #363539;
    font-size: 42px;
    font-weight: 800;
    padding-bottom: 15px;
    color: var(--laa-clr-sd-4);
}

@media (max-width: 767px) {
    .log-blog-details-text h2,
    .log-blog-details-text h3 {
        font-size: 35px;
    }
}

.log-blog-details-text p {
    padding-bottom: 20px;
}

.log-blog-details-text h3 {
    font-size: 32px;
}

@media (max-width: 767px) {
    .log-blog-details-text h3 {
        font-size: 30px;
    }
}

.log-blog-details-text .log-blog-details-video .item-img {
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
}

.log-blog-details-text .log-blog-details-video .play-icon {
    left: 0;
    top: 50%;
    right: 0;
    text-align: center;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.log-blog-details-text .log-blog-details-video .play-icon a {
    color: #fff;
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    -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(--laa-clr-sd-2);
}

.log-blog-details-text .log-blog-details-quote blockquote {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    border-radius: 10px;
    position: relative;
    padding: 40px 40px 35px 70px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(68, 0, 231, 0.05)), to(rgba(123, 0, 254, 0.05)));
    background: linear-gradient(90deg, rgba(68, 0, 231, 0.05) 0%, rgba(123, 0, 254, 0.05) 100%);
}

.log-blog-details-text .log-blog-details-quote blockquote:before {
    top: 40px;
    left: 20px;
    line-height: 1;
    font-size: 40px;
    content: "\f10d";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
}

.log-blog-details-text .log-blog-details-quote blockquote span {
    display: block;
    color: #4400E7;
    font-weight: 700;
    padding-top: 20px;
}

.log-blog-details-double-img .item-img {
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
}

.log-blog-share-tag {
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.log-blog-share-tag span {
    color: var(--laa-clr-sd-4);
    font-size: 24px;
    font-weight: 700;
    margin-right: 15px;
}

.log-blog-share-tag .log-blog-tag a {
    margin: 5px;
    font-size: 14px;
    padding: 5px 25px;
    border-radius: 50px;
    display: inline-block;
    background-color: #F7F7F7;
}

.log-blog-share-tag .log-blog-tag a:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

.log-blog-share-tag .log-blog-share a {
    width: 36px;
    margin: 5px;
    height: 36px;
    border-radius: 100%;
    display: inline-block;
}

.log-blog-next-prev-item-area {
    gap: 30px;
    padding: 50px 25px;
    border-radius: 15px;
    background: #FFF5F1;
    margin-bottom: 30px;
}

@media (max-width: 767px),
(max-width: 480px) {
    .log-blog-next-prev-item-area {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-blog-next-prev-item-area .log-blog-next-prev-item {
    gap: 20px;
}

@media (max-width: 480px) {
    .log-blog-next-prev-item-area .log-blog-next-prev-item {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-blog-next-prev-item-area .log-blog-next-prev-item .inner-img {
    width: 130px;
    height: 130px;
    overflow: hidden;
    position: relative;
    border-radius: 100%;
}

.log-blog-next-prev-item-area .log-blog-next-prev-item .inner-img:before {
    top: 0;
    opacity: 0.4;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
    -webkit-transform: scale(0);
    transform: scale(0);
    border-radius: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: var(--laa-clr-sd-2);
}

.log-blog-next-prev-item-area .log-blog-next-prev-item .inner-img:after {
    color: #fff;
    left: 0;
    top: 50%;
    right: 0;
    font-size: 40px;
    margin: 0 auto;
    content: "\f137";
    font-weight: 900;
    text-align: center;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: "Font Awesome 5 Pro";
}

.log-blog-next-prev-item-area .log-blog-next-prev-item .inner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-blog-next-prev-item-area .log-blog-next-prev-item .inner-text {
    max-width: 190px;
}

.log-blog-next-prev-item-area .log-blog-next-prev-item .inner-text span {
    font-size: 14px;
    display: block;
    font-weight: 600;
    padding-bottom: 5px;
    text-transform: uppercase;
    color: var(--laa-clr-sd-2);
}

.log-blog-next-prev-item-area .log-blog-next-prev-item .inner-text h3 {
    color: #363539;
    font-size: 18px;
    font-weight: 800;
}

.log-blog-next-prev-item-area .log-blog-next-prev-item:nth-child(2) .inner-img:after {
    content: "\f138";
}

.log-blog-next-prev-item-area .log-blog-next-prev-item:hover .inner-img:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.log-blog-next-prev-item-area .log-blog-next-prev-item:hover .inner-img:after {
    color: #fff;
}

.log-blog-details-author {
    gap: 30px;
    padding: 30px;
    border-radius: 10px;
    background: #36353A;
}

.log-blog-details-author .admin-title-social {
    margin-bottom: 10px;
}

.log-blog-details-author .inner-img {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 100%;
    border: 4px solid #fff;
}

.log-blog-details-author .inner-text {
    max-width: 515px;
}

.log-blog-details-author .inner-text h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.log-blog-details-author .inner-text p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.log-blog-details-author .inner-social {
    margin-top: 15px;
}

.log-blog-details-author .inner-social a {
    color: #fff;
    margin-right: 15px;
}

.log-blog-details-author .inner-social a:hover {
    color: #4951fe;
}

.log-comment-list-wrap li {
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 30px 30px 0;
    background-color: #F7F7F7;
}

@media (max-width: 480px) {
    .log-comment-list-wrap li {
        padding: 30px 15px 30px;
    }
}

.log-comment-list-wrap h3 {
    color: #363539;
    font-size: 34px;
    font-weight: 700;
    padding-bottom: 20px;
}

.log-comment-list-wrap .log-comment-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.log-comment-list-wrap .log-comment-item .log-comment-img {
    width: 78px;
    height: 78px;
    overflow: hidden;
    margin-right: 30px;
    border-radius: 100%;
}

.log-comment-list-wrap .log-comment-item .log-comment-text {
    max-width: 595px;
}

.log-comment-list-wrap .log-comment-item .log-comment-text .author-name-date span {
    display: block;
}

.log-comment-list-wrap .log-comment-item .log-comment-text .author-name-date .cm-name {
    color: #363539;
    font-size: 26px;
    font-weight: 700;
}

.log-comment-list-wrap .log-comment-item .log-comment-text .author-name-date .cm-date {
    font-weight: 500;
    font-size: 16px;
}

.log-comment-list-wrap .log-comment-item .log-comment-text p {
    color: #363539;
    line-height: 30px;
    max-width: 850px;
    padding: 10px 0px 25px;
}

.log-comment-list-wrap .log-comment-item .log-like-reply {
    top: 0;
    right: 0;
    font-weight: 500;
}

@media (max-width: 480px) {
    .log-comment-list-wrap .log-comment-item .log-like-reply {
        position: static !important;
    }
}

.log-comment-list-wrap .log-comment-item .log-like-reply a {
    font-size: 17px;
    color: var(--laa-clr-sd-2);
}

.log-comment-list-wrap .children-comment {
    padding-top: 10px;
    margin-bottom: 40px;
}

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

/*Contact Section*/

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

.log-contact-info-section {
    z-index: 1;
}

.log-contact-info-section .log-contact-map {
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.log-contact-info-item {
    z-index: 1;
    overflow: hidden;
    padding: 40px 45px;
    border-radius: 10px;
    background-color: #FFF2ED;
}

.log-contact-info-item .info-bg {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 0%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-contact-info-item .info-bg:before {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(0, 62, 77, 0.83);
}

.log-contact-info-item .info-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-contact-info-item .inner-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 100%;
    background-color: var(--laa-clr-sd-2);
}

.log-contact-info-item .inner-icon i {
    color: #fff;
    font-size: 30px;
}

.log-contact-info-item .inner-text h3 {
    font-size: 26px;
    font-weight: 800;
    padding-bottom: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--laa-clr-sd-4);
}

.log-contact-info-item:hover .info-bg {
    height: 100%;
}

.log-contact-info-item:hover .inner-text h3 {
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-contact-info-item:hover .inner-text p {
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-error-content p {
    font-size: 60px;
    font-weight: 800;
    padding-top: 50px;
    color: var(--laa-clr-sd-4);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-error-content p {
        padding-top: 30px;
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .log-error-content p {
        padding-top: 20px;
        font-size: 30px;
    }
}

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

/*Cost Calculator Section*/

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

.log-cost-calculator-content {
    padding: 50px;
    border-radius: 20px;
    background-color: #F8F9F9;
    border: 1px solid #D3DDDF;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-cost-calculator-content {
        padding: 30px 20px;
    }
}

.log-cost-calculator-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    color: var(--laa-clr-sd-4);
    border-bottom: 1px solid #D3DDDF;
}

.log-cost-calculator-content .calc-input {
    margin-bottom: 25px;
}

.log-cost-calculator-content .calc-input .in-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 5px;
    color: var(--laa-clr-sd-4);
    font-family: var(--log-heading);
}

.log-cost-calculator-content .calc-input input,
.log-cost-calculator-content .calc-input select,
.log-cost-calculator-content .calc-input textarea {
    width: 100%;
    height: 62px;
    border: none;
    padding-left: 30px;
    border-radius: 100px;
    background-color: #fff;
    -webkit-appearance: none;
}

.log-cost-calculator-content .calc-input input::-webkit-input-placeholder,
.log-cost-calculator-content .calc-input select::-webkit-input-placeholder,
.log-cost-calculator-content .calc-input textarea::-webkit-input-placeholder {
    color: #6A6A6A;
    font-size: 18px;
}

.log-cost-calculator-content .calc-input input::-moz-placeholder,
.log-cost-calculator-content .calc-input select::-moz-placeholder,
.log-cost-calculator-content .calc-input textarea::-moz-placeholder {
    color: #6A6A6A;
    font-size: 18px;
}

.log-cost-calculator-content .calc-input input:-ms-input-placeholder,
.log-cost-calculator-content .calc-input select:-ms-input-placeholder,
.log-cost-calculator-content .calc-input textarea:-ms-input-placeholder {
    color: #6A6A6A;
    font-size: 18px;
}

.log-cost-calculator-content .calc-input input::-ms-input-placeholder,
.log-cost-calculator-content .calc-input select::-ms-input-placeholder,
.log-cost-calculator-content .calc-input textarea::-ms-input-placeholder {
    color: #6A6A6A;
    font-size: 18px;
}

.log-cost-calculator-content .calc-input input::placeholder,
.log-cost-calculator-content .calc-input select::placeholder,
.log-cost-calculator-content .calc-input textarea::placeholder {
    color: #6A6A6A;
    font-size: 18px;
}

.log-cost-calculator-content .calc-input textarea {
    height: 178px;
    padding-top: 20px;
    border-radius: 20px;
}

.log-cost-calculator-content .calc-input .log-distance-range {
    margin-top: 10px;
}

.log-cost-calculator-content .calc-input .log-distance-range .wc-input-range #slider-range {
    width: 75%;
}

.log-cost-calculator-content .calc-input .calc-select:before {
    top: 15px;
    right: 20px;
    content: "\f078";
    font-weight: 400;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
}

.log-cost-calculator-content .radio-btn-area {
    gap: 15px;
}

.log-cost-calculator-content .radio-btn-area input[type=radio] {
    display: none;
}

.log-cost-calculator-content .radio-btn-area label {
    color: #003E4D;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    font-family: var(--log-heading);
}

.log-cost-calculator-content .radio-btn-area label::before {
    top: 50%;
    left: -40px;
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    border-radius: 50%;
    border: 2px solid #D3DDDF;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    -webkit-transition: border-color 400ms ease;
    transition: border-color 400ms ease;
}

.log-cost-calculator-content .radio-btn-area label::after {
    top: 50%;
    left: -40px;
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    border-radius: 50%;
    background-color: var(--laa-clr-sd-2);
    border: 2px solid var(--laa-clr-sd-2);
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transition: -webkit-transform 400ms ease;
    transition: -webkit-transform 400ms ease;
    transition: transform 400ms ease;
    transition: transform 400ms ease, -webkit-transform 400ms ease;
}

.log-cost-calculator-content .radio-btn-area input[type=radio]:checked+label::before {
    border-color: var(--laa-clr-sd-2);
}

.log-cost-calculator-content .radio-btn-area input[type=radio]:checked+label::after {
    -webkit-transform: translateY(-50%) scale(0.55);
    transform: translateY(-50%) scale(0.55);
}

.log-cost-calculator-content .radio-btn-area .calc-radio {
    margin-left: 50px;
}

.log-cost-calculator-content .calc-cost {
    color: #fff;
    padding: 15px;
    font-size: 18px;
    margin-top: 50px;
    font-weight: 700;
    border-radius: 40px;
    font-family: var(--log-heading);
    background-color: var(--laa-clr-sd-2);
}

.log-cost-calculator-content .cost-form-calculator .log-submit {
    color: #fff;
    width: 100%;
    height: 60px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-cost-calculator-content .cost-form-calculator .log-submit:hover {
    background-color: #057b76;
}

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

/*Sidebar Section*/

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

.log-side-bar-wrap {
    top: 80px;
    position: sticky;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-side-bar-wrap {
        margin-top: 40px;
    }
}

.log-sidebar-widget {
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: rgba(26, 61, 56, 0.05);
}

.log-sidebar-widget .widget-title {
    font-size: 24px;
    font-weight: 800;
    padding-right: 55px;
    display: inline-block;
    margin-bottom: 22px;
    color: var(--laa-clr-sd-4);
}

.log-sidebar-widget .widget-title:before {
    top: 15px;
    right: 0;
    width: 47px;
    content: "";
    height: 2px;
    border-radius: 20px;
    position: absolute;
    background-color: var(--laa-clr-sd-2);
}

.log-sidebar-widget .category-widget li {
    width: 100%;
    margin-bottom: 12px;
    position: relative;
}

.log-sidebar-widget .category-widget li:after {
    top: 15px;
    right: 15px;
    z-index: 2;
    width: 19px;
    height: 19px;
    content: "\f138";
    font-weight: 400;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--laa-clr-sd-2);
    transition: all 500ms ease;
    font-family: "Font Awesome 5 Pro";
}

.log-sidebar-widget .category-widget li:last-child {
    margin-bottom: 0;
}

.log-sidebar-widget .category-widget li a {
    z-index: 1;
    width: 100%;
    display: block;
    color: #6A6A6A;
    font-weight: 500;
    position: relative;
    border-radius: 5px;
    background-color: #fff;
    padding: 15px 20px 15px 45px;
    border: 1px dashed rgba(9, 9, 9, 0.2);
}

.log-sidebar-widget .category-widget li a:before {
    top: 20px;
    left: 20px;
    width: 14px;
    height: 14px;
    font-size: 14px;
    content: "\f7d4";
    position: absolute;
    color: var(--laa-clr-sd-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: "Font Awesome 5 Pro";
}

.log-sidebar-widget .category-widget li a:after {
    left: 0;
    bottom: 0;
    top: auto;
    z-index: -1;
    width: 100%;
    height: 0%;
    content: "";
    border-radius: 5px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-sidebar-widget .category-widget li:hover:after {
    color: #fff;
}

.log-sidebar-widget .category-widget li:hover a {
    color: #fff;
    font-weight: 600;
}

.log-sidebar-widget .category-widget li:hover a:after {
    top: 0;
    bottom: 0;
    height: 100%;
}

.log-sidebar-widget .category-widget li:hover a:before {
    color: #fff;
}

.log-sidebar-widget .search-widget form {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.log-sidebar-widget .search-widget input {
    width: 100%;
    height: 62px;
    border: none;
    color: #858488;
    font-size: 16px;
    padding-left: 20px;
    border-radius: 10px;
    background-color: #fff;
}

.log-sidebar-widget .search-widget input::-webkit-input-placeholder {
    font-size: 16px;
    color: #858488;
}

.log-sidebar-widget .search-widget input::-moz-placeholder {
    font-size: 16px;
    color: #858488;
}

.log-sidebar-widget .search-widget input:-ms-input-placeholder {
    font-size: 16px;
    color: #858488;
}

.log-sidebar-widget .search-widget input::-ms-input-placeholder {
    font-size: 16px;
    color: #858488;
}

.log-sidebar-widget .search-widget input::placeholder {
    font-size: 16px;
    color: #858488;
}

.log-sidebar-widget .search-widget button {
    top: 0;
    right: 0;
    color: #fff;
    width: 62px;
    height: 62px;
    border: none;
    position: absolute;
    background: var(--laa-clr-sd-2);
}

.log-sidebar-widget .recent-blog-widget .recent-blog-img-text {
    padding-bottom: 25px;
}

.log-sidebar-widget .recent-blog-widget .recent-blog-img-text:last-child {
    padding-bottom: 0;
}

.log-sidebar-widget .recent-blog-widget .recent-blog-img-text .recent-blog-img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 15px;
    border-radius: 5px;
}

.log-sidebar-widget .recent-blog-widget .recent-blog-img-text .recent-blog-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-sidebar-widget .recent-blog-widget .recent-blog-img-text .recent-blog-text {
    width: 220px;
}

.log-sidebar-widget .recent-blog-widget .recent-blog-img-text .recent-blog-text h3 {
    color: #363539;
    font-size: 18px;
    line-height: 1.375;
    font-weight: 800;
}

.log-sidebar-widget .recent-blog-widget .recent-blog-img-text .recent-blog-text h3:hover {
    color: var(--laa-clr-sd-2);
}

.log-sidebar-widget .recent-blog-widget .recent-blog-img-text .recent-blog-text span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 40px;
    margin-bottom: 10px;
    display: inline-block;
    background-color: var(--laa-clr-sd-2);
}

.log-sidebar-widget .recent-blog-widget .recent-blog-img-text .recent-blog-text span i {
    margin-right: 5px;
}

.log-sidebar-widget .tag-widget li {
    margin: 5px;
}

.log-sidebar-widget .tag-widget a {
    font-size: 16px;
    padding: 5px 20px;
    border-radius: 5px;
    display: inline-block;
    background-color: #fff;
}

.log-sidebar-widget .tag-widget a:hover {
    color: #fff;
    background-color: var(--laa-clr-sd-2);
}

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

/*Footer Section*/

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

@keyframes icon-bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.log-footer-section-1 {
    z-index: 1;
}

.log-footer-section-1:before {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    content: "";
    height: 175px;
    position: absolute;
    background-color: #fff;
}

@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),
(max-width: 767px) {
    .log-footer-cta-content {
        gap: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-footer-cta {
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    padding: 96px 100px 60px;
    background-color: #023e4d;
}

@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),
(max-width: 767px) {
    .log-footer-cta {
        padding: 60px 40px 60px;
    }
}

.log-footer-cta .log-footer-cta-bg {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.log-footer-cta .log-footer-cta-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.log-footer-cta-text {
    max-width: 400px;
}

.log-footer-cta-text .subtitle {
    padding: 0;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 800;
}

.log-footer-cta-text .section_title {
    color: #fff;
}

.log-footer-cta-slider {
    max-width: 500px;
}

.log-footer-cta-item {
    width: 232px;
    height: 190px;
    padding: 35px;
    margin: 0 auto;
    border-radius: 15px;
    background-color: #151c1c;
}

.log-footer-cta-item .item-icon {
    width: 57px;
    height: 49px;
    overflow: hidden;
    margin-bottom: 18px;
}

.log-footer-cta-item .item-text h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.log-footer-cta-item:hover .item-icon {
    -webkit-animation: icon-bounce 0.8s ease-out infinite;
    animation: icon-bounce 0.8s ease-out infinite;
}

.log-cta-pagination .swiper-pagination-bullet {
    opacity: 1;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: #fff;
    border: 2px solid #fff;
    margin: 0px 7px !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-cta-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent;
}

.log-footer-cta-content-2 {
    padding: 50px 0px;
}

.log-footer-cta-content-2:after {
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    content: "";
    width: 0%;
    margin: 0 auto;
    position: absolute;
    background-color: #37384d;
    -webkit-transition: all 1200ms ease;
    transition: all 1200ms ease;
}

.log-footer-cta-content-2:before {
    top: 0;
    left: 50%;
    content: "";
    width: 1px;
    height: 0%;
    position: absolute;
    background-color: #37384d;
    -webkit-transition: all 800ms ease;
    transition: all 800ms ease;
}

.log-footer-cta-content-2.active:after {
    width: 100%;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.log-footer-cta-content-2.active:before {
    height: 100%;
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-footer-cta-content-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px 20px;
    }
    .log-footer-cta-content-2:before {
        display: none;
    }
}

.log-footer-cta-content-2 .log-footer-cta-social-area {
    width: 50%;
    padding-right: 65px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-footer-cta-content-2 .log-footer-cta-social-area {
        gap: 20px;
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-right: 0;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-footer-cta-content-2 .log-footer-cta-text {
        padding-left: 130px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-footer-cta-content-2 .log-footer-cta-text {
        padding-left: 0;
    }
}

.log-footer-cta-content-2 .log-footer-cta-text .inner-icon {
    width: 65px;
    height: 65px;
    margin-right: 10px;
    border-radius: 100%;
    background-color: #fff;
    border: 8px solid #4e3327;
}

.log-footer-cta-content-2 .log-footer-cta-text .inner-icon i {
    font-size: 20px;
    color: var(--laa-clr-sd-2);
}

.log-footer-cta-content-2 .log-footer-cta-text .inner-text span,
.log-footer-cta-content-2 .log-footer-cta-text .inner-text a {
    display: block;
}

.log-footer-cta-content-2 .log-footer-cta-text .inner-text span {
    font-size: 16px;
    font-weight: 400;
    color: var(--laa-clr-sd-2);
}

.log-footer-cta-content-2 .log-footer-cta-text .inner-text a {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.log-footer-cta-content-2 .log-footer-cta-social li {
    margin-left: 30px;
}

@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),
(max-width: 767px),
(max-width: 480px) {
    .log-footer-cta-content-2 .log-footer-cta-social li {
        margin-left: 15px;
    }
}

.log-footer-cta-content-2 .log-footer-cta-social li a {
    color: #fff;
    font-size: 15px;
}

.log-footer-cta-content-2 .log-footer-cta-social li a:hover {
    color: var(--laa-clr-sd-2);
}

.log-footer-cta-content-2 .log-footer-newslatter-form {
    gap: 15px;
    width: 50%;
    padding-left: 70px;
}

@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),
(max-width: 767px),
(max-width: 480px) {
    .log-footer-cta-content-2 .log-footer-newslatter-form {
        padding-left: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-footer-cta-content-2 .log-footer-newslatter-form {
        width: 100%;
        padding-left: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .log-footer-cta-content-2 .log-footer-newslatter-form span {
        text-align: center;
    }
}

.log-footer-cta-content-2 .log-footer-newslatter-form span {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    max-width: 110px;
}

.log-footer-cta-content-2 .log-footer-newslatter-form .log-footer-newslatter {
    width: 100%;
    max-width: 400px;
}

.log-footer-cta-content-2 .log-footer-newslatter-form input {
    width: 100%;
    height: 57px;
    border: none;
    color: #fff;
    font-size: 16px;
    padding-left: 20px;
    border-radius: 10px;
    background-color: #121718;
}

.log-footer-cta-content-2 .log-footer-newslatter-form input::-webkit-input-placeholder {
    color: #fff;
}

.log-footer-cta-content-2 .log-footer-newslatter-form input::-moz-placeholder {
    color: #fff;
}

.log-footer-cta-content-2 .log-footer-newslatter-form input:-ms-input-placeholder {
    color: #fff;
}

.log-footer-cta-content-2 .log-footer-newslatter-form input::-ms-input-placeholder {
    color: #fff;
}

.log-footer-cta-content-2 .log-footer-newslatter-form input::placeholder {
    color: #fff;
}

.log-footer-cta-content-2 .log-footer-newslatter-form button {
    top: 0;
    right: 0;
    height: 57px;
    color: #fff;
    border: none;
    font-weight: 700;
    position: absolute;
    padding: 0px 30px;
    border-radius: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-footer-cta-content-2 .log-footer-newslatter-form button {
        font-size: 14px;
        padding: 0px 15px;
    }
}

.log-footer-cta-content-2 .log-footer-newslatter-form button:hover {
    background-color: #057b76;
}

.log-footer-widget-content-2 {
    padding: 70px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-footer-widget-2 {
        margin-bottom: 40px;
    }
}

.log-footer-widget-2 .widget-title {
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    padding-bottom: 30px;
}

.log-footer-widget-2 .logo-widget .brand-logo {
    max-width: 200px;
    padding-bottom: 25px;
}

.log-footer-widget-2 .logo-widget .logo-info {
    color: #fff;
    margin-bottom: 30px;
}

.log-footer-widget-2 .menu-widget {
    padding-left: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px),
(max-width: 480px) {
    .log-footer-widget-2 .menu-widget {
        padding-left: 0;
    }
}

.log-footer-widget-2 .menu-widget li {
    margin-bottom: 19px;
}

.log-footer-widget-2 .menu-widget li a {
    color: #d1d1d1;
    font-weight: 800;
    position: relative;
}

.log-footer-widget-2 .menu-widget li a:before {
    left: 0;
    top: 10px;
    width: 0px;
    height: 1px;
    content: "";
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-footer-widget-2 .menu-widget li a:hover {
    padding-left: 22px;
}

.log-footer-widget-2 .menu-widget li a:hover:hover {
    color: var(--laa-clr-sd-2);
}

.log-footer-widget-2 .menu-widget li a:hover:hover:before {
    width: 15px;
}

.log-footer-copyright-content-2 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 30px 0px;
    border-top: 1px solid #37384d;
}

.vst-footer-2-area {
    background-color: #0f1114;
}

.vst-footer-2-contact {
    width: 100%;
    max-width: 275px;
    margin: 0 auto;
    margin-top: 15px;
}

.vst-footer-2-contact .footer-logo {
    max-width: 200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .vst-footer-2-contact {
        margin: 0;
    }
}

.vst-footer-2-contact .footer-2-text {
    font-size: 17px;
    line-height: 27px;
    color: #d9d9d9;
    margin-bottom: 30px;
}

.footer-social-links li {
    display: inline-block;
    margin: 0 15px;
}

.footer-social-links li a {
    font-size: 18px;
    display: inline-block;
    color: #fff;
}

.footer-social-links li a:hover {
    color: var(--laa-clr-sd-2);
}

.log-footer-section-2 {
    z-index: 1;
}

.log-footer-section-2 .log-footer-bg-2 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.21;
}

.log-footer-section-2 .log-footer-bg-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.vst-footer-2-widget-wrap {
    display: -ms-grid;
    display: grid;
    z-index: 1;
    position: relative;
    -ms-grid-columns: 1.5fr 30px 1fr 30px 1fr 30px 1.2fr;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .vst-footer-2-widget-wrap {
        -ms-grid-columns: 1.5fr 30px 1fr 30px 1fr;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 50px 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .vst-footer-2-widget-wrap {
        -ms-grid-columns: 1.5fr 30px 1fr;
        grid-template-columns: 1.5fr 1fr;
        gap: 50px 30px;
    }
}

@media (max-width: 767px) {
    .vst-footer-2-widget-wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 50px 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .vst-footer-2-widget-wrap {
        -ms-grid-columns: 1.5fr 30px 1fr;
        grid-template-columns: 1.5fr 1fr;
        gap: 50px 30px;
    }
}

.vst-footer-2-widget-wrap .widget-title-2 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    position: relative;
    line-height: 1.125;
    margin-bottom: 40px;
    padding-bottom: 20px;
    text-transform: capitalize;
}

.vst-footer-2-widget-wrap .widget-title-2::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 2px;
    background-color: var(--laa-clr-sd-2);
    left: 0;
    bottom: 0;
}

.vst-footer-2-widget-wrap .widget-title-2::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--laa-clr-sd-2);
    left: 0;
    bottom: -5px;
}

.vst-footer-1-menu:is(.footer-2-menu) li {
    margin-bottom: 3px;
}

.vst-footer-1-menu:is(.footer-2-menu) li a {
    color: #fff;
    padding-left: 20px;
    font-weight: 800;
    position: relative;
    -webkit-transition: 400ms ease;
    transition: 400ms ease;
    text-transform: capitalize;
    font-family: var(--log-heading);
}

.vst-footer-1-menu:is(.footer-2-menu) li a::after {
    content: "\f324";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Pro";
    color: #fff;
    font-size: 12px;
    -webkit-transition: 400ms ease;
    transition: 400ms ease;
}

.vst-footer-1-menu:is(.footer-2-menu) li a:hover {
    color: var(--laa-clr-sd-2);
}

.vst-footer-1-menu:is(.footer-2-menu) li a:hover::after {
    color: var(--laa-clr-sd-2);
    left: 5px;
}

.footer-blog-item-single {
    gap: 15px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-blog-item-single:not(:last-child) {
    margin-bottom: 20px;
}

.footer-blog-item-single .img-wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
}

.footer-blog-item-single .img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
}

.footer-blog-item-single .content-wrap .h1-heading {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: block;
    line-height: 30px;
    padding-bottom: 8px;
    text-transform: capitalize;
}

.footer-blog-item-single .content-wrap .h1-heading:hover {
    color: var(--laa-clr-sd-2);
}

.footer-blog-item-single .content-wrap .date {
    display: block;
    font-size: 14px;
    line-height: 1px;
    color: #dadada;
}

.footer-blog-item-single:hover .img-wrap img {
    -webkit-filter: brightness(150%);
    filter: brightness(150%);
}

.footer-2-gallery-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-2-gallery-item {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 125px;
    height: 125px;
}

.footer-2-gallery-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer-2-gallery-item .popup_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: hsla(0, 0%, 0%, 0.7);
    color: #fff;
    font-size: 20px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 400ms ease;
    transition: 400ms ease;
}

.footer-2-gallery-item:hover .popup_img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.vst-footer-1-copyright span {
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: 800;
    padding: 25px 0px;
    position: relative;
}

.vst-footer-1-copyright span:before {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    background-color: #252525;
}

.vst-footer-1-copyright span a {
    color: var(--laa-clr-sd-2);
}

.log-footer-section-3 {
    background-color: #232222;
}

.log-footer-newslatter-3 {
    padding: 50px 0px;
}

@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),
(max-width: 767px) {
    .log-footer-newslatter-3 {
        gap: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-footer-newslatter-3:before {
    left: 0;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    content: "";
    margin: 0 auto;
    position: absolute;
    background-color: #363539;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.log-footer-newslatter-3.active:before {
    width: 100%;
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.log-footer-newslatter-3 .brand-logo a {
    width: 220px;
    display: block;
}

@media (max-width: 767px) {
    .log-footer-newslatter-3 .brand-logo a {
        width: 180px;
    }
}

.log-footer-newslatter-3 .newslatter-text {
    gap: 15px;
}

.log-footer-newslatter-3 .newslatter-text .inner-img-wrap .img_1,
.log-footer-newslatter-3 .newslatter-text .inner-img-wrap .img_2 {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100%;
}

.log-footer-newslatter-3 .newslatter-text .inner-img-wrap .img_2 {
    margin-left: -20px;
}

.log-footer-newslatter-3 .newslatter-text h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.log-footer-newslatter-3 .newslatter-text h3 a {
    text-decoration: underline;
}

.log-footer-widget-content-3 {
    padding-top: 55px;
    padding-bottom: 45px;
}

@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),
(max-width: 767px) {
    .log-footer-widget-content-3 {
        gap: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-footer-widget-3 .widget-title {
    color: #fff;
    font-size: 27px;
    font-weight: 900;
    padding-bottom: 35px;
}

.log-footer-widget-3 .cta-widget {
    width: 100%;
    max-width: 350px;
}

.log-footer-widget-3 .cta-widget-info {
    gap: 10px;
    margin-bottom: 30px;
}

.log-footer-widget-3 .cta-widget-info:last-child {
    margin-bottom: 0;
}

.log-footer-widget-3 .cta-widget-info .inner-icon {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 2px dashed var(--laa-clr-sd-3);
}

.log-footer-widget-3 .cta-widget-info .inner-icon i {
    font-size: 14px;
    color: var(--laa-clr-sd-3);
}

.log-footer-widget-3 .cta-widget-info .inner-text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    max-width: 260px;
    line-height: 1.3;
}

.log-footer-widget-3 .menu-widget li {
    margin-bottom: 5px;
    width: 100%;
}

.log-footer-widget-3 .menu-widget li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 30px;
}

.log-footer-widget-3 .menu-widget li a:before {
    top: 0;
    left: 0;
    content: "\f058";
    font-weight: 900;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
}

.log-footer-widget-3 .menu-widget li a:hover {
    color: var(--laa-clr-sd-2);
}

.log-footer-widget-3 .subscribe-widget {
    width: 100%;
    max-width: 430px;
}

.log-footer-widget-3 .subscribe-widget p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    max-width: 315px;
    padding-bottom: 15px;
}

.log-footer-widget-3 .subscribe-widget input {
    width: 100%;
    height: 50px;
    border: none;
    padding-left: 20px;
    border-radius: 50px;
    margin-bottom: 8px;
    background-color: #fff;
}

.log-footer-widget-3 .subscribe-widget input::-webkit-input-placeholder {
    color: #024743;
    font-size: 16px;
    font-weight: 500;
}

.log-footer-widget-3 .subscribe-widget input::-moz-placeholder {
    color: #024743;
    font-size: 16px;
    font-weight: 500;
}

.log-footer-widget-3 .subscribe-widget input:-ms-input-placeholder {
    color: #024743;
    font-size: 16px;
    font-weight: 500;
}

.log-footer-widget-3 .subscribe-widget input::-ms-input-placeholder {
    color: #024743;
    font-size: 16px;
    font-weight: 500;
}

.log-footer-widget-3 .subscribe-widget input::placeholder {
    color: #024743;
    font-size: 16px;
    font-weight: 500;
}

.log-footer-widget-3 .subscribe-widget button {
    width: 100%;
    height: 50px;
    border: none;
    color: #050608;
    font-size: 17px;
    font-weight: 800;
    border-radius: 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-footer-widget-3 .subscribe-widget button:hover {
    color: #fff;
    background-color: #043a49;
}

.log-footer-widget-3 .subscribe-widget span {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
}

.log-footer-copyright-3 {
    padding: 25px 0px;
    background-color: #141515;
}

.log-footer-copyright-3 span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.log-footer-content-4 {
    gap: 0px 120px;
    position: relative;
    padding-bottom: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-footer-content-4 {
        gap: 0px 80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-footer-content-4 {
        gap: 0px 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .log-footer-content-4 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: start !important;
    }
}

.log-footer-content-4:before {
    left: 0;
    width: 0%;
    bottom: 0;
    content: "";
    height: 1px;
    right: 0;
    margin: 0 auto;
    position: absolute;
    -webkit-transition: all 2000ms ease;
    transition: all 2000ms ease;
    background: -webkit-gradient(linear, left top, right top, from(#F12A2F), to(#FE5917));
    background: linear-gradient(90deg, #F12A2F 0%, #FE5917 100%);
}

.log-footer-content-4.active:before {
    width: 100%;
    -webkit-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.log-footer-widget-4 {
    margin-bottom: 30px;
}

.log-footer-widget-4 .widget-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 30px;
}

.log-footer-widget-4 .logo-widget {
    width: 100%;
    max-width: 355px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .log-footer-widget-4 .logo-widget {
        max-width: 355px;
    }
}

.log-footer-widget-4 .logo-widget .brand-logo {
    margin-bottom: 30px;
}

.log-footer-widget-4 .logo-widget .brand-logo a {
    width: 210px;
    display: block;
}

.log-footer-widget-4 .logo-widget p {
    padding-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.log-footer-widget-4 .logo-widget form {
    max-width: 320px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.log-footer-widget-4 .logo-widget input {
    width: 100%;
    height: 64px;
    border: none;
    max-width: 320px;
    border-radius: 10px;
    padding-left: 25px;
    background-color: #fff;
    color: rgb(83, 83, 83);
}

.log-footer-widget-4 .logo-widget input::-webkit-input-placeholder {
    color: rgb(83, 83, 83);
}

.log-footer-widget-4 .logo-widget input::-moz-placeholder {
    color: rgb(83, 83, 83);
}

.log-footer-widget-4 .logo-widget input:-ms-input-placeholder {
    color: rgb(83, 83, 83);
}

.log-footer-widget-4 .logo-widget input::-ms-input-placeholder {
    color: rgb(83, 83, 83);
}

.log-footer-widget-4 .logo-widget input::placeholder {
    color: rgb(83, 83, 83);
}

.log-footer-widget-4 .logo-widget button {
    top: 0;
    right: 0;
    color: #fff;
    width: 56px;
    height: 64px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 700ms ease;
    transition: all 700ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-footer-widget-4 .logo-widget button i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-footer-widget-4 .logo-widget button:hover {
    background-color: #1A3D38;
}

.log-footer-widget-4 .menu-widget li {
    margin-bottom: 12px;
}

.log-footer-widget-4 .menu-widget li a {
    color: #fff;
    font-size: 18px;
}

.log-footer-widget-4 .menu-widget li a:hover {
    color: var(--laa-clr-sd-2);
}

.log-footer-widget-4 .cta-widget .info-item {
    gap: 10px;
    margin-bottom: 30px;
}

.log-footer-widget-4 .cta-widget .info-item .inner-icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #fff;
}

.log-footer-widget-4 .cta-widget .info-item .inner-icon i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-footer-widget-4 .cta-widget .info-item .inner-text span {
    display: block;
    font-size: 16px;
    color: #DE4842;
    font-weight: 600;
}

.log-footer-widget-4 .cta-widget .info-item .inner-text a {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.log-footer-copyright-text {
    gap: 20px;
    padding: 24px 0px;
}

@media (max-width: 480px) {
    .log-footer-copyright-text {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-footer-copyright-text span {
    color: #fff;
    font-size: 18px;
}

.log-footer-copyright-text .footer-social {
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-footer-copyright-text .footer-social a {
    color: #fff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #2A2E2F;
}

.log-footer-copyright-text .footer-social a:hover {
    background-color: var(--laa-clr-sd-2);
}

.log-get-touch-text-5 {
    margin-bottom: 65px;
    background-color: #3F3E3E;
    border-top-right-radius: 80px;
}

.log-get-touch-text-5 h3 {
    color: #fff;
    font-size: 120px;
    font-weight: 800;
    line-height: 0.75;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .log-get-touch-text-5 h3 {
        font-size: 80px;
        text-align: center;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-get-touch-text-5 h3 {
        font-size: 40px;
        line-height: 1;
        text-align: center;
    }
}

.log-get-touch-text-5 h3 a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 45px;
    position: relative;
}

.log-get-touch-text-5 h3 a i {
    top: 30px;
    right: 30px;
    width: 90px;
    color: #000;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 40px;
    border-radius: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--laa-clr-sd-2);
}

@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),
(max-width: 767px) {
    .log-get-touch-text-5 h3 a i {
        display: none;
    }
}

.log-footer-section-5 {
    z-index: 1;
}

.log-footer-section-5 .background_overlay {
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.7);
}

.log-footer-section-5 .log-footer-widget-area-5 {
    padding: 70px 0px 50px;
}

.log-footer-widget-area-5 {
    margin: 0 auto;
    max-width: 1265px;
}

.log-footer-widget-wrap-5 {
    gap: 30px 140px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .log-footer-widget-wrap-5 {
        gap: 30px 70px;
    }
}

@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),
(max-width: 767px) {
    .log-footer-widget-wrap-5 {
        gap: 30px 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-widget-wrap-5 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
}

.log-footer-widget-5 {
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-widget-5 {
        width: 400px;
        max-width: 50%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-widget-5 {
        width: 100%;
        max-width: 100%;
    }
}

.log-footer-widget-5 .widget-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding-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),
(max-width: 767px) {
    .log-footer-widget-5 .widget-title {
        font-size: 20px;
    }
}

.log-footer-widget-5 .logo-widget {
    max-width: 420px;
}

.log-footer-widget-5 .logo-widget .brand-logo {
    margin-bottom: 30px;
}

.log-footer-widget-5 .logo-widget .brand-logo a {
    display: block;
    max-width: 220px;
}

.log-footer-widget-5 .logo-widget p {
    padding-bottom: 35px;
    color: rgba(255, 255, 255, 0.8);
}

.log-footer-widget-5 .logo-widget h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 20px;
}

.log-footer-widget-5 .logo-widget input {
    width: 100%;
    height: 46px;
    font-size: 14px;
    padding-left: 25px;
    border-radius: 100px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--laa-clr-sd-2);
}

.log-footer-widget-5 .logo-widget input::-webkit-input-placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.log-footer-widget-5 .logo-widget input::-moz-placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.log-footer-widget-5 .logo-widget input:-ms-input-placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.log-footer-widget-5 .logo-widget input::-ms-input-placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.log-footer-widget-5 .logo-widget input::placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.log-footer-widget-5 .logo-widget button {
    top: 6px;
    right: 6px;
    color: #fff;
    height: 34px;
    border: none;
    padding: 5px 15px;
    position: absolute;
    border-radius: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-footer-widget-5 .logo-widget button:hover {
    background-color: #fff;
    color: var(--laa-clr-sd-2);
}

.log-footer-widget-5 .menu-widget li {
    margin-bottom: 15px;
}

.log-footer-widget-5 .menu-widget li a {
    color: #fff;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.log-footer-widget-5 .menu-widget li a:hover {
    color: var(--laa-clr-sd-2);
}

.log-footer-copyright-text-5 {
    padding: 20px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-copyright-text-5 {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.log-footer-copyright-text-5 .inner-text {
    color: rgba(255, 255, 255, 0.7);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-copyright-text-5 .inner-text {
        text-align: center;
    }
}

.log-footer-copyright-text-5 .copyright-social a {
    color: #fff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px;
    border-radius: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #2A2E2F;
}

.log-footer-copyright-text-5 .copyright-social a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-footer-copyright-text-5 .copyright-social a:hover {
    background-color: var(--laa-clr-sd-2);
}

.log-footer-section-6 {
    z-index: 1;
}

.log-footer-section-6 .background_overlay {
    z-index: -1;
    background-color: rgba(38, 38, 38, 0.93);
}

.log-footer-content-6 {
    gap: 30px 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-content-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-footer-content-6 .footer-text {
    max-width: 675px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-content-6 .footer-text {
        text-align: center;
    }
}

.log-footer-content-6 .footer-text h3 {
    font-size: 55px;
    font-weight: 700;
}

@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) {
    .log-footer-content-6 .footer-text h3 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .log-footer-content-6 .footer-text h3 {
        font-size: 30px;
    }
}

.log-footer-content-6 .footer-text h3 span {
    color: var(--laa-clr-sd-2);
}

.log-footer-content-6 .footer-newslatter {
    width: 100%;
    max-width: 525px;
}

.log-footer-content-6 .footer-newslatter input {
    width: 100%;
    height: 64px;
    padding-left: 30px;
    margin-bottom: 20px;
    border-radius: 100px;
    border: 1px solid rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.3);
}

.log-footer-content-6 .footer-newslatter input::-webkit-input-placeholder {
    color: #fff;
    font-size: 16px;
}

.log-footer-content-6 .footer-newslatter input::-moz-placeholder {
    color: #fff;
    font-size: 16px;
}

.log-footer-content-6 .footer-newslatter input:-ms-input-placeholder {
    color: #fff;
    font-size: 16px;
}

.log-footer-content-6 .footer-newslatter input::-ms-input-placeholder {
    color: #fff;
    font-size: 16px;
}

.log-footer-content-6 .footer-newslatter input::placeholder {
    color: #fff;
    font-size: 16px;
}

.log-footer-content-6 .footer-newslatter button {
    color: #fff;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100px;
    font-family: var(--log-heading-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--laa-clr-sd-2);
}

.log-footer-content-6 .footer-newslatter button:hover {
    background-color: #fff;
    color: var(--laa-clr-sd-2);
}

.log-footer-content-6 .footer-newslatter button i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    margin-left: 8px;
}

@media (max-width: 767px) {
    .log-footer-content-6 .footer-newslatter button {
        padding: 13px 20px;
    }
}

.log-footer-menu-area-6 {
    gap: 15px;
    padding: 40px 0px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-menu-area-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-footer-menu-area-6 .brand-logo a {
    width: 200px;
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-menu-area-6 .footer-menu {
        text-align: center;
    }
}

.log-footer-menu-area-6 .footer-menu li {
    margin: 0px 18px;
}

@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),
(max-width: 767px) {
    .log-footer-menu-area-6 .footer-menu li {
        margin: 0px 5px;
    }
}

.log-footer-menu-area-6 .footer-menu li a {
    color: #fff;
    font-weight: 500;
    font-family: var(--log-heading-2);
}

@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),
(max-width: 767px) {
    .log-footer-menu-area-6 .footer-menu li a {
        font-size: 16px;
    }
}

.log-footer-menu-area-6 .footer-menu li a:hover {
    color: var(--laa-clr-sd-2);
}

.log-footer-menu-area-6 .footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-footer-menu-area-6 .footer-social a {
    width: 40px;
    height: 40px;
    color: #E8E8E8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 10px;
    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;
    border: 1px solid #E8E8E8;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.log-footer-menu-area-6 .footer-social a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.log-footer-menu-area-6 .footer-social a:hover {
    border: 1px solid var(--laa-clr-sd-2);
    background-color: var(--laa-clr-sd-2);
}

.log-footer-copyright-6 {
    padding: 25px 0px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-copyright-6 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.log-footer-copyright-6 span {
    color: rgba(255, 255, 255, 0.7);
}

.log-footer-copyright-6 li {
    margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .log-footer-copyright-6 li {
        margin: 0px 10px;
    }
}

.log-footer-copyright-6 li a {
    color: rgba(255, 255, 255, 0.7);
}

.log-footer-copyright-6 li a:hover {
    color: var(--laa-clr-sd-2);
}

/* HOME 7 CSS START*/

@media (min-width: 1400px) {
    .container.laa-container-1 {
        max-width: 1344px;
    }
}

.fix {
    overflow: hidden;
}

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

.bg-default {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.flaticon {
    display: inline-block;
    line-height: 0.65;
}

.z-index-3 {
    position: relative;
    z-index: 3;
}

.p-absolute {
    position: absolute;
}

.p-relative {
    position: relative;
    z-index: 1;
}

.laa-font-400 {
    font-weight: 400;
}

.laa-font-500 {
    font-weight: 500;
}

.laa-font-600 {
    font-weight: 600;
}

.laa-font-700 {
    font-weight: 700;
}

.laa-font-800 {
    font-weight: 800;
}

.laa-font-900 {
    font-weight: 900;
}

.laa-h-font-1 {
    font-family: var(--laa-h-font-1);
}

.laa-p-font-1 {
    font-family: var(--laa-h-font-1);
}

.laa-ml-auto {
    margin-left: auto;
}

.laa-mr-auto {
    margin-right: auto;
}

.line-limit {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.line-limit:is(.has-line-1) {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.line-limit:is(.has-line-2) {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.line-limit:is(.has-line-3) {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.line-limit:is(.has-line-4) {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.line-limit:is(.has-line-5) {
    -webkit-line-clamp: 5;
    line-clamp: 5;
}

.line-limit:is(.has-line-6) {
    -webkit-line-clamp: 6;
    line-clamp: 6;
}

.line-limit:is(.has-line-7) {
    -webkit-line-clamp: 7;
    line-clamp: 7;
}

.line-limit:is(.has-line-8) {
    -webkit-line-clamp: 8;
    line-clamp: 8;
}

.line-limit:is(.has-line-9) {
    -webkit-line-clamp: 9;
    line-clamp: 9;
}

.line-limit:is(.has-line-10) {
    -webkit-line-clamp: 10;
    line-clamp: 10;
}

/*
    laa-common-css-end
*/

/*
    components-start
*/

.txaa-split-text-3 {
    text-transform: unset !important;
}

.txaa-split-text-3 .split-line .div div:nth-child(1) {
    text-transform: capitalize;
}

.laa-pattn .laa-pattn-1,
.laa-pattn .laa-pattn-2,
.laa-pattn .laa-pattn-3,
.laa-pattn .laa-pattn-4 {
    transition: var(--laa-cube-1);
}

.laa-scn-margin {
    margin-left: 20px;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .laa-scn-margin {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.laa-hight-20 {
    width: 100%;
    height: 20px;
}

.laa-redius-20 {
    border-radius: 20px;
}

.laa-left-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.32);
    font-size: 25px;
    position: relative;
    z-index: 1;
    transition: 0.5s var(--laa-cube-1);
    cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-left-btn {
        width: 50px;
        height: 50px;
    }
}

.laa-left-btn svg {
    width: 35px;
    height: 35px;
    opacity: 32%;
    transition: 0.5s var(--laa-cube-1);
}

.laa-left-btn svg path {
    transition: 0.5s var(--laa-cube-1);
    stroke: #fff;
}

.laa-left-btn .line {
    position: absolute;
    display: inline-block;
    width: 0px;
    height: 3px;
    transition: 0.3s ease-in-out;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.32);
    transform-origin: left;
    border-radius: 3px;
}

.laa-left-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.laa-left-btn:hover svg {
    transform: translateX(-5.5px);
    opacity: 100%;
}

.laa-left-btn:hover svg path {
    stroke: var(--laa-clr-h1);
}

.laa-left-btn:hover .line {
    width: 25px;
    left: 55%;
    background: var(--laa-clr-h1);
}

.laa-right-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.32);
    font-size: 25px;
    position: relative;
    z-index: 1;
    transition: 0.5s var(--laa-cube-1);
    cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-right-btn {
        width: 50px;
        height: 50px;
    }
}

.laa-right-btn svg {
    width: 35px;
    height: 35px;
    opacity: 32%;
    transition: 0.5s var(--laa-cube-1);
}

.laa-right-btn svg path {
    transition: 0.5s var(--laa-cube-1);
    stroke: #fff;
}

.laa-right-btn .line {
    position: absolute;
    display: inline-block;
    width: 0px;
    height: 3px;
    transition: 0.5s var(--laa-cube-1);
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.32);
    transform-origin: right;
    border-radius: 3px;
}

.laa-right-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.laa-right-btn:hover svg {
    transform: translateX(5.5px);
    opacity: 100%;
}

.laa-right-btn:hover svg path {
    stroke: var(--laa-clr-h1);
}

.laa-right-btn:hover .line {
    width: 25px;
    left: 45%;
    background: var(--laa-clr-h1);
}

.laa-left-btn-2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
    transition: 0.5s var(--laa-cube-1);
    cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-left-btn-2 {
        width: 50px;
        height: 50px;
    }
}

.laa-left-btn-2 svg {
    opacity: 50%;
    transition: 0.5s var(--laa-cube-1);
}

.laa-left-btn-2 svg path {
    transition: 0.5s var(--laa-cube-1);
}

.laa-left-btn-2 .line {
    position: absolute;
    display: inline-block;
    width: 0px;
    height: 2px;
    transition: 0.3s ease-in-out;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.32);
    transform-origin: left;
    border-radius: 3px;
}

.laa-left-btn-2:hover {
    background: rgb(255, 255, 255);
}

.laa-left-btn-2:hover svg {
    transform: translateX(-5.5px);
    opacity: 100%;
}

.laa-left-btn-2:hover .line {
    width: 17px;
    left: 55%;
    background: var(--laa-clr-sd-1);
}

.laa-right-btn-2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
    transition: 0.5s var(--laa-cube-1);
    cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-right-btn-2 {
        width: 50px;
        height: 50px;
    }
}

.laa-right-btn-2 svg {
    opacity: 50%;
    transition: 0.5s var(--laa-cube-1);
}

.laa-right-btn-2 svg path {
    transition: 0.5s var(--laa-cube-1);
}

.laa-right-btn-2 .line {
    position: absolute;
    display: inline-block;
    width: 0px;
    height: 2px;
    transition: 0.3s ease-in-out;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.32);
    transform-origin: right;
    border-radius: 3px;
}

.laa-right-btn-2:hover {
    background: rgb(255, 255, 255);
}

.laa-right-btn-2:hover svg {
    transform: translateX(5.5px);
    opacity: 100%;
}

.laa-right-btn-2:hover .line {
    width: 17px;
    left: 45%;
    background: var(--laa-clr-sd-1);
}

/*
    components-end
*/

/*
    laa-button-start
*/

/*
    mobile-menu-btn-1-start
*/

.laa-menu-btn-1 {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    border: none;
    outline: none;
    background: transparent;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto;
    align-content: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-menu-btn-1 span {
    display: inline-block;
    flex: 0 0 auto;
    width: 5px;
    height: 5px;
    background: var(--laa-clr-h1);
    border-radius: 50%;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-menu-btn-1:hover {
    background: var(--fx-clr-sd-1);
}

.laa-menu-btn-1:hover span {
    background-color: var(--laa-clr-sd-1);
}

.laa-menu-btn-1:hover span:nth-child(1) {
    transform: translate(10px, 0px);
}

.laa-menu-btn-1:hover span:nth-child(3) {
    transform: translate(0px, 10px);
}

.laa-menu-btn-1:hover span:nth-child(7) {
    transform: translate(0px, -10px);
}

.laa-menu-btn-1:hover span:nth-child(9) {
    transform: translate(-10px, 0px);
}

/*
    laa-search-btn
*/

.laa-search-btn {
    font-family: var(--laa-h-font-1);
    border: none;
    outline: none;
    background: transparent;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    padding-right: 96px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    transition: all 0.5s var(--laa-cube-1);
}

.laa-search-btn i {
    transition: 0.5s var(--laa-cube-1);
    color: var(--laa-clr-pr-1);
}

.laa-search-btn:hover {
    color: var(--laa-clr-pr-1);
    border-color: var(--laa-clr-pr-1);
}

.laa-search-btn:hover i {
    transform: translateX(3px);
}

/*
    lang-switch-btn
*/

.laa-lang-switch {
    position: relative;
    display: inline-block;
}

.laa-lang-switch .check-toggle {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.laa-lang-switch .check-toggle+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.laa-lang-switch input.check-toggle-round-flat+label {
    padding: 2px;
    width: 72px;
    height: 24px;
    background-color: #fff;
    border-radius: 6px;
}

.laa-lang-switch input.check-toggle-round-flat+label:before,
.laa-lang-switch input.check-toggle-round-flat+label:after {
    display: block;
    position: absolute;
    content: "";
}

.laa-lang-switch input.check-toggle-round-flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
}

.laa-lang-switch input.check-toggle-round-flat+label:after {
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: 34px;
    height: 20px;
    background-color: var(--laa-clr-sd-1);
    border-radius: 4px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
}

.laa-lang-switch input.check-toggle-round-flat:checked+label:after {
    margin-left: 34px;
}

.laa-lang-switch input.check-toggle-round-flat:checked~.off {
    color: #fff;
}

.laa-lang-switch input.check-toggle-round-flat:checked~.on {
    color: var(--laa-clr-h1);
}

.laa-lang-switch span {
    position: absolute;
    top: 14px;
    pointer-events: none;
    font-family: var(--laa-h-font-1);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    width: 50%;
    text-align: center;
    top: 0;
    line-height: 24px;
    transition: 0.3s ease-in-out;
}

.laa-lang-switch .on {
    left: 0;
    color: #fff;
}

.laa-lang-switch .off {
    right: 0;
    color: var(--laa-clr-h1);
}

/*
    pr-btn-1-start
*/

.laa-pr-btn-1 {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    display: inline-flex;
    flex: 0 0 auto;
    font-family: var(--laa-h-font-1);
    text-transform: capitalize;
    font-size: 16px;
    line-height: 1;
    background: transparent;
    color: #fff;
    font-weight: 600;
    transition: all 0.5s var(--laa-cube-1);
    gap: 12px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.laa-pr-btn-1 svg {
    position: absolute;
    right: 30px;
    top: 1px;
    z-index: -1;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-pr-btn-1 svg * {
    fill: var(--laa-clr-h1);
}

.laa-pr-btn-1-left {
    background: var(--laa-clr-h1);
    border-radius: 16px;
    padding: 21px 28px;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-pr-btn-1-right {
    flex: 0 0 auto;
    border: 4px solid var(--laa-clr-h1);
    border-radius: 16px;
    width: 56px;
    height: 57px;
    background: #fff;
    color: var(--laa-clr-h1);
    overflow: hidden;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-pr-btn-1 .text {
    position: relative;
    z-index: 1;
    overflow: hidden;
    line-height: 1;
    margin-bottom: -2px;
    display: inline-block;
}

.laa-pr-btn-1 .text::after {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    display: block;
    transition: all 0.5s var(--laa-cube-1);
    position: absolute;
    content: attr(data-back);
    transform: translateY(100%);
    color: #fff;
}

.laa-pr-btn-1 .text::before {
    top: 0;
    left: 0;
    opacity: 1;
    display: block;
    transition: all 0.5s var(--laa-cube-1);
    position: relative;
    content: attr(data-front);
    transform: translateY(0);
    color: #fff;
}

.laa-pr-btn-1 .icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-pr-btn-1 .icon i {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-pr-btn-1 .icon i:nth-child(1) {
    left: -30%;
}

.laa-pr-btn-1:hover {
    color: inherit;
}

.laa-pr-btn-1:hover .laa-pr-btn-1-left {
    background: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:hover .laa-pr-btn-1-right {
    border-color: var(--laa-clr-sd-1);
    color: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:hover svg {
    transform: scaleY(0);
}

.laa-pr-btn-1:hover .text::after {
    opacity: 1;
    transform: translateY(0%);
}

.laa-pr-btn-1:hover .text::before {
    opacity: 0;
    transform: translateY(-100%);
}

.laa-pr-btn-1:hover .icon i:nth-child(1) {
    left: 50%;
}

.laa-pr-btn-1:hover .icon i:nth-child(2) {
    left: 130%;
}

.laa-pr-btn-1:is(.has-white) .laa-pr-btn-1-left {
    background: #fff;
}

.laa-pr-btn-1:is(.has-white) .laa-pr-btn-1-right {
    border-color: #fff;
    background: var(--laa-clr-h1);
    color: #fff;
}

.laa-pr-btn-1:is(.has-white) .text::before {
    color: var(--laa-clr-h1);
}

.laa-pr-btn-1:is(.has-white) svg * {
    fill: #fff;
}

.laa-pr-btn-1:is(.has-white):hover .laa-pr-btn-1-left {
    background: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-white):hover .laa-pr-btn-1-right {
    border-color: var(--laa-clr-sd-1);
    background: #fff;
    color: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-header) {
    gap: 8px;
}

.laa-pr-btn-1:is(.has-header) .laa-pr-btn-1-left {
    padding: 15px 22px;
    background: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-header) .laa-pr-btn-1-right {
    width: 44px;
    height: 45px;
    border-color: var(--laa-clr-sd-1);
    color: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-header) svg {
    right: 25px;
}

.laa-pr-btn-1:is(.has-header) svg * {
    fill: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-header):hover .laa-pr-btn-1-left {
    background: var(--laa-clr-h1);
}

.laa-pr-btn-1:is(.has-header):hover .laa-pr-btn-1-right {
    border-color: var(--laa-clr-h1);
    color: var(--laa-clr-h1);
}

.laa-pr-btn-1:is(.has-form) {
    gap: 8px;
}

.laa-pr-btn-1:is(.has-form) .laa-pr-btn-1-left {
    padding: 15px 22px;
}

.laa-pr-btn-1:is(.has-form) .laa-pr-btn-1-right {
    width: 44px;
    height: 45px;
}

.laa-pr-btn-1:is(.has-form) svg {
    right: 25px;
}

.laa-pr-btn-1:is(.has-form) svg * {
    fill: var(--laa-clr-h1);
}

.laa-pr-btn-1:is(.has-form):hover .laa-pr-btn-1-right {
    color: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-red-white) .laa-pr-btn-1-left {
    background: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-red-white) .laa-pr-btn-1-right {
    border-color: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-red-white) svg * {
    fill: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-red-white):hover .text::after {
    color: var(--laa-clr-h1);
}

.laa-pr-btn-1:is(.has-red-white):hover .laa-pr-btn-1-left {
    background: #fff;
}

.laa-pr-btn-1:is(.has-red-white):hover .laa-pr-btn-1-right {
    border-color: #fff;
    background: var(--laa-clr-sd-1);
    color: #fff;
}

.laa-pr-btn-1:is(.has-red) .laa-pr-btn-1-left {
    background: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-red) .laa-pr-btn-1-right {
    border-color: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-red) .laa-pr-btn-1-right .icon {
    color: var(--laa-clr-sd-1);
}

.laa-pr-btn-1:is(.has-red) svg * {
    fill: var(--laa-clr-sd-1);
}

/*
    laa-circle-progress
*/

.laa-progress-btn {
    width: 64px;
    display: inline-block;
    height: 64px;
    position: relative;
    z-index: 1;
}

.laa-progress-btn-circle {
    width: 64px;
    height: 64px;
}

.laa-progress-btn-circle circle:nth-child(1) {
    fill: transparent;
    stroke: var(--laa-clr-sd-1);
    stroke-width: 2px;
    stroke-dasharray: 200px;
    stroke-dashoffset: 0;
    opacity: 16%;
    stroke-dasharray: 0px;
    stroke-dashoffset: 270px;
}

.laa-progress-btn-circle circle:nth-child(2) {
    fill: transparent;
    stroke: var(--laa-clr-sd-1);
    stroke-width: 4px;
    stroke-dasharray: 270px;
    stroke-dashoffset: 270px;
}

.laa-progress-btn-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s var(--laa-cube-1);
}

.laa-progress-btn:hover .laa-progress-btn-icon {
    top: 45%;
    left: 55%;
}

/*
    laa-paly-btn-1
*/

.laa-play-btn-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--laa-h-font-1);
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    transition: all 0.5s var(--laa-cube-1);
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 16px 24px;
}

.laa-play-btn-1:visited {
    color: #fff;
}

.laa-play-btn-1:hover {
    transform: translateX(3px);
    color: #fff;
    background: var(--laa-clr-sd-1);
}

.laa-play-btn-1:hover i {
    animation: unset;
}

/*
    mobile-menu-btn-1-end
*/

/*
    pr-btn-1-end
*/

/*
    search-btn-1-start
*/

.fx-search-btn-1 {
    font-family: var(--fx-font-pr-1);
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.4);
    font-size: 16px;
    background: transparent;
    padding: 0;
    transition: all 0.4s var(--cube-1);
    flex: 0 0 auto;
}

.fx-search-btn-1 i {
    color: #000;
    margin-right: 5px;
    transition: all 0.4s var(--cube-1);
}

.fx-search-btn-1:hover {
    color: var(--fx-clr-pr-1);
    transform: translateX(-3px);
}

.fx-search-btn-1:hover i {
    color: var(--fx-clr-pr-1);
}

/*
    search-btn-1-end
*/

/*
    playbtn-1-start
*/

.fx-play-btn-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fx-font-pr-1);
    text-transform: capitalize;
    font-weight: 500;
    color: var(--fx-clr-pr-1);
    transition: all 0.4s var(--cube-1);
}

.fx-play-btn-1 i {
    display: inline-block;
    font-size: 30px;
    font-weight: 300;
    transition: 0.2s;
    animation: fd-bounce-2 1.5s infinite;
}

.fx-play-btn-1:hover {
    transform: translateX(3px);
    color: var(--fx-clr-sd-1);
}

.fx-play-btn-1:hover i {
    animation: unset;
}

.fx-play-btn-1:is(.has-hover-white):hover {
    color: #fff;
}

/*
    playbtn-1-end
*/

/*
    playbtn-2-start
*/

.fx-playbtn-2 {
    display: flex;
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    background: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--fx-clr-pr-1);
    position: relative;
    z-index: 1;
    transition: all 0.3s var(--cube-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .fx-playbtn-2 {
        width: 70px;
        height: 70px;
    }
}

.fx-playbtn-2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    z-index: -1;
    transform: scale(1.3);
    animation: fx-scaling 6s linear infinite;
    animation-delay: 3s;
}

.fx-playbtn-2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
    transform: scale(1.6);
    animation: fx-scaling 6s linear infinite;
}

/*
    playbtn-2-end
*/

/*
    land-btn-1-start
*/

.fx-land-1-btn {
    border-radius: 0;
    border: none;
    font-family: var(--fx-font-pr-1);
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    padding-left: 0;
    line-height: 1;
    padding-right: 17px;
    height: auto;
}

.fx-land-1-btn::after {
    width: 7px;
    height: 7px;
    border-color: var(--fx-clr-pr-2);
    right: 2px;
    margin-top: -6px;
}

.fx-land-1-btn .current {
    transition: all 0.3s ease-in-out;
}

.fx-land-1-btn:hover .current {
    color: var(--fx-clr-pr-2);
}

.fx-land-1-btn .list li:is(.selected) {
    color: var(--fx-clr-pr-2);
}

/*
    land-btn-1-end
*/

/*
    button-button-end
*/

/*
    heading-paragraph-css-start
*/

.laa-heading-1 {
    font-family: var(--laa-h-font-1);
    color: var(--laa-clr-h1);
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 0px;
}

.laa-heading-1:is(.has-clr-white) {
    color: #fff;
}

.laa-para-1 {
    font-family: var(--laa-h-font-1);
    font-weight: 300;
    line-height: 28px;
    font-size: 18px;
    color: var(--laa-clr-p1);
    margin-bottom: 0px;
}

.laa-para-1:is(.has-clr-white) {
    color: #fff;
}

.laa-subtitle-1 {
    font-family: var(--laa-h-font-1);
    font-weight: 500;
    color: var(--laa-clr-h1);
    background: var(--laa-clr-pr-1);
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    border-radius: 4px;
    padding: 5px 12px;
    margin-bottom: 18px;
}

.laa-scn-title-1 {
    font-family: var(--laa-h-font-1);
    font-weight: 700;
    color: var(--laa-clr-h1);
    line-height: 1.09;
    font-size: 64px;
    margin-bottom: 0;
}

.laa-scn-title-1:is(.has-clr-white) {
    color: #fff;
}

.laa-scn-title-1 .pr-clr {
    color: var(--laa-clr-sd-1);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .laa-scn-title-1 {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .laa-scn-title-1 {
        font-size: 56px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-scn-title-1 {
        font-size: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .laa-scn-title-1 {
        font-size: 44px;
        letter-spacing: 0px;
    }
}

@media (max-width: 767px) {
    .laa-scn-title-1 {
        font-size: 30px;
        letter-spacing: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-scn-title-1 {
        font-size: 38px;
        letter-spacing: 0px;
    }
}

/*
    heading-paragraph-css-end
*/

/*
    laa-header-start
*/

.laa-header-1-top {
    background: var(--laa-clr-h1);
    border-radius: 0 0 15px 16px;
}

@media (max-width: 767px) {
    .laa-header-1-top {
        display: none;
    }
}

.laa-header-1-top-flex {
    gap: 20px;
    justify-content: space-between;
}

.laa-header-1-top-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-header-1-top-contact {
        flex-wrap: wrap;
    }
}

.laa-header-1-top-contact li {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    padding: 7px 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-header-1-top-contact li {
        padding: 7px 10px;
        border-color: transparent;
    }
}

.laa-header-1-top-contact li:nth-child(1) {
    border-left: 1px solid rgba(255, 255, 255, 0.24);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-header-1-top-contact li:nth-child(1) {
        border-color: transparent;
    }
}

.laa-header-1-top-contact li a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s var(--laa-cube-1);
}

.laa-header-1-top-contact li a:hover {
    color: var(--laa-clr-pr-1);
    transform: translateX(-3px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-header-1-top .laa-search-btn {
        display: none;
    }
}

.laa-header-1-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-header-1-main {
        padding: 15px 0;
    }
}

.laa-header-1-main-logo {
    display: inline-block;
    flex: 0 0 auto;
    max-width: 220px;
    width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-header-1-main-logo {
        max-width: 160px;
    }
}

.laa-header-1-main-action-link {
    gap: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-header-1-main-action-link .laa-pr-btn-1 {
        display: none;
    }
}

@media (max-width: 767px) {
    .laa-header-1-main-action-link .laa-pr-btn-1 {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-header-1-main-action-link .laa-pr-btn-1 {
        display: inline-flex;
    }
}

.laa-main-navigation .navbar-nav {
    display: inherit;
}

.laa-main-navigation .navbar-nav li {
    display: inline-block;
    position: relative;
}

.laa-main-navigation .navbar-nav li:not(:last-child) {
    margin-right: 27px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-main-navigation .navbar-nav li:not(:last-child) {
        margin-right: 15px;
    }
}

.laa-main-navigation .navbar-nav li:is(.dropdown)>a {
    padding-right: 17px;
}

.laa-main-navigation .navbar-nav li:is(.dropdown)>a::before {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    position: absolute;
    font-size: 12px;
    right: 0;
    top: 49%;
    transform: translateY(-50%);
    transition: 400ms ease-in-out;
}

.laa-main-navigation .navbar-nav li:is(.dropdown):hover>a::before {
    transform: translateY(-50%) rotate(360deg);
    content: "\f068";
}

.laa-main-navigation .navbar-nav li a {
    position: relative;
    z-index: 1;
    font-family: var(--laa-h-font-1);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    color: var(--laa-clr-h1);
    padding: 41px 0;
    display: inline-block;
    text-transform: capitalize;
    line-height: 1;
    transition: all 0.2s ease-in-out;
}

.laa-main-navigation .navbar-nav li a:is(.is-active) {
    color: var(--laa-clr-sd-1);
}

.laa-main-navigation .navbar-nav li a:is(.is-active)::before {
    transform: translateY(-50%) rotate(360deg);
    content: "\f068";
}

.laa-main-navigation .navbar-nav li:hover>a {
    color: var(--laa-clr-sd-1);
    transform: translateY(3px);
}

.laa-main-navigation .navbar-nav li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateZ(0);
}

.laa-main-navigation .navbar-nav li .dropdown-menu {
    left: 0;
    top: 100%;
    z-index: 100;
    margin: 0px;
    padding: 20px 0px;
    height: auto;
    min-width: 250px;
    display: block;
    border: none;
    border-top: 2px solid var(--laa-clr-sd-1);
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.05);
    border-radius: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 2px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) translateZ(0);
    transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-main-navigation .navbar-nav li .dropdown-menu {
        min-width: 200px;
    }
}

.laa-main-navigation .navbar-nav li .dropdown-menu li {
    display: block;
    margin: 0;
    position: relative;
}

.laa-main-navigation .navbar-nav li .dropdown-menu li a {
    width: 100%;
    display: block;
    padding: 10px 20px;
    font-size: 16px;
}

.laa-main-navigation .navbar-nav li .dropdown-menu li a:is(.is-active)::before {
    display: none;
}

.laa-main-navigation .navbar-nav li .dropdown-menu li:is(.dropdown)>a::before {
    right: 20px;
    top: 49%;
}

.laa-main-navigation .navbar-nav li .dropdown-menu li .dropdown-menu {
    top: 0;
    left: 100%;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) translateZ(0);
    transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.laa-main-navigation .navbar-nav li .dropdown-menu li:hover>a {
    transform: translateX(5px);
}

.laa-main-navigation .navbar-nav li .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateZ(0);
}

/*
    laa-header-end
*/

/*
    laa-hero-1-start
*/

.laa-hero-1-area {
    position: relative;
    z-index: 1;
}

.laa-hero-1-slider {
    overflow: hidden;
    border-radius: 20px;
}

.laa-hero-1-slider-item-bg {
    position: relative;
    z-index: 1;
    padding: 192px 0;
}

.laa-hero-1-slider-item-bg .item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.laa-hero-1-slider-item-bg .item-bg::after {
    content: "";
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(26, 45, 78) 35%, rgba(0, 212, 255, 0) 100%);
}

.laa-hero-1-slider-item-bg .item-bg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(26, 45, 78) 80%, rgba(0, 212, 255, 0) 100%);
    z-index: 1;
    transition: all 3s var(--laa-cube-1);
    opacity: 0.8;
}

.laa-hero-1-slider-item-bg .item-bg img {
    filter: blur(10px);
    transform: translateX(100px) scale(110%);
    transition: all 4s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-hero-1-slider-item-bg .bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}

.laa-hero-1-slider-item-content {
    max-width: 640px;
}

.laa-hero-1-slider-item-content .hero-title {
    color: #fff;
    margin-bottom: 28px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .laa-hero-1-slider-item-content .hero-title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-hero-1-slider-item-content .hero-title {
        font-size: 55px;
    }
}

.laa-hero-1-slider-item-content .hero-title .split-line {
    transform: translateX(100%);
    transition: all 1.5s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-hero-1-slider-item-content .hero-disc {
    color: #fff;
    margin-bottom: 32px;
    opacity: 88%;
}

.laa-hero-1-slider-item-content .heroslideright {
    transform: translateX(100%);
    transition: all 1.5s var(--laa-cube-1);
    transition-delay: 0.5s;
}

.laa-hero-1-slider-btn-wrap {
    text-align: right;
    margin-right: 422px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-hero-1-slider-btn-wrap {
        margin-right: 0px;
    }
}

.laa-hero-1-slider-btn {
    position: absolute;
    bottom: 4px;
    width: 100%;
    left: 0px;
    z-index: 1;
}

.laa-hero-1-slider-pagination {
    position: absolute;
    right: 44px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

@media (max-width: 767px) {
    .laa-hero-1-slider-pagination {
        display: none;
    }
}

.laa-hero-1-slider-pagination .laa-h-3-pagination {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: end;
    justify-content: center;
}

.laa-hero-1-slider-pagination .laa-h-3-pagination span {
    width: 12px;
    height: 2px;
    border-radius: 0px;
    margin: 0;
    padding: 0;
    opacity: 40%;
    background: #fff;
    transition: all 1s var(--laa-cube-1);
}

.laa-hero-1-slider-pagination .laa-h-3-pagination span:is(.swiper-pagination-bullet-active) {
    opacity: 100%;
    width: 36px;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-content .hero-title .split-line {
    transform: translateX(0%);
    transition-delay: 1s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-content .hero-title .split-line:nth-child(2) {
    transition-delay: 1.3s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-content .hero-title .split-line:nth-child(3) {
    transition-delay: 1.6s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item .heroslideright {
    transform: translateX(0%);
    transition-delay: 0.7s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item .heroslideright:nth-child(3) {
    transition-delay: 1.6s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item .heroslideright:nth-child(4) {
    transition-delay: 1.9s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-bg .item-bg::before {
    width: 0%;
    transition-delay: 0.5s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-bg .item-bg img {
    transform: translateX(0px) scale(100%);
    filter: blur(0);
    transition-delay: 0.5s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-bg .laa-ani-box-1,
.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-bg .laa-ani-box-2,
.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-bg .laa-ani-box-3,
.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-bg .laa-ani-box-4 {
    transform: rotateY(0deg);
    transform: rotateX(0deg);
    transition-delay: 1s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-bg .laa-ani-box-2 {
    transition-delay: 1.5s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-bg .laa-ani-box-3 {
    transition-delay: 2s;
}

.laa-hero-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-hero-1-slider-item-bg .laa-ani-box-4 {
    transition-delay: 2.5s;
}

.laa-hero-1-social {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75px;
    left: 50px;
    z-index: 1;
    gap: 12px;
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .laa-hero-1-social {
        left: 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),
(max-width: 767px) {
    .laa-hero-1-social {
        display: none;
    }
}

.laa-hero-1-social::after {
    content: "";
    width: 2px;
    height: 150%;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 22px;
    opacity: 12%;
}

.laa-hero-1-social-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    overflow: hidden;
    font-family: var(--laa-h-font-1);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}

.laa-hero-1-social-link .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.64);
    background: var(--laa-clr-h1);
    transition: all 0.5s var(--laa-cube-1);
    font-size: 16px;
}

.laa-hero-1-social-link .text {
    display: inline-block;
    overflow: hidden;
}

.laa-hero-1-social-link .text span {
    display: inline-block;
    transform: translateX(-125%);
    transition: all 0.5s var(--laa-cube-1);
}

.laa-hero-1-social-link:hover {
    color: #fff;
}

.laa-hero-1-social-link:hover .icon {
    border-color: #fff;
    color: #fff;
}

.laa-hero-1-social-link:hover .text span {
    transform: translateX(0%);
}

.laa-ani-box {
    perspective: 2000px;
    transform-style: preserve-3d;
}

.laa-ani-box-1 {
    transform: rotateY(90deg);
    transition: all 1s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-ani-box-2 {
    transform: rotateY(90deg);
    transition: all 1s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-ani-box-3 {
    transform: rotateY(90deg);
    transition: all 1s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-ani-box-4 {
    transform: rotateX(-90deg);
    transition: all 1s var(--laa-cube-1);
    transition-delay: 0s;
    transform-origin: bottom;
}

/*
    laa-hero-1-end
*/

/*
    laa-services-1-start
*/

.laa-services-1-wrap {
    max-width: 418px;
    margin-left: auto;
    z-index: 2;
}

.laa-services-1-slider {
    box-shadow: -12px 12px 64px 0 rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 2;
    clip-path: polygon(calc(100% - 0px) calc(50% - 218.5px), calc(100% - 0px) calc(50% - 218.5px), calc(100% - 0.261758px) calc(50% - 221.74410267px), calc(100% - 1.019584px) calc(50% - 224.82154496px), calc(100% - 2.232306px) calc(50% - 227.69114929px), calc(100% - 3.858752px) calc(50% - 230.31173808px), calc(100% - 5.85775px) calc(50% - 232.64213375px), calc(100% - 8.188128px) calc(50% - 234.64115872px), calc(100% - 10.808714px) calc(50% - 236.26763541px), calc(100% - 13.678336px) calc(50% - 237.48038624px), calc(100% - 16.755822px) calc(50% - 238.23823363px), calc(100% - 20px) calc(50% - 238.5px), 128.284px 0px, 128.284px 0px, 126.700429px 0.06275064px, 125.136592px 0.24914832px, 123.599203px 0.55641168px, 122.094976px 0.98175936px, 120.630625px 1.52241px, 119.212864px 2.17558224px, 117.848407px 2.93849472px, 116.543968px 3.80836608px, 115.306261px 4.78241496px, 114.142px 5.85786px, 5.85787px calc(50% - 124.358px), 5.85787px calc(50% - 124.358px), 4.78242225px calc(50% - 123.193739px), 3.8083712px calc(50% - 121.956032px), 2.93849815px calc(50% - 120.651593px), 2.1755844px calc(50% - 119.287136px), 1.52241125px calc(50% - 117.869375px), 0.98176px calc(50% - 116.405024px), 0.55641195px calc(50% - 114.900797px), 0.2491484px calc(50% - 113.363408px), 0.06275065px calc(50% - 111.799571px), 0px calc(50% - 110.216px), 0px calc(50% + 218.5px), 0px calc(50% + 218.5px), 0.26176664px calc(50% + 221.744178px), 1.01961472px calc(50% + 224.821664px), 2.23236648px calc(50% + 227.691286px), 3.85884416px calc(50% + 230.311872px), 5.85787px calc(50% + 232.64225px), 8.18826624px calc(50% + 234.641248px), 10.80885512px calc(50% + 236.267694px), 13.67845888px calc(50% + 237.480416px), 16.75589976px calc(50% + 238.238242px), 20px calc(50% + 238.5px), calc(100% - 20px) calc(100% - 0px), calc(100% - 20px) calc(100% - 0px), calc(100% - 16.755822px) calc(100% - 0.261758px), calc(100% - 13.678336px) calc(100% - 1.019584px), calc(100% - 10.808714px) calc(100% - 2.232306px), calc(100% - 8.188128px) calc(100% - 3.858752px), calc(100% - 5.85775px) calc(100% - 5.85775px), calc(100% - 3.858752px) calc(100% - 8.188128px), calc(100% - 2.232306px) calc(100% - 10.808714px), calc(100% - 1.019584px) calc(100% - 13.678336px), calc(100% - 0.261758px) calc(100% - 16.755822px), calc(100% - 0px) calc(100% - 20px), calc(100% - 0px) calc(50% - 218.5px));
}

.laa-services-1-slider-item {
    padding: 44px 44px;
    padding-bottom: 36px;
}

@media (max-width: 767px) {
    .laa-services-1-slider-item {
        padding: 44px 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-services-1-slider-item {
        padding: 44px 44px;
    }
}

.laa-services-1-slider-item .text-right {
    text-align: right;
}

.laa-services-1-slider-item .item-btn {
    display: inline-block;
}

.laa-services-1-slider-item .item-subtitle {
    font-size: 16px;
    color: var(--laa-clr-sd-1);
    margin-bottom: 28px;
}

.laa-services-1-slider-item .item-title {
    font-size: 32px;
    line-height: 1.25;
    transition: all 0.5s var(--laa-cube-1);
    margin-bottom: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .laa-services-1-slider-item .item-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .laa-services-1-slider-item .item-title {
        font-size: 22px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-services-1-slider-item .item-title {
        font-size: 26px;
    }
}

.laa-services-1-slider-item .item-title a {
    transition: all 0.5s var(--laa-cube-1);
}

.laa-services-1-slider-item .item-title span {
    color: var(--laa-clr-sd-1);
}

.laa-services-1-slider-item .item-title:hover {
    transform: translateX(3px);
    color: var(--laa-clr-sd-1);
}

.laa-services-1-slider-item .item-line {
    height: 1px;
    background: rgba(26, 45, 78, 0.12);
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.laa-services-1-slider-item .item-line::after {
    content: "";
    width: 21px;
    height: 3px;
    position: absolute;
    right: 34px;
    top: -1px;
    background: var(--laa-clr-h1);
    opacity: 100%;
}

.laa-services-1-slider-item .content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.laa-services-1-slider-item .content-wrap .item-disc {
    font-size: 16px;
    opacity: 80%;
}

.laa-services-1-slider-item .item-counter {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -1px;
    font-weight: 400;
}

.laa-services-1-slider-item .item-counter span {
    opacity: 56%;
}

.laa-services-1-slider-item .item-counter span:nth-child(1) {
    opacity: 100%;
    font-size: 18px;
    font-weight: 600;
}

.laa-services-1-slider-item .item-fadeup {
    transform: translateY(30%);
    display: block;
    opacity: 0;
    transition: all 1s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-services-1-slider-item .laa-progress-btn-circle circle:nth-child(2) {
    transition: all 5.5s linear;
    transition-delay: 0s;
}

.laa-services-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-1-slider-item .item-fadeup {
    transform: translateY(0);
    opacity: 1;
}

.laa-services-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-1-slider-item .item-fadeup:nth-child(1) {
    transition-delay: 0.5s;
}

.laa-services-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-1-slider-item .item-fadeup:nth-child(2) {
    transition-delay: 0.7s;
}

.laa-services-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-1-slider-item .item-fadeup:nth-child(3) {
    transition-delay: 0.9s;
}

.laa-services-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-1-slider-item .item-fadeup:nth-child(5) {
    transition-delay: 1s;
}

.laa-services-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-1-slider-item .laa-progress-btn-circle circle:nth-child(2) {
    stroke-dashoffset: 0px;
    transition-delay: 0.5s;
}

.laa-services-1-shape {
    position: absolute;
    left: 100%;
    top: 200px;
}

/*
    laa-services-1-end
*/

/*
    laa-services-2-start
*/

.laa-services-2-wrap .laa-left-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-services-2-wrap .laa-left-btn {
        top: 33%;
    }
}

.laa-services-2-wrap .laa-right-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-services-2-wrap .laa-right-btn {
        top: 33%;
    }
}

.laa-services-2-slider {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .laa-services-2-slider {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.laa-services-2-slider-item {
    padding-top: 270px;
    padding-bottom: 265px;
    border-radius: 20px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .laa-services-2-slider-item {
        padding-left: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-services-2-slider-item {
        padding-left: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-services-2-slider-item {
        padding-top: 100px;
        padding-bottom: 150px;
    }
}

.laa-services-2-slider-item::after {
    content: "";
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(26, 45, 78) 35%, rgba(0, 212, 255, 0) 100%);
    z-index: -1;
    opacity: 90%;
}

.laa-services-2-slider-item .item-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.laa-services-2-slider-item .item-bg img {
    filter: blur(5px);
    transform: translateX(100px) scale(110%);
    transition: all 4s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-services-2-slider-item .item-title {
    font-size: 45px;
    color: #fff;
    line-height: 1.177;
    max-width: 510px;
    overflow: hidden;
}

.laa-services-2-slider-item .item-title .split-line {
    transform: translateX(100%);
    transition: all 1.5s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-services-2-slider-item .item-title .clr-pr {
    color: var(--laa-clr-sd-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .laa-services-2-slider-item .item-title {
        font-size: 35px;
        max-width: 399px;
    }
}

@media (max-width: 767px) {
    .laa-services-2-slider-item .item-title {
        font-size: 30px;
    }
}

.laa-services-2-slider-item .item-subtitle {
    font-size: 16px;
    color: var(--laa-clr-pr-1);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 27px;
}

.laa-services-2-slider-item .item-ani-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-2-slider-item .laa-ani-box-1,
.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-2-slider-item .laa-ani-box-2,
.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-2-slider-item .laa-ani-box-3,
.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-2-slider-item .laa-ani-box-4 {
    transform: rotateY(0deg);
    transform: rotateX(0deg);
    transition-delay: 1s;
}

.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-2-slider-item .laa-ani-box-2 {
    transition-delay: 1.5s;
}

.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-2-slider-item .laa-ani-box-3 {
    transition-delay: 2s;
}

.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-2-slider-item .laa-ani-box-4 {
    transition-delay: 2.5s;
}

.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .split-line {
    transform: translateX(0%);
    transition-delay: 1s;
}

.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .split-line:nth-child(2) {
    transition-delay: 1.3s;
}

.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .split-line:nth-child(3) {
    transition-delay: 1.6s;
}

.laa-services-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .laa-services-2-slider-item .item-bg img {
    transform: translateX(0px) scale(100%);
    filter: blur(0);
    transition-delay: 0.5s;
}

.laa-services-2-form {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-services-2-form {
        position: unset;
        transform: unset;
        padding-top: 50px;
    }
}

@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) {
    .laa-services-2-form .laa-form-1-box {
        margin-right: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-services-2-form .laa-form-1-box {
        margin-left: 0px;
    }
}

/*
    laa-services-2-end
*/

/*
    laa-client-css-start
*/

.laa-client-1-wrap {
    max-width: 868px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .laa-client-1-wrap {
        max-width: 674px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-client-1-wrap {
        max-width: 504px;
    }
}

.laa-client-1-title {
    font-size: 18px;
    font-weight: 500;
    opacity: 80%;
    margin-bottom: 32px;
}

.laa-client-1-slider {
    padding: 0 70px;
}

.laa-client-1-slider-item {
    position: relative;
    z-index: 1;
}

.laa-client-1-slider-item img {
    transition: all 1s var(--laa-cube-1);
    opacity: 84%;
}

.laa-client-1-slider-item img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.laa-client-1-slider-item:hover img {
    opacity: 100%;
}

.laa-client-1-slider-item:hover img:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.laa-client-1-slider-btn .laa-left-btn-2 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.laa-client-1-slider-btn .laa-right-btn-2 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

/*
    laa-client-css-end
*/

/*
    laa-about-start
*/

.laa-about-1-area {
    padding-top: 300px;
    padding-bottom: 205px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-about-1-area {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.laa-about-1-scn-title .laa-para-1 {
    font-weight: 400;
}

.laa-about-1-content {
    max-width: 800px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-about-1-content {
        max-width: 600px;
    }
}

.laa-about-1-feature {
    max-width: 458px;
    margin-bottom: 48px;
}

.laa-about-1-feature-item {
    display: flex;
    align-items: center;
    gap: 28px;
}

.laa-about-1-feature-item:not(:last-child) {
    margin-bottom: 40px;
}

.laa-about-1-feature-item .item-icon {
    max-width: 90px;
    flex: 0 0 auto;
    width: 100%;
    transition: all 1s var(--laa-cube-1);
}

.laa-about-1-feature-item .item-disc {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

@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),
(max-width: 767px) {
    .laa-about-1-feature-item .item-disc {
        font-size: 18px;
    }
}

.laa-about-1-feature-item:hover .item-icon {
    transform: rotate(-10deg);
}

.laa-about-1-ship-box {
    text-align: right;
    position: absolute;
    right: 0;
    top: 100px;
    z-index: -1;
    width: 40%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-about-1-ship-box {
        top: 260px;
        width: 33%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-about-1-ship-box {
        display: none;
    }
}

.laa-about-1-ship-box-cirle {
    text-align: right;
}

.laa-about-1-ship-box-ship {
    width: 100%;
    position: absolute;
    right: 18%;
    bottom: -90px;
}

@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),
(max-width: 767px) {
    .laa-about-1-ship-box-ship {
        bottom: 40px;
    }
}

.laa-about-1-bg-shape {
    width: 46%;
    position: absolute;
    right: 0%;
    top: 1%;
    z-index: -2;
}

.laa-about-1-ani-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.laa-about-1-ani-shape-svg {
    margin-left: 70px;
}

/*
    laa-about-end
*/

/*
    laa-counter-1-start
*/

.laa-counter-1-wrap {
    border: 1px solid #fff;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .laa-counter-1-wrap {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        border: none;
    }
}

@media (max-width: 767px) {
    .laa-counter-1-wrap {
        grid-template-columns: 1fr 1fr;
        border: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-counter-1-wrap {
        grid-template-columns: 1fr 1fr 1fr;
        border: none;
    }
}

.laa-counter-1-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding: 45px 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-counter-1-item {
        border-radius: 12px;
        border: 1px solid #fff;
    }
}

@media (min-width: 1800px),
only screen and (min-width: 1600px) and (max-width: 1799px),
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) {
    .laa-counter-1-item:not(:last-child) {
        border-right: 1px solid #fff;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-counter-1-item {
        border-right: 1px solid #fff;
        border-left: 1px solid #fff;
    }
}

.laa-counter-1-item .item-icon {
    max-width: 64px;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-counter-1-item .item-title {
    font-size: 45px;
    line-height: 1;
    opacity: 72%;
    margin-bottom: 8px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .laa-counter-1-item .item-title {
        font-size: 38px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-counter-1-item .item-title {
        font-size: 36px;
    }
}

.laa-counter-1-item .item-disc {
    opacity: 72%;
    font-weight: 400;
}

.laa-counter-1-item:hover .item-icon {
    transform: translateY(7px);
}

/*
    laa-counter-1-end
*/

/*
    laa-form-start
*/

.laa-form-1 {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 40px;
    border-radius: 20px;
    box-shadow: -12px 12px 64px 0 rgba(0, 0, 0, 0.12);
    padding-top: 75px;
    clip-path: polygon(calc(100% - 90.142px) 5.85786px, calc(100% - 90.142px) 5.85786px, calc(100% - 91.306261px) 4.78241496px, calc(100% - 92.543968px) 3.80836608px, calc(100% - 93.848407px) 2.93849472px, calc(100% - 95.212864px) 2.17558224px, calc(100% - 96.630625px) 1.52241px, calc(100% - 98.094976px) 0.98175936px, calc(100% - 99.599203px) 0.55641168px, calc(100% - 101.136592px) 0.24914832px, calc(100% - 102.700429px) 0.06275064px, calc(100% - 104.284px) 0px, 20px 0px, 20px 0px, 16.75589733px 0.2617661px, 13.67845504px 1.0196128px, 10.80885071px 2.2323627px, 8.18826192px 3.8588384px, 5.85786625px 5.8578625px, 3.85884128px 8.1882576px, 2.23236459px 10.8088463px, 1.01961376px 13.6784512px, 0.26176637px 16.7558949px, 0px 20px, 0px calc(100% - 20px), 0px calc(100% - 20px), 0.26176637px calc(100% - 16.755822px), 1.01961376px calc(100% - 13.678336px), 2.23236459px calc(100% - 10.808714px), 3.85884128px calc(100% - 8.188128px), 5.85786625px calc(100% - 5.85775px), 8.18826192px calc(100% - 3.858752px), 10.80885071px calc(100% - 2.232306px), 13.67845504px calc(100% - 1.019584px), 16.75589733px calc(100% - 0.261758px), 20px calc(100% - 0px), calc(100% - 20px) calc(100% - 0px), calc(100% - 20px) calc(100% - 0px), calc(100% - 16.755822px) calc(100% - 0.261758px), calc(100% - 13.678336px) calc(100% - 1.019584px), calc(100% - 10.808714px) calc(100% - 2.232306px), calc(100% - 8.188128px) calc(100% - 3.858752px), calc(100% - 5.85775px) calc(100% - 5.85775px), calc(100% - 3.858752px) calc(100% - 8.188128px), calc(100% - 2.232306px) calc(100% - 10.808714px), calc(100% - 1.019584px) calc(100% - 13.678336px), calc(100% - 0.261758px) calc(100% - 16.755822px), calc(100% - 0px) calc(100% - 20px), calc(100% - 0px) 104.284px, calc(100% - 0px) 104.284px, calc(100% - 0.062747px) 102.7004021px, calc(100% - 0.249136px) 101.1365448px, calc(100% - 0.556389px) 99.5991427px, calc(100% - 0.981728px) 98.0949104px, calc(100% - 1.522375px) 96.6305625px, calc(100% - 2.175552px) 95.2128136px, calc(100% - 2.938481px) 93.8483783px, calc(100% - 3.808384px) 92.5439712px, calc(100% - 4.782483px) 91.3063069px, calc(100% - 5.858px) 90.1421px, calc(100% - 90.142px) 5.85786px);
}

.laa-form-1-box {
    max-width: 385px;
    position: relative;
    z-index: 1;
}

.laa-form-1-box::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 8px;
    left: -8px;
    z-index: -1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -12px 12px 64px 0 rgba(0, 0, 0, 0.12);
    clip-path: polygon(calc(100% - 90.142px) 5.85786px, calc(100% - 90.142px) 5.85786px, calc(100% - 91.306261px) 4.78241496px, calc(100% - 92.543968px) 3.80836608px, calc(100% - 93.848407px) 2.93849472px, calc(100% - 95.212864px) 2.17558224px, calc(100% - 96.630625px) 1.52241px, calc(100% - 98.094976px) 0.98175936px, calc(100% - 99.599203px) 0.55641168px, calc(100% - 101.136592px) 0.24914832px, calc(100% - 102.700429px) 0.06275064px, calc(100% - 104.284px) 0px, 20px 0px, 20px 0px, 16.75589733px 0.2617661px, 13.67845504px 1.0196128px, 10.80885071px 2.2323627px, 8.18826192px 3.8588384px, 5.85786625px 5.8578625px, 3.85884128px 8.1882576px, 2.23236459px 10.8088463px, 1.01961376px 13.6784512px, 0.26176637px 16.7558949px, 0px 20px, 0px calc(100% - 20px), 0px calc(100% - 20px), 0.26176637px calc(100% - 16.755822px), 1.01961376px calc(100% - 13.678336px), 2.23236459px calc(100% - 10.808714px), 3.85884128px calc(100% - 8.188128px), 5.85786625px calc(100% - 5.85775px), 8.18826192px calc(100% - 3.858752px), 10.80885071px calc(100% - 2.232306px), 13.67845504px calc(100% - 1.019584px), 16.75589733px calc(100% - 0.261758px), 20px calc(100% - 0px), calc(100% - 20px) calc(100% - 0px), calc(100% - 20px) calc(100% - 0px), calc(100% - 16.755822px) calc(100% - 0.261758px), calc(100% - 13.678336px) calc(100% - 1.019584px), calc(100% - 10.808714px) calc(100% - 2.232306px), calc(100% - 8.188128px) calc(100% - 3.858752px), calc(100% - 5.85775px) calc(100% - 5.85775px), calc(100% - 3.858752px) calc(100% - 8.188128px), calc(100% - 2.232306px) calc(100% - 10.808714px), calc(100% - 1.019584px) calc(100% - 13.678336px), calc(100% - 0.261758px) calc(100% - 16.755822px), calc(100% - 0px) calc(100% - 20px), calc(100% - 0px) 104.284px, calc(100% - 0px) 104.284px, calc(100% - 0.062747px) 102.7004021px, calc(100% - 0.249136px) 101.1365448px, calc(100% - 0.556389px) 99.5991427px, calc(100% - 0.981728px) 98.0949104px, calc(100% - 1.522375px) 96.6305625px, calc(100% - 2.175552px) 95.2128136px, calc(100% - 2.938481px) 93.8483783px, calc(100% - 3.808384px) 92.5439712px, calc(100% - 4.782483px) 91.3063069px, calc(100% - 5.858px) 90.1421px, calc(100% - 90.142px) 5.85786px);
}

@media (max-width: 767px) {
    .laa-form-1 {
        padding: 40px 20px;
        padding-top: 75px;
    }
}

.laa-form-1 .title-line {
    height: 1px;
    background: rgba(26, 45, 78, 0.12);
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.laa-form-1 .title-line::after {
    content: "";
    width: 40px;
    height: 3px;
    position: absolute;
    left: 24px;
    top: -1px;
    background: var(--laa-clr-h1);
    opacity: 100%;
}

.laa-form-1-title {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 38px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-form-1-title {
        font-size: 24px;
    }
}

.laa-form-1-input-box:not(:last-child) {
    margin-bottom: 28px;
}

.laa-form-1-input-box:focus-within .laa-form-1-label {
    color: var(--laa-clr-sd-1);
    opacity: 1;
}

.laa-form-1-label {
    font-family: var(--laa-h-font-1);
    text-transform: capitalize;
    font-weight: 500;
    opacity: 72%;
    color: var(--laa-clr-h1);
    font-size: 14px;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-form-1-input {
    font-family: var(--laa-h-font-1);
    display: block;
    width: 100%;
    height: 44px;
    outline: none;
    margin: 0;
    padding: 0px 20px;
    border-radius: 8px;
    border: 1px solid rgba(26, 45, 78, 0.2);
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--laa-clr-h1);
    transition: all 0.5s var(--laa-cube-1);
}

.laa-form-1-input::placeholder {
    font-family: var(--laa-h-font-1);
    font-size: 16px;
    font-weight: 500;
    color: var(--laa-clr-h1);
}

.laa-form-1-input:hover {
    border-color: rgba(26, 45, 78, 0.5);
}

.laa-form-1 textarea {
    padding-top: 9px;
    padding-bottom: 9px;
    height: 100px;
}

.laa-form-1-input-services {
    font-family: var(--laa-h-font-1);
    display: block;
    width: 100%;
    height: 44px;
    outline: none;
    margin: 0;
    padding: 0px 20px;
    border-radius: 8px;
    border: 1px solid rgba(26, 45, 78, 0.2);
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--laa-clr-h1);
    transition: all 0.5s var(--laa-cube-1);
}

.laa-form-1-input-services::after {
    width: 10px;
    height: 11px;
    border-color: var(--laa-clr-sd-1);
    right: 24px;
    margin-top: -8px;
}

.laa-form-1-input-services .current {
    transition: all 0.3s ease-in-out;
}

.laa-form-1-input-services:hover {
    border-color: rgba(26, 45, 78, 0.5);
}

.laa-form-1-input-services:hover .current {
    color: var(--laa-clr-h1);
}

.laa-form-1-input-services .list {
    height: 127px;
    overflow: scroll;
}

.laa-form-1-input-services .list::-webkit-scrollbar {
    width: 2px;
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.laa-form-1-input-services .list::-webkit-scrollbar-track {
    background: transparent;
    box-shadow: none;
    border: none;
}

.laa-form-1-input-services .list::-webkit-scrollbar-thumb {
    background: var(--laa-clr-sd-1);
    border-radius: 30px;
}

.laa-form-1-input-services .list li:is(.selected) {
    color: var(--laa-clr-sd-1);
}

/*
    laa-form-end
*/

/*
    laa-blog-1-start
*/

.laa-blog-1-bg {
    width: 30%;
    position: absolute;
    right: 14%;
    top: 9%;
    z-index: -1;
}

.laa-blog-1-ani-shape {
    position: absolute;
    right: 4%;
    top: 0;
    z-index: -1;
}

.laa-blog-1-fillter-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.laa-blog-1-fillter-btn button {
    padding: 0;
    margin: 0;
    display: flex;
    flex: 0 0 auto;
    border: none;
    outline: none;
    font-family: var(--laa-h-font-1);
    transition: all 0.5s var(--laa-cube-1);
    background: transparent;
}

.laa-blog-1-fillter-btn button .text {
    display: inline-block;
    font-family: var(--laa-h-font-1);
    background: #fff;
    border-radius: 17px;
    padding: 14px 30px;
    text-transform: capitalize;
    font-size: 17px;
    line-height: 28px;
    font-weight: 600;
    color: rgba(26, 45, 78, 0.64);
    position: relative;
    z-index: 1;
    transition: all 0.5s var(--laa-cube-1);
}

@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),
(max-width: 767px) {
    .laa-blog-1-fillter-btn button .text {
        padding: 10px 16px;
    }
}

.laa-blog-1-fillter-btn button .icon {
    display: flex;
    width: 56px;
    height: 100%;
    background: var(--laa-clr-sd-1);
    flex: 0 0 auto;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.5s var(--laa-cube-1);
    margin-left: -56px;
    opacity: 0;
}

@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),
(max-width: 767px) {
    .laa-blog-1-fillter-btn button .icon {
        width: 45px;
    }
}

.laa-blog-1-fillter-btn button:hover .text {
    background-color: var(--laa-clr-h1);
    color: #fff;
}

.laa-blog-1-fillter-btn button:is(.is-checked) .text {
    background-color: var(--laa-clr-h1);
    color: #fff;
}

.laa-blog-1-fillter-btn button:is(.is-checked) .icon {
    opacity: 1;
    margin-left: 0;
}

.laa-blog-1-fillter-item {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 32px;
}

.laa-blog-1-fillter-item .grid-sizer {
    width: 25%;
}

.laa-blog-1-fillter-item .grid-size-25 {
    display: inline-block;
    width: 25%;
    padding: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .laa-blog-1-fillter-item .grid-size-25 {
        width: 49.5%;
    }
}

@media (max-width: 767px) {
    .laa-blog-1-fillter-item .grid-size-25 {
        width: 100%;
    }
}

.laa-blog-1-fillter-item .grid-size-50 {
    display: inline-block;
    width: 50%;
    padding: 16px;
}

@media (max-width: 767px) {
    .laa-blog-1-fillter-item .grid-size-50 {
        width: 100%;
    }
}

.laa-blog-1-fillter-item-single {
    max-width: 100%;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    padding-bottom: 50px;
}

.laa-blog-1-fillter-item-single .item-img {
    height: 204px;
    overflow: hidden;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-blog-1-fillter-item-single .item-img img {
    transition: all 0.5s var(--laa-cube-1);
    transform-origin: top;
}

.laa-blog-1-fillter-item-single .item-date {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -12px 12px 64px 0 rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    line-height: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    gap: 5px;
    padding: 13px 19px;
    transform: translateY(-40px);
    margin-bottom: -5px;
}

.laa-blog-1-fillter-item-single .item-date::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: -1;
}

.laa-blog-1-fillter-item-single .item-date span:nth-child(1) {
    font-size: 32px;
    color: var(--laa-clr-pr-1);
}

.laa-blog-1-fillter-item-single .item-date span:nth-child(2) {
    font-size: 13px;
    color: var(--laa-clr-h1);
    opacity: 72%;
}

.laa-blog-1-fillter-item-single .item-subtitle {
    font-size: 14px;
    line-height: 24px;
    padding-left: 14px;
    color: var(--laa-clr-sd-1);
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.laa-blog-1-fillter-item-single .item-subtitle::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--laa-clr-sd-1);
    position: absolute;
    top: 9px;
    left: 0;
}

.laa-blog-1-fillter-item-single .content {
    padding: 0 32px;
}

@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),
(max-width: 767px) {
    .laa-blog-1-fillter-item-single .content {
        padding: 0 15px;
    }
}

.laa-blog-1-fillter-item-single .item-title {
    font-size: 20px;
    line-height: 1.5;
    transition: all 0.5s var(--laa-cube-1);
}

@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),
(max-width: 767px) {
    .laa-blog-1-fillter-item-single .item-title {
        font-size: 18px;
    }
}

.laa-blog-1-fillter-item-single .item-title span {
    display: inline-block;
    color: var(--laa-clr-sd-1);
}

.laa-blog-1-fillter-item-single .item-title a {
    transition: all 0.5s var(--laa-cube-1);
}

.laa-blog-1-fillter-item-single .item-title:hover {
    color: var(--laa-clr-sd-1);
    transform: translateX(3px);
}

.laa-blog-1-fillter-item-single:hover .item-img img {
    transform: scale(105%);
}

.laa-blog-1-fillter-item-single:is(.has-style-2) {
    position: relative;
    z-index: 1;
    padding: 48px 56px;
}

@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),
(max-width: 767px) {
    .laa-blog-1-fillter-item-single:is(.has-style-2) {
        padding: 48px 20px;
    }
}

.laa-blog-1-fillter-item-single:is(.has-style-2)::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgb(26, 45, 78) 0%, rgba(0, 212, 255, 0) 100%);
}

.laa-blog-1-fillter-item-single:is(.has-style-2) .item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.laa-blog-1-fillter-item-single:is(.has-style-2) .item-date {
    transform: translateY(0px);
    margin-bottom: 170px;
}

.laa-blog-1-fillter-item-single:is(.has-style-2) .item-subtitle {
    color: var(--laa-clr-pr-1);
}

.laa-blog-1-fillter-item-single:is(.has-style-2) .item-subtitle::after {
    background: var(--laa-clr-pr-1);
}

.laa-blog-1-fillter-item-single:is(.has-style-2) .item-title {
    font-size: 28px;
    line-height: 1.28;
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-blog-1-fillter-item-single:is(.has-style-2) .item-title {
        font-size: 22px;
    }
}

.laa-blog-1-fillter-item-single:is(.has-style-2) .item-title span {
    color: var(--laa-clr-pr-1);
}

.laa-blog-1-fillter-item-single:is(.has-style-2) .item-title:hover:hover {
    color: var(--laa-clr-pr-1);
}

.laa-blog-1-fillter-item-single:is(.has-style-2) .content {
    padding: 0;
    position: relative;
    z-index: 1;
}

/*
    laa-blog-1-end
*/

/*
    laa-animate-1-start
*/

.laa-animate-1-wrap {
    padding: 0 20px;
    padding-top: 160px;
}

.laa-animate-1-bg-shape {
    position: absolute;
    left: 4%;
    bottom: 0;
    z-index: -1;
}

.laa-animate-1-plane {
    width: 31%;
    position: absolute;
    top: 27%;
    right: 35%;
    z-index: 1;
}

.laa-animate-1-cloud-1 {
    width: 27%;
    position: absolute;
    right: 10%;
    bottom: 0;
}

.laa-animate-1-cloud-3 {
    width: 22%;
    position: absolute;
    bottom: 0;
    left: 13%;
}

.laa-animate-1-cloud-2 {
    width: 51%;
    position: absolute;
    right: 3%;
    top: 6%;
    z-index: 2;
}

/*
    laa-animate-1-end
*/

/*
    text-slide-1-start
*/

.laa-slide-text-1-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
}

.laa-slide-text-1-item {
    font-size: 64px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 0 0 auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .laa-slide-text-1-item {
        font-size: 60px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-slide-text-1-item {
        font-size: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-slide-text-1-item {
        font-size: 40px;
    }
}

.laa-slide-text-1-item .icon {
    transition: all 0.5s var(--laa-cube-1);
}

.laa-slide-text-1-item:hover .icon {
    transform: scale(1.3);
}

/*
    text-slide-1-end
*/

/*
    laa-feature-1-start
*/

.laa-features-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 48px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-features-1-wrap {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .laa-features-1-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .laa-features-1-wrap {
        grid-template-columns: 1fr;
    }
}

.laa-features-1-item {
    padding: 48px 48px;
    border-radius: 16px;
    box-sizing: border-box;
    background: radial-gradient(circle at 100% 100%, #1a2d4e 0, #1a2d4e 15px, transparent 15px) 0% 0%/16px 16px no-repeat, radial-gradient(circle at 0 100%, #1a2d4e 0, #1a2d4e 15px, transparent 15px) 100% 0%/16px 16px no-repeat, radial-gradient(circle at 100% 0, #1a2d4e 0, #1a2d4e 15px, transparent 15px) 0% 100%/16px 16px no-repeat, radial-gradient(circle at 0 0, #1a2d4e 0, #1a2d4e 15px, transparent 15px) 100% 100%/16px 16px no-repeat, linear-gradient(#1a2d4e, #1a2d4e) 50% 50%/calc(100% - 2px) calc(100% - 32px) no-repeat, linear-gradient(#1a2d4e, #1a2d4e) 50% 50%/calc(100% - 32px) calc(100% - 2px) no-repeat, linear-gradient(transparent 0%, rgba(39, 170, 226, 0.4) 100%);
    transition: all 0.5s var(--laa-cube-1);
}

@media only screen and (min-width: 1600px) and (max-width: 1799px),
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),
(max-width: 767px) {
    .laa-features-1-item {
        padding: 48px 20px;
    }
}

.laa-features-1-item .item-icon {
    max-width: 78px;
    height: 78px;
    margin-bottom: 35px;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-features-1-item .item-title {
    font-size: 23px;
    color: #fff;
    transition: all 0.5s var(--laa-cube-1);
    margin-bottom: 26px;
}

@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),
(max-width: 767px) {
    .laa-features-1-item .item-title {
        font-size: 20px;
    }
}

.laa-features-1-item .item-title a {
    transition: all 0.5s var(--laa-cube-1);
}

.laa-features-1-item .item-title:hover {
    color: var(--laa-clr-sd-1);
    transform: translateX(3px);
}

.laa-features-1-item .item-disc {
    color: #fff;
    opacity: 72%;
}

.laa-features-1-item:hover {
    background: radial-gradient(circle at 100% 100%, #1a2d4e 0, #1a2d4e 15px, transparent 15px) 0% 0%/16px 16px no-repeat, radial-gradient(circle at 0 100%, #1a2d4e 0, #1a2d4e 15px, transparent 15px) 100% 0%/16px 16px no-repeat, radial-gradient(circle at 100% 0, #1a2d4e 0, #1a2d4e 15px, transparent 15px) 0% 100%/16px 16px no-repeat, radial-gradient(circle at 0 0, #1a2d4e 0, #1a2d4e 15px, transparent 15px) 100% 100%/16px 16px no-repeat, linear-gradient(#1a2d4e, #1a2d4e) 50% 50%/calc(100% - 2px) calc(100% - 32px) no-repeat, linear-gradient(#1a2d4e, #1a2d4e) 50% 50%/calc(100% - 32px) calc(100% - 2px) no-repeat, linear-gradient(1deg, transparent 0%, rgba(39, 170, 226, 0.4) 100%);
}

.laa-features-1-item:hover .item-icon {
    transform: rotate(15deg);
}

.laa-features-1-video {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
}

.laa-features-1-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1s var(--laa-cube-1);
}

.laa-features-1-video-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.laa-features-1-video:hover video {
    transform: scale(110%);
}

.laa-features-1-slider {
    overflow: hidden;
    border-radius: 16px;
}

.laa-features-1-slider-item {
    height: 100%;
}

.laa-features-1-slider .swiper-container {
    height: 100%;
}

.laa-features-1-slider .swiper-container .swiper-wrapper {
    height: 100%;
}

.laa-features-1-slider-btn {
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
}

.laa-features-1-slider-btn div svg {
    opacity: 100%;
}

.laa-features-1-slider-btn div svg path {
    stroke: #fff;
}

.laa-features-1-slider-btn div .line {
    top: 50%;
}

.laa-features-1-slider-btn div:hover svg path {
    stroke: var(--laa-clr-sd-1);
}

/*
    laa-feature-1-end
*/

/*
    laa-testimonial-1-start
*/

.laa-testimonial-1-bg {
    width: 70%;
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.laa-testimonial-1-shape {
    position: absolute;
    top: 0;
    left: 4%;
    z-index: -1;
}

@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),
(max-width: 767px) {
    .laa-testimonial-1-shape {
        left: 3%;
    }
}

.laa-testimonial-1-shape-2 {
    position: absolute;
    right: 3%;
    top: 100%;
    z-index: -1;
}

@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),
(max-width: 767px) {
    .laa-testimonial-1-shape-2 {
        right: 3%;
    }
}

.laa-testimonial-1-scn-title {
    max-width: 780px;
}

.laa-testimonial-1-wrap {
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-testimonial-1-wrap {
        grid-template-columns: 1fr;
    }
}

.laa-testimonial-1-wrap .qoute-icon {
    position: absolute;
    right: -220px;
    top: -115px;
    z-index: -1;
    color: #fff;
    line-height: 1;
    font-size: 250px;
}

@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) {
    .laa-testimonial-1-wrap .qoute-icon {
        right: 0;
        top: -85px;
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .laa-testimonial-1-wrap .qoute-icon {
        display: none;
    }
}

.laa-testimonial-1-slider {
    display: grid;
}

.laa-testimonial-1-slider-item {
    background: #fff;
    border-radius: 12px;
    padding: 45px 48px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-testimonial-1-slider-item {
        padding: 45px 25px;
    }
}

.laa-testimonial-1-slider-item .item-star {
    font-size: 16px;
    color: var(--laa-clr-sd-1);
    gap: 8px;
    margin-bottom: 32px;
}

.laa-testimonial-1-slider-item .item-star i {
    opacity: 0;
    transition: all 0.5s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-testimonial-1-slider-item .item-comment {
    font-size: 23px;
    line-height: 1.52;
    margin-bottom: 31px;
    font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-testimonial-1-slider-item .item-comment {
        font-size: 20px;
    }
}

.laa-testimonial-1-slider-item .item-dot {
    display: flex;
    gap: 10px;
    margin-bottom: 34px;
}

.laa-testimonial-1-slider-item .item-dot span {
    display: inline-block;
    background: var(--laa-clr-pr-1);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0;
    transition: all 1s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-testimonial-1-slider-item .author-name {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.laa-testimonial-1-slider-item .author-disc {
    font-size: 15px;
    opacity: 64%;
    line-height: 1.3;
    font-weight: 400;
}

.laa-testimonial-1-slider-item .item-slide-down {
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-testimonial-1-slider .swiper-container {
    margin-left: unset;
    margin-right: unset;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-star i {
    opacity: 1;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-star i:nth-child(1) {
    transition-delay: 0.5s;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-star i:nth-child(2) {
    transition-delay: 0.6s;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-star i:nth-child(3) {
    transition-delay: 0.7s;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-star i:nth-child(4) {
    transition-delay: 0.8s;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-star i:nth-child(5) {
    transition-delay: 0.9s;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-dot span {
    opacity: 1;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-dot span:nth-child(1) {
    transition-delay: 0.5s;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-dot span:nth-child(2) {
    transition-delay: 1.6s;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-dot span:nth-child(3) {
    transition-delay: 2.7s;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-slide-down {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 0.7s;
}

.laa-testimonial-1-slider .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-item .item-slide-down:nth-child(5) {
    transition-delay: 1s;
}

.laa-testimonial-1-slider-img {
    display: grid;
}

.laa-testimonial-1-slider-img-item {
    height: 565px;
    border-radius: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-testimonial-1-slider-img-item {
        height: 365px;
    }
}

.laa-testimonial-1-slider-img-item img {
    filter: blur(5px);
    transition: all 1s var(--laa-cube-1);
}

.laa-testimonial-1-slider-img .swiper-container {
    margin-left: unset;
    margin-right: unset;
}

.laa-testimonial-1-slider-img .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-img-item img {
    filter: blur(0);
    transition-delay: 0.7s;
}

.laa-testimonial-1-slider-img-btn {
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}

.laa-testimonial-1-slider-img-btn div {
    background: rgba(255, 255, 255, 0.2);
}

.laa-testimonial-1-slider-img-btn div svg {
    opacity: 1;
}

.laa-testimonial-1-slider-img-btn div svg path {
    stroke: #fff;
}

.laa-testimonial-1-slider-img-btn div:hover svg path {
    stroke: var(--laa-clr-sd-1);
}

.laa-testimonial-1-wrap-2 {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-testimonial-1-wrap-2 {
        grid-template-columns: 1fr;
    }
}

.laa-testimonial-1-slider-2 {
    display: grid;
}

.laa-testimonial-1-slider-2-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 767px) {
    .laa-testimonial-1-slider-2-item {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-testimonial-1-slider-2-item {
        flex-wrap: nowrap;
    }
}

.laa-testimonial-1-slider-2-item .item-img {
    width: 100%;
    max-width: 240px;
    height: 240px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .laa-testimonial-1-slider-2-item .item-img {
        max-width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-testimonial-1-slider-2-item .item-img {
        max-width: 240px;
    }
}

.laa-testimonial-1-slider-2-item .item-img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--laa-clr-pr-1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: color;
    opacity: 0.9;
}

.laa-testimonial-1-slider-2-item .item-comment {
    font-size: 23px;
    line-height: 1.52;
    margin-bottom: 19px;
    font-weight: 500;
}

@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),
(max-width: 767px) {
    .laa-testimonial-1-slider-2-item .item-comment {
        font-size: 18px;
    }
}

.laa-testimonial-1-slider-2-item .item-dot {
    display: flex;
    gap: 10px;
    margin-bottom: 23px;
}

.laa-testimonial-1-slider-2-item .item-dot span {
    display: inline-block;
    background: var(--laa-clr-pr-1);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0;
    transition: all 1s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-testimonial-1-slider-2-item .author-name {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.laa-testimonial-1-slider-2-item .author-disc {
    font-size: 15px;
    opacity: 64%;
    line-height: 1.3;
    font-weight: 400;
}

.laa-testimonial-1-slider-2-item .item-slide-down {
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s var(--laa-cube-1);
    transition-delay: 0s;
}

.laa-testimonial-1-slider-2 .swiper-container {
    margin-left: unset;
    margin-right: unset;
}

.laa-testimonial-1-slider-2 .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-2-item .item-dot span {
    opacity: 1;
}

.laa-testimonial-1-slider-2 .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-2-item .item-dot span:nth-child(1) {
    transition-delay: 0.5s;
}

.laa-testimonial-1-slider-2 .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-2-item .item-dot span:nth-child(2) {
    transition-delay: 1.6s;
}

.laa-testimonial-1-slider-2 .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-2-item .item-dot span:nth-child(3) {
    transition-delay: 2.7s;
}

.laa-testimonial-1-slider-2 .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-2-item .item-slide-down {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 0.7s;
}

.laa-testimonial-1-slider-2 .swiper-container .swiper-slide:is(.swiper-slide-active) .laa-testimonial-1-slider-2-item .item-slide-down:nth-child(4) {
    transition-delay: 1s;
}

.laa-testimonial-1-slider-2-btn {
    display: flex;
    justify-content: space-between;
    max-width: 280px;
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

@media (max-width: 767px) {
    .laa-testimonial-1-slider-2-btn {
        top: 24%;
        max-width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-testimonial-1-slider-2-btn {
        top: 50%;
        max-width: 280px;
    }
}

.laa-testimonial-1-slider-2-btn div {
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.laa-testimonial-1-slider-2-btn div svg {
    opacity: 1;
}

.laa-testimonial-1-slider-2-btn div svg path {
    stroke: #fff;
}

.laa-testimonial-1-slider-2-btn div .line {
    top: 50%;
}

.laa-testimonial-1-slider-2-btn div:hover svg path {
    stroke: var(--laa-clr-sd-1);
}

.laa-testimonial-1-review {
    background: var(--laa-clr-h1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 40px 70px;
    justify-content: space-between;
    gap: 64px;
}

@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),
(max-width: 767px) {
    .laa-testimonial-1-review {
        padding: 40px 20px;
        gap: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-testimonial-1-review .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.laa-testimonial-1-review .subtitle {
    font-size: 15px;
    color: #fff;
    letter-spacing: 2px;
    opacity: 64%;
    line-height: 1;
    margin-bottom: 15px;
}

.laa-testimonial-1-review .item-star {
    font-size: 14px;
    gap: 8px;
    color: var(--laa-clr-pr-1);
    margin-bottom: 15px;
}

.laa-testimonial-1-review .logo {
    margin-bottom: 38px;
}

.laa-testimonial-1-review .reivew {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
}

.laa-testimonial-1-review .review-btn .laa-progress-btn-circle circle:nth-child(1) {
    stroke: var(--laa-clr-pr-1);
}

.laa-testimonial-1-review .review-btn .laa-progress-btn-circle circle:nth-child(2) {
    stroke: var(--laa-clr-pr-1);
    transition: all 1s var(--laa-cube-1);
}

.laa-testimonial-1-review .review-btn .laa-progress-btn-icon path {
    stroke: var(--laa-clr-pr-1);
}

.laa-testimonial-1-review .review-btn:hover .laa-progress-btn-circle circle:nth-child(2) {
    stroke-dashoffset: 0px;
}

/*
    laa-testimonial-1-end
*/

/*
    laa-faq-1-start
*/

.laa-faq-1-img {
    width: 36%;
    position: absolute;
    bottom: 0;
    left: 60px;
    z-index: -1;
}

.laa-faq-1-img img {
    mix-blend-mode: multiply;
}

.laa-faq-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-faq-1-wrap {
        grid-template-columns: 1fr;
    }
}

.laa-faq-1-scn-title .laa-scn-title-1 {
    font-size: 45px;
    line-height: 1.177;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-faq-1-scn-title .laa-scn-title-1 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .laa-faq-1-scn-title .laa-scn-title-1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .laa-faq-1-scn-title .laa-scn-title-1 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-faq-1-scn-title .laa-scn-title-1 {
        font-size: 34px;
    }
}

.laa-accordion-item {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
}

.laa-accordion-item:not(:last-child) {
    margin-bottom: 12px;
}

.laa-accordion-item .item-title {
    border: none;
    outline: none;
    font-size: 19px;
    color: rgba(34, 34, 34, 0.8);
    background: transparent;
    width: 100%;
    text-align: left;
    padding: 24px 32px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    transition: all 0.5s var(--laa-cube-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-accordion-item .item-title {
        font-size: 18px;
        padding: 24px 20px;
    }
}

.laa-accordion-item .item-title .icon {
    display: inline-block;
    color: var(--laa-clr-sd-1);
    transition: all 1s var(--laa-cube-1);
}

.laa-accordion-item .item-title:hover {
    color: #222222;
}

.laa-accordion-item .item-title:is(:not(.collapsed)) .icon {
    transform: rotate(360deg);
}

.laa-accordion-item .item-title:is(:not(.collapsed)) .icon i::before {
    content: "\f068";
}

.laa-accordion-item .item-body {
    padding: 37px 32px;
    padding-top: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-accordion-item .item-body {
        padding: 37px 20px;
        padding-top: 0;
    }
}

.laa-accordion-item .item-body p {
    opacity: 80%;
}

.laa-accordion-item:is(.faq_bg) {
    background: rgb(255, 255, 255);
    box-shadow: -12px 12px 64px 0 rgba(0, 0, 0, 0.06);
}

.laa-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.laa-phone .icon {
    flex: 0 0 auto;
    max-width: 64px;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-phone .title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.laa-phone .phone-link {
    font-size: 23px;
    font-weight: 600;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-phone span {
    display: inline-block;
}

.laa-phone:hover .icon {
    transform: rotate(15deg);
}

.laa-phone:hover .phone-link {
    color: var(--laa-clr-sd-1);
    transform: translateX(-3px);
}

/*
    laa-faq-1-end
*/

/*
    laa-contact-1-start
*/

.laa-contact-1-area::after {
    content: "";
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(26, 45, 78) 35%, rgba(0, 212, 255, 0) 100%);
    z-index: -1;
    opacity: 90%;
}

.laa-contact-1-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.laa-contact-1-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-contact-1-shape {
        display: none;
    }
}

.laa-contact-1-scn-title {
    max-width: 530px;
}

.laa-contact-1-scn-title .laa-scn-title-1 {
    font-size: 45px;
    line-height: 1.177;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .laa-contact-1-scn-title .laa-scn-title-1 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .laa-contact-1-scn-title .laa-scn-title-1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .laa-contact-1-scn-title .laa-scn-title-1 {
        font-size: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-contact-1-scn-title .laa-scn-title-1 {
        font-size: 34px;
    }
}

.laa-contact-1-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.laa-contact-1-form .laa-form-1 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
}

.laa-contact-1-form .laa-form-1-box::after {
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    background: rgba(255, 255, 255, 0.3);
}

/*
    laa-contact-1-end
*/

/*
    newsletter-1-start
*/

.laa-newsletter-1-plane {
    width: 20%;
    position: absolute;
    right: 2%;
    top: 10%;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .laa-newsletter-1-plane {
        display: none;
    }
}

.laa-newsletter-1-wrap {
    max-width: 990px;
    display: grid;
    gap: 64px;
    align-items: center;
    grid-template-columns: auto auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .laa-newsletter-1-wrap {
        grid-template-columns: 1fr;
    }
}

.laa-newsletter-1-title {
    font-size: 32px;
    line-height: 1.25;
    color: #fff;
    width: 100%;
    max-width: 480px;
    width: 100%;
}

@media (max-width: 767px) {
    .laa-newsletter-1-title {
        font-size: 22px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-newsletter-1-title {
        font-size: 26px;
    }
}

.laa-newsletter-1-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.laa-newsletter-1-form-input {
    display: block;
    width: 100%;
    outline: none;
    background: transparent;
    font-size: 17px;
    font-family: var(--laa-h-font-1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid #fff;
    height: 56px;
    border-radius: 12px;
    padding: 0 20px;
    transition: all 0.4s var(--laa-cube-1);
}

.laa-newsletter-1-form-input::placeholder {
    font-family: var(--laa-h-font-1);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
}

.laa-newsletter-1-form-input:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.laa-newsletter-1-form-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.laa-newsletter-1-form-btn {
    flex: 0 0 auto;
    background: #fff;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    flex: 0 0 auto;
    color: var(--laa-clr-sd-1);
    width: 56px;
    height: 56px;
    font-size: 18px;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-newsletter-1-form-btn i {
    display: inline-block;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-newsletter-1-form-btn:hover {
    background: var(--laa-clr-pr-1);
    color: #fff;
}

.laa-newsletter-1-form-btn:hover i {
    transform: translate(2px, -2px) scale(105%);
}

.laa-newsletter-1-form-btn:hover i svg * {
    stroke: #000;
}

/*
    newsletter-1-end
*/

/*
    laa-footer-1-start
*/

.laa-footer-1-area {
    background: #fff;
}

.laa-footer-1-widget {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1fr;
    gap: 64px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .laa-footer-1-widget {
        grid-template-columns: 1fr 0.5fr 1.4fr 1fr;
        gap: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .laa-footer-1-widget {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .laa-footer-1-widget {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.laa-footer-1-widget-logo {
    margin-bottom: 35px;
}

.laa-footer-1-widget-disc {
    font-size: 16px;
    line-height: 24px;
    color: #1A2D4E;
    margin-bottom: 25px;
    font-weight: 400;
    max-width: 275px;
}

.laa-footer-1-widget-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.laa-footer-1-widget-social-link {
    width: 44px;
    height: 44px;
    background: #EFF4F8;
    display: flex;
    flex: 0 0 auto;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--laa-clr-h1);
    transition: all 0.5s var(--laa-cube-1);
}

.laa-footer-1-widget-social-link:hover {
    background: var(--laa-clr-sd-1);
    color: #fff;
}

.laa-footer-1-widget-social-link:hover svg path {
    fill: #fff;
}

.laa-footer-1-widget-single-title {
    font-size: 16px;
    opacity: 64%;
    font-weight: 400;
    margin-bottom: 16px;
}

.laa-footer-1-widget-single-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.laa-footer-1-widget-single-menu li {
    line-height: 1;
}

.laa-footer-1-widget-single-menu li:not(:last-child) {
    margin-bottom: 16px;
}

.laa-footer-1-widget-single-menu li a {
    display: inline-block;
    font-family: var(--laa-h-font-1);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    opacity: 80%;
    text-transform: capitalize;
    position: relative;
    color: var(--laa-clr-h1);
    z-index: 1;
}

.laa-footer-1-widget-single-menu li a::before {
    content: "";
    width: calc(100% - 18px);
    height: 1.5px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: var(--laa-clr-h1);
    transition: all 0.5s var(--laa-cube-1);
    transform-origin: left;
    transform: scaleX(0);
    opacity: 0.9;
}

.laa-footer-1-widget-single-menu li a:not(.dropdown-link)::before {
    width: calc(100% - 0px);
}

.laa-footer-1-widget-single-menu li:is(.dropdown)>a {
    padding-right: 18px;
}

.laa-footer-1-widget-single-menu li:is(.dropdown)>a::after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    position: absolute;
    font-size: 14px;
    right: 0;
    top: 49%;
    color: var(--fx-clr-pr-1);
    transform: translateY(-50%);
    transition: 400ms var(--laa-cube-1);
}

.laa-footer-1-widget-single-menu li .has-dropdown {
    padding-top: 14px;
    padding-left: 20px;
    padding-bottom: 14px;
    display: none;
    margin: 0;
    list-style: none;
}

.laa-footer-1-widget-single-menu li .has-dropdown li:not(:last-child) {
    margin-bottom: 10px;
}

.laa-footer-1-widget-single-menu li .has-dropdown li a {
    font-size: 14px;
}

.laa-footer-1-widget-single-menu li:hover>a {
    opacity: 100%;
    color: var(--laa-clr-h1);
}

.laa-footer-1-widget-single-menu li:hover>a::before {
    transform: scaleX(1);
}

.laa-footer-1-widget-single-menu li:hover>a::after {
    color: var(--laa-clr-sd-1);
}

.laa-footer-1-widget-single-menu-2 {
    margin: 0;
    padding: 0;
    list-style: none;
}

.laa-footer-1-widget-single-menu-2 li {
    line-height: 1;
}

.laa-footer-1-widget-single-menu-2 li:not(:last-child) {
    margin-bottom: 15px;
}

.laa-footer-1-widget-single-menu-2 li a {
    display: inline-block;
    font-family: var(--laa-h-font-1);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    opacity: 80%;
    text-transform: capitalize;
    position: relative;
    color: var(--laa-clr-h1);
    z-index: 1;
}

.laa-footer-1-widget-single-menu-2 li a::after {
    content: "";
    width: calc(100% - 14px);
    height: 1.5px;
    position: absolute;
    bottom: 0px;
    right: 14px;
    background: var(--laa-clr-h1);
    transition: all 0.5s var(--laa-cube-1);
    opacity: 0;
    transform-origin: left;
    transform: scaleX(0);
}

.laa-footer-1-widget-single-menu-2 li a i {
    color: var(--laa-clr-h1);
    margin-right: 4px;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-footer-1-widget-single-menu-2 li a:hover {
    opacity: 100%;
    color: var(--laa-clr-h1);
}

.laa-footer-1-widget-single-menu-2 li a:hover::after {
    transform: scaleX(1);
    opacity: 0.9;
    right: 0px;
}

.laa-footer-1-widget-single-menu-2 li a:hover i {
    color: var(--laa-clr-sd-1);
}

.laa-footer-1-widget-single-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.laa-footer-1-widget-single-contact li {
    font-size: 16px;
    line-height: 22px;
    color: var(--laa-clr-h1);
    font-family: var(--laa-h-font-1);
    display: flex;
    align-items: baseline;
}

.laa-footer-1-widget-single-contact li:not(:last-child) {
    margin-bottom: 16px;
}

.laa-footer-1-widget-single-contact li i {
    color: var(--laa-clr-sd-1);
    display: inline-block;
    margin-right: 12px;
}

.laa-footer-1-widget-single-contact li a {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    display: inline-flex;
    transition: all 0.5s var(--laa-cube-1);
    align-items: baseline;
}

.laa-footer-1-widget-single-contact li a:hover {
    color: var(--laa-clr-sd-1);
    transform: translateX(3px);
}

.laa-footer-1-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1065px;
    width: 100%;
}

.laa-footer-1-bottom-menu {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.laa-footer-1-bottom-menu a {
    font-family: var(--laa-h-font-1);
    text-transform: capitalize;
    font-weight: 400;
    color: var(--laa-clr-h1);
    opacity: 80%;
    font-size: 16px;
    line-height: 20px;
    transition: all 0.5s var(--laa-cube-1);
    position: relative;
}

.laa-footer-1-bottom-menu a::after {
    content: "";
    width: calc(100% - 18px);
    height: 1px;
    background: var(--laa-clr-h1);
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: all 0.5s var(--laa-cube-1);
    transform: scaleX(0);
    transform-origin: left;
}

.laa-footer-1-bottom-menu a:not(:last-child) {
    border-right: 2px solid rgba(26, 45, 78, 0.6);
    padding-right: 18px;
}

.laa-footer-1-bottom-menu a:last-child::after {
    width: 100%;
}

.laa-footer-1-bottom-menu a:hover {
    font-weight: 500;
    opacity: 1;
    color: var(--laa-clr-h1);
}

.laa-footer-1-bottom-menu a:hover::after {
    transform: scaleX(1);
}

.laa-footer-1-bottom-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #EFF4F8;
}

.laa-footer-1-bottom-copyright {
    font-family: var(--laa-h-font-1);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgba(26, 45, 78, 0.8);
    margin-bottom: 0;
}

.laa-footer-1-bottom-copyright a {
    font-weight: 500;
    color: #1A2D4E;
    transition: all 0.5s var(--laa-cube-1);
}

.laa-footer-1-bottom-copyright a:hover {
    color: var(--laa-clr-sd-1);
}

.laa-back-top-1 {
    flex: 0 0 auto;
    font-family: var(--laa-h-font-1);
    max-width: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--laa-clr-h1);
    text-transform: uppercase;
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    gap: 5px;
    font-weight: 500;
    transition: all 0.5s var(--laa-cube-1);
    cursor: pointer;
    right: 65px;
    top: 120px;
}

@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),
(max-width: 767px) {
    .laa-back-top-1 {
        right: 25px;
        top: unset;
        bottom: 50px;
    }
}

@media (max-width: 767px) {
    .laa-back-top-1 {
        right: 25px;
        top: unset;
        bottom: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .laa-back-top-1 {
        right: 25px;
        top: unset;
        bottom: 50px;
    }
}

.laa-back-top-1:hover {
    color: var(--laa-clr-sd-1);
}

.laa-back-top-1:hover svg {
    animation: fx-back-top-1 1s linear infinite;
}

@keyframes fx-back-top-1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/*
    laa-footer-1-end
*/

/*
    home-dark-start
*/

.laa-home-7-dark {
    background: #000;
}

.laa-home-7-dark .laa-client-1-title,
.laa-home-7-dark .laa-scn-title-1,
.laa-home-7-dark .laa-footer-1-widget-single-title {
    color: #fff;
}

.laa-home-7-dark .laa-para-1,
.laa-home-7-dark .laa-counter-1-item .item-title {
    color: #fff;
    opacity: 88%;
}

.laa-home-7-dark .laa-form-1-title,
.laa-home-7-dark .laa-form-1-label,
.laa-home-7-dark .laa-form-1-input,
.laa-home-7-dark .laa-form-1-input::placeholder,
.laa-home-7-dark .laa-form-1-input-services,
.laa-home-7-dark .laa-slide-text-1-item {
    color: #000;
}

.laa-home-7-dark .laa-services-1-slider-item .item-title {
    color: #000;
}

.laa-home-7-dark .laa-services-1-slider-item .item-title:hover {
    color: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-blog-1-fillter-item-single .item-title {
    color: #fff;
}

.laa-home-7-dark .laa-blog-1-fillter-item-single .item-title:hover {
    color: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-menu-btn-1 span {
    background: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-form-1 .title-line::after {
    background: #000;
}

.laa-home-7-dark .laa-header-1-top {
    background: #3D3D3D;
}

.laa-home-7-dark .laa-hero-1-social-link .icon,
.laa-home-7-dark .laa-footer-1-area {
    background: transparent;
}

.laa-home-7-dark .laa-left-btn-2,
.laa-home-7-dark .laa-right-btn-2 {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.laa-home-7-dark .laa-left-btn-2 svg,
.laa-home-7-dark .laa-right-btn-2 svg {
    transition-delay: 0.2s;
    opacity: 20%;
}

.laa-home-7-dark .laa-left-btn-2 svg *,
.laa-home-7-dark .laa-right-btn-2 svg * {
    stroke: #fff;
}

.laa-home-7-dark .laa-left-btn-2 .line,
.laa-home-7-dark .laa-right-btn-2 .line {
    background: #fff;
}

.laa-home-7-dark .laa-left-btn-2:hover,
.laa-home-7-dark .laa-right-btn-2:hover {
    border-color: #fff;
}

.laa-home-7-dark .laa-left-btn-2:hover svg,
.laa-home-7-dark .laa-right-btn-2:hover svg {
    transition-delay: 0s;
    opacity: 100%;
}

.laa-home-7-dark .laa-left-btn-2:hover svg *,
.laa-home-7-dark .laa-right-btn-2:hover svg * {
    stroke: #fff;
}

.laa-home-7-dark .laa-pr-btn-1.has-form .laa-pr-btn-1-left {
    background: #000;
}

.laa-home-7-dark .laa-pr-btn-1.has-form .laa-pr-btn-1-right {
    border-color: #000;
    color: #000;
}

.laa-home-7-dark .laa-pr-btn-1.has-form svg * {
    fill: #000;
}

.laa-home-7-dark .laa-pr-btn-1.has-form:hover .laa-pr-btn-1-left {
    background: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-pr-btn-1.has-form:hover .laa-pr-btn-1-right {
    border-color: var(--laa-clr-sd-1);
    color: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-phone .title {
    color: #fff;
    opacity: 64%;
}

.laa-home-7-dark .laa-phone .phone-link {
    color: #fff;
}

.laa-home-7-dark .laa-phone:hover .phone-link {
    color: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-footer-1-widget-social-link {
    background: #000;
    color: #fff;
}

.laa-home-7-dark .laa-footer-1-widget-social-link svg * {
    fill: #fff;
}

.laa-home-7-dark .laa-footer-1-widget-social-link:hover {
    background: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-main-navigation .navbar-nav li:is(.dropdown)>a::before {
    color: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-main-navigation .navbar-nav li a {
    color: #fff;
}

.laa-home-7-dark .laa-main-navigation .navbar-nav li:hover>a {
    color: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-main-navigation .navbar-nav li .dropdown-menu {
    background: rgba(0, 0, 0, 0.8);
}

.laa-home-7-dark #tx_preloader {
    background: #3D3D3D;
}

.laa-home-7-dark .laa-hero-1-slider-item-bg .item-bg::after {
    background: linear-gradient(90deg, rgb(32, 32, 32) 35%, rgba(0, 212, 255, 0) 100%);
}

.laa-home-7-dark .laa-hero-1-slider-item-bg .item-bg::before {
    background: linear-gradient(90deg, rgb(32, 32, 32) 80%, rgba(0, 212, 255, 0) 100%);
}

.laa-home-7-dark .laa-services-1-slider-item .content-wrap .item-disc {
    color: #000;
}

.laa-home-7-dark .laa-counter-1-wrap {
    border-color: rgba(61, 61, 61, 0.7);
    overflow: hidden;
}

.laa-home-7-dark .laa-counter-1-item {
    background: linear-gradient(180deg, rgba(61, 61, 61, 0.4), rgba(61, 61, 61, 0) 100%);
}

@media (min-width: 1800px),
only screen and (min-width: 1600px) and (max-width: 1799px),
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) {
    .laa-home-7-dark .laa-counter-1-item:not(:last-child) {
        border-color: rgba(61, 61, 61, 0.7);
    }
}

.laa-home-7-dark .laa-services-2-slider-item::after {
    background: linear-gradient(90deg, rgb(32, 32, 32) 35%, rgba(0, 212, 255, 0) 100%);
    opacity: 92%;
}

.laa-home-7-dark .laa-blog-1-fillter-btn button .text {
    background: rgba(61, 61, 61, 0.48);
    color: #fff;
}

.laa-home-7-dark .laa-blog-1-fillter-btn button:hover .text {
    background: rgba(61, 61, 61, 0.8);
}

.laa-home-7-dark .laa-blog-1-fillter-btn button:is(.is-checked) .text {
    background: #fff;
    color: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-blog-1-fillter-item-single {
    background: #1F1F1F;
}

.laa-home-7-dark .laa-blog-1-fillter-item-single:is(.has-style-2)::after {
    background: linear-gradient(0deg, rgb(36, 36, 36) 20%, rgba(0, 212, 255, 0) 100%);
}

.laa-home-7-dark .laa-features-1-item {
    background: #202020;
}

.laa-home-7-dark .laa-testimonial-1-slider-item,
.laa-home-7-dark .laa-testimonial-1-slider-2-item,
.laa-home-7-dark .laa-testimonial-1-review {
    background: #202020;
}

.laa-home-7-dark .laa-accordion-item {
    background: rgba(255, 255, 255, 0.12);
}

.laa-home-7-dark .laa-accordion-item .item-title {
    color: rgba(255, 255, 255, 0.8);
}

.laa-home-7-dark .laa-accordion-item .item-title:is(:not(.collapsed)) {
    color: #222222;
}

.laa-home-7-dark .laa-accordion-item .item-title:hover {
    transform: translateX(3px);
}

.laa-home-7-dark .laa-accordion-item .laa-para-1 {
    color: #222222;
}

.laa-home-7-dark .laa-accordion-item:is(.faq_bg) {
    background: rgb(255, 255, 255);
}

.laa-home-7-dark .laa-contact-1-area::after {
    background: linear-gradient(90deg, rgb(36, 36, 36) 35%, rgba(0, 212, 255, 0) 100%);
    opacity: 95%;
}

.laa-home-7-dark .laa-footer-1-widget-single-menu li a {
    color: #fff;
}

.laa-home-7-dark .laa-footer-1-widget-single-menu li a::before {
    height: 1px;
    background: #fff;
}

.laa-home-7-dark .laa-footer-1-widget-single-menu li a:hover {
    opacity: 100%;
}

.laa-home-7-dark .laa-footer-1-widget-single-menu-2 li a {
    color: #fff;
}

.laa-home-7-dark .laa-footer-1-widget-single-menu-2 li a::after {
    background: #fff;
}

.laa-home-7-dark .laa-footer-1-widget-single-menu-2 li a i {
    color: #fff;
}

.laa-home-7-dark .laa-footer-1-widget-single-menu-2 li a:hover i {
    color: var(--laa-clr-sd-1);
}

.laa-home-7-dark .laa-footer-1-widget-single-contact li {
    color: #fff;
}

.laa-home-7-dark .laa-back-top-1 {
    color: #fff;
}

.laa-home-7-dark .laa-footer-1-bottom-line {
    background: #000;
}

.laa-home-7-dark .laa-footer-1-bottom-menu a {
    color: #fff;
}

.laa-home-7-dark .laa-footer-1-bottom-menu a:not(:last-child) {
    border-right: 2px solid rgba(255, 255, 255, 0.64);
}

.laa-home-7-dark .laa-footer-1-bottom-menu a::after {
    background: #fff;
}

.laa-home-7-dark .laa-footer-1-bottom-copyright {
    color: rgba(255, 255, 255, 0.8);
}

.laa-home-7-dark .laa-blog-1-bg {
    right: 0;
}

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