@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    --primary-color: #0071bc;
    --text-color: #ffffff;
    --secendary-color: #8f9193;
    --title-color: #1A1A1A;
    --btn-border: #d4d4d4;
    --content-color: #74787C;
    --bg-color: #f1f1f1;
    --bg2-color: #f6f6f6;
    --bg3-color: #F5F5F6;
    --nav-text-color: #EDEDED;
    --bottom-border-color: #e1e3e5;
    --icon-bg-color: #e9e9e9;
    --border-right-color: #ddd;
    --input-bg-color: #e5e5e5e5;
    --button-two-color: #2c2c2c;
    --footer-color: #252222ed;
}

body {
    font-family: "Quicksand", sans-serif;
    overflow-x: hidden;
    font-weight: 500;
    background: var(--bg2-color);
}

h1 {
    font-size: 72px;
    line-height: 82px;
    margin: 0;
    font-weight: 600;
    margin-bottom: 40px;
}

h2 {
    font-size: 48px;
    line-height: 55px;
    margin: 0;
    font-weight: 600;
    margin-bottom: 66px;
}

h3 {
    font-size: 22px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    margin-bottom: 20px;
}

h4 {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
    font-weight: 700;
}

h5 {
    font-size: 24px;
    line-height: 34px;
    margin: 0;
    font-weight: 600;
    /* color: var(--text-color); */
    margin-bottom: 15px;
}

h6 {
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    font-weight: 700;
}

p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
}

.text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--content-color);
    font-family: "Quicksand", sans-serif;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--title-color);
    font-family: "Quicksand", sans-serif;
    display: inline-block;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

button,
input,
select {
    border: 0;
    outline: 0;
    background: 0;
}

button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
    outline: none;
}

input:focus {
    outline: none;
    box-shadow: none;
}

img {
    max-width: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

/* Off-Canvas Css ============================= */

.canvas-wrapper.active .side-slide {
    left: 0;
}

nav.side-slide {
    background-color: var(--title-color);
    top: 0;
    left: -200%;
    height: 100%;
    position: fixed;
    width: 600px;
    z-index: 9999999;
    padding: 45px 30px;
    transition: all 0.4s ease-in-out;
    /* border-left: 3px solid var(--primary-color); */
}

nav.side-slide h3 {
    color: var(--text-color);
    top: 25px;
}

nav.side-slide a {
    color: var(--nav-text-color);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

nav.side-slide a:hover {
    color: var(--text-color);
}

nav.side-slide .nav01 {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0px;
    text-align: center;
    width: 40px;
    height: 40px;
    background: var(--text-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.2s ease-in-out;
    font-size: 18px;
    font-weight: 600;
}

nav.side-slide .nav01:hover {
    transform: rotate(360deg);
    font-size: 22px;
    font-weight: 700;
}

/* Start Vektor Button */

.vektor_btn .get-btn {
    padding: 20px 30px;
    background: #0071bc;
    background: linear-gradient(90deg, rgb(138 187 207 / 56%) 0%, rgb(149 193 222 / 56%) 100%);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: var(--text-color);
    font-family: "Quicksand", sans-serif;
    transition: all 0.4s;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    min-width: 305px;
}

.vektor_btn .get-btn:hover {
    color: #fff;
}

/*====================== Button One ========================= */

.button-one {
    padding: 10px 10px 10px 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: var(--text-color);
    font-family: "Quicksand", sans-serif;
    transition: all 0.4s;
    border: 1px solid #eee;
    outline: 0;
    text-transform: uppercase;
    padding-right: 10px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background: var(--text-color);
}

.button-one::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary-color);
    z-index: -1;
    color: var(--text-color);
    transition: all 0.4s ease-in-out;
}

.button-one:hover::before {
    color: var(--title-color);
    left: 100%;
}

.button-one:hover,
.button-two:hover {
    color: var(--title-color);
}

.hero-area-wrapper .button-one i,
.future-area-wrapper .button-one i,
.creative-team-card .button-one i,
.home-three-title .button-one i {
    width: 35px;
    height: 35px;
    line-height: 2.5;
}

.button-one i {
    background: var(--text-color);
    color: var(--primary-color);
    margin-left: 17px;
    width: 30px;
    height: 30px;
    line-height: 2.1;
}

.button-one:hover i {
    background: var(--primary-color);
    color: var(--text-color);
    transition: all 0.4s ease-in-out;
}

/*===================== Button 2 ====================== */

.button-two {
    padding: 10px 10px 10px 30px;
    background: var(--text-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: var(--title-color);
    font-family: "Quicksand", sans-serif;
    border: 1px solid #f0ebea;
    transition: all 0.4s;
    outline: 0;
    text-transform: uppercase;
    padding-right: 10px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.button-two:hover {
    color: var(--text-color);
}

.button-two::before {
    position: absolute;
    content: '';
    z-index: -1;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    top: 0;
    right: 100%;
    transition: all 0.4s ease-in-out;
    color: var(--text-color);
}

.button-two:hover::before {
    right: 0;
}

.button-two i {
    background: var(--primary-color);
    color: var(--text-color);
    margin-left: 17px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    font-size: 14px;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.button-two:hover i {
    background: var(--text-color);
    color: var(--primary-color);
}

/*====== Appointmet Section Area Button ========== */

.appointment-content .about-btn .button-two {
    border: 1px solid var(--btn-border);
    background: transparent;
    color: var(--text-color);
    padding: 16px 35px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.appointment-content .about-btn .button-two i {
    width: 0;
    z-index: -1;
    content: '';
    opacity: 0;
    right: 106px;
    transition: all 0.4s ease-in-out;
    height: 0;
}

.appointment-content .about-btn .button-two .box-icon-1 {
    padding: 10px;
    position: absolute;
    top: 16px;
    right: 12px;
    overflow: hidden;
}

.appointment-content .about-btn .button-two .box-icon-1 i {
    margin-left: -56px;
    transition: all 0.4s ease-in-out;
}

.appointment-content .about-btn .button-two:hover .box-icon-1 i {
    margin-left: 0;
    opacity: 1;
    color: var(--text-color);
}

/*======================== Section Sub Title =========================== */

.sub-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-padding {
    padding: 60px 0;
}

.view span {
    font-size: 12px;
}

small {
    font-size: 14px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
}

/*================ Start Header Style ==================== */

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    background: var(--title-color);
    color: var(--text-color);
}

.brands_logo .barnds img {
    width: 210px;
}

.header_top_left {
    margin-left: 50px;
}

.header_top_right {
    margin-right: 50px;
}

.header_top_left ul {
    display: flex;
    gap: 30px;
}

.socials-links ul {
    display: flex;
}

.header_top_right ul {
    display: flex;
    gap: 20px;
}

.header_top_left ul {
    gap: 20px;
}

.header_top_left ul li,
.header_top_right ul li {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    font-family: "Mulish", sans-serif;
}

.header_top_left ul li {
    border-right: 1px solid var(--btn-border);
    padding-right: 20px;
}

.header_top_left ul li:last-child {
    border-right: 0;
}

.header_top_left ul li i {
    margin-right: 8px;
}

.header_top_left ul li a,
.header_top_right ul li a {
    color: var(--text-color);
}

.header_top_right ul li a,
.header_top_left ul li a {
    font-size: 14px;
    font-weight: 400;
    transition: all 0.4s;
}

.header_top_left ul li a {
    font-size: 16px;
    font-family: "Mulish", sans-serif;
}

.header_top_right ul li a:hover,
.header_top_left ul li a:hover,
.socials-links ul li a:hover,
.home-one-menubar-area .header_top_right ul li a:hover,
.home-one-menubar-area .header_top_left ul li a:hover,
.home-one-menubar-area .socials-links ul li a:hover {
    color: var(--primary-color);
}

.header_top_left ul li a i {
    margin-right: 10px;
}

.stickey-wrapper.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
    animation: stickyAni 0.4s ease-in-out;
    z-index: 1020;
}

@keyframes stickyAni {
    0% {
        transform: translate3d(0, -40px, 0) scaleY(0.8);
        opacity: 0.7;
    }

    100% {
        transform: translate3d(0, 0, 0) scaleY(1);
        opacity: 1;
    }
}

/*===================================== Mobile Menu =========================================================== */

.vektor-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(6 18 39 / 80%);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

.vektor-menu-wrapper .vektor-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: var(--text-color);
    border-right: 3px solid var(--primary-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 1s;
    z-index: 1;
}

.vektor-menu-wrapper .vektor-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -16.5px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: var(--title-color);
    background-color: var(--text-color);
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.vektor-menu-wrapper .mobile-logo {
    padding: 10px 0;
    display: flex;
    text-align: center;
    border: 1px solid var(--title-color);
    justify-content: center;
}

.vektor-menu-wrapper .mobile-logo img {
    width: 160px;
}

.vektor-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 0px);
    scrollbar-width: none;
    padding-bottom: 40px;
    margin-top: 0;
    text-align: left;
}

.vektor-mobile-menu ul .vektor-item-has-children.vektor-active>a .vektor-mean-expand:before {
    content: "\f146";
    font-family: 'Font Awesome 5 Free';
}

.vektor-mobile-menu ul .vektor-item-has-children>a {
    position: relative;
}

.vektor-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 15px 0;
    line-height: 1.4;
    font-size: 17px;
    text-transform: capitalize;
    color: var(--title-color);
    padding-left: 15px;
}

.vektor-mobile-menu ul .vektor-item-has-children>a .vektor-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-color);
}

.vektor-mobile-menu ul .vektor-item-has-children>a .vektor-mean-expand:before {
    content: "\f0fe";
    font-family: 'Font Awesome 5 Free';
}

.vektor-mobile-menu ul {
    margin: 0;
    padding: 0 0;
}

.vektor-mobile-menu>ul {
    padding: 0;
}

.vektor-mobile-menu ul li {
    border-bottom: 1px solid #f2f2ff3b;
    list-style-type: none;
}

.vektor-mobile-menu ul li li:first-child {
    border-top: 1px solid #f2f2ff3b;
}

.vektor-mobile-menu ul li ul li {
    padding-left: 10px;
}

.vektor-menu-wrapper.vektor-body-visible {
    opacity: 1;
    visibility: visible;
    left: 0;
}

.vektor-menu-wrapper.vektor-body-visible .vektor-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.vektor-menu-wrapper.vektor-body-visible .vektor-menu-toggle {
    margin-right: 0;
}

/*============================== Start Main Header Menu =================================== */

.header_menu.home-two-menubar {
    position: absolute;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #00000038;
}

.header_menu .brands_logo {
    display: flex;
    align-items: center;
}

.header_menu .brands_logo .side-box-icon {
    width: 142px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--border-right-color);
}

.vektor-menu-toggle {
    display: none;
}

.header_menu .brands_logo .side-box-icon:hover .side-box-bar.baricon-right {
    left: 0;
}

.header_menu .brands_logo .side-box-icon .side-box-bar.baricon-left i,
.header_menu .brands_logo .side-box-icon .side-box-bar.baricon-right i {
    transition: all 0.4s ease-in-out;
}

.header_menu .brands_logo .side-box-bar.baricon-left {
    display: inline-flex;
    font-size: 24px;
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.header_menu .brands_logo .side-box-bar.baricon-right {
    display: inline-flex;
    font-size: 24px;
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 100px;
    right: 0;
    bottom: 0;
    margin: auto;
    justify-content: center;
    align-items: center;
    display: none;
}

.header_menu .brands_logo .side-box-bar:hover {
    color: #fff;
}

.header_menu .brands_logo .barnds {
    padding-left: 50px;
}

.header_menu .main-menu {
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 1020;
    margin-right: 40px;
}

.header_menu .main-menu ul,
.home-one-menubar-area .main-menu ul {
    display: flex;
    gap: 20px;
}

.header_menu .main-menu li a,
.home-one-menubar-area .main-menu ul li a {
    display: inline-block;
    padding: 45px 0;
    font-size: 18px;
    /* font-family: "Quicksand", sans-serif; */
    position: relative;
    letter-spacing: 1px;
    transition: all 0.4s;
}

.home-one-menubar-area .main-menu ul li a {
    padding: 39px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.header_menu .main-menu li a:hover,
.home-one-menubar-area .main-menu ul li a:hover {
    color: var(--primary-color);
}

.header_menu .main-menu li a::after,
.home-one-menubar-area .main-menu ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.4s;
}

.header_menu .main-menu li a:hover::after,
.home-one-menubar-area .main-menu ul li a:hover:after {
    color: var(--primary-color);
    width: 100%;
}

.header_menu .main-menu li a:last-child,
.home-one-menubar-area .main-menu ul li a:last-child {
    margin-right: 0;
}

.right_menu {
    display: flex;
    justify-content: center;
}

.right_menu .cart {
    position: relative;
}

.right_menu .view {
    position: absolute;
}

.right_menu .cart,
.right_menu .search {
    padding: 46px 36px;
}

.right_menu .cart {
    position: relative;
}

.right_menu .cart:hover ul.shopping-card-show {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

/*=================== start Cart css===================  */

ul.shopping-card-show {
    position: absolute;
    top: 200%;
    left: -178px;
    z-index: 9999;
    width: 400px;
    background: var(--text-color);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

li.shopping-cart-design {
    padding: 30px;
}

ul.product-cart-list {
    padding: 25px;
}

li.show-product-item {
    gap: 25px;
    align-items: center;
    margin-bottom: 15px;
}

.cart-title a {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    transition: 0.4s;
}

.cart-title a:hover {
    color: var(--title-color);
}

p.product-card-total {
    margin-bottom: 20px;
}

p.product-mini-cart-buttons {
    margin-bottom: 0;
}

p.product-card-total {
    margin-bottom: 20px;
    padding: 20px 20px 0 22px;
    border-top: 3px double var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

span.product-card-total-amount {
    font-size: 16px;
    font-weight: 500;
}

p.product-mini-cart-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.product-mini-cart-buttons .button {
    padding: 10px 26px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    transition: background 0.3s;
}

.product-mini-cart-buttons .button:hover {
    background: var(--title-color);
    color: var(--text-color);
}

/* End Product cart  */

.shop-cart-img img {
    width: 80px;
    height: 80px;
}

.right_menu .search {
    background: var(--bg2-color);
}

.right_menu .vektor_btn .button-one {
    padding: 30px 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.right_menu .view {
    position: absolute;
    top: 55px;
    left: 46px;
    background: var(--primary-color);
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    color: var(--text-color);
}

/*============================ DropDown MenuBar =================== */

.header_menu .main-menu ul li,
.home-one-menubar-area .main-menu ul li {
    position: relative;
    z-index: 1;
}

.header_menu .main-menu ul li:hover>ul,
.home-one-menubar-area .main-menu ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.header_menu .main-menu ul li ul,
.home-one-menubar-area .main-menu ul li ul {
    position: absolute;
    z-index: -1;
    background: var(--text-color);
    display: block;
    min-width: 190px;
    text-align: left;
    top: 100%;
    left: -23px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transition: all 0.4s ease-in-out;
    transform-origin: top center;
}

.header_menu .main-menu ul li ul a,
.home-one-menubar-area .main-menu ul li ul a {
    width: 100%;
    padding: 10px 15px;
    position: relative;
    border-bottom: 1px solid var(--btn-border);
    transition: all 0.4s;
}

.header_menu .main-menu ul li.dropmenu ul.dropdown-menubar a:hover {
    color: var(--primary-color);
}

.header_menu .main-menu ul li ul a::after,
.home-one-menubar-area .main-menu ul li ul a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    background: transparent;
    transition: all 0.4s;
}

.header_menu .main-menu ul li ul li,
.home-one-menubar-area .main-menu ul li ul li {
    position: relative;
    z-index: 1;
}

.header_menu .main-menu ul li ul li:hover>ul,
.home-one-menubar-area .main-menu ul li ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.header_menu .main-menu ul li ul li ul,
.home-one-menubar-area .main-menu ul li ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--text-color);
    width: 190px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transition: all 0.4s ease-in-out;
    transform-origin: top center;
    display: block;
}

.header_menu .main-menu ul li ul li a,
.home-one-menubar-area .main-menu ul li ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

/* =================== Start Header Hero Area Style ====================================== */

.hero-area-wrapper {
    position: relative;
    z-index: 1;
}

.hero-single .text {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-right: 52px;
    font-family: 'Manrope', sans-serif;
    color: #fff;
    margin-bottom: 50px;
}

.hero-area-wrapper #hero-slider .item {
    position: relative;
    z-index: 1;
    height: 700px;
}

/* .hero-area-wrapper #hero-slider .item.right:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.2;
    left: 0;
    background: linear-gradient(90deg, #f5f5f6bd 47.64%, rgb(255 232 226 / 55%) 68.71%, rgba(223, 95, 65, 0.00) 99.86%);
    z-index: -1;
}

.hero-area-wrapper #hero-slider .item.left:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, var(--bg3-color) 47.64%, rgba(255, 232, 226, 0.49) 68.71%, rgba(223, 95, 65, 0.00) 99.86%);
    z-index: -1;
} */

.hero-single {
    padding: 200px 0 80px;
}

.hreo-btn {
    display: flex;
    align-items: center;
    gap: 30px;
}

.socials-links {
    position: absolute;
    left: -155px;
    bottom: 52%;
    transform: rotate(90deg);
    z-index: 1;
}

.hero-area-wrapper .socials-links ul li {
    margin-left: 30px;
}

.hero-single h1.title {
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.socials-links ul li {
    font-size: 12px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
    color: #fff;
    text-transform: uppercase;
}

.socials-links ul .ulta {
    transform: rotate(180deg);
    text-align: center;
    margin-bottom: 0;
    line-height: 25px;
    font-size: 16px;
    font-weight: 600;
}

.socials-links ul li.dash {
    width: 60px;
    height: 2px;
    background: #fff;
    margin-top: 10px;
    border-radius: 15px;
}

.socials-links ul li a {
    vertical-align: middle;
    transform: rotate(-90deg);
    font-size: 18px;
    color: #fff;
}

/* ================== Start Process Section Area Style ================================ */

.proecess-section-area {
    background: var(--title-color);
    position: relative;
    z-index: 1;
}

.home-two-process {
    padding-bottom: 80px;
}

.home-two-process .process-card .process-img {
    height: auto;
}

.process-card:hover .process-img img {
    transform: scale(1.10);
}

.process-img {
    overflow: hidden;
    height: 340px;
    margin-bottom: 20px;
}

.process-img img {
    width: 100%;
    transform: scale(1);
    transition: all 0.4s;
    display: block;
}

.process-box-title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(270deg);
}

.process-title-area .sub-title {
    position: relative;
}

.process-title-area .sub-title .dash,
.about-content .sub-title .dash,
.skills-content .sub-title .dash,
.team-title .sub-title .dash {
    width: 100px;
    display: inline-block;
    height: 2px;
    background: var(--primary-color);
    margin-right: 20px;
    margin-bottom: 3px;
}

.process-title-area .title {
    color: var(--text-color);
    max-width: 750px;
}

/* ========================== Start Future Area Section ================================= */

.future-area-wrapper {
    background: var(--bg3-color);
    position: relative;
    z-index: 1;
}

.bg-iamge {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    z-index: -1;
    left: 0;
}

.future-icon-area {
    display: flex;
    gap: 26px;
    align-items: center;
}

.future-card {
    padding: 50px 16px;
    background-size: cover !important;
    height: 160px;
}

.future-card h5 {
    margin-bottom: 0;
    text-align: center;
}

.future-icon-area {
    display: flex;
    gap: 22px;
    align-items: center;
    padding: 20px 20px;
    background: var(--text-color);
    justify-content: center;
    padding-bottom: 30px;
}

.future-icon-area .future-icon {
    position: relative;
    margin-top: -45px;
    background: var(--text-color);
    border: 1px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px;
}

.future-icon-area .future-icon svg {
    transition: all 0.4s ease-in-out;
}

.future-card-wrap:hover .future-icon-area .future-icon svg {
    animation: bounceIn 0.8s;
}

@keyframes bounceIn {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    40% {
        transform: translateY(-5px);
        filter: blur(0.5px);
    }

    60% {
        transform: translateY(-5px);
        filter: blur(0.5px);
    }
}

.future-icon-area .future-icon img {
    width: 40px;
    min-width: 40px;
    transition: all 0.6s ease-in-out;
}

.future-btn .button-one {
    letter-spacing: 1px;
}

/* =========================== Start About Section area ==================================== */

.about-us-area {
    position: relative;
    padding-bottom: 170px;
    padding-top: 0;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.about-list-wrap {
    margin-bottom: 40px;
}

.about-us-area .about-content .title {
    font-size: 48px;
    margin-bottom: 35px;
}

.home-one .about-content .title {
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
}

.about-content {
    background: var(--text-color);
    padding: 40px 50px;
}

.about-list-wrap ul li {
    font-size: 16px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.about-list-wrap ul li i {
    color: var(--bg3-color);
    margin-right: 10px;
    color: var(--content-color);
    width: 30px;
    height: 30px;
    background: var(--bg3-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 900;
}

.about-btn {
    display: flex;
}

.experience-img {
    position: absolute;
    left: 50%;
    bottom: -50px;
    width: 30px;
    height: 390px;
}

.home-one-experiece-img {
    position: absolute;
    left: 50%;
    bottom: -50px;
    width: 270px;
    height: 285px;
}

.about-us-area .experience-img {
    left: 49%;
}

.home-two-about-area .experience-img {
    position: absolute;
    bottom: -64px;
    right: 0;
    width: 320px;
    overflow: hidden;
}

.experience-img .experi-num {
    padding: 15px 30px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    background: var(--primary-color);
}

.experience-img img {
    height: 310px;
    width: 100%;
}

.experience-img .experi-num .counter {
    font-size: 36px;
    font-weight: 700;
}

.row.g-0.about-card-box {
    background: #fff;
}

.about-card-box {
    position: relative;
}

.experience-img .experi-num span .counter {
    font-size: 24px;
}

/* =================================================== Skills Area ========================== */

.skills-area-section {
    /* background: var(--title-color); */
    position: relative;
    overflow: hidden;
}

.skills-area-section::after {
    position: absolute;
    content: '';
    left: 0;
    z-index: -1;
    top: 0;
    opacity: 0.2;
    height: 300px;
    width: 300px;
    background: url(../img/long-vecter.png) no-repeat;
    background-size: cover;
}

.skills-content .title {
    color: var(--text-color);
    padding: 0 0 61px 0;
    margin-bottom: 0;
}

.skills-content {
    margin-right: 50px;
}

.skills-content .skills-box {
    padding: 25px 20px;
    background: #b3a8a896;
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: 250px;
}

.skills-content .skill-icon {
    margin-bottom: 5px;
}

.skills-content small {
    color: #000;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 17px;
    line-height: 19px;
}

.counter-number .counter-timer,
.counter-number .counter-symble {
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 700;
    display: inline-block;
}

.skill-icon {
    position: relative;
    z-index: 1;
}

.skill-icon::after {
    position: absolute;
    content: '';
    width: 70px;
    height: 70px;
    top: 10px;
    left: 15px;
    background: #554c4c1a;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.skills-box:hover .skill-icon::after {
    top: -11px;
    left: -8px;
}

.skill-icon img {
    width: 50px;
    max-width: 50px;
    filter: drop-shadow(2px 4px 6px black);
}

.skills-bg-img {
    position: absolute;
    right: -65px;
    top: 10%;
    width: 50%;
    display: inline-block;
    height: 80%;
}

.bg-side-img {
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center center;
}

.home-one-team-area .team-card-wrap {
    min-height: 600px;
}

/* =============================== Start Project Area Section Style ============================================== */

.project-area-wrapper {
    background: var(--text-color);
}

.project-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-content .team-title {
    max-width: 750px;
}

.project-item {
    position: relative;
    z-index: 1;
    margin: 0 10px;
    overflow: hidden;
}

.project-item:hover .project-img img {
    filter: grayscale(1);
}

.project-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.project-content-area {
    position: absolute;
    left: 6%;
    bottom: 10%;
    padding: 60px;
    color: var(--text-color);
    width: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.project-content-area::before {
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, #7e230ead 58.77%, rgba(0, 0, 0, 0.00) 100%);
}

.project-item:hover .project-content-area::before {
    width: 100%;
    opacity: 1;
}

.project-content-area h3 a:hover {
    color: var(--primary-color);
}

.project-item:hover .project-content-area h3 a,
.project-item:hover .project-content-area small {
    opacity: 1;
}

.home-one-project-item .project-content-area h3 a {
    transition: all 0.5s ease-in-out;
}

.home-one-project-item .project-content-area h3:hover a {
    color: var(--primary-color);
}

.home-one-project-item .project-item .project-content-area h3 a {
    transition: all 0.5s ease-in-out;
}

.home-one-project-area .project-2 .project-content-area h3:hover a {
    color: var(--primary-color) !important;
}

.project-content-area h3 {
    margin: 0;
}

.project-content-area small {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.project-content-area h3 a {
    margin-bottom: 10px;
    color: var(--text-color);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.project-content-area .project-box-1 {
    width: 100px;
    height: 0;
    background: var(--primary-color);
    position: absolute;
    right: 52px;
    bottom: 180px;
    transition: all 0.5s ease-in-out;
}

.project-content-area .project-box-2 {
    width: 100px;
    height: 0;
    background: var(--text-color);
    position: absolute;
    right: 153px;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.project-item:hover .project-box-1 {
    height: 100px;
    transition: all 0.5s ease-in-out;
}

.project-item:hover .project-box-2 {
    height: 100px;
    transition: all 0.5s ease-in-out;
}

/*================================= Start Brands Section ============================================= */

.brands-card-wrap {
    background: var(--text-color);
}

.brands-card-wrap .brands-items {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--btn-border);
    justify-content: space-between;
}

.about-page-area .brands-card-wrap .brands-items .brands-logo {
    padding: 35px;
}

.about-page-area .brands-card-wrap .brands-items {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover !important;
}

.about-page-area .brands-card-wrap .client-text h6 {
    font-weight: 600;
}

.brands-card-wrap .brands-items .brands-logo {
    padding: 25px;
}

.brands-card-wrap .brands-items .brands-logo img {
    filter: blur(0.6px);
}

.about-page-area .brands-card-wrap .brands-items .brands-logo img {
    filter: blur(0);
}

.brands-card-wrap .client-text {
    padding: 20px 30px;
}

.brands-card-wrap .client-text .clients-sub-title {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    margin: 0 !important;
}

.brands-card-wrap .brands-items .client-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.brands-card-wrap .brands-items .client-img::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color) 28.13%, rgba(232, 99, 68, 0.00) 100%);
    mix-blend-mode: multiply;
    transition: all 0.4s ease-in-out;
    top: 0;
    left: 0;
}

.brands-card-wrap:hover .brands-items .client-img::before {
    opacity: 0;
    left: -100px;
}

/*========================================== Start Get In Touch Area ==================================================== */

.appoinment-form-wrap {
    background: var(--text-color);
    padding: 55px;
}

.appoinment-form-wrap .title {
    font-size: 33px;
    margin-bottom: 30px;
    line-height: 48px;
}

.lets-discuss .title,
.recent-post-wrap .title {
    margin-bottom: 20px;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
    outline: 0;
}

.appoinment-form-wrap input.form-control.style,
.appoinment-form-wrap select.form-select.style,
.appoinment-form-wrap textarea.form-control.style {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    background: var(--bg2-color);
    border: 0;
    outline: 0;
    width: 100%;
}

.appoinment-form-wrap input.form-control.style::placeholder,
.appoinment-form-wrap select.form-select.style,
.appoinment-form-wrap textarea.form-control.style::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--secendary-color);
}

.appoinment-form-wrap .team-appointment-form .form-group {
    display: block;
}

.home-two-appointment .appoinment-form-wrap input.form-control.style {
    width: 100%;
}

select.form-select.style,
textarea.form-control.style,
.form-select option {
    font-weight: 400;
}

input::placeholder,
.form-select option {
    color: var(--secendary-color);
    font-size: 16px;
    font-weight: 400;
}

.home-three-title .text,
.home-three-title ul li {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 30px;
    color: #333;
}

.home-three-about-area {
    padding: 0 0 !important;
}

.home-three-about-area {
    padding-top: 0 !important;
}

.about-company-area .about-thumb img {
    width: 100%;
    object-fit: cover;
}

.lets-discuss {
    margin-left: 35px;
}

.get-in-touch-area .text,
.about-us-area .text {
    margin-bottom: 40px;
}

.author-content {
    display: flex;
    gap: 65px;
    align-items: center;
    margin-bottom: 35px;
}

.author-content .author-img {
    width: 65px;
    height: 65px;
}

.author-content .author-text h3 {
    font-size: 30px;
    margin-bottom: 0;
}

.author-content .author-text p {
    margin: 0;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
}

.author-content .author-text h3 {
    font-size: 22px;
    line-height: 30px;
}

.acuda-stroke-title-two {
    line-height: normal;
    left: 15px;
    margin: 0;
}

.acuda-stroke-title-two span {
    font-size: 70px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 4px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    font-weight: 700;
    color: var(--text-color);
    text-shadow: 0px 14px 25px rgba(0, 0, 0, 0.05);
    opacity: 1;
}

.acuda-stroke-title-two span {
    opacity: 1;
    animation: loading-text 2s infinite ease-in-out;
    display: inline-block;
    color: var(--text-color);
}

.acuda-stroke-title-two span:nth-child(1) {
    animation-delay: 0.9s;
}

.acuda-stroke-title-two span:nth-child(2) {
    animation-delay: 1s;
}

.acuda-stroke-title-two span:nth-child(3) {
    animation-delay: 1.1s;
}

.acuda-stroke-title-two span:nth-child(4) {
    animation-delay: 1.2s;
}

.acuda-stroke-title-two span:nth-child(5) {
    animation-delay: 1.3s;
}

.acuda-stroke-title-two span:nth-child(6) {
    animation-delay: 1.4s;
}

.acuda-stroke-title-two span:nth-child(7) {
    animation-delay: 1.5s;
}

.acuda-stroke-title-two span:nth-child(8) {
    animation-delay: 1.5s;
}

.acuda-stroke-title-two span:nth-child(9) {
    animation-delay: 1.6s;
}

@keyframes loading-text {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }

    20% {
        transform: translateY(-5%);
        opacity: 1;
    }

    40% {
        transform: translateY(-10%);
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ====================================== Start Footer  Section Area ================= ============== */

.footer-bg-img {
    background: url(../img/footer-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 99;
}

.footer-bg-img::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.7;
    background-color: #000;
    z-index: -1;
}

.footer-menu-area {
    padding: 10px 0;
    border-bottom: 1px solid var(--footer-color);
    padding-bottom: 0;
}

.footer-menu-wrap ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-menu-wrap ul li a {
    color: #be1e2d;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s ease-in-out;
    padding: 25px 60px 25px 60px;
    border-right: 1px solid var(--footer-color);
}

.footer-menu-wrap ul li:first-child a {
    border-left: 1px solid var(--footer-color);
}

.footer-menu-wrap ul li a:hover {
    color: var(--primary-color);
}

.footer-widget-area {
    padding: 100px 0 60px;
    position: relative;
    z-index: 1;
}

/* .footer-bg-img::after {
    position: absolute;
    content: 'Utsah Group';
    left: 0;
    -webkit-text-stroke-width: 4px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #ffffff78;
    font-size: 160px;
    line-height: 200px;
    right: 0;
    margin: auto;
    bottom: 0;
    z-index: -1;
    text-align: center;
    opacity: 0.4;
} */

.footer-social-link {
    margin-top: 30px;
    text-align: center;
}

.footer-social-link ul {
    display: flex;
}

.footer-social-link ul li a {
    margin-right: 10px;
    color: var(--text-color);
    transition: all 0.4s ease-in-out;
}

.footer-title .title {
    color: var(--text-color);
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 20px;
}

.footer-widget .footer-logo {
    margin-bottom: 15px;
}

.footer-widget ul li {
    margin-bottom: 10px;
    /* text-align: center; */
}

.footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer-widget ul li a {
    color: #fff;
    transition: all 0.4s ease-in-out;
    font-size: 17px;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
}

.footer-widget ul li a i {
    margin-right: 10px;
}

.footer-widget.widget1 ul li a i {
    margin-right: 0;
}

.footer-widget.widget1 ul li a {
    color: var(--content-color);
    transition: all 0.4s ease-in-out;
    width: 40px;
    height: 40px;
    background: var(--button-two-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.4s ease-in-out;
}

.footer-widget.widget1 .text {
    max-width: 400px;
    color: #fff;
}

.footer-widget.widget1 ul li a:hover {
    background: var(--primary-color);
    color: var(--text-color);
}

.footer-logo img {
    width: 250px;
    padding: 0;
}

.widget4 .text {
    max-width: 320px;
    margin-bottom: 27px;
}

.newsletter .button-one {
    padding: 17px 40px;
}

.copyuright-area {
    padding: 20px 0;
    /* background: var(--title-color); */
}

.copyuright-area p,
.copyuright-area p a {
    color: #fff;
    transition: all 0.4s ease-in-out;
    letter-spacing: 0.5px;
    font-size: 17px;
}

.copyuright-area p a:hover {
    color: var(--primary-color);
}

.copyuright-area p a {
    font-weight: 800;
}

.copyuright-area {
    padding: 20px 0;
    border-top: 1px solid #fff;
}

/* ==================================== Back To Top ===================================== */

#back-top {
    height: 50px;
    width: 50px;
    text-align: center;
    position: fixed;
    right: 50px;
    bottom: 30px;
    opacity: 0;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
    color: var(--text-color);
    font-size: 30px;
    opacity: 1;
    visibility: visible;
    background: var(--primary-color);
    overflow: hidden;
}

#back-top:hover {
    background-color: var(--title-color);
}

.back-top-icon {
    transition: 0.3s;
}

.to-top:hover .back-top-icon {
    margin-top: -39px;
}

.hover-icon {
    position: absolute;
    bottom: -40px;
    transition: 0.3s;
    height: 50px;
    width: 50px;
}

.hover-icon i,
.back-top-icon i {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.to-top:hover .hover-icon {
    bottom: 0;
    left: 0;
    right: 0;
}

/* All Page Breadcrumbs  */

.breadcumb-wrapper-area {
    padding: 150px 0;
    position: relative;
    background-size: cover !important;
    z-index: 2;
    overflow: hidden;
}

.breadcumb-wrapper-area::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.5;
    z-index: -1;
    top: 0;
}

.bread-content .breadcumb-menu {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bread-content .breadcumb-title {
    margin-bottom: 15px;
    font-size: 64px;
    font-weight: 500;
    word-break: break-all;
}

.bread-content .breadcumb-menu li a {
    color: var(--text-color);
    transition: all 0.4s ease-in-out;
}

.bread-content .breadcumb-menu li a:hover {
    color: var(--primary-color);
}

/*================================================ Start Working Process Area ======================================== */

.work-process-card .icon {
    width: 100px;
    height: 100px;
    background: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--btn-border);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.work-process-card {
    position: relative;
    margin-bottom: 30px;
}

.work-process-card:hover .icon {
    background: var(--primary-color);
}

.work-process-card:hover .icon svg path {
    fill: var(--text-color);
}

.work-process-card .icon::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 240px;
    background-color: #d9d9d9;
    top: 50%;
    left: 100%;
    transform: translate(0, -50%);
    z-index: 0;
}

.work-process-card .icon svg path {
    transition: all 0.4s ease-in-out;
}

.work-process-card .title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--title-color);
}

.work-process-card .text {
    margin-bottom: 20px;
    color: var(--title-color);
    margin-right: 5px;
}

.work-process-card .work-process-count h1 {
    color: rgba(0, 0, 0, 0.05);
    font-size: 80px;
    font-weight: 800;
    margin: 0;
}

/*================================================ Start Our Team Area ======================================== */

.creative-team-area {
    background: var(--title-color);
    position: relative;
    margin-top: -210px;
    padding-top: 220px;
}

.creative-team-thumb img {
    width: 100%;
}

.creative-team-card .text {
    margin-bottom: 40px;
}

.creative-team-card .title {
    color: var(--text-color);
    margin-bottom: 45px;
}

.creative-team-card .about-btn .button-one {
    border: 0;
}

.team-details-appointment-area .mb-5 {
    margin-bottom: 22px !important;
}

/* ========================== Start Service Page Style ======================================================== */

.service-icon img {
    height: 445px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-single {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-single .serive-contet {
    display: flex;
    align-items: center;
    background: var(--text-color);
}

.service-thumb-icon {
    background: var(--primary-color);
    padding: 26px;
}

.serive-contet .service-title h3 {
    padding: 0 26px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.serive-contet .service-title h3 a {
    transition: all 0.4s;
}

.service-single-wrap .text,
.project-service-single-info-area .text {
    margin-bottom: 40px;
}

.service-overly-card {
    background: var(--title-color);
    color: var(--text-color);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    content: '';
    display: flex;
    padding: 60px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.service-single:hover .service-overly-card {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.service-overly-svg {
    padding: 30px 0;
}

.service-overly-card h3 {
    margin-bottom: 40px;
    transition: all 0.4s;
}

.service-overly-card h3:hover a {
    color: var(--primary-color);
}

.service-overly-card h3 a {
    color: var(--text-color);
    font-size: 24px;
    transition: all 0.4s;
}

.overly-icon a {
    color: var(--text-color);
    transform: rotate(-45deg);
    font-size: 24px;
    border: 1px solid var(--button-two-color);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.overly-icon a:hover {
    border: 1px solid var(--text-color);
}

.overly-icon a .icon-1 {
    position: absolute;
    transition: all 0.2s ease-in-out;
    top: 50%;
    left: -50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease-in-out;
}

.overly-icon a:hover .icon-1 {
    left: 50%;
}

.overly-icon a .icon-2 {
    position: absolute;
    transition: all 0.2s ease-in-out;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease-in-out;
}

.overly-icon a:hover .icon-2 {
    left: 120%;
}

/*======================================== Start Sidebar Area Style====================================== */

.service-single-wrap h5 {
    color: var(--title-color);
    line-height: 2;
    font-size: 30px;
}

.service-future .service-list {
    padding: 40px 60px 50px 60px;
}

.service-list h5 {
    color: var(--text-color);
}

.service-future .service-list ul li {
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-future .service-list ul li:last-child {
    margin-bottom: 0;
}

.service-future .service-list ul li i {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    text-align: center;
    line-height: 1.5;
    font-size: 12px;
}

.future-thumb img {
    width: 100%;
}

.sidebar-area .widget {
    padding: 40px;
    background: var(--bg-color);
    margin-bottom: 40px;
    border-radius: 15px;
}

.sidebar-area .widget h5 {
    color: var(--title-color);
    margin-bottom: 25px;
}

.sidebar-area .widget ul li {
    margin-bottom: 19px;
    border-bottom: 1px solid var(--bottom-border-color);
    padding-bottom: 12px;
}

.sidebar-area .widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sidebar-area .widget ul li a {
    color: var(--content-color);
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-area .widget ul li a span {
    font-size: 16px;
    font-weight: 400;
}

.sidebar-area .widget ul li a span i {
    font-size: 16px;
}

.sidebar-area .widget ul li.active a {
    color: var(--primary-color);
}

.sidebar-area .widget ul li a:last-child {
    margin-bottom: 0;
}

.sidebar-area .widget ul li:hover>a {
    color: var(--primary-color);
}

.sidebar-area .working-hours ul li {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar-area .working-hours ul li a {
    padding: 20px;
    background: var(--text-color);
    width: 100%;
    border-radius: 8px;
    display: block;
}

.sidebar-area .working-hours ul li a:last-child {
    margin-bottom: 0;
}

/* ======================================================== start FAQ Style ========================================== */

.FAQ-area .accordion-item {
    margin-bottom: 30px;
    border: 0;
}

.FAQ-area .accordion-item button.accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background: var(--btn-border);
    font-size: 18px;
    font-weight: 600;
    padding-left: 30px;
    border: 0;
    outline: 0;
    color: var(--title-color);
}

.FAQ-area .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--text-color);
    background: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.FAQ-area .accordion-item .accordion-body {
    padding: 20px 25px;
    color: var(--content-color);
    background: var(--bg-color);
}

/* ================================== Start Project Page Style ============================================================== */

.project-btn-menu {
    margin-bottom: 50px;
}

.project-btn-menu .button-style {
    border: 0;
    margin: 0 8px;
    background: 0;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
    padding: 0;
}

.project-btn-menu .button-style.active {
    color: var(--primary-color);
}

.project-btn-menu .button-style.active::after {
    width: 100%;
}

.project-btn-menu .button-style:hover {
    color: var(--primary-color);
}

.project-btn-menu .button-style::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.project-btn-menu .button-style:hover::after {
    width: 100%;
}

.project-card-item {
    position: relative;
    z-index: 1;
}

.project-card-img {
    overflow: hidden;
}

.project-card-img img {
    height: 400px;
}

.project-card-details .project-sub-title {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.project-card-details .project-sub-title span {
    position: relative;
    margin-bottom: 0;
    top: 50px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.project-card-item:hover .project-card-details .project-sub-title span {
    top: 0;
}

.project-card-details {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 35px 40px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    background: transparent;
}

.project-card-details::before {
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--text-color);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.project-card-item:hover .project-card-details::before {
    width: 100%;
}

.project-card-details h4 {
    font-size: 24px;
}

.project-card-details h4:hover a {
    color: var(--primary-color);
}

.project-card-details .project-title a {
    transition: 0.6s;
    position: relative;
    top: 100px;
    z-index: 1;
}

.project-card-item:hover .project-card-details h4 a {
    top: 0;
}

.project-card-details .project-sub-title {
    color: var(--primary-color);
}

.project-card-details .project-title {
    transition: 0.6s;
    position: relative;
    overflow: hidden;
}

.project-card-details .box-1 {
    position: absolute;
    content: '';
    right: -30px;
    top: -30px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.project-card-details .box-2 {
    position: absolute;
    content: '';
    right: -30px;
    top: -30px;
    width: 25px;
    height: 25px;
    background: var(--bg2-color);
    transition: all 0.6s ease-in-out;
    z-index: 2;
}

.project-card-item:hover .project-card-details .box-1 {
    top: 0;
    right: 0;
}

.project-card-item:hover .project-card-details .box-2 {
    top: 25px;
    right: 25px;
}

/*===================================== Start Project Details Page Area f=================================================================*/

.project-content-details .project-thumb {
    margin-bottom: 50px;
}

.category ul li a {
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.project-content-details {
    margin-bottom: 60px;
}

.project-details-area .project-content-details h2 {
    font-size: 36px;
    font-weight: 700;
}

.project-service-info-area {
    display: flex;
    align-items: center;
}

.project-service-single {
    border-top: 1px solid var(--btn-border);
    border-bottom: 1px solid var(--btn-border);
    border-right: 1px solid var(--btn-border);
    padding: 40px 0;
}

.project-service-single:last-child {
    border-right: 1px solid transparent;
}

.project-service-single .project-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 30px;
}

.project-info .project-info-text span {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--content-color);
    margin-bottom: 10px;
    display: inline-block;
}

.project-service-single-info-area .project-single h4 {
    font-weight: 600;
}

.project-info-text h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--title-color);
}

.project-info-icon {
    width: 70px;
    height: 70px;
    background: var(--icon-bg-color);
    border-radius: 50%;
    min-width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 22px;
}

.contact-info {
    padding: 50px;
    background: var(--primary-color);
    color: var(--text-color);
}

.contact-info h3 {
    margin-bottom: 6px;
}

.contact-info .text {
    color: var(--text-color);
}

.contact-info ul li {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info ul li:last-child {
    margin-bottom: 0;
}

.contact-info ul li a {
    color: var(--text-color);
    transition: all 0.4s;
}

.contact-info ul li a:hover {
    color: var(--title-color);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/*============================= Start Contact Page Area ===================================================== */

.contact-item {
    padding: 10px 0;
    background: var(--text-color);
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.contact-item-icon {
    padding: 15px 20px;
    border-right: 1px solid var(--border-right-color);
}

.contact-item-content .contact-us {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.8px;
}

.contact-item-content h6 {
    font-size: 17px;
    font-weight: 600;
    line-height: 23px;
}

.contact-item-content h6 a {
    transition: 0.4s;
}

.contact-item-content h6:hover a {
    color: var(--primary-color);
}

.contact-item .box1 {
    width: 25px;
    height: 25px;
    position: absolute;
    background: var(--primary-color);
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
}

.contact-item .box2 {
    width: 25px;
    height: 25px;
    position: absolute;
    background: var(--bg2-color);
    right: 25px;
    top: 25px;
    z-index: -1;
    transition: all 0.6s ease-in-out;
}

.contact-item:hover .box1 {
    top: -30px;
    right: -30px;
}

.contact-item:hover .box2 {
    right: -30px;
    top: -30px;
}

.row.contact-margin-top {
    margin-top: 70px;
}

.contact-maps {
    overflow: hidden;
}

.contact-maps iframe {
    width: 100%;
    height: 684px;
}

/*================================================ Home One CSS Style ========================================================== */

.home-one.about-us-area.section-padding {
    padding-bottom: 120px;
}

.home-one-menubar-area {
    border-right: 1px solid var(--btn-border);
}

.home-menu-one {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-menu-one .menu-icon-wrapper {
    position: relative;
    padding: 44px 70px;
}

.home-menu-one .menu-icon-wrapper .canva-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid rgb(26 26 26 / 10%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.home-three .home-menu-one .menu-icon-wrapper .canva-circle {
    border: 1px solid #FFFFFF1A;
}

.home-one-logo {
    background: var(--primary-color);
    width: 320px;
    height: 148px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-icon-wrapper {
    cursor: pointer;
}

.menu-icon-wrapper .canva-circle .canva-line.line-1,
.menu-icon-wrapper .canva-circle .canva-line.line-2,
.menu-icon-wrapper .canva-circle .canva-line.line-3,
.menu-icon-wrapper .canva-circle .canva-line.line-4 {
    width: 22px;
    height: 2px;
    background: var(--title-color);
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
}

.menu-icon-wrapper .canva-circle .canva-line.line-2,
.menu-icon-wrapper .canva-circle .canva-line.line-4 {
    top: 35px;
}

.menu-icon-wrapper .canva-circle .canva-line.line-3,
.menu-icon-wrapper .canva-circle .canva-line.line-4 {
    left: 160%;
}

.menu-icon-wrapper:hover .canva-circle .canva-line.line-1,
.menu-icon-wrapper:hover .canva-circle .canva-line.line-2 {
    left: -30%;
}

.menu-icon-wrapper:hover .canva-circle .canva-line.line-3,
.menu-icon-wrapper:hover .canva-circle .canva-line.line-4 {
    left: 50%;
}

.menu-icon-wrapper .canva-circle .canva-line.line-2,
.menu-icon-wrapper .canva-circle .canva-line.line-4 {
    transition-delay: 100ms;
}

.home-one-menubar-area .header_top {
    background: transparent;
    border-bottom: 1px solid var(--btn-border);
}

.home-one-menubar-area .header_top_left {
    margin-left: 30px;
}

.home-one-menubar-area .header_top_right {
    margin-right: 30px;
}

.home-one-menubar-area .main-menu {
    padding-left: 30px;
}

.home-one-menubar-area .header_top_left ul li,
.home-one-menubar-area .header_top_right ul li,
.home-one-menubar-area .header_top_right ul li {
    color: var(--title-color);
    font-size: 14px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
}

.home-one-menubar-area .header_top_left ul li a {
    color: var(--title-color);
    font-size: 16px;
}

.home-one-menubar-area .header_top_left ul li i {
    margin-right: 6px;
    color: var(--primary-color);
}

.home-one-menubar-area .header_top_right ul li a {
    font-size: 14px;
    color: var(--secendary-color);
}

.home-one-menubar-area .main-menu {
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-one-menubar-area .about-btn {
    margin-right: 25px;
}

.home-one-menubar-area .about-btn .button-two {
    position: relative;
    z-index: 1;
    background: var(--button-two-color);
    color: var(--text-color);
    transition: all 0.4s;
    padding-right: 35px;
    border: none !important;
    padding: 16px 35px;
}

.home-one-menubar-area .about-btn .button-two i {
    background: transparent;
    position: absolute;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    right: 100px;
}

.home-one-menubar-area .about-btn .button-two:hover i {
    opacity: 1;
    color: var(--text-color);
    right: 0;
}

.home-header-one-location {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 63px;
    color: var(--title-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

/*============================================ Start Home One Slider ARea ================================================== */

.home-one-slider .home-hero-content-box {
    padding: 290px 0 160px 0;
}

.home-hero-content-box {
    position: relative;
    z-index: 1;
    padding: 220px 0 320px 0;
}

.home-gero-one-slider {
    background-size: cover !important;
}

.home-hero-content-box .home-one-slide-title {
    color: var(--text-color);
    font-size: 160px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 70px;
}

.home-hero-content-box .home-one-description {
    width: 960px;
    position: relative;
}

.home-hero-content-box .home-one-description .home-ome-text p {
    color: var(--text-color);
    font-size: 58px;
    line-height: 70px;
    margin: 0;
    font-weight: 600;
}

.home-hero-content-box .home-one-description .home-one-overly-bg {
    position: absolute;
    content: '';
    mix-blend-mode: multiply;
    background: #5e170694;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.home-hero-content-box .home-one-description .home-ome-text {
    padding: 70px 10px 10px 10px;
    margin-bottom: 58px;
    margin-top: -50px;
}

.home-hero-content-box .home-one-slide-btn .button-two {
    border: none !important;
    padding: 10px 10px 10px 30px;
}

.home-hero-content-box .home-one-slide-btn .button-two i,
.home-one-servie-tabs-wrap .home-one-tabs-service-content .button-one i,
.about-us-area .button-one i {
    width: 35px;
    height: 35px;
}

.home-one-servie-tabs-wrap .home-one-tabs-service-content .button-one i,
.about-us-area .button-one i {
    line-height: 2.5;
}

.home-hero-content-box .home-one-slide-btn .button-two:hover {
    border: none !important;
}

/* Home One Slider ================ */

.home-one-hero-wrapper {
    position: relative;
    z-index: 0;
}

#hero-slider .owl-nav {
    position: absolute;
    /* width: 70px;
    height: 100px; */
    /* background-color: var(--text-color); */
    display: flex;
    align-items: center;
    bottom: 0;
    margin: 0;
    padding: 0;
    right: 0;
}

#hero-slider .owl-nav button {
    height: 60px;
    width: 51px;
    line-height: 50px;
    background: var(--primary-color);
    border-radius: 0;
    font-size: 18px;
    color: #fff;
}

/* .home-one-hero-wrapper .slick-dots {
    position: absolute;
    width: 500px;
    height: 100px;
    background-color: var(--text-color);
    display: flex;
    align-items: center;
    bottom: 0;
    margin: 0;
    padding: 0;
    right: 0;
}

.home-one-hero-wrapper .slick-dots::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 100%;
    left: -100px;
    top: 0;
    background: var(--primary-color);
    mix-blend-mode: multiply;
}

.home-one-hero-wrapper .slick-dots li:first-child {
    margin-left: 45px;
}

.home-one-hero-wrapper .slick-dots li {
    display: inline-flex;
    margin-top: 4px;
}

.home-one-hero-wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
    display: inline-block;
    font-size: 0;
    line-height: unset;
    background: var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    border: none;
    margin-right: 30px;
}

.home-one-hero-wrapper .slick-dots li.slick-active button {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    background-color: transparent;
} */

/*======================================= Home One About Section Area ======================================== */

.home-one {
    padding-top: 120px;
    background: var(--text-color);
}

.home-one .about-content {
    padding: 0;
    background: transparent;
    margin-right: 135px;
}

.home-one .about-card-box {
    position: relative;
    z-index: 1;
    align-content: center;
    align-items: center;
}

.home-one .about-img img {
    height: 653px;
}

.home-one-menubar-area .header_top_left ul li:first-child {
    border-right: 1px solid var(--btn-border);
    padding-right: 20px;
}

@keyframes jumpAni {
    0% {
        transform: translateY(10px);
    }

    40% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(10px);
    }
}

.home-one .about-card-box .experience-img {
    top: 45%;
    animation: jumpAni 6s linear infinite;
}

.home-one .about-card-box .experience-img img {
    border: 4px solid var(--text-color);
}

.home-one .about-card-box .about-content .text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.home-one-menubar-area .header_top_left ul {
    display: flex;
    gap: 21px;
}

/*======================================= Home One Tabs Start Tyle ======================================================== */

.all-padding-0 {
    padding: 0;
    margin: 0;
}

.home-one-service-section-area {
    background: var(--title-color);
    position: relative;
    z-index: 1;
}

.home-one-servie-tabs-wrap {
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.home-one-service-heading .title {
    color: var(--text-color);
    margin-bottom: 20px;
}

.home-one-servie-tabs-wrap .nav-pills {
    align-items: center;
    margin-bottom: 50px;
    border: 1px solid var(--button-two-color);
}

.home-one-servie-tabs-wrap .nav-pills li {
    padding: 25px 19px;
    border-right: 1px solid var(--button-two-color);
}

.home-one-servie-tabs-wrap .nav-pills li:first-child {
    padding-left: 26px;
}

.home-one-servie-tabs-wrap .nav-pills li:last-child {
    border: 0;
}

.home-one-servie-tabs-wrap .nav-pills .nav-item .nav-link {
    padding: 20px 40px;
    font-size: 18px;
    position: relative;
    font-weight: 600;
    background: var(--secendary-color);
    mix-blend-mode: multiply;
    overflow: hidden;
    color: var(--text-color);
    border-radius: 0;
}

.home-one-servie-tabs-wrap .home-one-image li button.active::before {
    background: #0071bc;
}

.home-one-servie-tabs-wrap .home-one-image li button.active {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-one-servie-tabs-wrap .home-one-image li button::before {
    position: absolute;
    content: "";
    background: var(--button-two-color);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.home-one-tabs-service-content {
    margin-left: 30px;
}

.home-one-tabs-service-content .title {
    color: var(--text-color);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.home-one-tabs-service-content .text {
    margin-bottom: 15px;
    color: #fff;
}

.home-one-tabs-service-content .about-list-wrap ul li {
    color: var(--text-color);
    margin-bottom: 20px;
}

.home-one-tabs-service-content .about-list-wrap ul li i {
    background: #252525;
    color: var(--text-color);
    border: 1px solid #7a787829;
}

.home-one-tabs-service-content .about-btn .button-one {
    border: none !important;
    ;
}

.home-one-tabs-service-content .about-btn .button-one:hover {
    border: none !important;
}

.home-one-tabs-service-content .about-btn .button-one::after {
    border: none !important;
}

/* Home one service bg image ====================================== */

.home-one-service-area-section {
    position: relative;
    z-index: 1;
}

.home-one-service-bg-img {
    background-image: url('../img/home-one/home-one-feature-shape.png');
    background-position: bottom right;
    z-index: 1;
    display: block;
    animation: flash 5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-repeat: no-repeat;
    pointer-events: none;
}

/*========================================== Home one Team Area ============================================================= */

.home-one-team-area {
    position: relative;
    z-index: 1;
    background: transparent;
    padding-top: 0;
    background: var(--title-color);
}

.home-one-team-area .title {
    color: var(--text-color);
}

.home-one-project-area .project-item {
    margin: 0;
}

.container-width {
    width: 1620px;
    margin: auto;
}

.home-one-project-item .project-img {
    overflow: hidden;
}

.home-one-project-item .project-img img {
    height: 824px;
}

.project-2 .project-img img {
    height: 400px;
}

.home-one-project-item .project-content-area,
.home-one-project-area .project-2 .project-content-area {
    width: 90%;
    margin: auto;
    position: absolute;
    z-index: 1;
    left: 0;
    color: var(--title-color);
    right: 0;
    padding: 100px 70px;
    overflow: hidden;
}

.home-one-project-item .project-content-area::before,
.home-one-project-area .project-2 .project-content-area::before {
    background: var(--text-color);
    color: var(--title-color);
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s;
}

.home-one-project-item .project-content-area h3 a,
.project-item .project-content-area h3 a {
    margin-bottom: 0;
}

.home-one-project-item .project-content-area h3 a,
.home-one-project-area .project-2 .project-content-area h3 a,
.home-one-project-item .project-content-area small {
    color: var(--title-color);
}

.home-one-project-item .project-content-area .projects-cat ul,
.project-item .projects-cat ul {
    display: inline-flex;
}

.home-one-project-area .project-item .projects-cat ul li a:hover {
    color: var(--title-color);
}

.home-one-project-item .project-content-area .projects-cat ul li a,
.project-item .projects-cat ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.4s;
}

.home-one-project-item .project-content-area .projects-cat ul li a {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.project-item .projects-cat ul li a {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.project-item .projects-cat ul li a:hover {
    color: var(--text-color);
}

.home-one-project-item .projects-cat ul li a:hover {
    color: var(--title-color);
}

.project-item:hover .project-content-area h3 a,
.project-item:hover .project-content-area .projects-cat ul li a {
    opacity: 1;
}

.home-one-project-item .project-content-area .project-box-1 {
    top: -100px;
    right: -100px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    height: 100px;
    width: 100px;
}

.home-one-project-item .project-content-area .project-box-2 {
    top: -100px;
    right: -100px;
    background: var(--bg-color);
    transition: all 0.5s ease-in-out;
    z-index: -1;
    height: 100px;
    width: 100px;
}

.home-one-project-item:hover .project-box-1 {
    top: 0;
    right: 0;
}

.home-one-project-item:hover .project-box-2 {
    top: 100px;
    right: 100px;
}

.home-one-project-area .project-2 .project-content-area {
    padding: 60px;
}

.home-one-project-area .project-2:hover .project-content-area::before {
    width: 100%;
}

.home-one-project-area .project-2 .project-box-1 {
    top: -62px;
    right: -60px;
    width: 55px;
    height: 55px;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.home-one-project-area .project-2 .project-box-2 {
    top: -62px;
    right: -62px;
    width: 55px;
    height: 55px;
    background: var(--bg-color);
    transition: all 0.6s ease-in-out;
    z-index: -1;
}

.home-one-project-area .project-2:hover .project-box-1 {
    top: 0;
    right: 0;
}

.home-one-project-area .project-2:hover .project-box-2 {
    top: 56px;
    right: 56px;
}

/*========================================== Home one Testi Customer Section ================================================================ */

.home-one-testi-area {
    background: var(--text-color);
    padding-bottom: 120px;
}

.home-one-testi-area .home-one-testi-content {
    margin-left: 50px;
}

.home-one-testi-area .home-one-testi-content .home-one-testi-customer {
    margin-bottom: 20px;
}

.home-one-testi-area .home-one-testi-content .home-one-testi-customer small {
    margin-left: 20px;
    font-size: 16px;
    color: var(--content-color);
    font-weight: 400;
}

.home-one-testi-area .home-one-testi-content .home-one-testi-title h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 52px;
    margin-bottom: 50px;
}

.home-one-testi-area .home-one-testi-content .home-one-testi-title h2 span {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 400;
}

.home-one-testi-area .home-one-testi-content .author-text h3,
.home-one-testi-area .home-one-testi-content .author-text p {
    margin-bottom: 0;
}

.home-one-testi-area .home-one-testi-content .author-text p {
    color: var(--primary-color);
}

.home-one-testi-area .home-one-testi-thumb {
    position: relative;
    z-index: 1;
}

.home-one-testi-area .home-one-testi-thumb::after {
    position: absolute;
    content: '';
    z-index: -1;
}

.home-one-blog-item .author-deatils .about-btn .button-two i,
.blog-post-area-section .recent-post-wrap .about-btn .button-two i {
    width: 25px;
    height: 25px;
}

.home-one-testi-area .home-one-testi-thumb::after {
    position: absolute;
    content: "";
    left: 0%;
    bottom: -7px;
    width: 100%;
    height: 104%;
    border: 1px solid var(--primary-color);
    border-radius: 51% 49% 52% 48% / 45% 43% 57% 55%;
    will-change: border-radius, transform, opacity;
    animation: sliderShape 5s linear infinite;
    display: block;
    transform: rotate(369deg);
    z-index: 1;
}

@keyframes sliderShape {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(0px) translateX(10px) rotate(1deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(6px) translateX(2px) rotateX(0deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(5px) translateX(0px) rotate(1deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

/* ============================================ Home One Counter Area =============================================================== */

.home-one-card-text {
    padding: 26px;
    border: 1px solid var(--btn-border);
    text-align: center;
    background: var(--text-color);
    border-top: 1px solid transparent;
    padding-bottom: 30px;
}

.home-one-card-text .counter-number span {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.home-one-card-text .counter-text span {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4px;
    color: var(--title-color);
}

.home-one-counter-card .counter-img {
    position: relative;
    z-index: 1;
}

.home-one-counter-card .counter-img img {
    width: 100%;
}

.home-one-counter-card .counter-img::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: transparent;
    mix-blend-mode: multiply;
    top: 0;
    left: 0;
    transition: all 0.4s ease-in-out;
}

.home-one-counter-card:hover .counter-img::before {
    mix-blend-mode: multiply;
    background: rgba(223, 95, 65, 0.73);
}

/*----------============================== Home one blog post area ---------------------====================================== */

.home-one-blog-area .recent-post-wrap {
    margin-bottom: 60px;
}

.home-one-blog-item .thumb {
    overflow: hidden;
    height: 320px;
}

.home-one-blog-item .thumb img {
    transition: all 0.4s ease-in-out;
    transform: scale(1);
    height: 320px;
}

.home-one-blog-item:hover .thumb img {
    transform: scale(1.10);
}

.home-one-blog-item .author-deatils {
    padding: 40px 34px;
}

.home-one-blog-item .author-deatils h5 {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--btn-border);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.home-one-blog-item .author-deatils h5::after {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.home-one-blog-item:hover .author-deatils h5::after {
    width: 100%;
}

/*===================================== Home Three Page Start Style =========================================================== */

.home-three {
    background: var(--title-color);
    color: var(--text-color);
}

.home-three .menu-icon-wrapper .canva-circle .canva-line.line-1,
.home-three .menu-icon-wrapper .canva-circle .canva-line.line-2,
.home-three .menu-icon-wrapper .canva-circle .canva-line.line-3,
.home-three .menu-icon-wrapper .canva-circle .canva-line.line-4 {
    background: var(--text-color);
}

.home-three .header_top_left ul li,
.home-three .header_top_right ul li,
.home-three .header_top_right ul li {
    color: var(--text-color);
}

.home-three .header_top_left ul li i {
    color: var(--text-color);
}

.home-three-slider .slick-dots li {
    display: block;
}

.home-three .main-menu li a {
    color: var(--text-color);
}

.home-three .header_top_left .top-email-color {
    color: var(--text-color);
}

.home-three .main-menu ul li ul li a {
    color: var(--title-color);
}

.home-three .main-menu ul li.dropmenu ul.dropdown-menubar a {
    color: var(--title-color);
    transition: all 0.3s;
}

.home-three .main-menu ul li.dropmenu ul.dropdown-menubar a:hover {
    color: var(--primary-color);
}

.home-three .home-header-one-location {
    color: var(--text-color);
}

.home-three .home-one-menubar-area .header_top {
    border-bottom: 1px solid var(--button-two-color);
}

.home-three .home-one-menubar-area {
    border-right: 1px solid var(--button-two-color);
    border-left: 1px solid var(--button-two-color);
}

.home-three .home-one-logo {
    background: transparent;
}

.home-three .home-menu-one .menu-icon-wrapper {
    border-right: 1px solid var(--button-two-color);
}

.home-three .stickey-wrapper.fixed {
    background: var(--title-color);
}

/*====================================== Home Three Slider Area ==================================================== */

.home-three-slider .home-three-content .sub-title {
    color: var(--text-color);
}

.home-three-slider .home-three-content .sub-title .dash {
    background: var(--text-color);
}

.home-three-slider .home-three-content .title {
    color: var(--text-color);
    font-size: 72px;
    line-height: 82px;
    font-weight: 600;
}

.stroke-title {
    display: inline-block;
    color: rgb(255 255 255 / 1%);
    text-shadow: 5px 9px 30px rgba(51, 51, 51, 0.16);
    stroke-width: 1.5px;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #ffffff59;
    font-size: 200px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -8px;
    mix-blend-mode: soft-light;
    margin-top: -150px;
    margin-left: -142px;
}

.home-three-slider .home-three-content .home-one-slide-btn {
    margin-top: -90px;
}

.home-three-slider .home-three-content {
    margin-left: 100px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.home-three-slider .slick-dots {
    width: 80px;
    position: absolute;
    top: 32%;
    left: 120px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    background: transparent;
}

.home-three-slider .slick-dots li button {
    border: none;
    height: 67px;
    width: 67px;
    border-radius: 100px;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
    transition: all 0.3s ease-in;
}

.home-three-slider .slick-dots::before {
    background: transparent;
}

.home-three-slider .slick-dots li.slick-active button {
    background-color: var(--text-color);
    color: var(--primary-color);
}

.home-three-slider .slick-dots li:first-child {
    margin-left: 0;
}

.home-three-slider .slider-bottom-wrapper {
    padding: 43px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 600px;
}

.home-three-slider .slider-bottom-wrapper-title {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 15px;
    margin-right: 10px;
}

.home-three-slider .slider-bottom-btn {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: 0.3s;
}

.home-three-slider .slider-bottom-btn:hover {
    color: var(--title-color);
}

.home-three-slider .slider-bottom-btn i {
    margin-left: 5px;
}

/*=================================== Home Three Service section area d================================================================ */

.home-three-service-area .service-icon {
    height: 295px;
    overflow: hidden;
}

.home-three-service-area .service-icon img {
    object-fit: cover;
}

.home-three-service-area .serive-contet .service-title h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.home-three-service-area .serive-contet .service-title h3 a {
    color: var(--text-color);
}

.home-three-service-area .service-single .serive-contet {
    background: var(--title-color);
    padding: 22px 0;
}

.home-three-service-area .service-overly-card {
    padding: 40px 30px;
    background: var(--primary-color);
    align-items: end;
}

.home-three-service-area .service-overly-card .service-overly-svg {
    padding: 0;
}

.home-three-service-area .service-overly-card h1 {
    margin-bottom: 20px;
}

.home-three-service-area .service-overly-card h3 a {
    color: var(--text-color);
    font-size: 22px;
    transition: all 0.4s;
}

.home-three-service-area .service-overly-card h3:hover a {
    color: var(--title-color);
}

.home-three-service-area .service-overly-card h3 {
    margin-right: 0;
    margin-bottom: 20px;
    transition: all 0.4s;
    line-height: 30px;
}

.service-overly-card .about-btn .button-two i,
.home-three-post-btn .about-btn .button-two i {
    width: 25px;
    height: 25px;
    margin-left: 11px;
}

.service-overly-card .about-btn .button-two {
    border: 1px solid var(--primary-color);
}

.service-overly-card .about-btn .button-two::before {
    border: 1px solid var(--primary-color);
}

.service-overly-card .about-btn .button-two:hover::before {
    background: var(--title-color);
    border: 1px solid var(--title-color);
}

.home-three-service-area {
    position: relative;
    z-index: 1;
    background-image: url('../img/home-three/feature-two-bg.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    padding: 0 0 60px;
}

.home-three-service-img {
    background-image: url('../img/home-three/feature-shape-2.png');
    background-position: bottom right;
    display: block;
    animation-name: pulse;
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    bottom: 40px;
    z-index: 1;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: shape1 5s linear infinite;
}

@keyframes shape1 {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(0px) translateX(20px) rotate(0deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(20px) translateX(30px) rotate(0deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(10px) translateX(0px) rotate(0deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

/* ============================================ Home Three About Area Start =================================================== */

.home-three-about-area {
    padding-top: 0;
}

.home-three-about-img {
    position: relative;
    z-index: 1;
}

.home-three-about-counter {
    padding-left: 35px;
    height: 161px;
    position: absolute;
    top: -20px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 218px;
}

.home-three-about-counter::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--primary-color);
}

.home-three-about-counter .home-three-counter-wrap {
    position: relative;
    z-index: 99;
    padding-right: 30px;
}

.home-three-about-counter .home-three-counter-wrap .counter-number {
    display: flex;
    align-items: end;
    margin-bottom: 8px;
    color: var(--text-color);
}

.home-three-about-counter .home-three-counter-wrap .counter-number span {
    font-size: 36px;
    color: var(--text-color);
}

.home-three-about-counter .home-three-counter-wrap .home-three-counter-title {
    color: var(--text-color);
}

.home-three-title .title span {
    font-size: 48px;
    color: var(--primary-color);
}

/*================================== Home Three Contact us Area ====================================================== */

.home-three-contact-us {
    padding-bottom: 120px;
}

.home-three-contact-us .home-three-contact-wrap {
    display: flex;
}

.home-three-contact-us .home-three-contact-info {
    padding: 0 60px;
    border: 1px solid var(--primary-color);
    border-left: 1px solid transparent;
    display: flex;
    align-items: center;
}

.home-three-contact-us .home-three-contact-info .home-three-contactd-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 600;
}

.home-three-contact-us .home-three-contact-info .home-three-contactd-title a {
    color: var(--primary-color);
}

.home-three-contact-us .home-three-contact-info p {
    font-size: 24px;
}

/*===================================== Home Three Contact Location area df================================= */

.home-three-contact-info-location {
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.home-three-contact-info-location .home-three-contact-item {
    padding: 0;
    border-right: 1px solid var(--btn-border);
    background: var(--text-color);
}

.home-three-contact-info-location .home-three-contact-item:last-child {
    border-right: 0;
}

.home-three-contact-single {
    display: flex;
    align-items: self-start;
    background: var(--text-color);
}

.home-three-contact-single:hover .home-three-info-icon svg {
    transform: rotateY(180deg);
}

.home-three-info-icon {
    padding: 35px;
    border-right: 1px solid var(--btn-border);
    border-bottom: 1px solid var(--btn-border);
}

.home-three-info-icon svg {
    transition: all 0.4s ease-in-out;
}

.home-three-contact-info-text {
    padding: 30px 35px 31px 35px;
}

.home-three-contact-info-text h5 {
    color: var(--title-color);
    font-size: 20px;
}

.home-three-contact-info-text p {
    font-size: 16px;
    font-weight: 500;
}

.home-three-contact-info-text .contact-email-address a,
.home-three-contact-info-text .contact-phone-address a {
    display: flex;
    font-size: 17px;
    font-weight: 500;
    color: var(--content-color);
    transition: all 0.4s ease-in-out;
}

.home-three-contact-info-text .contact-email-address a:hover,
.home-three-contact-info-text .contact-phone-address a:hover {
    color: var(--primary-color);
}

.home-three-group-img {
    background-image: url('../img/home-three/service/home-contact-shape.png');
    background-position: 950px 0px;
    display: block;
    animation: flash 5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-repeat: no-repeat;
    pointer-events: none;
}

@keyframes flash {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    40% {
        opacity: 0.6;
    }

    60% {
        opacity: 1;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
    }
}

/*================================== Home Three Top Selling Section =============================================== */

.home-three-padding-top {
    padding-top: 120px;
}

/*=============================================== Home Three Blog Post Area ============================================================= */

.home-three-area .home-one-blog-item .author-deatils h5 {
    border: 1px solid transparent;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
}

.home-three-area .home-one-blog-item .author-deatils h5::after {
    background: transparent;
}

/*================================================== Home Three Priceing Area ==================================================================== */

.home-three-priceing-section-area {
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.home-three-price-animation-img {
    background-image: url('../img/home-three/prc-shape-1.png');
    background-position: top right;
    z-index: 1;
    display: block;
    animation: flash 6s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-repeat: no-repeat;
    pointer-events: none;
}

@keyframes flash {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    40% {
        opacity: 0.6;
    }

    60% {
        opacity: 1;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
    }
}

.home-three-price-table-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 50px 60px;
    background: var(--text-color);
    border: 2px solid var(--text-color);
    transition: all 0.4s ease-in-out;
}

.price-box-1 {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    top: -50px;
    right: -50px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.price-box-2 {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    top: -50px;
    right: -50px;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.home-three-price-table-wrap:hover .price-box-1 {
    top: 0;
    right: 0;
}

.home-three-price-table-wrap:hover .price-box-2 {
    top: 40px;
    right: 40px;
}

.home-three-price-content-area .price-title h5 {
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.home-three-price-content-area .price h2 {
    font-weight: 700;
    transition: all 0.4s ease-in-out;
}

.home-three-price-table-wrap:hover .price h2 {
    color: var(--primary-color);
}

.home-three-price-content-area .price h2 span {
    color: var(--secendary-color);
    font-weight: 500;
    font-size: 16px;
}

.home-three-price-content-area {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--btn-border);
}

.price-support-list ul li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--content-color);
}

.price-support-list ul li i {
    color: var(--content-color);
    margin-right: 10px;
    transition: all 0.4s;
}

.home-three-price-table-wrap:hover .price-support-list ul li i {
    color: var(--primary-color);
}

.home-three-price-table-wrap .home-one-slide-btn {
    margin-top: 35px;
}

.home-three-price-table-wrap .home-one-slide-btn .button-two {
    width: 100%;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
    border: 0;
    background: var(--bg2-color);
    letter-spacing: 1px;
}

.home-three-price-table-wrap:hover {
    border: 2px solid var(--primary-color);
}

.home-three-price-table-wrap .home-one-slide-btn .button-two i {
    background: transparent;
    color: var(--primary-color);
    font-size: 16px;
    margin-left: 0;
}

.home-three-price-table-wrap:hover .home-one-slide-btn .button-two,
.home-three-price-table-wrap:hover .home-one-slide-btn .button-two i {
    color: var(--text-color);
}

.home-three-price-table-wrap:hover .home-one-slide-btn .button-two::before {
    color: var(--text-color) !important;
    right: 0;
}

.home-three-price-table-wrap .home-one-slide-btn .button-two::before {
    position: absolute;
    content: '';
    z-index: -1;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    top: 0;
    right: 100%;
    transition: all 0.4s ease-in-out;
    color: var(--text-color);
}

.team-appointment-form input[type="email"] {
    margin-bottom: 0;
}

.team-appointment-form button[type="submit"] i,
.appointment-form-title .about-btn .button-one i,
.appoinment-form-wrap button[type="submit"] i,
.single-post-item .about-btn .button-two i {
    width: 30px;
    height: 30px;
    line-height: 2.1;
    margin-left: 18px;
}

.team-appointment-form .form-group {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.team-appointment-form select {
    padding: 16px 25px;
    width: 100%;
    border: 0;
    background: var(--bg2-color);
    position: relative;
    appearance: none;
    color: var(--content-color);
}

.team-appointment-form .button-one:hover {
    color: var(--primary-color);
}

.team-appointment-form .form-group i {
    position: absolute;
    right: 28px;
    color: var(--secendary-color);
    bottom: 19px;
    font-size: 15px;
}

.team-appointment-form .about-btn {
    margin-top: 20px;
}

.team-appointment-form .about-btn .button-two i {
    position: relative;
    right: 0;
}

.appoinment-padding-0 {
    padding: 0;
    background: var(--text-color);
}

.appointment-form-title {
    width: 85%;
    max-width: 85%;
}

.appointment-form-title .title {
    font-size: 36px;
    margin-bottom: 25px;
}

.team-appointment-form input.date-none {
    appearance: none !important;
}

.floating-btn a {
    background: var(--primary-color);
    padding: 30px 15px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 800;
    position: fixed;
    right: 0;
    float: right;
    top: 40%;
    z-index: 9999;
    writing-mode: tb-rl;
}

/*  */

.lastContainer {
    display: flex;
    height: 100vh;
    /* background: yellow; */
}

.gap-custom5 {
    padding-top: 50px;
}

.first-slide h3 {
    font-size: 150px;
    line-height: 170px;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.second-slide h3 {
    line-height: 40px;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
    padding-top: 40px;
    margin-bottom: 10px;
}

.second-slide p {
    font-size: 18px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
    text-align: justify;
    margin-bottom: 10px;
}

.second-slide li {
    font-size: 18px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
    max-width: 540px;
    text-align: justify;
    margin-bottom: 10px;
}

/* .second-slide li:hover {
    box-shadow: 0 0 25px 5px #1583d1bd;
} */

.second-slide ul {
    padding-top: 60px;
}

.main_why {
    position: relative;
}

.main_why::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    background: url(../img/wave.png) no-repeat;
    background-size: auto;
    /* background-position: center; */
    bottom: 0;
    height: 300PX;
    width: 100%;
    z-index: -1;
    opacity: 0.4;
}

.main_why img.img-fluid {
    border-radius: 30px;
    border: 4px solid #0071bc;
}

.third-slide li {
    font-size: 18px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
    text-align: justify;
    margin-bottom: 10px;
}

.third-slide h3 {
    font-size: 35px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.third-slide .col-md-6:nth-child(1) {
    padding-left: 50px;
    padding-top: 100px;
}

.third-slide .col-md-6.m-auto {
    padding-left: 60px;
    padding-top: 100px;
}

.footer-widget.widget4 .text-box {
    padding-top: 50px;
}

.want-about-sec {
    padding: 160px 0 70px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.want-about-sec h3 {
    font-size: 110px;
    margin-bottom: 10px;
    color: #333;
    line-height: 90px;
    font-weight: 900;
    letter-spacing: -5px;
}

.want-about-sec h2 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #2e2b2beb;
}

.want-about-sec h2 span {
    color: #1583d1;
}

.shape2 {
    position: absolute;
    right: 15%;
    top: 0%;
    z-index: -1;
}

.shape1 {
    position: absolute;
    z-index: 1;
    top: 5%;
    right: 20%;
}

.shape1 img {
    width: 240px;
}

.read-more a {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background-color: #1583d1;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 25px;
    letter-spacing: 1px;
    box-shadow: 0px 6px 16px rgb(13 94 244 / 24%);
}

.read-more a:hover {
    color: #fff;
}

.read-more a:before {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 600%;
    background-color: #0F2239;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    transform: translateX(-50%) translateY(-50%) rotate(60deg);
    z-index: -1;
    -webkit-transition: 0.7s ease;
    transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
    -moz-transform: translateX(-50%) translateY(-50%) rotate(60deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(60deg);
}

.read-more a:hover::before {
    height: 560%;
}

/*  */

.off-canvas-content h4 {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 20px;
}

.off-canvas-desc {
    font-size: 16px;
    font-weight: 400;
    color: #D9D9D9;
    font-family: "Manrope", sans-serif;
    margin-bottom: 25px;
}

.off-canvas-contact-info ul.info-list {
    border: 0;
}

.off-canvas-contact-info ul.info-list li {
    color: #D9D9D9;
    border: 0;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
}

.off-canvas-contact-info ul.info-list li i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--text-color);
}

.off-canvas-contact-info {
    margin-bottom: 50px;
}

.close-icon {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
}

.off-canvas-social-links ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.off-canvas-social-links ul li a:hover {
    background: var(--primary-color);
    color: var(--text-color);
}

.off-canvas-social-links ul {
    display: flex;
    gap: 10px;
}

.canvas-wrapper.active .side-slide .off-cavas-menu-overly {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(6 18 39);
    opacity: 0.8;
    cursor: pointer;
    transition: 0.4s;
    transform: translateX(0%);
    height: 100vh;
    z-index: -1;
}

.canvas-wrapper .side-slide .off-cavas-menu-overly {
    transform: translateX(-100%);
}

.header_top_right ul li a {
    background: #fff;
    height: 30px;
    width: 30px;
    color: #000;
    text-align: center;
    line-height: 30px;
    border-radius: 50px;
}

.off-canvas-content .vektor-mobile-menu ul li a {
    color: #fff;
    /* border-bottom: 1px solid #f2f2f2; */
}

.off-canvas-content .vektor-mobile-menu ul li ul li a {
    font-size: 15px;
    padding: 10px;
    font-weight: 400;
}

/*  */

.why__choose__us {
    padding: 60px 0;
    background: #fff;
}

.why-us-heading-wrapper {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.why__choose__us h3 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 800;
    margin-right: 0;
    word-break: break-word;
    text-transform: capitalize;
    color: #333333db;
    margin-bottom: 10px;
}

.why-us-content-number {
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 1000;
    color: #0071bc;
}

.why__choose__us p.section-content-text {
    font-size: 19px;
    font-weight: 500;
    line-height: 31px;
    color: #4e4e4e;
    margin: 10px 0 10px;
}

.why__choose__us a.h-btn {
    font-size: 18px;
    font-weight: 800;
    color: #0071bc;
}

.flex {
    display: flex;
}

.why__choose__us h5 {
    font-weight: 500;
    font-size: 23px;
    letter-spacing: 9px;
    margin-right: 14px;
    /* color: #fff; */
    line-height: 33px;
}

.why__choose__us h4 {
    /* text-transform: uppercase; */
    font-size: 48px;
    font-weight: 700;
    line-height: 63px;
    margin-bottom: 10px;
}

.why__choose__us h2 {
    font-size: 53px;
    line-height: 63px;
    /* color: #fff; */
    margin-bottom: 20px;
}

.why__choose__us p {
    line-height: 32px;
    font-size: 19px;
    color: #000;
    margin-bottom: 10px;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr .1fr 1fr .1fr 2fr 1fr;
    grid-template-rows: .5fr 1fr 1.1fr 1fr 3fr 1fr;
    gap: 1rem;
    width: 80%;
    box-sizing: border-box;
    margin: 0px auto 0;
    align-items: end;
    justify-content: center;
}

.why-us-content-background {
    border: 3px solid #fff;
    background: linear-gradient(to top right, #fff 0, #fff 30%, #d9d7d5 100%);
    box-shadow: -20px 20px 40px rgb(0 113 188 / 8%);
    padding: 1.3rem 1.5rem 2rem 1.5rem;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-start;
    transition: all .5s;
}

.why-us-content-background:hover {
    z-index: 5;
    background: #0071bc;
    transform: scale(1.2);
    z-index: 11111 !important;
}

.why-us-content-background:hover h3 a,
.why-us-content-background:hover .why-us-content-number,
.why-us-content-background:hover p.section-content-text,
.why-us-content-background:hover a.h-btn {
    color: #fff;
}

.why-us-content-one {
    grid-row: 1 / 5;
    grid-column: 2 / 6;
    border-radius: 5rem 0 5rem 5rem;
}

.why-us-content-two {
    grid-row: 1 / 5;
    grid-column: 5 / 13;
    border-radius: 5rem 5rem 5rem 0;
}

.why-us-content-three {
    grid-row: 1 / 6;
    grid-column: 4 / 9;
    border-radius: 5rem 0 5rem 5rem;
    z-index: 1111 !important;
}

.why-us-content-four {
    grid-row: 2 / 6;
    grid-column: 1 / 4;
    border-radius: 0 5rem 5rem 5rem;
}

.why-us-content-five {
    grid-row: 3 / 16;
    grid-column: 1 / 5;
    border-radius: 0 5rem 5rem 5rem;
    z-index: 111 !important;
}

.why-us-content-six {
    grid-row: 3 / 17;
    grid-column: 18 / 5;
    border-radius: 0 5rem 5rem 5rem;
    z-index: 111;
}

.why-us-content-sev {
    grid-row: 4 / 32;
    grid-column: 1 / 6;
    border-radius: 5rem 0 5rem 5rem;
    z-index: 11;
}

.why-us-content-eig {
    grid-row: 3 / 32;
    grid-column: 5 / 14;
    border-radius: 5rem 0 5rem 5rem;
    z-index: 111;
}

.why-us-content-nine {
    grid-row: 2 / 48;
    grid-column: 2 / 7;
    border-radius: 5rem 0 5rem 5rem;
    z-index: 111;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

/*  */

.testi_sec {
    padding: 60px 0;
    background: #f2f2f2;
}

.testi_sec .in-sync,
.testi_sec .in-link {
    border: 1px solid #639;
    box-sizing: border-box;
}

.testi_sec .child .current img {
    transform-style: flat !important;
}

.testi_sec .owl-nav {
    text-transform: uppercase;
    font-family: arial;
    font-size: 12px;
    padding: 12px;
}

.testi_sec .owl-prev {
    display: inline-block;
}

.testi_sec .parent .item {
    padding: 20px;
    transition: all 0.4s ease-in-out;
}

.testi_sec .parent .item img {
    cursor: pointer;
    padding: 5px;
    /* transition: all 0.4s ease;
    border: 2px solid #0071bc;
    border-radius: 30px;
    transition: all 0.4s ease-in-out; */
}

.testi_sec .parent .owl-item.center .item img {
    border: none !important;
}

.testi_sec .parent .owl-item.center .item {
    cursor: auto;
    /* margin: 10px; */
    padding: 0;
    transition: all 0.4s ease-in-out;
    /* border: 4px solid #0071bc;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.testi_sec h3 {
    font-size: 21px;
    font-weight: 600;
    color: #185479;
    margin: 0 0 10px;
    line-height: 30px;
}

.testi_sec p {
    font-size: 17px;
    color: #333;
    font-weight: 500;
}

.testi_sec h5 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

.testi_sec h6 {
    color: #000;
    font-size: 14px;
    line-height: 21px;
    margin-top: 5px;
}

.testi_sec .child a {
    background: #185479;
    padding: 10px 30px;
    border-radius: 30px;
    color: #fff;
    line-height: 50px;
}

.testi_sec .child {
    position: relative;
}

.testi_sec .child img {
    position: absolute;
    height: 35px;
    width: 35px !important;
    right: 10%;
    top: 0px;
}

.testi_sec .child .item {
    padding: 0 50px 0 20px;
}

.testi_sec h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.about-us-sec {
    position: relative;
    padding: 30px 0;
    background: #fff;
}

.side-lines {
    position: absolute;
    top: 80px;
    left: 5%;
    z-index: 1;
    height: calc(100% - 160px);
}

.side-lines .box {
    display: block;
    width: 30px;
    height: 30px;
    background: #000000;
    margin-left: -13px;
    z-index: 1;
    position: relative;
    cursor: pointer;
}

.side-lines .box:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(0, 112, 186, 0.3);
    opacity: 0;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
    z-index: 1;
}

.sidecustom2 .text {
    transform: rotate(-90deg);
    background: #fff;
    height: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    line-height: 28px;
    font-size: 25px;
    color: #1f1e1e;
    margin-left: -60px;
    margin-top: 50px;
}

.side-lines .line {
    display: block;
    background: #2f2d2d;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    z-index: -1;
}

.about-left-side {
    padding-left: 50px;
}

.about-left-side h3 {
    font-size: 45px;
    line-height: 53px;
    color: #333;
}

.about-left-side p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 10px;
}

.side-lines.right-side {
    right: calc(0% - 30px);
    left: auto;
}

.about-left-side-1 {
    padding: 40px;
    z-index: 3;
    position: relative;
    display: inline-block;
}

.about-sec-bg-1,
.about-sec-bg {
    position: relative;
}

.about-sec-bg-1:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #f5f7fa;
    width: 100%;
    z-index: 1;
}

.about-sec-bg:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #f5f7fa;
    width: 100%;
    z-index: 1;
}

.about-left-side-1 h3 {
    font-size: 40px;
    line-height: 50px;
    color: #333;
    margin-bottom: 10px;
}

.about-left-side-1 p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 10px;
}

/*  */

.square-tabs .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0;
    gap: 30px;
}

.square-tabs .nav-tabs .nav-item .nav-link {
    padding: 8px 0px;
    position: relative;
    font-size: 14px;
    overflow: hidden;
    display: block;
    z-index: 10;
    text-align: center;
    background-color: #fff;
    border: 1px solid #808080;
    transition: 0.5s all;
    color: #808080;
    white-space: nowrap;
    border-radius: 0;
}

.square-tabs .nav-tabs .nav-item .nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #808080;
    border-color: #808080;
    width: 0%;
    transition: 0.5s all;
    z-index: -1;
}

.square-tabs .nav-tabs .nav-item .nav-link.active:before,
.square-tabs .nav-tabs .nav-item:hover .nav-link:before {
    width: 100%;
}

.square-tabs .nav-tabs .nav-item:hover .nav-link,
.square-tabs .nav-tabs .nav-item .nav-link.active {
    color: #fff;
    border-color: #808080;
}

.timeline .owl-next i,
.timeline .owl-prev i {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
}

.timeline .owl-nav {
    margin: 0;
}

.timeline .owl-nav .owl-next {
    position: absolute;
    top: 0;
    right: -5%;
}

.timeline .owl-nav .owl-prev {
    position: absolute;
    top: 0;
    left: -5%;
}

.about-story .tabs .nav {
    position: relative;
}

.about-story .tabs .nav:before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(35% - 1px);
    width: 100%;
    height: 2px;
    background-color: #000000;
    z-index: -1;
}

.about-story .tabs .nav .nav-item .nav-link {
    text-align: center;
    margin: 0px 0px 0px 0px;
    padding: 15px 40px 15px 40px;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-radius: 0px 0px 0px 0px;
    background: #000000;
    color: #fff;
    border-color: #fff;
}

.about-story .tab-inner .content-box .list ul li {
    margin-bottom: 15px;
}

.about-story .tab-inner .content-box .list ul {
    columns: 2;
}

.about-story .tab-inner .content-box .list ul li i {
    margin-right: 10px;
}

.bx-wrapper {
    box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
}

.bg-custom-white {
    background-color: #ffffff;
}

/* section.industries-logo-sec.bg-custom {
    padding-bottom: 60px;
} */

.padding-20 {
    padding: 20px;
}

.mb-xl-30 {
    margin-bottom: 0;
}

.content-box {
    padding: 0 20px;
}

.content-box h4 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 35px;
}

.content-box p {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 27px;
}

.about-story h3 {
    /* text-transform: uppercase; */
    font-size: 48px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 50px;
    text-align: center;
}

#text-anim {
    font-size: 65px;
    text-transform: capitalize;
    display: inline-block;
    -webkit-text-stroke-width: 4px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    margin: 20px 0;
}

#text-anim div {
    display: inline-block;
}

.filters {
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.grid li img {
    max-width: 100%;
    border-radius: 5px;
    height: 270px;
    width: 100%
}

.filters button {
    padding: 10px 15px;
    background: #000 !important;
    margin: 0 20px;
    border: none;
    transition: 150ms;
    font-size: 19px;
    line-height: 25px;
    position: relative;
    outline: none;
    cursor: pointer;
    color: #fff;
}

.filters button.is-checked {
    background-color: #0071bc !important;
    color: #fff;
}

.grid {
    margin: 30px 80px !important;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none
}

.grid>li {
    width: calc(100% / 3 - 30px);
    cursor: pointer;
    background: grey;
    display: block;
    position: relative;
    text-align: center;
    z-index: 1;
    margin: 0 15px 20px 0;
    color: white;
    overflow: hidden;
}

.element-item-content {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    padding: 80px 45px;
    left: 0;
    z-index: 1;
    background: black;
    visibility: hidden;
}

.grid>li:hover .element-item-content {
    opacity: .8
}

.element-item-content h4 {
    font-size: 25px;
    color: #0071bc;
}

.element-item-content h6 {
    color: #fff;
    font-size: 20px
}

section.tab-menu {
    background: #fff;
    padding: 60px 0;
}

.hero-wrapper {
    background-image: url(../img/attachment-80.png);
    background-position: 48% 130px;
    background-repeat: no-repeat;
    background-size: 1100px auto;
    padding: 150px 0 100px;
    text-align: center;
    background-color: #fff;
    position: relative;
}

.light-particle {
    background: url(../img/light-particle.png) no-repeat;
    position: absolute;
    height: 260px;
    width: 300px;
    background-size: contain;
    left: 20px;
    z-index: 3;
    margin-top: -80px;
}

.hero-wrapper h3 {
    font-size: 80px;
    letter-spacing: -5px;
    word-spacing: 10px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 100px;
    color: #000;
    text-transform: uppercase;
}

#pre-load {
    background-color: #f2f2f2;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 9999;
}

.loader .loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 5px solid #ebebec;
    background-color: #1583d147;
    border-radius: 50%;
}

.loader .loader-container:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-top: 4px solid #2196F3;
    border-radius: 50%;
    animation: loaderspin 1.8s infinite ease-in-out;
    -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

.loader .loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    text-align: center;
}

.loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 100px;
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

/* section.team-sec-inner {
    padding: 60px 0;
}

section.team-sec-inner h3 {
    font-size: 50px;
    margin-bottom: 40px;
    font-weight: 700;
} */

.team-9 {
    padding: 20px;
    margin: 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.team-9:hover {
    transform: rotateY(180deg);
}

.team-9 .team-img {
    position: relative;
    font-size: 0;
    text-align: center;
    margin-bottom: 20px;
}

.team-9 .team-img img {
    width: 100%;
    height: auto;
    border-radius: 100%;
}

.team-9 .team-content {
    text-align: center;
}

.team-9 .team-content h2 {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
    line-height: 24px;
}

.team-9 .team-content h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 25px;
}

.team-9 .team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #ffffff;
    border-radius: 5px;
    transform: rotateY(180deg);
}

.team-9 .team-overlay p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 15px;
    color: #000;
    text-align: justify;
}

.team-sec-inner {
    padding: 60px 0;
    background-color: #fff;
}

.team-sec-inner h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 30px;
    text-align: center;
}

.about-us-sec img {
    height: 100% !important;
}

#custum-pupup .modal-header .btn-close {
    right: -15px;
    top: -15px;
    width: 35px;
    height: 35px;
    opacity: 1;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    background-color: #0071bc;
    color: #fff;
    filter: invert(1);
    font-size: 16px;
    z-index: 3;
    cursor: pointer;
    position: absolute;
}

#custum-pupup .modal-header {
    padding: 0;
    border: none;
}

#custum-pupup .form-group {
    margin-bottom: 10px;
}

#custum-pupup .form-group label {
    font-size: 18px;
    color: #000;
    padding-bottom: 10px;
}

#custum-pupup .form-group input.form-control {
    height: 45px;
    border: 1px solid #c5c2c2;
    border-radius: 0;
}

#custum-pupup .form-group textarea {
    border: 1px solid #c5c2c2;
    border-radius: 0;
}

#custum-pupup .modal-body {
    padding: 30px;
}

#custum-pupup .form-group .btn-submit {
    padding: 20px 30px;
    background: #ff8e43;
    font-size: 18px;
    display: inline-block;
    line-height: 18px;
    text-align: center;
    color: var(--text-color);
    font-family: "Quicksand", sans-serif;
    width: 100%;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.form_content h3 {
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

/*  */

.elementor-brand-image {
    display: flex;
    position: relative;
    z-index: 1;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    font-size: 0;
    transition: all ease 0.3s;
    background: #fff;
    border-radius: 30px;
    align-items: center;
}

.animation-hover_image {
    position: absolute;
    z-index: 1;
    top: 0;
    visibility: hidden;
    transition: all ease 0.3s;
    transform: translateY(-100%);
}

.elementor-brand-image img {
    height: 150px;
    width: 160px !important;
    object-fit: contain;
    transition: all ease 0.3s;
}

.elementor-brand-image:hover .animation-hover_image {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}

.elementor-brand-image:hover .elementor-img {
    transform: translateY(100%);
}

/*  */
/* 
.cutting-edge-sec {
    padding: 250px 0 100px;
}

.top-28 {
    top: 9rem;
}

.top-20 {
    top: 15rem;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
}

.cutting-edge-sec h3 {
    font-size: 48px;
    word-spacing: 10px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 59px;
    color: #000;
    text-transform: uppercase;
}

.text .typed,
.text .typed2 {
    color: #0071bc;
}

.cutting-edge-sec p {
    font-weight: 400;
    font-size: 17px;
    color: #000;
}

.cutting-edge-left::after {
    position: absolute;
    content: "";
    height: 250px;
    width: 250px;
    right: -15%;
    top: -25%;
    background: url(../img/shape-dots-arrow-right.svg) no-repeat;
    background-size: contain;
}

.cutting-edge-content {
    padding-left: 80px;
    padding-top: 300px;
    padding-bottom: 100px;
}

.cutting-edge-content li {
    padding: 30px 70px 40px;
    text-align: center;
    background: #0071bc1f; 
    position: sticky;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.cutting-edge-content li img {
    width: 550px;
    height: auto;
    object-fit: contain;
} */

/*  */

.portfolio__area {
    position: relative;
    background-color: var(--black-2);
    overflow: hidden;
    padding: 100px 0;
    /* height: 100vh; */
}

.pb-140 {
    padding-bottom: 140px;
}

.portfolio__text {
    text-align: center;
    font-size: 100px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    padding: 70px 0 50px;
    opacity: 1;
}

.portfolio__list-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    position: relative;
    margin-bottom: 0;
}

.portfolio__item {
    padding-bottom: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    scale: .5;
    opacity: 0;
}

.portfolio__item {
    -webkit-transform: perspective(4000px) rotateX(90deg);
    transform: perspective(4000px) rotateX(90deg);
}

.portfolio__item img {
    width: 100%;
    height: 600px !important;
    object-fit: contain;
}

.elementor img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

.portfolio__title {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.3;
    color: #fff;
    padding-bottom: 3px;
    margin: 0;
}

.portfolio__info p {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    color: var(--black-2);
}

.portfolio__item:nth-child(even) {
    top: 50%;
}

.work-process-area {
    background: #fff;
}

.row.row_bottom {
    margin-top: 55vh;
    z-index: 9;
    position: relative;
}

#btn_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
}

#btn_wrapper a {
    text-align: center;
    background: var(--primary-color);
    padding: 13px 45px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    font-size: 17px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 800;
}

.portfolio__info {
    padding: 15px;
    border-radius: 5px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 50px;
    z-index: 1;
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    width: auto;
    right: 110px;
}

.portfolio__item:hover .portfolio__info {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.team-btn {
    margin-top: 10px;
}

.team-btn a {
    text-align: center;
    background: var(--primary-color);
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    font-size: 17px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 800;
}

.team-social li {
    border-bottom: 0px !important;
    margin: 10px 10px 0px 0 !important;
    display: inline-block;
}

.team-social li a {
    background: #dee0ff;
    height: 45px;
    width: 45px;
    display: inline-block;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    color: #010ed0;
}

.top-5 {
    top: 5rem;
}

.team-detalis h3 {
    font-size: 41px;
    margin: 0 0 10px;
}

section.team-sec {
    padding: 60px 0;
    background: #fff;
}

.team-detalis h4 {
    font-size: 28px;
    margin-bottom: 10px;
}

.team-detalis p {
    color: #000;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 31px;
}

.team-img img {
    width: 100%;
    border-radius: 10px;
}

.team-detalis {
    padding-left: 10px;
}

.team-detalis-widget {
    /* background-color: #be1e2d; */
    /* padding: 5%; */
    margin: 20px 0;
    border-radius: 4px 4px 4px 4px;
}

.team-detalis-widget p {
    font-size: 25px;
    font-weight: 600;
    color: #be1e2d;
}

.bg-team {
    background-color: #f5f5f5 !important;
}

.nav.nav-pills li a {
    height: 160px;
    width: 210px;
    text-align: center;
    background: #f8f8fb;
    font-size: 19px;
    color: #333;
    cursor: pointer;
    padding: 60px 10px;
    line-height: 28px;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
}

.nav.nav-pills li {
    margin-right: 30px;
}

.prodcuts-sec {
    background: #fff;
    padding: 60px 0;
}

.row.products-detalis {
    margin-top: 40px;
}

.products-detalis .nav.flex-column.nav-pills {
    background: rgb(248 248 251);
    border-radius: 20px;
    /* padding: 15px 0; */
    overflow: hidden;
    border: 1px solid #f2f2f2;
}

.products-detalis .nav.flex-column.nav-pills a {
    padding: 10px 35px;
    font-size: 17px;
    cursor: pointer;
    border-bottom: 1px solid #dddcdc;
}

.tab-content .tab-pane ul li {
    background: rgb(248 248 251);
    padding: 10px;
    border-radius: 20px;
    margin: 10px;
    border: 1px solid #f2f2f2;
}

.tab-content .tab-pane ul li h3 {
    font-size: 20px;
    margin: 0;
    text-align: center;
}

.tab-content .tab-pane ul li img {
    border-radius: 20px;
}

/*  */

.industries-sec {
    padding: 60px 0;
    background: url(../img/content_bkg.jpg) center/cover no-repeat fixed;
    background-size: cover;
}

.infra-img {
    display: grid;
    position: relative;
    margin-bottom: 20px;
}

.infra-name {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 25px;
    color: #fff;
    font-weight: 700;
    line-height: 35px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 9;
}

.industries-sec h2 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.agileits-main ul {
    float: left;
    width: 50%;
    padding-right: 30px;
}

.agileits-main li input {
    padding: 7px;
    color: #000;
    outline: none;
    float: left;
    border: 1px solid #f2f2f2;
    margin-bottom: 15px;
    border-radius: 0;
}

.agileits-main .text {
    font-size: 17px;
    color: #333;
    text-transform: capitalize;
    padding-bottom: 10px;
    font-weight: 600;
}

form.agileits-main {
    padding: 20px;
    background: #fff;
    margin-top: 30px;
}

.btn-submit-con {
    background: var(--primary-color);
    padding: 12px 50px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 800;
}

.industries-we-serve-sec {
    padding: 60px 0 30px;
}

.slide2 .cutting-edge-content {
    padding-left: 0;
    padding-right: 80px;
}

.slide2 .cutting-edge-left::after {
    transform: rotate(175deg);
}

.popup_img .item {
    position: relative;
}

/* 
.popup_img .item:hover .main_popup {
    display: none;
}

.popup_img .item .main_popup {
    display: block;
}

.popup_img .item .back_popup {
    display: none;
}

.popup_img .item:hover .back_popup {
    height: 100%;
    width: 100%;
    display: block;
} */

.popup_img a:hover .flipper,
.popup_img a.hover .flipper {
    -webkit-transform: rotateY(180deg);
}

.flipper .front,
.flipper .back {
    width: 240px;
    height: 200px;
}

.flipper {
    -webkit-transition: 1.5s;
    -webkit-transform-style: preserve-3d;
    position: relative;
}

/* .flipper .front, */
.flipper .back {
    -webkit-backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    /* width: 240px; */
    /* height: 200px; */
}

.testi_sec .parent .owl-item.center .front,
.testi_sec .parent .owl-item.center .back {
    width: 285px;
    height: 350px;
}

.flipper .front {
    z-index: 2;
}

.flipper .back {
    -webkit-transform: rotateY(180deg);
}

.second-slide,
.first-slide,
.third-slide {
    position: relative;
}

/* .second-slide::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/wave.png) no-repeat;
    background-size: cover;
    height: 200px;
    width: 100%;
}

.first-slide::after {
    position: absolute;
    content: '';
    left: 10%;
    top: 15%;
    opacity: 0.3;
    height: 200px;
    width: 200px;
    background: url(../img/flange-vector.png) no-repeat;
    background-size: cover;
}

.third-slide::after {
    position: absolute;
    content: '';
    left: 3%;
    top: 20%;
    opacity: 0.3;
    height: 350px;
    width: 250px;
    background: url(../img/vector-flangelok.png) no-repeat;
    background-size: contain;
    z-index: -1;
} */

.certification-vecter::before {
    position: absolute;
    content: '';
    right: 0;
    top: 100%;
    opacity: 0.2;
    height: 150px;
    width: 150px;
    background: url(../img/certification-vecter.png) no-repeat;
    background-size: contain;
}

.approvals-vecter::before {
    position: absolute;
    content: '';
    left: 0;
    top: 100%;
    opacity: 0.2;
    height: 150px;
    width: 150px;
    background: url(../img/approved-vecter.png) no-repeat;
    background-size: contain;
}

.home-three-title ul {
    margin-bottom: 20px;
}

.about-left-side ul {
    margin-bottom: 20px;
}

.panel h2 {
    margin: 0 0 16px;
    text-align: center;
    color: #0071bc;
}

.panel h5 {
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.panel p {
    font-size: 20px;
    color: #333;
    line-height: 30px;
    font-weight: 500;
    padding-right: 50px;
}

.ptb {
    padding: 60px 0;
    background: #fff;
}

.justify {
    text-align: justify;
}


.mt_gread ul li {
    display: flex;
    border-bottom: 1px solid #d5d0d0;
    padding: 15px 0;
}

.mt_gread ul li .left_sp {
    width: 28%;
    font-weight: 700;
}

.mt_gread ul li .right_sp {
    width: 70%;
    padding-left: 12px;
}

li.production b {
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff9c00;
    color: #ff9c00;
}

.row_metrial p {
    color: #000;
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
}

.footer-widget.widget2 {
    padding-left: 30px;
}

.footer-contact-detalis .d-flex {
    padding: 3px 0;
}

.footer-contact-detalis h5 {
    font-size: 17px;
    margin-bottom: 2px;
    line-height: 25px;
    color: #fff;
}

.footer-contact-detalis h5 a {
    color: #fff;
}

#hero-slider .owl-item.active .hero-single h1.title {
    animation: fadeInDown 0.8s both 1s;
}

#hero-slider .owl-item.active .hero-single .text {
    animation: fadeInLeft 0.9s both 1.5s;
}

#hero-slider .owl-item.active .button-one {
    animation: fadeInRight 0.5s both 1.5s
}

#hero-slider .button-one::before {
    background-color: #be1e2d;
}

#hero-slider .button-one i {
    color: #be1e2d;
}

#hero-slider .button-one:hover i {
    background-color: #be1e2d;
    color: #fff;
}

section.career-sec {
    padding: 60px 0;
}

section.career-sec h3 {
    font-size: 40px;
    margin-bottom: 20px;
}

section.career-sec p {
    font-size: 18px;
    font-weight: 500;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 15px;
}

/* Aword */

.award-sec {
    background: url(../img/award-bg.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 70px 0 110px;
    z-index: 1;
}

.award-sec::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    top: 0;
    background: #000;
    z-index: -1;
    opacity: 0.6;
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    /* overflow: hidden; */
    z-index: 1;
}

.img-wrapper .rotate-circle {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotating 3s linear infinite;
}

@keyframes rotating {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.img-wrapper .trophy {
    z-index: 2;
    position: relative;
    width: 100%;
    /* padding: 40px; */
}

.img-wrapper .item {
    padding: 20px;
}

.award-sec h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
}

.award-sec h5 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.infrastructure-inner-sec {
    padding: 0px 0 60px;
}

.infrastructure-inner-sec h4 {
    font-size: 48px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 30px;
    text-align: center;
}

.infrastructure-inner-sec h5 {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    padding: 10px 0;
}

.industries-we-serve-sec .col-md-3 {
    text-align: center;
}

.industries-we-serve-sec a {
    padding-bottom: 20px;
}

.industries-we-serve-sec h3 {
    font-size: 40px;
    margin-bottom: 10px;
    line-height: 50px;
}

.industries-we-serve-sec p {
    margin: 0;
    font-size: 20px;
    color: #000;
    line-height: 35px;
}

/*  */
.gallery-container {
    position: relative;
    max-width: 600px;
    height: 410px;
    overflow: hidden;
    margin: 0px auto 0 auto;
    transform: translate3d(0, 0, 0);
}

@keyframes gallery {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ===========end============= */
.gallery-container {
    position: relative;
    max-width: 600px;
    height: 410px;
    overflow: hidden;
    margin: 0px auto 0 auto;
    transform: translate3d(0, 0, 0);
}

.gallery-container img {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -50%;
    max-width: 100%;
    animation-name: gallery;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    --animation-timimg-function: linear;
}

.gallery-container img:nth-of-type(1) {
    z-index: 4;
}

.gallery-container img:nth-of-type(2) {
    animation-delay: 2.5s;
    z-index: 3;
}

.gallery-container img:nth-of-type(3) {
    animation-delay: 5s;
    z-index: 2;
}

.gallery-container img:nth-of-type(4) {
    animation-delay: 7.5s;
    z-index: 1;
}

.row-design {
    background: #fffffffa;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 40px rgb(0 0 0 / 11%);
    position: relative;
    margin-right: 10px;
    margin-bottom: 30px;
}

.row-design-left {
    background: linear-gradient(90deg, rgb(249 249 249) 0%, rgb(221, 221, 221) 100%);
    padding: 21px 15px;
    border-radius: 5px;
    /* box-shadow: 0px 0px 40px rgb(0 0 0 / 11%); */
}

.row-design-left ul li {
    border-bottom: 1px solid #F3F3F3 !important;
    color: #505458;
    background: unset !important;
    border: none !important;
    margin: 0 !important;
    padding: 2px 0 !important;
    display: inline-block !important;
    width: 100% !important;
}

.row-design-left h3 {
    font-size: 24px;
    margin: 10px 0;
    color: #0071bc;
    font-weight: 800;
}

.row-design-left h4 {
    font-size: 17px;
    margin: 0 0 15px 0;
    line-height: 25px;
}

.spacial ul.csr_about li {
    font-size: 14px;
}

.spacial ul.csr_about {
    padding-left: 28px;
}

section.flanges {
    padding: 60px 0;
    background-color: #45dca238;
}

.industries-logo-sec img.img-fluid {
    width: 200px;
    height: 200px;
    margin: auto;
    border: 3px solid #0071bc;
    object-fit: contain;
    padding: 20px;
    border-radius: 10px;
}

.industries-logo-sec {
    padding: 30px 0 50px;
    /* background: #f1f1f1; */
}

.bg-custom {
    background: #dfdfdf;
}

.industries-logo-sec h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    line-height: 50px;
    text-align: center;
    text-transform: capitalize;
}

.popup_img {
    margin-bottom: 40px;
}

.lets-discuss .title {
    font-size: 40px;
    line-height: 50px;
}

.awards-slide .item {
    padding: 40px 10px;
}

.products-detalis h4 {
    font-size: 40px;
    margin: 10px 0 25px;
    color: #0071bc;
}

.products-detalis p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
}

.products-detalis h5 {
    font-size: 28px;
    margin: 15px 0;
    color: #0071bc;
}

.products-detalis li {
    margin-bottom: 5px;
    font-size: 17px;
    display: inline-block;
    padding-right: 20px;
    color: #464545;
}

/* .sticky {
    position: -webkit-sticky;
    position: sticky;
}

.top-10 {
    top: 5rem;
} */

.row-design-left ul li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 0 6px 10px;
}

.main-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.title {
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
    color: #333;
}

.main-color {
    color: #0071bc;
}

.main-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 2px;
    left: 0;
    right: 0;
    background: #ccc;
    margin: 0 auto;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 20%;
    height: 4px;
    left: 0;
    right: 0;
    background: #0071bc;
    margin: 0 auto;
}

.main-title p {
    margin: 5px 0 10px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.row-design-left ul li a.active {
    background: #0071bc;
    color: #fff;
}

.industries-we-serve-sec ul {
    padding: 10px 0;
}

.industries-we-serve-sec ul li {
    font-size: 18px;
    /* color: #000; */
    line-height: 35px;
}

.industries-we-serve-sec h5 {
    font-size: 25px;
    margin: 10px 0 0;
    font-weight: 700;
}

.about-left-side-1 li {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 5px;
}

.testi_sec h1 {
    font-size: 35px;
    line-height: 40px;
}

.brands-logo .owl-nav button,
.team-slide .owl-nav button,
.awards-slide .owl-nav button,
.industries-logo .owl-nav button {
    position: absolute;
    align-items: center;
    top: 40%;
    height: 50px !important;
    width: 50px !important;
    line-height: 50px !important;
    background: var(--primary-color) !important;
    border-radius: 40px !important;
    font-size: 18px !important;
    color: #fff !important;
}

.brands-logo .owl-nav .owl-prev,
.team-slide .owl-nav .owl-prev,
.awards-slide .owl-nav .owl-prev,
.industries-logo .owl-nav .owl-prev {
    left: -7%;
}


.brands-logo .owl-nav .owl-next,
.team-slide .owl-nav .owl-next,
.awards-slide .owl-nav .owl-next,
.industries-logo .owl-nav .owl-next {
    right: -7%;
}

.flanges1 .nav.nav-pills li a {
    padding: 15px 20px;
    border-radius: 0;
    width: auto;
    font-size: 17px;
    line-height: 27px;
    height: unset !important;
    align-items: center;
}

.flanges1 .nav.nav-pills {
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
}

.tab-content .tab-pane ul li {
    background: unset !important;
    border: unset !important;
    padding: 0;
    margin: 0;
}

.flanges1 .nav.nav-pills li a.nav-link.active {
    background: #0071bc;
}

.infra-img img.img-fluid {
    width: 100%;
    height: 100%;
}

.art-vmenu {
    display: none;
    list-style: none;
    padding-left: 15px;
}

.dropdown-open>.art-vmenu {
    display: block;
}

.fas {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.rotate-icon {
    transform: rotate(90deg);
    /* right arrow becomes down */
}

.dropdown-toggle::after {
    display: none;
}

.vektor-mobile-menu ul li a i {
    padding-left: 10px;
    padding-top: 5px;
}

.row.box-borders {
    border: 1px solid #f2f2f2;
    background: #100f0f12;
    padding: 30px 10px;
    border-radius: 30px;
}

/* 
.cutting-edge-content h4 {
    font-size: 27px;
    background: #0071bc;
    color: #fff;
    padding: 10px;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
    text-transform: uppercase;
} */

.flanges1 .nav.nav-pills li a span {
    font-size: 15px;
}

.main-list-icons {
    display: flex;
    margin-bottom: 10px;
}

.box-icons i {
    background: #0071bc;
    border-radius: 70px;
    border: 2px solid #0071bc;
    font-size: 34px;
    height: 80px;
    color: #fff;
    width: 80px;
    line-height: 80px;
    text-align: center;
    transition: all 0.2s linear;
}

.box-icons:hover i {
    background-color: #0071bc;
    border: 2px solid #bdbaba;
}

.box-content {
    padding-left: 20px;
}

.box-content h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 5px;
    color: #fff;
}

.box-content p {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 25px;
    color: #fff;
}

h2.elementor-head {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.box-why {
    border: 5px solid #e1d3d3;
    padding: 40px 30px;
    background: #bcbcbc;
}

.box-why p {
    font-size: 21px;
    color: #000000de;
    font-weight: 600;
    line-height: 35px;
}

.why-choose-sec {
    background: url(../img/why-choose-us.jpg) no-repeat;
    position: relative;
    /* padding: 50px 0; */
    z-index: 2;
    background-size: cover;
}

.why-choose-sec::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.8;
    z-index: -1;
}

.why-right {
    background: #cfcbcb78;
    padding: 40px 20px;
}

/*  */

.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 500;
}

.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: var(--primary-color);
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
    text-align: center;
    padding: 50px 20px 20px;
    margin-bottom: 20px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

#customers-testimonials.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: 0 auto 15px;
    border-radius: 60px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
    background: var(--primary-color);
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}

.testimonials h2.title {
    margin-bottom: 10px;
}

.testimonials {
    padding: 30px 0;
}

/*  */

.certificate-sec {
    padding: 60px 0;
}

.certificate-box {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.certificate-box h2 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

.certificate-sec h3 {
    font-size: 45px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.certificate-box a {
    margin-bottom: 20px;
}

.email_send .form-group {
    margin-bottom: 15px;
}

.email_send .form-group label {
    margin-bottom: 10px;
}

.email_send .form-group input.btn-submit-con {
    margin-top: 10px;
}

.email_send h4.modal-title {
    margin: auto;
}

.email_send button.btn-close {
    margin: 0;
}

.checkbox_new .form-group {
    display: inline-block;
    width: 40%;
}

.checkbox_new .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkbox_new .form-group label {
    position: relative;
    cursor: pointer;
    margin: auto auto 5px;
}

.checkbox_new .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #0079bf;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.checkbox_new .form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.email_send .custum{
    border: 2px solid #0079bf;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

.checkbox_new {
    margin-bottom: 10px;
}