﻿@charset "UTF-8";
@import url('fonts.css');
:root {
    /**
    @font family declaration
    */
    --it-ff-body: 'DM Sans', serif;
    --it-ff-heading: 'Montserrat', sans-serif;
    --it-ff-manrope: 'Manrope', sans-serif;
    --it-ff-poppins: 'Poppins', sans-serif;
    --it-ff-fontawesome: Font Awesome 6 Pro;
    /**
    @color declaration
    */
    --it-common-white: #ffffff;
    --it-common-black: #28323a;
    --it-heading-primary: #28323a;
    --it-gray-1: #F3F3F3;
    --it-gray-2: #F4F4F4;
    --it-gray-3: #f1f8ff;
    --it-text-body: #797979;
    --it-theme-1: #c12026;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1350px;
    }
    .container-1380 {
        max-width: 1380px;
    }
    .container-1650 {
        max-width: 1650px;
    }
    .container-1420 {
        max-width: 1420px;
    }
}
/*---------------------------------
	typography css start
---------------------------------*/
body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    overflow-x: hidden;
    font-family: var(--it-ff-body);
    color: var(--it-text-body);
}

body,
html {
    /* overflow-x: hidden; */
}

a {
    text-decoration: none;
    transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--it-ff-heading);
    color: var(--it-common-black);
    font-weight: 600;
    line-height: 1.21;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

img {
    max-width: 100%;
}

h4 {
    font-size: 34px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--it-text-body);
    font-family: var(--it-ff-body);
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.z-index-3 {
    position: relative;
    z-index: 3;
}

.z-index-4 {
    position: relative;
    z-index: 4;
}

.z-index-5 {
    position: relative;
    z-index: 5;
}

a,
.btn,
button,
input,
select,
textarea,
li,
img,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

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

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input,
textarea,
select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px;
    color: var(--it-common-black);
    background-color: #ffffff;
    height: 42.8px;
}
input:focus,
textarea:focus,
select:focus {
    border-color: var(--it-theme-1);
}

label {
    font-size: 15px;
    font-weight: 600;
    color: var(--it-common-black);
    margin-bottom: 5px
}

input[type=color] {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

*::-moz-selection {
    background: var(--it-theme-1);
    color: var(--it-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--it-theme-1);
    color: var(--it-common-white);
    text-shadow: none;
}

::selection {
    background: var(--it-theme-1);
    color: var(--it-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--it-common-black);
    opacity: 1;
}

*::placeholder {
    color: var(--it-common-black);
    opacity: 1;
}

/*---------------------------------
    common classes css start
---------------------------------*/
.fix {
    overflow: hidden;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.gx-10 {
    --bs-gutter-x: 10px;
}

.gx-15 {
    --bs-gutter-x: 15px;
}

.gx-20 {
    --bs-gutter-x: 20px;
}

.gx-25 {
    --bs-gutter-x: 25px;
}

.gx-35 {
    --bs-gutter-x: 35px;
}

.gx-40 {
    --bs-gutter-x: 40px;
}

.border-radius-10 {
    border-radius: 10px;
}
.border-radius-10 img {
    border-radius: 10px;
}

.border-radius-20 {
    border-radius: 20px;
}
.border-radius-20 img {
    border-radius: 20px;
}

.border-radius-30 {
    border-radius: 30px;
}
.border-radius-30 img {
    border-radius: 30px;
}

.border-line {
    display: inline;
    background-repeat: no-repeat;
    background-size: 0 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    transition: background-size 0.3s linear;
    background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
}
.border-line:hover {
    background-size: 0 1px, 100% 1px;
}

.title-hover {
    transition: all 0.3s;
}
.title-hover:hover {
    color: var(--it-theme-1);
}

.zoom .img-zoom {
    overflow: hidden;
}
.zoom .img-zoom img {
    transition: 1.3s all ease;
}
.zoom:hover .img-zoom img {
    transform: scale(1.15) rotate(2deg);
}

.slider-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.shine-effect {
    position: relative;
}
.shine-effect::before {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.shine-effect:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.shine-effect-2 {
    position: relative;
}
.shine-effect-2::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    pointer-events: none;
}
.shine-effect-2:hover::before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.img-style {
    overflow: hidden;
}
.img-style img {
    width: 100%;
    transform: scale(1.04) translateX(-1%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.img-style:hover img {
    transform: scale(1.04) translateX(1%);
}

.img-zoom-style {
    overflow: hidden;
}
.img-zoom-style img {
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.img-zoom-style:hover img {
    transform: scale(1.04);
}

.it-reveal-line {
    overflow: hidden;
}

/*--
    - Spacing
-----------------------------------------*/
.it-btn-theme {
    line-height: 1;
    font-size: 16px;
    height: 40px;
    padding: 0 20px;
    font-weight: 500;
    text-align: center;
    transition: 0.4s;
    border-radius: 5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
    font-family: var(--it-ff-heading);
}
@media only screen and (max-width: 991px) {
    .it-btn-theme {
        font-size: 14px;
        height: 35px;
    }
}
.it-btn-theme span {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}
.it-btn-theme span span.text-1 {
    position: relative;
    display: block;
    transition: 0.3s;
}
.it-btn-theme span span.text-2 {
    position: absolute;
    top: 100%;
    display: block;
    transition: 0.3s;
}
.it-btn-theme i {
    position: relative;
    overflow: hidden;
    width: 14px;
    height: 14px;
    display: inline-flex;
    margin-left: 10px;
}
.it-btn-theme i svg {
    transform: translateY(-1px);
    position: absolute;
    bottom: -1px;
    left: 1px;
    transition: all 0.2s ease-out;
}
.it-btn-theme i svg:last-child {
    left: -12px;
    bottom: -12px;
    transform: translate(0, 0);
    opacity: 0;
}
.it-btn-theme:hover {
    color: var(--it-common-white);
}
.it-btn-theme:hover span span.text-1 {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}
.it-btn-theme:hover span span.text-2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.it-btn-theme:hover i svg:first-child {
    transform: translate(16px, -16px);
}
.it-btn-theme:hover i svg:last-child {
    opacity: 1;
    visibility: visible;
    transform: translate(13px, -12px);
}
.it-btn-theme.error-btn i {
    margin-left: 0;
    margin-right: 10px;
}
.it-btn-theme.white-bg span {
    color: var(--it-common-black);
}
.it-btn-theme.white-bg span svg {
    color: var(--it-common-black);
}
.it-btn-border {
    line-height: 1;
    padding: 19.5px 30px;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    transition: 0.4s;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--it-common-white);
    border: 1px solid var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-btn-border {
        font-size: 14px;
        padding: 17px 25px;
    }
}
.it-btn-border span {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}
.it-btn-border span span.text-1 {
    position: relative;
    display: block;
    transition: 0.3s;
}
.it-btn-border span span.text-2 {
    position: absolute;
    top: 100%;
    display: block;
    transition: 0.3s;
}
.it-btn-border i {
    position: relative;
    overflow: hidden;
    width: 14px;
    height: 14px;
    display: inline-flex;
    margin-left: 10px;
}
.it-btn-border i svg {
    transform: translateY(-1px);
    position: absolute;
    bottom: -1px;
    left: 1px;
    transition: all 0.2s ease-out;
}
.it-btn-border i svg:last-child {
    left: -12px;
    bottom: -12px;
    transform: translate(0, 0);
    opacity: 0;
}
.it-btn-border:hover {
    color: var(--it-common-white);
}
.it-btn-border:hover span span.text-1 {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}
.it-btn-border:hover span span.text-2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.it-btn-border:hover i svg:first-child {
    transform: translate(16px, -16px);
}
.it-btn-border:hover i svg:last-child {
    opacity: 1;
    visibility: visible;
    transform: translate(13px, -12px);
}
.it-btn-sm {
    font-size: 16px;
    padding: 10.5px 5px;
    font-weight: 500;
    text-align: center;
    transition: 0.4s;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--it-theme-1);
    font-family: var(--it-ff-heading);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-btn-sm {
        font-size: 14px;
    }
}
.it-btn-sm span {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}
.it-btn-sm span span {
    color: var(--it-common-white);
}
.it-btn-sm span span.text-1 {
    position: relative;
    display: block;
    transition: 0.3s;
}
.it-btn-sm span span.text-2 {
    position: absolute;
    top: 100%;
    display: block;
    transition: 0.3s;
}
.it-btn-sm i {
    position: relative;
    overflow: hidden;
    width: 14px;
    height: 14px;
    display: inline-flex;
    margin-left: 10px;
}
.it-btn-sm i svg {
    transform: translateY(-1px);
    position: absolute;
    bottom: -1px;
    left: 1px;
    transition: all 0.2s ease-out;
}
.it-btn-sm i svg:last-child {
    left: -12px;
    bottom: -12px;
    transform: translate(0, 0);
    opacity: 0;
}
.it-btn-sm:hover {
    color: var(--it-common-white);
}
.it-btn-sm:hover span span.text-1 {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}
.it-btn-sm:hover span span.text-2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.it-btn-sm:hover i svg:first-child {
    transform: translate(16px, -16px);
}
.it-btn-sm:hover i svg:last-child {
    opacity: 1;
    visibility: visible;
    transform: translate(13px, -12px);
}

@-moz-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }
    100% {
        margin-top: 0;
    }
}
@-ms-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }
    100% {
        margin-top: 0;
    }
}
@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }
    100% {
        margin-top: 0;
    }
}
@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }
    100% {
        margin-top: 0;
    }
}
@keyframes itswing {
    0% {
        -webkit-transform: rotate(4deg);
        -moz-transform: rotate(4deg);
        -ms-transform: rotate(4deg);
        -o-transform: rotate(4deg);
        transform: rotate(4deg);
    }
    100% {
        -webkit-transform: rotate(-4deg);
        -moz-transform: rotate(-4deg);
        -ms-transform: rotate(-4deg);
        -o-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@keyframes animate-pulse-theme {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 196, 88, 0.8), 0 0 0 0 rgba(45, 196, 88, 0.8);
    }
    40% {
        box-shadow: 0 0 0 50px rgba(9, 18, 22, 0), 0 0 0 0 rgba(45, 196, 88, 0.8);
    }
    80% {
        box-shadow: 0 0 0 50px rgba(9, 18, 22, 0), 0 0 0 30px rgba(45, 196, 88, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(9, 18, 22, 0), 0 0 0 30px rgba(45, 196, 88, 0);
    }
}
.pulse-theme {
    animation: animate-pulse-theme 3s linear infinite;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
@keyframes img-anim-bottom {
    0% {
        transform: translateY(15%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}
.img-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

.img-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

.img-anim-bottom {
    animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

.img-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes animate-pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 196, 88, 0), 0 0 0 0 rgba(45, 196, 88, 0.8);
    }
    40% {
        box-shadow: 0 0 0 50px rgba(45, 196, 88, 0), 0 0 0 0 rgba(45, 196, 88, 0.8);
    }
    80% {
        box-shadow: 0 0 0 50px rgba(45, 196, 88, 0), 0 0 0 30px rgba(45, 196, 88, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(45, 196, 88, 0), 0 0 0 30px rgba(45, 196, 88, 0);
    }
}
.pulse2 {
    animation: animate-puls2 3s linear infinite;
}

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--it-theme-1), 0.7), 0 0 0 0 rgba(var(--it-theme-1), 0.7);
    }
    40% {
        box-shadow: 0 0 0 28px rgba(var(--it-theme-1), 0), 0 0 0 0 rgba(var(--it-theme-1), 0.7);
    }
    80% {
        box-shadow: 0 0 0 28px rgba(var(--it-theme-1), 0), 0 0 0 15px rgba(var(--it-theme-1), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--it-theme-1), 0), 0 0 0 15px rgba(var(--it-theme-1), 0);
    }
}
.pulse {
    animation: animate-pulse 3s linear infinite;
}

@keyframes animationglob {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes translateX {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}
@keyframes translateY {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateX(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}
@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.85, 0.85, 0.85);
        transform: scale3d(0.85, 0.85, 0.85);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/*--- preloader ---*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.9);
    z-index: 999999;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#preloader img {
    height: 50px;
    animation: zoomIn 2s infinite;
}

/*--- end of preloader ---*/
.scroll-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: fixed;
    bottom: -10%;
    right: 40px;
    font-size: 16px;
    z-index: 9;
    text-align: center;
    border-radius: 10px;
    color: var(--it-common-white);
    cursor: pointer;
    background: var(--it-theme-1);
    transition: 1s ease;
    border: none;
}

.scroll-top.open {
    bottom: 40px;
}

/*---------------------------------------*/
/*Background color
/*-----------------------------------------*/
.theme-bg {
    background: var(--it-theme-1);
}

.black-bg {
    background: var(--it-common-black);
}

.white-bg {
    background: #fef5f5;
}

.gray-bg3 {
    background: var(--it-gray-3);
}

.gray-bg {
    background: var(--it-gray-1);
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(40,50,58,.8);
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
}
.body-overlay.apply {
    opacity: 1;
    visibility: visible;
}

.it-instagram img {
    width: 100%;
}

.itoffcanvas {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    right: -100%;
    width: 480px;
    bottom: 0;
    background-color: var(--it-gray-1);
    z-index: 9999;
    padding: 30px;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.45s ease-in-out;
    overflow-y: scroll;
}
.itoffcanvas.opened {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767px) {
    .itoffcanvas {
        width: 80%;
        padding: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .itoffcanvas {
        width: 72%;
        padding: 40px;
    }
}
.itoffcanvas.opened {
    right: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.6s;
}
.itoffcanvas__logo {
    margin-bottom: 50px;
}
.itoffcanvas__logo img {
    height: 50px;
    object-fit: contain;
    width: 100%;
}
.itoffcanvas__close-btn button {
    width: 30px;
    height: 30px;
    font-size: 19px;
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
    font-weight: 300;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.3s;
    line-height: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .itoffcanvas__close-btn button {
        font-size: 28px;
        right: 48px;
        top: 52px;
    }
}
@media (max-width: 767px) {
    .itoffcanvas__close-btn button {
        font-size: 28px;
    }
}
.itoffcanvas__close-btn button:hover {
    color: #fff;
    opacity: 1;
}
.itoffcanvas__content {
    margin-bottom: 30px;
}
.itoffcanvas__content p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
}
.itoffcanvas__content span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
}
.itoffcanvas__content a {
    font-size: 30px;
    line-height: 51px;
    font-weight: 700;
    color: var(--it-common-white);
    display: inline-block;
}
@media (max-width: 767px) {
    .itoffcanvas__content a {
        font-size: 27px;
    }
}
.itoffcanvas__social {
    margin-top: 50px;
}
.itoffcanvas__social .social-icon a {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
    margin-right: 15px;
    transition: 0.3s;
    display: inline-block;
    border-radius: 50%;
}
@media (max-width: 767px) {
    .itoffcanvas__social .social-icon a {
        margin-right: 3px;
    }
}
.itoffcanvas__social .social-icon a:hover {
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
}
.itoffcanvas__text {
    border-bottom: 1px solid #3b3838;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .itoffcanvas__text {
        display: none;
    }
}
.itoffcanvas__text p {
    color: #ddd;
    font-size: 18px;
}
.itoffcanvas__info {position: relative;}
.itoffcanvas__info .offcanva-title {
    color: var(--it-common-black);
    margin: 0 0 30px 0;
    font-size: 20px;
    font-weight: 600;
}
.itoffcanvas__info-icon a {
    height: 35px;
    width: 35px;
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
    display: inline-block;
    text-align: center;
    line-height: 35px;
    border-radius: 35px;
    font-weight: 400;
    font-size: 18px;
    margin-right: 20px;
}
.itoffcanvas__info-address span {
    display: block;
    color: rgba(0,0,0,.6);
    font-size: 16px;
    font-weight: 400;
}
.itoffcanvas__info-address a,
.itoffcanvas__info-address p {
    display: block;
    color: var(--it-common-black);
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}
@media (max-width: 767px) {
    .itoffcanvas__info-address a,
    .itoffcanvas__info-address p {
        font-size: 16px;
    }
}
.itoffcanvas__info-address a:hover,
.itoffcanvas__info-address p:hover{
    color: var(--it-theme-1);
}
.itoffcanvas .it-homemenu-wrapper {
    padding: 0;
}
.itoffcanvas .home-img-thumb {
    padding: 0;
    height: 215px;
}
.itoffcanvas .it-menu-mobile .home-img-title, .itoffcanvas .it-category-mobile-menu .home-img-title {
    font-weight: 400;
}
.itoffcanvas .it-megamenu-thumb {
    display: none;
}
.itoffcanvas .it-megamenu-text {
    display: none;
}
.itoffcanvas .it-megamenu-list li a::before {
    display: none;
}
.itoffcanvas .it-megamenu-list li:hover > a {
    padding-left: 0;
    font-weight: 400;
}
.itoffcanvas .it-megamenu-list li:not(:last-child) {
    margin-bottom: 0;
}
.itoffcanvas .it-menu-mobile ul li > a, .itoffcanvas .it-category-mobile-menu ul li > a {
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.itoffcanvas .it-megamenu-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 14px;
    margin-right: 65px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    margin-top: 30px;
}

.it-offcanva-bottom-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: -1;
}
.it-offcanva-bottom-shape img {
    width: 100%;
}

.it-breadcrumb-area {
    background-color: var(--it-common-black);
    margin-top: -72.09px;
    padding: 100px 0 30px 0;
    text-align: center;
}
.it-breadcrumb-title {
    font-size: 22px;
    color: var(--it-common-white);
    margin-bottom: 10px;
}
.it-breadcrumb-list {
    display: inline-block;
}
.it-breadcrumb-list span.dvdr {
    margin: 0 5px;
    font-size: 14px;
}
.it-breadcrumb-shape-1 {
    position: absolute;
    bottom: 0;
    left: 5%;
    z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-breadcrumb-shape-1 {
        display: none;
    }
}

.it-custom-accordion .accordion-items {
    border-radius: 10px;
    border: 1px solid rgba(98, 94, 88, 0.15);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-custom-accordion .accordion-items {
        margin-bottom: 20px;
    }
}
.it-custom-accordion .accordion-buttons {
    position: relative;
    text-align: left;
    padding: 20px 35px;
    padding-right: 65px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-custom-accordion .accordion-buttons {
        font-size: 17px;
        padding: 20px 25px;
        padding-right: 65px;
    }
}
@media (max-width: 767px) {
    .it-custom-accordion .accordion-buttons {
        font-size: 16px;
        padding: 20px 25px;
        padding-right: 65px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-custom-accordion .accordion-buttons {
        font-size: 18px;
    }
}
.it-custom-accordion .accordion-buttons span {
    display: inline-block;
    margin-right: 5px;
}
.it-custom-accordion .accordion-buttons span svg {
    width: 39px;
    height: 40px;
}
@media (max-width: 767px) {
    .it-custom-accordion .accordion-buttons span svg {
        width: 25px;
    }
}
.it-custom-accordion .accordion-buttons::after {
    position: absolute;
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
    top: 50%;
    right: 30px;
    font-weight: 400;
    font-size: 16px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    opacity: 1;
    border-radius: 50%;
    transform: translateY(-50%);
    color: var(--it-common-white);
    background-color: var(--it-common-black);
}
.it-custom-accordion .accordion-buttons.collapsed::after {
    content: "\f067";
}
.it-custom-accordion .accordion-buttons:not(.collapsed) {
    padding-bottom: 22px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-custom-accordion .accordion-buttons:not(.collapsed) {
        padding-bottom: 12px;
    }
}
.it-custom-accordion .accordion-body {
    padding: 0 35px;
    padding-bottom: 25px;
    position: relative;
    z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-custom-accordion .accordion-body {
        padding: 0 25px;
        padding-bottom: 25px;
    }
}
.it-custom-accordion .accordion-body p {
    line-height: 1.6;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-custom-accordion .accordion-body p {
        font-size: 14px;
    }
    .it-custom-accordion .accordion-body p br {
        display: none;
    }
}

.it-about-accordion {
    margin-left: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-accordion {
        margin-left: 0;
    }
}
.it-about-accordion .accordion-items .accordion-header {
    line-height: 1;
    font-size: 25px;
}
.it-about-accordion .accordion-buttons {
    font-weight: 600;
    font-size: 25px;
    border-radius: 10px;
    padding: 36px 40px;
    width: 100%;
    text-align: start;
    position: relative;
    overflow: hidden;
    color: var(--it-common-black);
    background: var(--it-gray-3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-accordion .accordion-buttons {
        padding: 29px 40px;
    }
}
.it-about-accordion .accordion-buttons::after {
    position: absolute;
    top: 0;
    right: -15px;
    content: "";
    width: 15px;
    height: 0;
    transition: 0.3s;
    border-radius: 0 10px 0 0;
    background-color: var(--it-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-accordion .accordion-buttons {
        font-size: 17px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-accordion .accordion-buttons {
        font-size: 21px;
    }
}
@media (max-width: 767px) {
    .it-about-accordion .accordion-buttons {
        font-size: 19px;
        padding-right: 50px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about-accordion .accordion-buttons {
        padding-right: 45px;
    }
}
.it-about-accordion .accordion-buttons:not(.collapsed) {
    padding-bottom: 18px;
    border-radius: 10px 10px 0 0;
}
.it-about-accordion .accordion-buttons:not(.collapsed)::after {
    right: 0;
    height: 15px;
}
.it-about-accordion .accordion-body {
    border-radius: 0 0 10px 10px;
    padding: 0 40px 30px 40px;
    background-color: var(--it-gray-3);
}
.it-about-accordion .accordion-body p {
    line-height: 2;
    margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-accordion .accordion-body p {
        margin-right: 20px;
        font-size: 14px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-accordion .accordion-body p {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .it-about-accordion .accordion-body p {
        margin-right: 0;
        font-size: 14px;
    }
}

/*----------------------------------------*/
/*  SEARCH CSS START
/*----------------------------------------*/
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 40%;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: var(--it-gray-1);
    -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 1000ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search-active.search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    background-color: var(--it-theme-1);
    width: 35px;
    height: 35px;
    line-height: 40px;
    border-radius: 5px;
    position: absolute;
    top: 50px;
    right: 50px;
}

.search-popup form {
    position: relative;
    width: 100%;
    max-width: 750px;
}

.search-popup .form-group {
    position: relative;
}

.search-popup .form-group input[type=text],
.search-popup .form-group input[type=search] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1;
    color: var(--it-common-black);
    width: 100%;
    padding: 10px 30px;
    background-color: var(--it-common-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    border: 1px solid var(--it-common-white);
    outline: 0;
    border-radius: 5px;
}
.search-popup .form-group input[type=text]:focus,
.search-popup .form-group input[type=search]:focus {
    border: 1px solid var(--it-theme-1);
}

.search-popup .form-group input[type=submit], .search-popup .form-group button {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background: var(--it-common-black);
    text-align: center;
    font-size: 24px;
    color: var(--it-common-white);
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
    border-radius: 0 5px 5px 0;
}

.search-popup .form-group input[type=submit]:hover,
.search-popup .form-group button:hover {
    background-color: var(--it-theme-1);
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: var(--it-common-black);
    border: none;
    opacity: .6;
}

.search-box-btn {
    display: inline-block;
    padding-left: 22px;
}

button.close-search i {
    font-size: 25px;
    color: var(--it-common-white);
}

.modal .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.modal-wrapper {
    position: relative;
    z-index: 999999999;
}

.modal {
    overflow-y: scroll;
    overflow-x: hidden;
    --bs-modal-border-width: 0;
    --bs-modal-border-radius: 0;
}

.btn-close {
    position: absolute;
    top: 35px;
    right: 35px;
    z-index: 99999999999;
    padding: 0;
    margin: 0;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: var(--it-common-black);
    background-color: #fff !important;
    border: 1px solid rgba(25, 25, 26, 0.2);
    opacity: 1;
    transition: 0.3s;
}
.btn-close:hover {
    border-color: var(--it-common-black) !important;
    transform: rotate(180deg);
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}

.modal-body {
    padding: 0;
}

.modal-header {
    padding: 0;
    border-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.it-shop-modal .modal-dialog {
    width: 1200px;
}
.it-shop-modal .modal-content {
    padding: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-shop-modal .modal-content {
        padding: 80px 20px;
        width: 75%;
    }
}
@media (max-width: 767px) {
    .it-shop-modal .modal-content {
        padding: 80px 20px;
        width: 100%;
    }
}
.it-shop-modal-close-btn {
    position: absolute;
    right: 30px;
    top: 30px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    background-color: var(--it-common-black);
    color: var(--it-common-white);
    transition: 0.3s;
}
.it-shop-modal-close-btn:hover {
    background-color: var(--it-theme-1);
}
.it-shop-modal-content .tab-content {
    background-color: var(--it-gray-1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.it-shop-details-content {
    position: relative;
    padding: 50px 25px 40px;
}
.it-shop-details-category span {
    font-size: 16px;
    line-height: 1;
    font-family: var(--it-ff-heading);
}
.it-shop-details-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
    font-family: var(--it-ff-heading);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-shop-details-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
}
.it-shop-details-stock {
    margin-right: 12px;
}
.it-shop-details-stock span {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 4px 12px;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
    background-color: var(--it-gray-1);
}
.it-shop-details-rating {
    margin-right: 11px;
    align-items: center;
}
.it-shop-details-rating span {
    font-size: 12px;
    color: #FFB21D;
}
.it-shop-details-rating span:not(:last-child) {
    margin-right: 3px;
}
.it-shop-details-price {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--it-common-black);
}
.it-shop-details-price.new-price {
    color: var(--it-common-black);
}
.it-shop-details-price.old-price {
    font-weight: 400;
    font-size: 16px;
    text-decoration-line: line-through;
    color: #767A7D;
}
.it-shop-details-wrapper > p {
    font-size: 15px;
    line-height: 1.7;
    font-family: var(--it-ff-heading);
}
.it-shop-details-wrapper > p span {
    font-weight: 500;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
}
.it-shop-details-price {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: var(--it-common-black);
}
.it-shop-details-price.old-price {
    font-weight: 400;
    font-size: 16px;
    text-decoration-line: line-through;
    color: #767A7D;
}
.it-shop-details-action-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 13px;
    font-family: var(--it-ff-heading);
}
.it-shop-details-action-wrapper {
    margin-bottom: 17px;
}
.it-shop-details-action-wrapper .it-btn {
    padding: 15.9px 40px;
    border-radius: 100px;
}
.it-shop-details-action-wrapper .it-btn.orange-2-btn:hover {
    color: var(--it-theme-1);
    border: 2px solid var(--it-theme-1);
}
.it-shop-details-action-wrapper .it-btn.black-bg:hover {
    color: var(--it-common-black);
    border: 2px solid var(--it-common-black);
}
.it-shop-details-action-wrapper .it-btn.black-bg:hover i, .it-shop-details-action-wrapper .it-btn.black-bg:hover svg {
    color: var(--it-common-black);
}
.it-shop-details-action-sm-btn {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: var(--it-ff-heading);
    color: var(--it-common-black);
}
@media (max-width: 767px) {
    .it-shop-details-action-sm-btn {
        font-size: 12px;
    }
}
.it-shop-details-action-sm-btn:not(:last-child) {
    margin-right: 10px;
}
.it-shop-details-action-sm-btn i, .it-shop-details-action-sm-btn svg {
    margin-right: 2px;
}
.it-shop-details-action-sm-btn:hover {
    color: var(--it-theme-1);
}
.it-shop-details-thumb-wrapper .nav-tab .nav-link {
    width: 100px;
    height: 107px;
    position: relative;
    margin: 0 4px;
    margin-bottom: 10px;
    border-radius: 0;
    background-color: var(--it-gray-1);
    border: 1px solid transparent;
}
.it-shop-details-thumb-wrapper .nav-tab .nav-link:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .it-shop-details-thumb-wrapper .nav-tab .nav-link:last-child {
        margin-bottom: 10px;
    }
}
.it-shop-details-thumb-wrapper .nav-tab .nav-link.active {
    border: 1px solid var(--it-theme-1);
}
.it-shop-details-thumb-wrapper {
    margin-right: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-shop-details-thumb-wrapper {
        margin-right: 0;
        margin-bottom: 50px;
    }
}
.it-shop-details-thumb-wrapper .nav-tab {
    margin-right: 10px;
}
@media (max-width: 767px) {
    .it-shop-details-action-item-wrapper {
        flex-wrap: wrap;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-shop-details-action-item-wrapper {
        flex-wrap: nowrap;
    }
}

.it-section-title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--it-common-black);
}
.it-section-title span {
    color: var(--it-theme-1);
}
.it-section-title.fz-45 {
    font-size: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-section-title.fz-45 {
        font-size: 39px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-section-title.fz-45 {
        font-size: 34px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-section-title.fz-45 {
        font-size: 40px;
    }
    .it-section-title.fz-45 br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-section-title.fz-45 {
        font-size: 22px;
    }
    .it-section-title.fz-45 br {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-section-title.fz-45 {
        font-size: 36px;
    }
}
.it-section-subtitle {
    font-weight: 600;
    font-size: 14px;
    display: block;
    letter-spacing: 0.01em;
    color: var(--it-theme-1);
    margin-bottom: 10px;
}
.it-section-subtitle::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 5px;
    transform: translateY(-3px);
    background-color: var(--it-theme-1);
    border-radius: 2px;
}

/*----------------------------------------*/
/*  05. blog css start
/*----------------------------------------*/
.it-blog-thumb {
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-right: 25px;
}
@media (max-width: 767px) {
    .it-blog-thumb {
        margin-right: 0;
        margin-bottom: 25px;
    }
}
.it-blog-thumb img {
    height: 100%;
    object-fit: cover;
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    object-fit: cover;
    border-radius: 10px;
}
.it-blog-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-blog-title {
        font-size: 20px;
        margin-right: 40px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog-title {
        font-size: 18px;
        margin-right: 0;
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    .it-blog-title {
        font-size: 18px;
    }
}
.it-blog-content {
    padding: 0;
}
.it-blog-content > span {
    font-weight: 400;
    font-size: 20px;
    display: block;
    padding-bottom: 9px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-blog-content > span {
        font-size: 17px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-blog-content > span {
        font-size: 15px;
    }
}
.it-blog-item {
    padding: 30px 0;
    position: relative;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
    border-top: 1px solid rgba(20, 20, 20, 0.1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 30px;
}
.it-blog-item-arrow a {
    display: inline-block;
    height: 58px;
    width: 58px;
    line-height: 58px;
    text-align: center;
    background-color: var(--it-theme-1);
}
.it-blog-item-arrow a svg, .it-blog-item-arrow a i {
    color: var(--it-common-white);
}
.it-blog-item-arrow a:hover svg, .it-blog-item-arrow a:hover i {
    transform: rotate(360deg);
    transition: 0.6s;
}
@media (max-width: 767px) {
    .it-blog-item-left {
        flex-wrap: wrap;
    }
}
.it-blog-user img {
    border-radius: 50%;
    height: 55px;
    width: 55px;
    margin-right: 15px;
    border: 1px solid rgba(98, 94, 88, 0.15);
}
.it-blog-user-info > span {
    font-size: 20px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-blog-user-info > span {
        font-size: 17px;
    }
}
.it-blog-date {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 6px 15px;
    border-radius: 0 10px;
    background-color: var(--it-common-black);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.it-blog-date span {
    color: var(--it-common-white);
}
.it-blog-style-2 .it-blog-item {
    padding-top: 0;
    border-top: none;
}
.it-blog-style-2 .it-blog-item::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    left: auto;
    height: 1px;
    width: 0;
    transition: 0.5s;
    background-color: var(--it-theme-1);
}
.it-blog-style-2 .it-blog-item:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}
.it-blog-style-2 .it-blog-thumb {
    margin: 0 0 15px 0;
}
.it-blog-style-3 .it-blog-item {
    padding: 0;
    border: none;
}
.it-blog-style-3 .it-blog-item:hover .it-blog-link span span.text-1 {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}
.it-blog-style-3 .it-blog-item:hover .it-blog-link span span.text-2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.it-blog-style-3 .it-blog-link span {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}
.it-blog-style-3 .it-blog-link span span {
    font-weight: 500;
    color: var(--it-theme-1);
}
.it-blog-style-3 .it-blog-link span span.text-1 {
    position: relative;
    display: block;
    transition: 0.3s;
}
.it-blog-style-3 .it-blog-link span span.text-2 {
    position: absolute;
    top: 100%;
    display: block;
    transition: 0.3s;
}
.it-blog-style-3 .it-blog-thumb {
    margin: 0 0 30px 0;
}

.it-pagination ul li {
    display: inline-block;
    list-style-type: none;
    margin: 0 4px;
}
.it-pagination ul li a {
    width: 60px;
    height: 60px;
    line-height: 61px;
    font-weight: 400;
    font-size: 18px;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgba(121, 121, 121, 0.2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-pagination ul li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
@media (max-width: 767px) {
    .it-pagination ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
.it-pagination ul li a i {
    font-size: 20px;
}
.it-pagination ul li.current a {
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
    border: 1px solid var(--it-theme-1);
}
.it-pagination ul li:hover a {
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
    border: 1px solid var(--it-theme-1);
}

/*  blog-details css here  */
@media (max-width: 767px) {
    .postbox-details-wrapper .it-blog-meta {
        margin-bottom: 20px;
    }
}
.postbox-details-wrapper .it-blog-meta i {
    margin-right: 5px;
    display: inline-block;
    color: var(--it-theme-1);
}
.postbox-details-wrapper .it-blog-meta span:first-child {
    margin-right: 30px;
}
.postbox-details-wrapper .it-blog-meta-wrap {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(98, 94, 88, 0.15);
}
@media (max-width: 767px) {
    .postbox-details-wrapper .it-blog-meta-wrap {
        flex-wrap: wrap;
    }
}
.postbox-details-wrapper .it-blog-btn {
    margin-top: 5px;
}
.postbox-details-wrapper .it-sv-details-list {
    margin-right: 75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox-details-wrapper .it-sv-details-list {
        margin-right: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox-details-wrapper .it-sv-details-list {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .postbox-details-wrapper .it-sv-details-list {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.postbox-details-wrapper .it-sv-details-list ul li {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-details-wrapper .it-sv-details-list ul li {
        font-size: 17px;
    }
}
.postbox-details-wrapper .it-sv-details-list ul li:not(:last-child) {
    margin-bottom: 12px;
}
.postbox-details-wrapper .it-contact-inner-style .it-contact-2-form-box {
    margin-left: 0;
    padding: 50px 45px;
}
@media (max-width: 767px) {
    .postbox-details-wrapper .it-contact-inner-style .it-contact-2-form-box {
        padding: 30px 20px;
    }
}
.postbox-details-wrapper.postbox-style-2 .postbox-dsc p {
    margin-right: 60px;
}
.postbox-details-wrapper.postbox-style-2 .postbox-blockquote p {
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .postbox-details-wrapper.postbox-style-2 .postbox-blockquote p {
        font-size: 15px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .postbox-details-wrapper.postbox-style-2 .postbox-blockquote p {
        font-size: 18px;
    }
}
.postbox-details-wrapper.postbox-style-2 .it-contact-inner-style .it-contact-2-form-box {
    padding: 60px 75px;
}
.postbox-details-wrapper.postbox-style-2 .postbox-user-info p {
    font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox-details-wrapper.postbox-style-2 .postbox-user-info p br {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-details-wrapper.postbox-style-2 .postbox-user-info p {
        font-size: 14px;
    }
    .postbox-details-wrapper.postbox-style-2 .postbox-user-info p br {
        display: none;
    }
}
.postbox-details-wrapper.postbox-style-2 .postbox-comment-content ul li.children {
    margin-left: 115px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-details-wrapper.postbox-style-2 .postbox-comment-content ul li.children {
        margin-left: 0;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-details-wrapper.postbox-style-2 .postbox-dsc p {
        margin-right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-details-wrapper.postbox-style-2 .postbox-blockquote p br {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox-details-wrapper.postbox-style-2 .it-contact-inner-style .it-contact-2-form-box {
        padding: 55px 45px;
    }
}
@media (max-width: 767px) {
    .postbox-details-wrapper.postbox-style-2 .it-contact-inner-style .it-contact-2-form-box {
        padding: 30px 20px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-details-wrapper .it-inner-title br {
        display: none;
    }
}
.postbox-details-wrapper .it-contact-inner-style .contact__select .nice-select {
    border: 1px solid rgba(98, 94, 88, 0.15);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox-details-wrapper .it-contact-inner-style .contact__select .nice-select {
        height: 60px;
        line-height: 60px;
    }
}
@media (max-width: 767px) {
    .postbox-details-wrapper .it-contact-inner-style .contact__select .nice-select {
        font-size: 16px;
    }
}
.postbox-dsc p {
    line-height: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-dsc p {
        font-size: 15px;
        line-height: 1.6;
    }
}
.postbox-blockquote {
    border-radius: 20px;
    padding: 62px 50px;
    margin-bottom: 60px;
    background-color: var(--it-gray-3);
}
@media (max-width: 767px) {
    .postbox-blockquote {
        padding: 35px 20px;
    }
}
.postbox-blockquote p {
    font-weight: 400;
    font-size: 25px;
    line-height: 2;
    margin-bottom: 15px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox-blockquote p {
        font-size: 20px;
        line-height: 1.5;
    }
}
@media (max-width: 767px) {
    .postbox-blockquote p {
        font-size: 17px;
        line-height: 1.5;
    }
}
.postbox-blockquote strong {
    font-weight: 600;
    font-size: 25px;
    display: block;
    margin-bottom: 7px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox-blockquote strong {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .postbox-blockquote strong {
        font-size: 17px;
        line-height: 1.5;
    }
}
.postbox-blockquote .quote-icon {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-blockquote .quote-icon svg {
        height: 70px;
    }
}
@media (max-width: 767px) {
    .postbox-tag {
        margin-bottom: 20px;
    }
}
.postbox-tag-title {
    font-size: 16px;
    display: inline-block;
    margin-right: 10px;
    color: var(--it-common-black);
}
.postbox-tag-content a {
    padding: 0 14px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    border-radius: 5px;
    transition: 0.3s;
    color: var(--it-common-black);
    background-color: var(--it-gray-3);
}
.postbox-tag-content a:not(:last-child) {
    margin-right: 7px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox-tag-content a {
        padding: 0 15px;
        height: 38px;
        line-height: 38px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .postbox-tag-content a {
        padding: 0 12px;
        height: 32px;
        line-height: 32px;
        font-size: 12px;
        margin-bottom: 10px;
    }
}
.postbox-tag-content a:hover {
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
}
.postbox-tag-box {
    padding: 24px 0;
    border-top: 1px solid rgba(121, 121, 121, 0.3);
    border-bottom: 1px solid rgba(121, 121, 121, 0.3);
}
.postbox-share span {
    display: inline-block;
    margin-right: 10px;
    color: var(--it-common-black);
}
.postbox-share-content a {
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
    height: 42px;
    width: 42px;
    line-height: 38px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .postbox-share-content a {
        height: 35px;
        width: 35px;
        line-height: 31px;
    }
}
@media (max-width: 767px) {
    .postbox-share-content a svg {
        width: 12px;
    }
}
.postbox-share-content a:not(:last-child) {
    margin-right: 5px;
}
.postbox-share-content a:hover {
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
}
.postbox-user-thumb {
    flex: 0 0 auto;
}
.postbox-user-thumb img {
    height: 120px;
    width: 120px;
    border-radius: 5px;
    margin-right: 28px;
}
@media (max-width: 767px) {
    .postbox-user-thumb img {
        margin-bottom: 30px;
    }
}
.postbox-user-info .user-title {
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    font-family: var(--it-ff-heading);
    margin-bottom: 10px;
}
.postbox-user-info span {
    font-weight: 400;
    font-size: 13px;
    display: block;
}
.postbox-user-info p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.6;
    margin-right: 10px;
    color: #5E5F62;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox-user-info p {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .postbox-user-info p {
        font-size: 14px;
        margin-right: 0;
    }
}
.postbox-video-btn {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    display: inline-block;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    font-size: 26px;
    background-color: var(--it-theme-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox-video-btn {
        height: 90px;
        width: 90px;
        line-height: 85px;
    }
}
@media (max-width: 767px) {
    .postbox-video-btn {
        height: 60px;
        width: 60px;
        line-height: 55px;
    }
}
.postbox-video-btn i, .postbox-video-btn svg {
    padding-left: 5px;
    display: inline-block;
    color: var(--it-common-white);
}
@media (max-width: 767px) {
    .postbox-video-btn i, .postbox-video-btn svg {
        width: 18px;
    }
}
.postbox-slider-arrow-wrap .postbox-arrow-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    z-index: 9;
}
.postbox-slider-arrow-wrap .postbox-arrow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 9;
}
.postbox-slider-arrow-wrap button {
    padding: 0;
    height: 60px;
    width: 60px;
    line-height: 63px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    transition: 0.3s;
    color: var(--it-common-black);
    background-color: var(--it-common-white);
}
@media (max-width: 767px) {
    .postbox-slider-arrow-wrap button {
        font-size: 14px;
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}
.postbox-slider-arrow-wrap button:hover {
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
}
.postbox-comment-title {
    font-weight: 600;
    font-size: 34px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox-comment-title {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .postbox-comment-title {
        font-size: 21px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .postbox-comment-title {
        font-size: 26px;
    }
}
.postbox-comment-content ul li {
    list-style-type: none;
    margin-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-comment-content ul li {
        margin-bottom: 40px;
    }
}
.postbox-comment-content ul li:last-child {
    margin-bottom: 50px;
}
.postbox-comment-content ul li.children {
    margin-left: 115px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .postbox-comment-content ul li.children {
        margin-left: 0;
    }
}
.postbox-comment .reply {
    transition: 0.3s;
    color: var(--it-common-black);
}
.postbox-comment .reply span {
    margin-right: 2px;
}
.postbox-comment .reply span i {
    color: var(--it-common-black);
}
.postbox-comment .reply:hover {
    color: var(--it-theme-1);
}
@media (max-width: 767px) {
    .postbox-comment-user {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-tag {
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .postbox-tag-box {
        margin-bottom: 70px;
    }
}

.it-inner-title {
    font-weight: 600;
    font-size: 34px;
    line-height: 1.29;
    color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-inner-title {
        font-size: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-inner-title {
        font-size: 30px;
    }
    .it-inner-title br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-inner-title {
        font-size: 22px;
    }
    .it-inner-title br {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-inner-title {
        font-size: 28px;
    }
}

/*----------------------------------------*/
/*  17. footer css start
/*----------------------------------------*/
.it-footer-wrap {
    background-color: var(--it-common-black);
}
.it-footer-area {
    padding: 60px 0 30px 0;
}
.it-footer-widget-logo img {
    height: 50px;
    object-fit: contain;
}
.it-footer-widget-text p {
    line-height: 1.5;
    font-size: 15px;
    color: rgba(255,255,255,.4);
}
.it-footer-widget-menu ul li {
    list-style-type: none;
}
.it-footer-widget-menu ul li:not(:last-child) {
    margin-bottom: 10px;
}
.it-footer-widget-menu ul li a {
    color: var(--it-common-white);
    position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-widget-menu ul li a {
        font-size: 14px;
    }
}
.it-footer-widget-menu ul li a:hover {
    color: var(--it-theme-1);
    padding-left: 5px;
}
.it-footer-widget-contact ul li {
    list-style-type: none;
}
.it-footer-widget-contact ul li:not(:last-child) {
    margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-widget-contact ul li:not(:last-child) {
        margin-bottom: 15px;
    }
}
.it-footer-widget-contact ul li a, .it-footer-widget-contact ul li span {
    font-weight: 400;
    font-size: 18px;
    position: relative;
    padding-left: 20px;
    line-height: 1.56;
    color: rgba(246, 246, 246, 0.5);
}
.it-footer-widget-contact ul li a::before, .it-footer-widget-contact ul li span::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
    background-color: var(--it-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-widget-contact ul li a::before, .it-footer-widget-contact ul li span::before {
        top: 5px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-footer-widget-contact ul li a, .it-footer-widget-contact ul li span {
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-widget-contact ul li a, .it-footer-widget-contact ul li span {
        font-size: 14px;
    }
}
.it-footer-widget-contact ul li a:hover, .it-footer-widget-contact ul li span:hover {
    color: var(--it-theme-1);
}
.it-footer-widget-contact ul li span {
    padding-left: 25px;
}
.it-footer-widget-tel-box {
    position: relative;
    display: flex;
    align-items: center;
}
.it-footer-widget-tel-box a,
.it-footer-widget-tel-box p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.62;
    transition: 0.3s;
    color: var(--it-common-white);
    margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-footer-widget-tel-box a,
    .it-footer-widget-tel-box p{
        font-size: 14px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-widget-tel-box a,
    .it-footer-widget-tel-box p{
        font-size: 14px;
    }
}
.it-footer-widget-tel-box a:hover,
.it-footer-widget-tel-box p:hover {
    color: var(--it-theme-1);
}
.it-footer-widget-tel-box > span {
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
    flex: 0 0 auto;
    border-radius: 5px;
    background-color: var(--it-theme-1);
}
.it-footer-widget-tel-box > span svg, .it-footer-widget-tel-box > span i {
    color: var(--it-common-white);
}
.it-footer-widget-tel-box.col-1-2 {
    margin-left: 30px;
    position: relative;
}
@media (max-width: 767px) {
    .it-footer-widget-tel-box.col-1-2 {
        margin-left: 0;
    }
}
.it-footer-widget-tel-box.col-1-2::after {
    position: absolute;
    top: 0;
    left: -24%;
    height: 100%;
    width: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.15);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-widget-tel-box.col-1-2::after {
        display: none;
    }
}
.it-footer-widget-tel-box.col-1-2::before {
    position: absolute;
    top: 0;
    right: 7%;
    height: 100%;
    width: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.15);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-widget-tel-box.col-1-2::before {
        display: none;
    }
}
.it-footer-widget-tel-box.col-1-3 {
    margin-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-widget-tel-box.col-1-3 {
        margin-left: 0;
    }
}
.it-footer-widget-input-box form.input-wrap {
    width: 300px;
    display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-footer-widget-input-box form.input-wrap {
        width: 100%;
    }
}
.it-footer-widget-input-box form input {
    height: 50px;
    line-height: 50px;
    padding-right: 70px;
    padding-left: 25px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--it-theme-1);
}
.it-footer-widget-input-box form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-footer-widget-input-box form input {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        padding-left: 20px;
    }
}
.it-footer-widget-input-box button {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 0;
    height: 100%;
    width: 50px;
    border-radius: 5px;
    color: var(--it-common-white);
    transform: translateY(-50%);
    background: var(--it-theme-1);
}
.it-footer-widget-gallery-wrap {
    display: grid;
    gap: 10px;
    height: auto;
    grid-template-columns: repeat(3, 1fr);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
    .it-footer-widget-gallery-wrap {
        width: auto;
    }
}
.it-footer-style-2 .shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.it-footer-style-2 .it-footer-widget-title {
    color: var(--it-common-white);
}
.it-footer-style-2 .it-footer-widget-menu ul li a {
    color: rgba(255, 255, 255, 0.7);
}
.it-footer-style-2 .it-footer-widget-text p {
    color: rgba(255, 255, 255, 0.7);
}
.it-footer-style-2 .it-copyright-wrap {
    padding: 0;
    background-color: transparent;
}
.it-footer-style-2 .it-copyright-area {
    padding: 19px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.it-footer-style-2 .it-copyright-left p {
    color: var(--it-common-white);
}
.it-footer-style-2 .it-copyright-social a {
    color: var(--it-common-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.it-footer-style-2 .it-footer-widget-tel-wrap {
    padding: 40px 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-style-2 .it-footer-widget-tel-wrap {
        padding: 35px 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-style-2 .it-footer-widget-tel-box {
        margin-bottom: 30px;
    }
}
.it-footer-style-2 .it-footer-widget-tel-box a {
    color: var(--it-common-white);
}
@media (max-width: 767px) {
    .it-footer-style-2 .it-footer-widget-tel-box a {
        font-size: 14px;
    }
}
.it-footer-style-2 .it-footer-widget-tel-box > span {
    width: 70px;
    height: 70px;
    line-height: 65px;
    margin-right: 20px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid var(--it-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-footer-style-2 .it-footer-widget-tel-box > span {
        width: 50px;
        height: 50px;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .it-footer-style-2 .it-footer-widget-tel-box > span {
        width: 40px;
        height: 40px;
        line-height: 35px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-footer-style-2 .it-footer-widget-tel-box > span svg {
        width: 22px;
    }
}
@media (max-width: 767px) {
    .it-footer-style-2 .it-footer-widget-tel-box > span svg {
        width: 17px;
    }
}
.it-footer-style-2 .it-footer-widget-tel-box div span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-style-2 .it-footer-widget-tel-box div span {
        font-size: 14px;
        margin-bottom: 3px;
    }
}
.it-footer-style-2 .it-footer-widget-tel-box div a {
    font-size: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-style-2 .it-footer-widget-tel-box div a {
        font-size: 16px;
    }
}
.it-footer-style-3 .footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    background-size: cover;
    background-repeat: no-repeat;
}
.it-footer-style-3 .it-footer-widget-title {
    color: var(--it-common-white);
}
.it-footer-style-3 .it-footer-widget-menu ul li a {
    color: var(--it-common-white);
}
.it-footer-style-3 .it-footer-widget-text p {
    color: var(--it-common-white);
}
.it-footer-style-3 .it-copyright-wrap {
    padding: 0;
    background-color: transparent;
}
.it-footer-style-3 .it-copyright-area {
    padding: 19px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.it-footer-style-3 .it-copyright-left p {
    color: var(--it-common-white);
}
.it-footer-style-3 .it-copyright-social a {
    color: var(--it-common-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.it-footer-style-3 .it-footer-widget-tel-box a {
    color: var(--it-common-white);
}
.it-footer-style-3 .it-footer-widget-tel-box a:hover {
    color: var(--it-theme-1);
}
.it-footer-style-3 .it-footer-col-1-2 {
    margin-left: 130px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-footer-style-3 .it-footer-col-1-2 {
        margin-left: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-footer-style-3 .it-footer-col-1-2 {
        margin-left: 40px;
    }
}
@media (max-width: 767px) {
    .it-footer-style-3 .it-footer-col-1-2 {
        margin-left: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-footer-style-3 .it-footer-col-1-2 {
        margin-left: 30px;
    }
}
.it-footer-style-3 .it-footer-col-1-3 {
    margin-left: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-footer-style-3 .it-footer-col-1-3 {
        margin-left: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-style-3 .it-footer-col-1-3 {
        margin-left: 0;
    }
}
.it-footer-style-4 {
    margin-top: -100px;
}
.it-footer-style-4 .footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    background-size: cover;
    background-repeat: no-repeat;
}
.it-footer-style-5 {
    background-size: cover;
    background-repeat: no-repeat;
}
.it-footer-style-5 .it-footer-widget-text p {
    margin-right: 20px;
}
.it-footer-style-5 .it-footer-widget-menu ul li a::before {
    display: none;
}
@media (max-width: 767px) {
    .it-footer-style-5 .it-footer-widget-menu.style-1 {
        margin-bottom: 20px;
    }
}
.it-footer-style-5 .it-footer-widget-menu ul li a {
    padding-left: 20px;
    position: relative;
    color: rgba(246, 246, 246, 0.5);
}
.it-footer-style-5 .it-footer-widget-menu ul li a:hover {
    color: var(--it-theme-1);
}
.it-footer-style-5 .it-footer-widget-menu ul li a span {
    position: absolute;
    top: -2px;
    left: 0;
}
.it-footer-style-5 .it-footer-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 40.4%;
    height: 100%;
    width: 1px;
    background-color: rgba(245, 245, 245, 0.1);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-footer-style-5 .it-footer-area::after {
        right: 37%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-style-5 .it-footer-area::after {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-footer-style-5 .it-footer-widget-text p {
        margin-bottom: 0;
    }
}
.it-footer-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 36%;
    height: 100%;
    width: 1px;
    background-color: #313537;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-footer-border::before {
        left: 31%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-border::before {
        display: none;
    }
}
.it-footer-border::after {
    content: "";
    position: absolute;
    top: 0;
    right: 34%;
    height: 100%;
    width: 1px;
    background-color: #313537;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-footer-border::after {
        right: 28%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-footer-border::after {
        display: none;
    }
}

.it-copyright-wrap {
    padding: 9px 30px;
    border-radius: 10px 10px 0 0;
    background-color: var(--it-gray-3);
}
.it-copyright-left p {
    color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-copyright-left p {
        font-size: 14px;
    }
}
.it-copyright-left p a {
    color: var(--it-theme-1);
}
.it-copyright-social {
    line-height: 0;
}
.it-copyright-social a {
    width: 42px;
    height: 42px;
    line-height: 39px;
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    color: var(--it-common-white);
    border: 1px solid rgba(255,255,255,.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-copyright-social a {
        width: 35px;
        height: 35px;
        line-height: 30px;
    }
}
.it-copyright-social a i {
    position: relative;
    z-index: 1;
    width: 16px;
    height: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-copyright-social a i {
        width: 12px;
        height: 12px;
    }
}
.it-copyright-social a:not(:last-child) {
    margin-right: 5px;
}
.it-copyright-social a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    transition: 0.5s ease;
    transform: scale(0);
    background-color: var(--it-theme-1);
}
.it-copyright-social a:hover {
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}
.it-copyright-social a:hover::after {
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
}

.it-copyright-2-wrap {
    border-radius: 20px;
    padding: 18px 60px;
    padding-right: 20px;
    position: relative;
    border: 1px solid rgba(245, 245, 245, 0.1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-copyright-2-wrap {
        padding: 15px 20px;
    }
}
@media (max-width: 767px) {
    .it-copyright-2-wrap {
        padding: 15px 10px;
    }
}
.it-copyright-2-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24.5%;
    height: 100%;
    width: 1px;
    background-color: rgba(245, 245, 245, 0.1);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-copyright-2-wrap::before {
        left: 23%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-copyright-2-wrap::before {
        left: 24%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-copyright-2-wrap::before {
        display: none;
    }
}
.it-copyright-2-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 33.2%;
    height: 100%;
    width: 1px;
    background-color: rgba(245, 245, 245, 0.1);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-copyright-2-wrap::after {
        right: 33.2%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-copyright-2-wrap::after {
        right: 30.2%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-copyright-2-wrap::after {
        display: none;
    }
}
.it-copyright-2-wrap .it-copyright-social a {
    border-radius: 50%;
}
.it-copyright-2-wrap .input-wrap input {
    border: none;
    background-color: transparent;
}
.it-copyright-2-wrap .it-footer-widget-input-box button {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
.it-copyright-2-wrap .it-footer-widget-input-box form.input-wrap {
    width: 420px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-copyright-2-wrap .it-footer-widget-input-box form.input-wrap {
        width: 300px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-copyright-2-wrap .it-footer-widget-input-box {
        display: none;
    }
}
.it-copyright-2-left p {
    font-weight: 500;
    font-size: 20px;
    color: #f5f5f5;
    padding-left: 10px;
    font-family: var(--it-ff-heading);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-copyright-2-left p {
        font-size: 18px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-copyright-2-left p {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .it-copyright-2-left p {
        margin-top: 10px;
        font-size: 14px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-copyright-2-left p {
        margin-top: 0;
    }
}
.it-copyright-2-left p::before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    transition: 0.3s;
    background-color: var(--it-theme-1);
}
@media (max-width: 767px) {
    .it-copyright-2-box {
        flex-wrap: wrap;
        justify-content: center !important;
    }
}

/*----------------------------------------*/
/*  19. header css start
/*----------------------------------------*/
.it-header-top-ptb {
    padding: 5px 0;
    background-color: var(--it-common-white);
}
.it-header-top-contact {
    position: relative;
    gap: 7px;
}
.it-header-top-contact span {
    display: inline-block;
    line-height: 1;
    position: relative;
    top: 1px;
}
.it-header-top-contact span svg, .it-header-top-contact span i {
    position: relative;
    z-index: 1;
    color: var(--it-theme-1);
    transition: 0.3s;
}
.it-header-top-contact a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--it-common-black);
}
.it-header-top-contact-wrap ul li {
    list-style-type: none;
    display: inline-block;
}
.it-header-top-contact-wrap ul li:not(:last-child) {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #D9D9D9;
}
@media only screen and (max-width: 1200px) {
    .it-header-top-contact-wrap ul li:not(:last-child) {
        padding-right: 10px;
        margin-right: 10px;
        border-right: 1px solid #D9D9D9;
    }
}
.it-header-top-lang a {
    display: inline-block;
    transition: 0.3s;
    height: 30px;
    width: 35px;
    line-height: 29px;
    margin-left: 5px;
    font-size: 17px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--it-common-black);
    font-weight: 400;
    border-radius: 5px;
}
@media only screen and (max-width: 1200px) {
    .it-header-top-lang a {
        height: 25px;
        width: 30px;
        line-height: 23px;
        font-size: 14px;
    }
}
.it-header-top-lang a:hover,
.it-header-top-lang a.active {
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
    font-weight: 600;
}
.it-header-main {
    position: relative;
    z-index: 999;
    background-color: rgba(255,255,255,.8);
    border-radius: 0 0 10px 10px;
}
.it-header-logo a {
    display: block;
}
.it-header-logo a img {
    width: auto;
    height: 50px;
    object-fit: contain;
}
.it-header-menu > nav > ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu > nav > ul {
        gap: 10px;
    }
}
.it-header-menu > nav > ul > li {
    list-style-type: none;
    display: inline-block;
}
.it-header-menu > nav > ul > li:first-child {
    margin-left: 0;
}
.it-header-menu > nav > ul > li > a {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.01em;
    display: inline-block;
    position: relative;
    color: var(--it-common-black);
    padding: 25px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu > nav > ul > li > a {
        font-size: 15px;
    }
}
.it-header-menu > nav > ul > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    margin: 0 auto;
    transition: 0.3s;
    opacity: 0;
    height: 5px;
    background-color: var(--it-theme-1);
}
.it-header-menu > nav > ul > li:hover > a {
    color: var(--it-theme-1);
}
.it-header-menu > nav > ul > li:hover > a::before {
    width: 100%;
    opacity: 1;
}
.it-header-menu > nav > ul > li:hover.has-dropdown a::after {
    color: var(--it-theme-1);
}
.it-header-search {
    margin: 0 30px 0 30px;
}
@media only screen and (max-width: 1399px) {
    .it-header-search {
        margin: 0 10px;
    }
}
@media only screen and (max-width: 768px) {
    .it-header-search {
        margin: 0 0 0 10px;
    }
}
.it-header-search button {
    height: 50px;
    width: 50px;
    line-height: 1;
    border-radius: 50%;
    position: relative;
    padding: 0;
    color: var(--it-common-black);
    background-color: rgba(0, 0, 0, .2);
}
@media only screen and (max-width: 1399px) {
    .it-header-search button {
        width: 40px;
        height: 40px;
    }
}
.it-header-search button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s;
    border-radius: 50%;
    background-color: var(--it-theme-1);
    transform: scale(0);
}
.it-header-search button i {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 17px;
}
.it-header-search button:hover::after {
    transform: scale(1);
}
.it-header-search button:hover i {
    color: var(--it-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-header-search {
        margin: 0 10px 0 0;
    }
}
.it-header-user {
    margin-right: 30px;
}
.it-header-user a {
    height: 53px;
    width: 53px;
    line-height: 48px;
    border-radius: 50%;
    position: relative;
    padding: 0;
    display: inline-block;
    text-align: center;
    color: var(--it-common-white);
    background-color: rgba(255, 255, 255, 0.1);
}
.it-header-user a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s;
    border-radius: 50%;
    background-color: var(--it-theme-1);
    transform: scale(0);
}
.it-header-user a svg {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 17px;
}
.it-header-user a:hover::after {
    transform: scale(1);
}
.it-header-user a:hover svg {
    color: var(--it-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-header-user {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .it-header-user {
        display: none;
    }
}
.it-header-logo-2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 150px;
    padding-right: 120px;
    background-color: var(--it-theme-1);
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header-logo-2 {
        padding-left: 75px;
        padding-right: 75px;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-logo-2 {
        padding: 0 50px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-logo-2 {
        padding: 0 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-header-logo-2 {
        padding: 0 45px;
    }
}
.it-header-ml {
    margin-left: 410px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-ml {
        margin-left: 350px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-ml {
        margin-left: 280px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-header-ml {
        margin-left: 0;
    }
}
.it-header-login button {
    padding: 0;
    font-weight: 500;
    margin-right: 40px;
    color: var(--it-common-black);
}
.it-header-style-2 .it-header-menu > nav > ul {
    padding-left: 0;
    border-left: none;
    margin-right: -50px;
    border-right: 1px solid rgba(98, 94, 88, 0.15);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-style-2 .it-header-menu > nav > ul {
        border-right: none;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-style-2 .it-header-menu > nav > ul li {
        margin: 0 8px;
    }
}
.it-header-style-2 .it-header-menu > nav > ul li a {
    color: var(--it-common-black);
}
.it-header-style-2 .it-header-menu > nav > ul li.has-dropdown > a::after {
    color: var(--it-common-black);
}
.it-header-style-2 .it-header-menu > nav > ul li:hover > a {
    color: var(--it-theme-1);
}
.it-header-style-2 .it-header-top-contact a {
    color: var(--it-common-white);
}
.it-header-style-2 .it-header-top-social-box a {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--it-common-white);
}
.it-header-style-2 .it-header-top-social-box span {
    color: var(--it-common-white);
}
.it-header-style-2 .it-header-top-contact-wrap ul li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
    .it-header-style-2 .it-header-top-contact-wrap ul li:not(:last-child) {
        border: none;
    }
}
.it-menu-bar {
    padding: 0;
    margin-left: 10px;
}
.it-header-bar button span {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 41px;
    color: var(--it-common-white);
    background-color: var(--it-common-black);
    transition: 0.3s;
    display: inline-block;
    border-radius: 5px;
}
.it-header-style-3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-style-3 .it-header-menu > nav > ul {
        padding-left: 90px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-style-3 .it-header-menu > nav > ul {
        padding-left: 50px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-style-3 .it-header-menu > nav > ul > li {
        margin: 0 10px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-style-3 .it-header-right-action {
        margin-left: -50px;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-style-4 .it-header-menu > nav > ul {
        padding-left: 60px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-style-4 .it-header-menu > nav > ul {
        padding-left: 30px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-style-4 .it-header-menu > nav > ul li {
        margin: 0 8px;
    }
}

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    width: 100%;
    z-index: 999;
    background-color: var(--it-common-white);
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    box-shadow: 0 1px 3px 0 rgba(18, 20, 32, 0.14);
    padding: 3px 0;
}
.header-sticky .it-header-top-area {
    display: none;
}
.header-sticky.it-header-style .it-header-menu > nav > ul > li > a {
    color: var(--it-common-black);
}
.header-sticky.it-header-style .it-header-menu > nav > ul > li.has-dropdown > a::after {
    color: var(--it-common-black);
}
.header-sticky.it-header-style .it-header-menu > nav > ul > li:hover > a {
    color: var(--it-theme-1);
}
.header-sticky.it-header-style .it-header-menu > nav > ul > li:hover.has-dropdown a::after {
    color: var(--it-theme-1);
}
.header-sticky.it-header-style .it-header-logo-3 {
    display: block !important;
}
.header-sticky.it-header-style .it-header-logo img {
    height: 40px;
}
.header-sticky.it-header-style .it-header-search button {
    color: var(--it-common-black);
    background-color: rgba(0, 0, 0, 0.1);
}
.header-sticky.it-header-style .it-header-user a {
    color: var(--it-common-black);
    background-color: rgba(0, 0, 0, 0.1);
}
.header-sticky .it-header-menu > nav > ul > li > a {
    padding: 15px 0;
}

.it-header-style-2 .it-header-menu nav ul li .has-home-img {
    left: -5%;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header-style-2 .it-header-menu nav ul li .has-home-img {
        left: -35%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-style-2 .it-header-menu nav ul li .has-home-img {
        left: -34%;
        width: 1200px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-style-2 .it-header-menu nav ul li .has-home-img {
        left: -30%;
        width: 1000px;
    }
}

.it-onepage-menu li > a.active {
    color: var(--it-theme-1) !important;
}
.it-onepage-menu li > a.active::before {
    width: 100%;
    opacity: 1;
}
.it-onepage-menu li.has-dropdown > a.active::after {
    color: var(--it-theme-1) !important;
}

/*----------------------------------------*/
/*  54
/*----------------------------------------*/
.it-header-menu nav ul li {
    position: relative;
    list-style: none;
}
.it-header-menu nav ul li.has-dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
    transform: translateY(-1px);
    color: var(--it-common-black);
    margin-left: 7px;
}
.it-header-menu nav ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    text-align: left;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transition-duration: 0.1s;
    transform-origin: top;
    -webkit-transform: perspective(300px) rotateX(-18deg);
    -moz-transform: perspective(300px) rotateX(-18deg);
    -ms-transform: perspective(300px) rotateX(-18deg);
    -o-transform: perspective(300px) rotateX(-18deg);
    transform: perspective(300px) rotateX(-18deg);
    background-color: var(--it-common-white);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    z-index: 9999;
    border-radius: 0 0 5px 5px;
}
.it-header-menu nav ul li .submenu li:not(:last-child) a {
    margin-bottom: 10px;
}
.it-header-menu nav ul li .submenu li a {
    font-weight: 500;
    font-size: 16px;
    position: relative;
    display: block;
    color: var(--it-common-black);
    padding: 5px;
    background-color: var(--it-gray-2);
    border-radius: 5px;
}
.it-header-menu nav ul li .submenu li a::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    height: 1px;
    width: 0;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
    background-color: var(--it-common-black);
}
.it-header-menu nav ul li .submenu li:hover > a {
    padding-left: 20px;
    color: var(--it-common-black);
}
.it-header-menu nav ul li .submenu li:hover > a::before {
    width: 15px;
    visibility: visible;
    opacity: 1;
}
.it-header-menu nav ul li .submenu .submenu {
    left: 100%;
    top: 0;
}
.it-header-menu nav ul li:hover.has-dropdown a::after {
    color: var(--it-theme-1);
    transform: translateY(-3px) rotate(-180deg);
}
.it-header-menu nav ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    transition-duration: 0.2s;
    transform: perspective(300px) rotateX(0deg);
}

.it-homemenu-wrapper {
    padding: 10px 15px 0 15px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-homemenu-wrapper {
        padding: 40px 40px 20px 40px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-homemenu-wrapper {
        padding: 45px 35px 20px 35px;
    }
}

.it-megamenu-list li {
    list-style: none;
    display: block;
}
.it-megamenu-list li:not(:last-child) {
    margin-bottom: 18px;
}
.it-megamenu-list li a {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    position: relative;
    color: var(--it-common-black);
}
.it-megamenu-list li a::before {
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
    height: 2px;
    width: 0;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
    background-color: var(--it-common-black);
}
.it-megamenu-list li:hover > a {
    padding-left: 25px;
}
.it-megamenu-list li:hover > a::before {
    width: 20px;
    visibility: visible;
    opacity: 1;
}
.it-megamenu-thumb {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 300px;
}
.it-megamenu-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.it-megamenu-text {
    position: relative;
    z-index: 99;
    bottom: -18%;
    transform: rotate(-90deg) translateY(-100%);
    text-align: center;
}
.it-megamenu-text h4 {
    font-size: 115px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -1.6px;
    color: rgba(25, 25, 26, 0.1);
}
.it-megamenu-text span {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.3px;
    color: rgba(25, 25, 26, 0.4);
    text-transform: capitalize;
}
.it-megamenu-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 10px;
    margin-right: 65px;
    font-family: var(--it-ff-heading);
    border-bottom: 1px solid rgba(11, 11, 11, 0.1098039216);
}

.it-header-menu nav ul li .has-home-img {
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    width: 1310px;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
    background-color: var(--it-common-white);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    margin: 0 auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu nav ul li .has-home-img {
        width: 100%;
    }
}
.it-header-menu nav ul li .has-home-img.submenu {
    padding: 0;
}
.it-header-menu nav ul li .has-home-img .home-img {
    padding: 0 10px;
    position: relative;
}
.it-header-menu nav ul li .has-home-img .home-img-title {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
    display: block;
    color: var(--it-common-black);
    margin: 0 0 10px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu nav ul li .has-home-img .home-img-title {
        font-size: 14px;
    }
}
.it-header-menu nav ul li .has-home-img .home-img-title a {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-family: var(--it-ff-heading);
    background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
    display: inline;
    background-size: 0 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s linear;
}
.it-header-menu nav ul li .has-home-img .home-img-title:hover a {
    background-size: 0 1px, 100% 1px;
}

.it-megamenu-space-2 {
    margin-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-megamenu-space-2 {
        margin-left: 0;
    }
}

.home-img-btn {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 1;
    margin: 0 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
    .home-img-btn {
        margin: 0 15px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .home-img-btn {
        margin: 0 15px;
    }
}
.home-img-btn .it-btn-sm {
    margin-bottom: 10px;
}

.home-img-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 200px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 10px;
}
.type-distributor .home-img-thumb {
    height: 120px;
    object-fit: contain;
    padding: 30px;
}
.home-img-thumb img {
    transition: 0.9s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.type-distributor .home-img-thumb img {
    object-fit: contain;
}
.home-img-thumb.home-img-overly::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 15, 28, 0.3);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.home-img-thumb.coming-soon::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(7px);
    border-radius: 14px;
    content: "";
}
.home-img-thumb:hover img {
    transform: scale(1.1);
}
.home-img-thumb:hover.home-img-overly::after {
    opacity: 1;
    visibility: visible;
}
.home-img-thumb:hover .home-img-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.it-menu-mobile .it-menu-content,
.it-category-mobile-menu .it-menu-content {
    margin-bottom: 50px;
}
.it-menu-mobile .home-img,
.it-category-mobile-menu .home-img {
    margin-bottom: 20px;
}
.it-menu-mobile .home-img-title,
.it-category-mobile-menu .home-img-title {
    font-weight: 500;
    font-size: 16px;
    font-family: var(--it-ff-body);
    color: var(--it-common-white);
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
    display: inline;
    background-size: 0 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s linear;
}
.it-menu-mobile .home-img-title:hover,
.it-category-mobile-menu .home-img-title:hover {
    background-size: 0 1px, 100% 1px;
}
.it-menu-mobile ul,
.it-category-mobile-menu ul {
    position: static;
    display: block;
    box-shadow: none;
}
.it-menu-mobile ul li,
.it-category-mobile-menu ul li {
    list-style: none;
    position: relative;
    width: 100%;
    padding: 0;
}
.it-menu-mobile ul li:not(:last-child) > a,
.it-category-mobile-menu ul li:not(:last-child) > a {
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.it-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn,
.it-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn {
    position: absolute;
    right: 0;
    top: 25%;
    transform: translateY(-2px);
    font-size: 18px;
    color: var(--it-common-black);
    font-family: "Font Awesome 5 Pro";
    z-index: 1;
    width: 25px;
    height: 25px;
    line-height: 21px;
    text-align: center;
    border: 1px solid rgba(176, 162, 162, 0.35);
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
    border-radius: 5px;
}
.it-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn i,
.it-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn i {
    transition: all 0.3s ease-in-out;
    margin-left: 2px;
}
.it-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i,
.it-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i {
    transform: rotate(90deg);
}
.it-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover,
.it-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn:hover {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}
.it-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover i,
.it-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn:hover i {
    color: var(--it-common-white);
}
.it-menu-mobile ul li.has-dropdown > a.expanded,
.it-category-mobile-menu ul li.has-dropdown > a.expanded {
    color: var(--it-theme-1);
}
.it-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened,
.it-category-mobile-menu ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}
.it-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i,
.it-category-mobile-menu ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i {
    color: var(--it-common-white);
}
.it-menu-mobile ul li.has-dropdown:hover > a::after,
.it-category-mobile-menu ul li.has-dropdown:hover > a::after {
    color: var(--it-theme-1);
}
.it-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn,
.it-category-mobile-menu ul li.has-dropdown-2 > a .dropdown-toggle-btn {
    position: absolute;
    right: 0;
    top: 25%;
    transform: translateY(-2px);
    font-size: 18px;
    color: #fff;
    font-family: "Font Awesome 5 Pro";
    transition: all 0.3s ease-in-out;
    z-index: 1;
    width: 25px;
    height: 25px;
    line-height: 21px;
    text-align: center;
    border: 1px solid rgba(176, 162, 162, 0.35);
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.it-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn i,
.it-category-mobile-menu ul li.has-dropdown-2 > a .dropdown-toggle-btn i {
    transition: all 0.3s ease-in-out;
    margin-left: 2px;
}
.it-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn.dropdown-opened i,
.it-category-mobile-menu ul li.has-dropdown-2 > a .dropdown-toggle-btn.dropdown-opened i {
    transform: rotate(90deg);
}
.it-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn:hover,
.it-category-mobile-menu ul li.has-dropdown-2 > a .dropdown-toggle-btn:hover {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}
.it-menu-mobile ul li.has-dropdown-2 > a .dropdown-toggle-btn:hover i,
.it-category-mobile-menu ul li.has-dropdown-2 > a .dropdown-toggle-btn:hover i {
    color: var(--it-common-white);
}
.it-menu-mobile ul li.has-dropdown-2 > a.expanded,
.it-category-mobile-menu ul li.has-dropdown-2 > a.expanded {
    color: var(--it-theme-1);
}
.it-menu-mobile ul li.has-dropdown-2 > a.expanded .dropdown-toggle-btn.dropdown-opened,
.it-category-mobile-menu ul li.has-dropdown-2 > a.expanded .dropdown-toggle-btn.dropdown-opened {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}
.it-menu-mobile ul li.has-dropdown-2 > a.expanded .dropdown-toggle-btn.dropdown-opened i,
.it-category-mobile-menu ul li.has-dropdown-2 > a.expanded .dropdown-toggle-btn.dropdown-opened i {
    color: var(--it-common-white);
}
.it-menu-mobile ul li.has-dropdown-2:hover > a::after,
.it-category-mobile-menu ul li.has-dropdown-2:hover > a::after {
    color: var(--it-theme-1);
}
.it-menu-mobile ul li:last-child a span,
.it-category-mobile-menu ul li:last-child a span {
    border-bottom: 0;
}
.it-menu-mobile ul li > a,
.it-category-mobile-menu ul li > a {
    display: block;
    font-size: 16px;
    color: var(--it-common-black);
    position: relative;
    padding: 10px 0;
    padding-right: 20px;
    text-transform: capitalize;
}
.it-menu-mobile ul li > a:hover,
.it-category-mobile-menu ul li > a:hover {
    color: var(--it-theme-1);
}
.it-menu-mobile ul li > a svg,
.it-category-mobile-menu ul li > a svg {
    transform: translateY(-2px);
}
.it-menu-mobile ul li > a > i,
.it-category-mobile-menu ul li > a > i {
    display: inline-block;
    width: 11%;
    margin-right: 13px;
    transform: translateY(4px);
    font-size: 21px;
    line-height: 1;
}
.it-menu-mobile ul li > a .menu-text,
.it-category-mobile-menu ul li > a .menu-text {
    font-size: 16px;
    line-height: 11px;
    border-bottom: 1px solid #EAEBED;
    width: 82%;
    display: inline-block;
    padding: 19px 0 17px;
}
.it-menu-mobile ul li img,
.it-category-mobile-menu ul li img {
    width: 100%;
    height: 100%;
}
.it-menu-mobile ul li ul,
.it-category-mobile-menu ul li ul {
    padding: 0;
}
.it-menu-mobile ul li ul li,
.it-category-mobile-menu ul li ul li {
    padding: 0;
}
.it-menu-mobile ul li ul li a,
.it-category-mobile-menu ul li ul li a {
    margin-left: auto;
    width: 93%;
    padding: 10px 5%;
    text-shadow: none !important;
    visibility: visible;
    padding-left: 0;
    padding-right: 20px;
}
.it-menu-mobile ul li ul li li a,
.it-category-mobile-menu ul li ul li li a {
    width: 88%;
    padding: 10px 7%;
    padding-left: 0;
    padding-right: 20px;
}
.it-menu-mobile ul li ul li li li a,
.it-category-mobile-menu ul li ul li li li a {
    width: 83%;
    padding: 10px 9%;
    padding-left: 0;
    padding-right: 20px;
}
.it-menu-mobile ul li ul li li li li a,
.it-category-mobile-menu ul li ul li li li li a {
    width: 68%;
    padding: 10px 11%;
    padding-left: 0;
    padding-right: 20px;
}
.it-menu-mobile ul li:hover > a::after,
.it-category-mobile-menu ul li:hover > a::after {
    color: var(--it-theme-1);
}
.it-menu-mobile ul li:hover > a .dropdown-toggle-btn i,
.it-category-mobile-menu ul li:hover > a .dropdown-toggle-btn i {
    color: var(--it-theme-1);
}
.it-menu-mobile ul li:hover .mega-menu,
.it-category-mobile-menu ul li:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    top: 0;
}
.it-menu-mobile ul li .mega-menu, .it-menu-mobile ul li .submenu,
.it-category-mobile-menu ul li .mega-menu,
.it-category-mobile-menu ul li .submenu {
    position: static;
    min-width: 100%;
    padding: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    display: none;
}
.it-menu-mobile ul li .mega-menu li, .it-menu-mobile ul li .submenu li,
.it-category-mobile-menu ul li .mega-menu li,
.it-category-mobile-menu ul li .submenu li {
    float: none;
    display: block;
    width: 100%;
    padding: 0;
}
.it-menu-mobile ul li .mega-menu li:hover a .dropdown-toggle-btn, .it-menu-mobile ul li .submenu li:hover a .dropdown-toggle-btn,
.it-category-mobile-menu ul li .mega-menu li:hover a .dropdown-toggle-btn,
.it-category-mobile-menu ul li .submenu li:hover a .dropdown-toggle-btn {
    color: var(--it-theme-1);
}
.it-menu-mobile .it-menu-content ul li:not(:last-child) .home-img-title a,
.it-category-mobile-menu .it-menu-content ul li:not(:last-child) .home-img-title a {
    border-bottom: none;
}
.it-menu-mobile * ul, .it-menu-mobile * li,
.it-category-mobile-menu * ul,
.it-category-mobile-menu * li {
    transition: none !important;
}

.it-header-menu nav ul li.p-static {
    position: static;
}

.it-category-mobile-menu nav {
    display: none;
}

/*----------------------------------------*/
/*  20. hero css start
/*----------------------------------------*/
.it-hero-area {
    padding-top: 162px;
    padding-bottom: 110px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-hero-area {
        padding-top: 120px;
    }
}
@media (max-width: 767px) {
    .it-hero-area {
        padding-top: 100px;
    }
}
.it-hero-title {
    font-size: 130px;
    line-height: 1.05;
    font-weight: 700;
    margin-top: -20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-family: var(--it-ff-manrope);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-hero-title {
        font-size: 110px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-hero-title {
        font-size: 87px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-hero-title {
        font-size: 95px;
        margin-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .it-hero-title {
        font-size: 65px;
        margin-bottom: 50px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-hero-title {
        font-size: 70px;
    }
}
.it-hero-title span {
    margin-left: 95px;
    display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-hero-title span {
        margin-left: 85px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-hero-title span {
        margin-left: 0;
    }
}
.it-hero-title.style-2 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 800;
    font-family: var(--it-ff-heading);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-hero-title.style-2 {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .it-hero-title.style-2 {
        font-size: 45px;
        text-align: center;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-hero-title.style-2 {
        font-size: 65px;
    }
}
.it-hero-btn {
    margin-right: 195px;
    padding-bottom: 32px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-hero-btn {
        margin-right: 0;
    }
}
.it-hero-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 0;
    padding-right: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-hero-text p {
        padding-right: 0;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-hero-text p {
        padding-right: 0;
        font-size: 14px;
        line-height: 1.8;
    }
}
.it-hero-thumb {
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-hero-thumb {
        padding-left: 0;
        padding-right: 0;
        margin-top: 70px;
        text-align: center;
    }
}
.it-hero-experience {
    padding: 30px;
    line-height: 0;
    position: absolute;
    top: -19%;
    right: 1.5%;
    z-index: 11;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-hero-experience {
        padding: 20px;
    }
}
@media (max-width: 767px) {
    .it-hero-experience {
        display: none;
    }
}
.it-hero-experience i {
    display: inline-block;
    height: 118px;
    width: 118px;
    line-height: 118px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--it-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-hero-experience i {
        height: 95px;
        width: 95px;
        line-height: 95px;
    }
}
.it-hero-experience-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
}
.it-hero-experience-text img {
    animation: animationglob 6s cubic-bezier(1, 0.99, 0.03, 0.01) infinite;
}
.it-hero-content {
    margin-right: -50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-hero-content {
        margin-right: 0;
    }
}

/*----------------------------------------*/
/*  02. about css start
/*----------------------------------------*/
.it-about-author-designation {
    margin-left: 20px;
}
.it-about-author-designation span {
    font-weight: 700;
    font-size: 14px;
    display: block;
    letter-spacing: 0.01em;
    color: var(--it-common-black);
}
.it-about-author-designation i {
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    display: block;
    margin-bottom: 7px;
}
.it-about-mission p:last-child {
    margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-mission p {
        font-size: 14px;
    }
    .it-about-mission p br {
        display: none;
    }
}
.it-about-mission-wrap {
    position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-mission-wrap {
        margin-left: 0;
    }
}
.it-about-mission-wrap .it-about-border {position: relative;margin-bottom: 30px;}
@media (max-width: 767px) {
    .it-about-mission-wrap .it-about-border .row [class*=col-]:nth-child(1) .it-about-mission {
        margin-bottom: 20px;
    }
}
.it-about-stat-box {
    padding: 37px 40px;
    border-radius: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-stat-box {
        padding: 30px 20px;
    }
}
@media (max-width: 767px) {
    .it-about-stat-box {
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about-stat-box {
        margin-bottom: 0;
    }
}
.it-about-stat-box span {
    font-weight: 600;
    display: block;
    padding-bottom: 15px;
    margin-bottom: 43px;
    text-transform: uppercase;
    color: var(--it-common-black);
    border-bottom: 1px solid #D9D9D9;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-stat-box span {
        font-size: 14px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-stat-box span {
        font-size: 12px;
    }
}
.it-about-stat-box span.stat-description {
    color: #625E58;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.it-about-stat-box .shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.it-about-stat-box .stat-number {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.1;
    color: var(--it-theme-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-stat-box .stat-number {
        font-size: 18px;
        margin-bottom: 8px;
    }
}
.it-about-stat-box .stat-number i {
    font-weight: 600;
    font-size: 80px;
    font-style: normal;
    color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-stat-box .stat-number i {
        font-size: 55px;
    }
}
.it-about-thumb {
    height: 100%;
    overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-thumb {
        height: auto;
        margin-bottom: 30px;
    }
}
.it-about-thumb img {
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-thumb img {
        height: auto;
    }
}
.it-about-thumb:hover img {
    transform: scale(1.04);
}
.it-about-thumb.thumb-sm {
    overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-thumb.thumb-sm {
        height: 232px;
        margin-bottom: 0;
    }
}
.it-about-thumb.thumb-sm img {
    height: 100%;
    transform: scale(1.04) translateX(-2%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.it-about-thumb.thumb-sm:hover img {
    transform: scale(1.04) translateX(2%);
}

.it-about-2-thumb {
    height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-2-thumb {
        margin-bottom: 30px;
        height: auto;
    }
}
.it-about-2-thumb img {
    height: 100%;
    object-fit: cover;
    max-width: inherit;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-2-thumb img {
        max-width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-2-thumb img {
        width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-2-text {
        margin-top: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-2-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    .it-about-2-text p br {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-2-text p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-about-2-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    .it-about-2-text p br {
        display: none;
    }
}
.it-about-2-progress-wrap {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 25px 30px;
    padding-right: 80px;
    border-radius: 10px;
    display: inline-block;
    z-index: 1;
    backdrop-filter: blur(21px);
    background: radial-gradient(151.64% 120.36% at 47.19% -0.63%, rgba(37, 65, 76, 0.4) 0%, rgba(37, 65, 76, 0) 100%);
}
@media (max-width: 767px) {
    .it-about-2-progress-wrap {
        padding: 20px 25px;
    }
}
.it-about-2-progress-canva input {
    margin: 0;
    border-radius: 0;
    color: var(--it-common-white) !important;
}
.it-about-2-progress-canva h6 {
    font-weight: 400;
    font-size: 20px;
    margin-left: 15px;
    color: var(--it-common-white);
}
@media (max-width: 767px) {
    .it-about-2-progress-canva h6 {
        font-size: 16px;
    }
}

.it-about-3-area .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.it-about-3-area .shape-2 {
    position: absolute;
    top: -12%;
    right: -7%;
    z-index: -1;
}
@media (max-width: 767px) {
    .it-about-3-area .shape-2 {
        display: none;
    }
}
.it-about-3-list-box ul li {
    list-style-type: none;
}
.it-about-3-list-box ul li:not(:last-child) {
    margin-bottom: 24px;
}
.it-about-3-list-box ul li span {
    padding-left: 30px;
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 18px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-3-list-box ul li span {
        font-size: 16px;
    }
}
.it-about-3-list-box ul li span svg, .it-about-3-list-box ul li span i {
    position: absolute;
    top: 3px;
    left: 0;
}
.it-about-3-thumb-sm {
    margin-bottom: -135px;
    padding-left: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-3-thumb-sm {
        margin-bottom: -65px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-3-thumb-sm {
        margin-bottom: -30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-3-thumb-sm {
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .it-about-3-thumb-sm {
        margin-top: 30px;
        padding-left: 0;
        margin-bottom: 0;
    }
}
.it-about-3-thumb img {
    max-width: inherit;
    border-radius: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-3-thumb img {
        max-width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-3-thumb img {
        width: 100%;
    }
}
.it-about-3-right {
    margin-left: 77px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-3-right {
        margin-left: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-3-right {
        margin-left: 0;
        margin-top: 50px;
    }
}
@media (max-width: 767px) {
    .it-about-3-right {
        margin-left: 0;
        margin-top: 50px;
        margin-bottom: 0;
    }
}
.it-about-3-right p {
    margin-right: 170px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-3-right p {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-4-thumb-wrap {
        display: block !important;
    }
}
.it-about-4-thumb-wrap img {
    border-radius: 30px;
}
.it-about-4-right {
    margin-left: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-4-right {
        margin-left: 0;
    }
}
.it-about-4-right > p {
    line-height: 2;
    margin-bottom: 32px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-4-right > p {
        font-size: 15px;
    }
    .it-about-4-right > p br {
        display: none;
    }
}
.it-about-4-area .it-about-mission {
    padding-bottom: 25px;
    margin-bottom: 50px;
    border-bottom: 1px solid #d9d9d9;
}
.it-about-4-area .it-about-mission span {
    text-decoration: none;
}
.it-about-4-area .it-about-thumb img {
    max-width: inherit;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-4-area .it-about-thumb img {
        max-width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-about-4-area .it-about-thumb img {
        width: 100%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-4-area .it-btn-theme.mr-30 {
        padding: 17.5px 25px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-4-area .it-about-section-title-box {
        margin: 0;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-4-area .it-about-author-avater {
        display: none;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-4-area .it-about-mission p {
        font-size: 15px;
    }
    .it-about-4-area .it-about-mission p br {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-4-thumb img {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .it-about-4-thumb img {
        width: 100%;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-4-top-wrap {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .it-about-4-top-wrap {
        margin-bottom: 0;
    }
}

/*----------------------------------------*/
/*  27. menu css start
/*----------------------------------------*/
.it-service-thumb {
    margin-right: 43px;
    overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-thumb {
        margin-right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-thumb {
        margin-right: 0;
        margin-bottom: 30px;
    }
}
.it-service-thumb img {
    transition: 1.3s all ease;
}
.it-service-title {
    margin-bottom: 0;
    margin-bottom: 25px;
    transition: 0.3s;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-title {
        font-size: 24px;
    }
}
.it-service-content {
    margin-left: -5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-content {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .it-service-content-wrap {
        flex-wrap: wrap;
    }
}
.it-service-arrow a {
    display: inline-block;
    height: 58px;
    width: 58px;
    line-height: 55px;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    color: var(--it-theme-1);
    background-color: var(--it-gray-3);
    border: 1px solid rgba(98, 94, 88, 0.15);
}
.it-service-arrow a svg {
    position: relative;
    z-index: 1;
}
.it-service-arrow a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    transition: 0.5s ease;
    transform: scale(0);
    background-color: var(--it-theme-1);
}
.it-service-item {
    padding: 30px 45px;
    padding-right: 35px;
    border-radius: 20px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(98, 94, 88, 0.2);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-service-item {
        padding: 40px;
    }
}
@media (max-width: 767px) {
    .it-service-item {
        padding: 20px;
    }
}
.it-service-item p {
    margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-item p {
        margin-right: 70px;
    }
    .it-service-item p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-service-item p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .it-service-item p br {
        display: none;
    }
}
.it-service-item:hover .it-service-arrow a {
    color: var(--it-common-white);
}
.it-service-item:hover .it-service-arrow a::after {
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
}
.it-service-item:hover .it-service-thumb img {
    transform: scale(1.2);
}
.it-service-area .shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}
.it-service-btn {
    transition: 0.3s;
}
.it-service-btn .shape {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
}
.it-service-style-2 .it-service-content P {
    margin-right: 100px;
    transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-service-style-2 .it-service-content P {
        margin-right: 25px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-style-2 .it-service-content P {
        font-size: 14px;
        margin-right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-style-2 .it-service-content P {
        margin-right: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-style-2 .it-service-content-wrap {
        flex-wrap: nowrap;
    }
}
.it-service-style-2 .it-service-thumb {
    overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-style-2 .it-service-thumb {
        margin-right: 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-service-style-2 .it-service-thumb {
        margin-bottom: 0;
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .it-service-style-2 .it-service-thumb {
        margin-bottom: 30px;
        margin-top: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-style-2 .it-service-thumb {
        margin-bottom: 0;
        width: 60% !important;
    }
}
.it-service-style-2 .it-service-thumb img {
    transition: 1.3s all ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-style-2 .it-service-title {
        font-size: 23px;
    }
}
.it-service-style-2 .it-service-item {
    position: relative;
    z-index: 1;
    transition: 0.4s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-style-2 .it-service-item {
        padding: 30px 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-style-2 .it-service-item {
        padding: 30px 20px;
    }
}
.it-service-style-2 .it-service-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0;
    height: 0;
    width: 100%;
    z-index: -1;
    transition: 0.4s;
    border-radius: 20px;
    background-color: var(--it-theme-1);
}
.it-service-style-2 .it-service-item:hover::after {
    height: 100%;
    bottom: auto;
    top: 0;
}
.it-service-style-2 .it-service-item:hover .it-service-thumb img {
    transform: scale(1.2);
}
.it-service-style-2 .it-service-item:hover .it-service-title {
    color: var(--it-common-white);
}
.it-service-style-2 .it-service-item:hover .it-btn-theme.black-bg {
    color: var(--it-common-black);
    background-color: var(--it-common-white);
}
.it-service-style-2 .it-service-item:hover .it-btn-theme.black-bg svg, .it-service-style-2 .it-service-item:hover .it-btn-theme.black-bg i {
    color: var(--it-common-black);
}
.it-service-style-2 .it-service-item:hover p {
    color: var(--it-common-white);
}
.it-service-inner-style .it-service-item {
    background-color: var(--it-gray-3);
}
.it-service-inner-style-2 .it-service-3-item {
    border: none;
    padding: 40px 30px;
    background-color: var(--it-gray-3);
}
.it-service-inner-style-2 .it-service-3-title {
    font-size: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-inner-style-2 .it-service-3-title {
        font-size: 20px;
    }
    .it-service-inner-style-2 .it-service-3-title br {
        display: none;
    }
}

.it-service-2-nav-link {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    color: var(--it-common-black);
    line-height: 1.5;
}
@media only screen and (max-width: 991px) {
    .it-service-2-nav-link {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .it-service-2-nav-link {
        font-size: 16px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-2-nav-link {
        font-size: 20px;
    }
}
.it-service-2-nav-box ul li {
    width: 100%;
}
.it-service-2-nav-box ul li:not(:last-child) {
    margin-bottom: 20px;
}
.it-service-2-nav-box ul li button {
    z-index: 1;
    position: relative;
    list-style-type: none;
    border-radius: 10px;
    padding: 10px;
    background-color: var(--it-common-white);
    width: 100%;
    text-align: left;
    border: 1px solid var(--it-gray-1);
}
@media only screen and (max-width: 991px) {
    .it-service-2-nav-box ul li button {
        padding: 5px;
    }
    .it-service-2-nav-box ul li:not(:last-child) {
        margin-bottom: 0;
    }
}
.it-service-2-nav-box ul li button::after {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: -1;
    transition: 0.4s;
    border-radius: 10px;
    background-color: var(--it-gray-1);
}
.it-service-2-nav-box ul li button:not(:last-child) {
    margin-bottom: 20px;
}
.it-service-2-nav-box ul li button span {
    transition: 0.3s;
}
.it-service-2-nav-box ul li button span svg {
    transition: 0.3s;
    color: var(--it-theme-1);
    height: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-service-2-nav-box ul li button span svg {
        height: 35px;
    }
}
@media (max-width: 767px) {
    .it-service-2-nav-box ul li button span svg {
        height: 25px;
        width: 25px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-2-nav-box ul li button span svg {
        height: 35px;
        width: 35px;
    }
}
.it-service-2-nav-box ul li button:hover::after {
    height: 100%;
    bottom: auto;
    top: 0;
}
.it-service-2-nav-box ul li button:hover span svg {
    color: var(--it-common-white);
}
.it-service-2-nav-box ul li button:hover .it-service-2-nav-link {
    color: var(--it-common-black);
}
.it-service-2-nav-box ul li button.active::after {
    height: 100%;
    bottom: auto;
    top: 0;
}
.it-service-2-nav-box ul li button.active span svg {
    color: var(--it-common-white);
}
.it-service-2-nav-box ul li button.active .it-service-2-nav-link {
    color: var(--it-theme-1);
}
.it-service-2-desc {
    font-size: 18px;
}
.it-service-2-thumb {
    transition: all .3s;
    margin-bottom: 30px;
    display: block;
}
.it-service-2-thumb:hover {
    transform: scale(1.02);
    transition: all .3s;
}
.it-service-2-thumb img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--it-gray-1);
    padding: 30px;
}
.application .it-service-2-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    padding: 0;
}
.application .it-service-2-thumb.cover img {
    height: 300px;
}
.it-service-2-left {
    position: relative;
}
@media only screen and (min-width: 1200px) {
    .it-service-2-left {
        margin-right: 40px;
    }
}
@media only screen and (max-width: 991px) {
    .it-service-2-left {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 991px) {
    .it-service-2-left #application-tab {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        overflow-x: scroll;
    }
    .it-service-2-left #application-tab li {
        flex: 0 0 80%;
    }
}
.it-service-2-content {
    padding: 20px;
}
.it-service-2-content .title {
    font-size: 20px;
    margin-bottom: 15px;
}
.it-service-2-content p {
    font-size: 15px;
    margin: 0;
}

.it-service-3-item {
    padding: 40px 38px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    background-color: var(--it-common-white);
    border: 1px solid rgba(98, 94, 88, 0.15);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-3-item {
        padding: 30px 25px;
    }
}
.it-service-3-item p {
    font-size: 14px;
    margin-bottom: 20px;
    transition: 0.3s;
    letter-spacing: 0.01em;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-3-item p {
        font-size: 13px;
    }
}
.it-service-3-item span svg {
    transition: 0.3s;
    color: var(--it-theme-1);
}
.it-service-3-item::after {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: 0.3s;
    border-radius: 20px;
    background-color: var(--it-theme-1);
}
.it-service-3-item:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}
.it-service-3-item:hover .it-service-3-title {
    color: var(--it-common-white);
}
.it-service-3-item:hover .it-service-3-link {
    color: var(--it-common-white);
}
.it-service-3-item:hover .it-service-3-link svg, .it-service-3-item:hover .it-service-3-link i {
    color: var(--it-common-white);
}
.it-service-3-item:hover p {
    color: var(--it-common-white);
}
.it-service-3-item:hover span svg, .it-service-3-item:hover i {
    color: var(--it-common-white);
}
.it-service-3-title {
    font-weight: 600;
    font-size: 25px;
    transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-3-title {
        font-size: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-3-title {
        font-size: 18px;
    }
}
.it-service-3-link {
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-3-link {
        font-size: 14px;
    }
}
.it-service-3-link svg {
    transition: 0.3s;
    margin-left: 3px;
    display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-3-link svg {
        width: 12px;
    }
}

.it-service-4-item {
    padding: 30px;
    padding-bottom: 40px;
    border-radius: 20px;
    border: 1px solid rgba(45, 196, 87, 0.2);
    background-color: var(--it-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-service-4-item {
        padding: 30px 20px;
        padding-bottom: 40px;
    }
}
.it-service-4-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.86;
    padding: 0 25px;
    margin-bottom: 25px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-4-item p {
        padding: 0;
    }
}
.it-service-4-item:hover .it-service-4-link span span.text-1 {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}
.it-service-4-item:hover .it-service-4-link span span.text-2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.it-service-4-title {
    font-size: 24px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-service-4-title {
        font-size: 20px;
    }
}
.it-service-4-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--it-theme-1);
}
.it-service-4-link span {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}
.it-service-4-link span span {
    font-weight: 500;
    color: var(--it-theme-1);
}
.it-service-4-link span span.text-1 {
    position: relative;
    display: block;
    transition: 0.3s;
}
.it-service-4-link span span.text-2 {
    position: absolute;
    top: 100%;
    display: block;
    transition: 0.3s;
}

.it-service-5-area .shape {
    position: absolute;
    bottom: 0;
    left: 0;
}
.it-service-5-thumb {
    overflow: hidden;
}
.it-service-5-thumb img {
    transition: transform 1.1s cubic-bezier(0.65, 0, 0.35, 1);
}
.it-service-5-item {
    padding: 20px;
    padding-bottom: 45px;
    border-radius: 20px;
    background-color: var(--it-gray-3);
}
.it-service-5-item p {
    line-height: 2;
    margin-bottom: 0;
    margin-right: 15px;
}
.it-service-5-item:hover .it-service-5-thumb img {
    transform: scale(1.2);
}

.it-sv-details-list ul li {
    list-style-type: none;
    position: relative;
    padding-left: 30px;
}
.it-sv-details-list ul li span {
    position: absolute;
    left: 0;
    top: 0;
}
.it-sv-details-list ul li span svg {
    color: var(--it-theme-1);
}
.it-sv-details-list.list-style-2 {
    margin-left: 75px;
    margin-right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-sv-details-list.list-style-2 {
        margin-left: 0;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-sv-details-list.list-style-2 {
        margin-left: 0;
    }
}
.it-sv-details-contact-wrap {
    overflow: hidden;
    border-radius: 20px;
}
.it-sv-details-contact-wrap img {
    width: 100%;
    border-radius: 0 0 50% 0;
}
.it-sv-details-contact {
    padding: 0 20px 40px 20px;
}
.it-sv-details-contact > span {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.78;
    display: block;
    margin-bottom: 10px;
    font-family: var(--it-ff-heading);
    color: var(--it-common-white);
}
.it-sv-details-contact > a {
    display: inline-block;
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 30px;
    color: var(--it-theme-1);
    font-family: var(--it-ff-poppins);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-sv-details-contact > a {
        font-size: 20px;
    }
}
.it-sv-details-contact .it-btn-orange {
    padding: 13px 30px;
}
.it-sv-details-contact-circle {
    display: block;
    height: 80px;
    width: 80px;
    text-align: center;
    border-radius: 50%;
    margin-top: -50px;
    background-color: var(--it-theme-1);
    border: 3px solid var(--it-common-white);
}
.it-sv-details-contact-circle span {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.01em;
    text-align: center;
    font-family: var(--it-ff-heading);
    color: var(--it-common-white);
}
.it-sv-details-thumb-sm img {
    max-width: inherit;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-sv-details-thumb-sm img {
        max-width: 100%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-sv-details-thumb-sm img {
        width: 100%;
        margin-bottom: 50px;
    }
}
.it-sv-details-area .it-step-wrap {
    margin-left: 0;
}
.it-sv-details-area .it-step-content p {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.01em;
}
.it-sv-details-area .it-step-title {
    margin-bottom: 6px;
}
.it-sv-details-area .it-custom-accordion .accordion-body p {
    margin-right: 270px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-sv-details-area .it-custom-accordion .accordion-body p {
        margin-right: 150px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-sv-details-area .it-custom-accordion .accordion-body p {
        margin-right: 100px;
    }
}
@media (max-width: 767px) {
    .it-sv-details-area .it-custom-accordion .accordion-body p {
        margin-right: 0;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-sv-details-area .postbox-blockquote p br {
        display: none;
    }
}
.it-sv-details-style-2 .it-sv-details-list.list-style-2 {
    margin-left: 115px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-sv-details-style-2 .it-sv-details-list.list-style-2 {
        margin-left: 20px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-sv-details-style-2 .it-sv-details-list.list-style-2 {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .it-sv-details-style-2 .postbox-details-wrapper .it-sv-details-list ul li {
        font-size: 15px;
    }
}
.it-sv-details-style-2 .postbox-blockquote {
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-sv-details-style-2 .postbox-blockquote {
        margin-top: 90px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-sv-details-style-2 .postbox-blockquote P br {
        display: block;
    }
}
.it-sv-details-style-2 .it-step-wrap {
    margin-left: 0;
    margin-right: 145px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-sv-details-style-2 .it-step-wrap {
        margin-right: 80px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-sv-details-style-2 .it-step-wrap {
        margin-right: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-sv-details-style-2 .it-step-wrap {
        margin-right: 0;
    }
}
.it-sv-details-style-2 .it-step-number {
    background-color: var(--it-common-white);
}
.it-sv-details-style-2 .it-step-thumb {
    margin-left: -30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-sv-details-style-2 .it-step-thumb {
        margin-left: 0;
        margin-bottom: 0;
    }
}
.it-sv-details-style-2 .it-step-thumb img {
    max-width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-sv-details-style-2 .postbox-details-wrapper .it-sv-details-list ul li {
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-sv-details-style-2 .it-sv-details-thumb-sm img {
        margin-bottom: 0;
        max-width: 100%;
    }
}

/*----------------------------------------*/
/*  18. funfact css start
/*----------------------------------------*/
.it-funfact-item {
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 30px;
}
@media screen and (max-width: 1200px) {
    .it-funfact-item {
        padding: 20px;
    }
}
.it-funfact-item span {
    color: var(--it-common-white);
}
.it-funfact-number {
    font-weight: 600;
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--it-common-white);
}
.it-funfact-number i {
    font-style: normal;
}

.it-funfact-2-text p {
    color: rgba(246, 246, 246, 0.8);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-funfact-2-text p br {
        display: none;
    }
}
.it-funfact-2-area {
    background-size: cover;
    background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-funfact-2-right {
        margin-top: 50px;
    }
}
.it-funfact-2-right .it-funfact-item {
    border-radius: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--it-common-black);
    background-color: var(--it-common-white);
}
.it-funfact-2-right .it-funfact-item::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s ease;
    background-color: var(--it-theme-1);
}
.it-funfact-2-right .it-funfact-item span {
    z-index: 1;
    position: relative;
    transition: 0.3s;
    color: var(--it-common-black);
}
.it-funfact-2-right .it-funfact-item.style-1 {
    border-radius: 20px 0 0 0;
}
@media (max-width: 767px) {
    .it-funfact-2-right .it-funfact-item.style-1 {
        border-radius: 0;
    }
}
.it-funfact-2-right .it-funfact-item.style-1::after {
    border-radius: 20px 0 0 0;
}
@media (max-width: 767px) {
    .it-funfact-2-right .it-funfact-item.style-1::after {
        border-radius: 0;
    }
}
.it-funfact-2-right .it-funfact-item.style-2 {
    left: auto;
    right: 0;
    border-radius: 0 20px 0 0;
}
@media (max-width: 767px) {
    .it-funfact-2-right .it-funfact-item.style-2 {
        border-radius: 0;
    }
}
.it-funfact-2-right .it-funfact-item.style-2::after {
    border-radius: 0 20px 0 0;
}
@media (max-width: 767px) {
    .it-funfact-2-right .it-funfact-item.style-2::after {
        border-radius: 0;
    }
}
.it-funfact-2-right .it-funfact-item.style-3 {
    border-radius: 0 0 0 20px;
}
@media (max-width: 767px) {
    .it-funfact-2-right .it-funfact-item.style-3 {
        border-radius: 0;
    }
}
.it-funfact-2-right .it-funfact-item.style-3::after {
    border-radius: 0 0 0 20px;
}
@media (max-width: 767px) {
    .it-funfact-2-right .it-funfact-item.style-3::after {
        border-radius: 0;
    }
}
.it-funfact-2-right .it-funfact-item.style-4 {
    left: auto;
    right: 0;
    border-radius: 0 0 20px 0;
}
@media (max-width: 767px) {
    .it-funfact-2-right .it-funfact-item.style-4 {
        border-radius: 0;
    }
}
.it-funfact-2-right .it-funfact-item.style-4::after {
    border-radius: 0 0 20px 0;
}
@media (max-width: 767px) {
    .it-funfact-2-right .it-funfact-item.style-4::after {
        border-radius: 0;
    }
}
.it-funfact-2-right .it-funfact-item:hover::after {
    opacity: 1;
    width: 100%;
}
.it-funfact-2-right .it-funfact-item:hover span {
    color: var(--it-common-white);
}
.it-funfact-2-right .it-funfact-item:hover .it-funfact-number {
    color: var(--it-common-white);
}
.it-funfact-2-right .it-funfact-number {
    z-index: 1;
    position: relative;
    transition: 0.3s;
    color: var(--it-common-black);
}

.it-funfact-3-area {
    padding: 55px 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.it-funfact-3-number {
    font-weight: 600;
    font-size: 45px;
    color: var(--it-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-funfact-3-number {
        font-size: 40px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-funfact-3-number {
        font-size: 32px;
    }
}
.it-funfact-3-number i {
    font-style: normal;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-funfact-3-item {
        margin-bottom: 50px;
    }
}
.it-funfact-3-item span {
    font-weight: 600;
    font-size: 20px;
    color: #f6f6f6;
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 38px;
    text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-funfact-3-item span {
        font-size: 14px;
    }
}
.it-funfact-3-item span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 116%;
    height: 2px;
    background-color: var(--it-common-white);
}
.it-funfact-3-item span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28%;
    height: 2px;
    z-index: 1;
    background: linear-gradient(270deg, #e0a300 0%, #2dc457 100%);
}

/*----------------------------------------*/
/*  30. slider css start
/*----------------------------------------*/
.it-slider-area {
    margin-top: -72.9px;
}
.it-slider-area .swiper-wrapper {
    height: 95vh;
    overflow: hidden;
    border-radius: 0 0 21px 21px;
}
.it-slider-box img,
.it-slider-box video {
    width: 100%;
    height: 95vh;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 768px) {
    .it-slider-box img,
    .it-slider-box video {
        height: 600px;
    }
}
.it-slider-overlay::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(12, 18, 29, 0) 0%, #0c121d 100%);
    border-radius: 0 0 20px 20px;
}
.it-slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 100px 0 75px 0;
    display: flex;
    align-items: flex-end;
}
@media screen and (max-width: 768px) {
    .it-slider-content {
        padding-bottom: 20px;
    }
}
.it-slider-content-wrap {
    position: relative;
    z-index: 3;
}
.it-slider-content-wrap p {
    line-height: 1.5;
    color: var(--it-common-white);
    font-size: 17px;
    font-weight: 300;
}
.it-slider-content-right {
    position: relative;
}
.it-slider-title {
    font-weight: 700;
    font-size: 45px;
    line-height: 1.33;
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-title {
        font-size: 42px;
    }
}
@media (max-width: 991px) {
    .it-slider-title {
        font-size: 25px;
    }
}
.it-slider-active .swiper-slide-active .it-slider-content-left, .it-slider-active .swiper-slide-active .it-slider-text, .it-slider-active .swiper-slide-active .it-slider-content-right p, .it-slider-active .swiper-slide-active .it-slider-content-right .it-btn-theme, .it-slider-active .swiper-slide-active .it-slider-btn {
    animation-fill-mode: both;
    animation-name: fadeInUp;
}
.it-slider-wrap .swiper-slide.swiper-slide-active .it-slider-bg img {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.it-slider-wrap .swiper-slide.swiper-slide-active .it-slider-content-left {
    animation: img-anim-bottom 1.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    animation-name: img-anim-bottom;
    animation-duration: 1.5s;
    opacity: 0;
}
.it-slider-wrap .swiper-slide.swiper-slide-active .it-slider-content-right p {
    animation: img-anim-bottom 1.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    animation-name: img-anim-bottom;
    animation-duration: 1.5s;
    opacity: 0;
}
.it-slider-wrap .swiper-slide.swiper-slide-active .it-slider-content-right .it-btn-theme {
    animation: img-anim-bottom 1.7s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    animation-name: img-anim-bottom;
    animation-duration: 1.7s;
    opacity: 0;
}

.it-slider-2-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}
.it-slider-2-bg img {
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-position: center;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 9000ms ease, opacity 1500ms ease-in;
    transition: transform 9000ms ease, opacity 1500ms ease-in, -webkit-transform 9000ms ease;
}
.it-slider-2-overlay::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    background: linear-gradient(90deg, rgba(12, 18, 29, 0.9) 0%, rgba(12, 18, 29, 0.4) 100%);
}
.it-slider-2-overlay .shape {
    position: absolute;
    top: 0;
    left: 8%;
    z-index: -1;
}
.it-slider-2-wrap .swiper-slide.swiper-slide-active .it-slider-2-bg img {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.it-slider-2-wrap .swiper-slide.swiper-slide-active .it-slider-2-title {
    animation-delay: 0.9s;
    animation-duration: 0.5s;
}
.it-slider-2-wrap .swiper-slide.swiper-slide-active .it-slider-2-text {
    animation-delay: 1.1s;
    animation-duration: 0.7s;
}
.it-slider-2-wrap .swiper-slide.swiper-slide-active .it-slider-2-btn {
    animation-delay: 1.3s;
    animation-duration: 0.9s;
}
.it-slider-2-wrap .swiper-slide.swiper-slide-active .it-slider-2-stat-box {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    animation-name: img-anim-top;
    animation-duration: 1.3s;
    opacity: 0;
}
.it-slider-2-active .swiper-slide-active .it-slider-2-title, .it-slider-2-active .swiper-slide-active .it-slider-2-text, .it-slider-2-active .swiper-slide-active .it-slider-2-btn {
    display: inline-block;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}
.it-slider-2-content {
    padding-top: 210px;
    padding-bottom: 355px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-2-content {
        padding-bottom: 300px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-2-content {
        padding-top: 160px;
        padding-bottom: 250px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-2-content {
        padding-top: 120px;
        padding-bottom: 250px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-2-content {
        padding-top: 120px;
        padding-bottom: 250px;
    }
}
@media (max-width: 767px) {
    .it-slider-2-content {
        padding-top: 100px;
        padding-bottom: 220px;
    }
}
.it-slider-2-content p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.7;
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-2-content p {
        font-size: 17px;
    }
    .it-slider-2-content p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-slider-2-content p {
        font-size: 16px;
    }
    .it-slider-2-content p br {
        display: none;
    }
}
.it-slider-2-contact span {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--it-common-white);
}
.it-slider-2-contact a {
    font-weight: 600;
    margin-left: 10px;
    letter-spacing: -0.02em;
    color: var(--it-common-white);
}
.it-slider-2-title {
    font-weight: 600;
    font-size: 80px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--it-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-2-title {
        font-size: 65px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-2-title {
        font-size: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-2-title {
        font-size: 65px;
    }
}
@media (max-width: 767px) {
    .it-slider-2-title {
        font-size: 31px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-2-title {
        font-size: 48px;
    }
}
.it-slider-2-stat-box {
    position: absolute;
    bottom: 50px;
    right: 10%;
    z-index: 1;
    padding: 37px 40px;
    border-radius: 10px;
    backdrop-filter: blur(21px);
    background: radial-gradient(151.64% 120.36% at 47.19% -0.63%, rgba(37, 65, 76, 0.4) 0%, rgba(37, 65, 76, 0) 100%);
}
@media (max-width: 767px) {
    .it-slider-2-stat-box {
        padding: 25px 15px;
        right: 15px;
        left: 15px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-2-stat-box {
        padding: 35px 30px;
        right: 10%;
        left: auto;
    }
}
.it-slider-2-stat.border-style {
    padding-right: 33px;
    margin-right: 33px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.it-slider-2-stat span {
    display: block;
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-2-stat span {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .it-slider-2-stat span {
        font-size: 12px;
    }
}
.it-slider-2-stat span.number {
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-2-stat span.number {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .it-slider-2-stat span.number {
        font-size: 26px;
    }
}
.it-slider-2-arrow-wrap {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 31%;
    right: 10%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-slider-2-arrow-wrap {
        display: none;
    }
}
.it-slider-2-arrow-wrap button {
    padding: 0;
    display: inline-block;
    height: 51px;
    width: 51px;
    line-height: 1;
    transition: 0.3s;
    border-radius: 50%;
    position: relative;
    z-index: 9;
    color: var(--it-common-white);
    border: 1px solid var(--it-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-slider-2-arrow-wrap button {
        height: 40px;
        width: 40px;
        line-height: 35px;
    }
}
.it-slider-2-arrow-wrap button i, .it-slider-2-arrow-wrap button svg {
    transition: 0.3s;
    display: inline-block;
    color: var(--it-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-slider-2-arrow-wrap button i, .it-slider-2-arrow-wrap button svg {
        width: 12px;
    }
}
.it-slider-2-arrow-wrap button:hover {
    border: 1px solid var(--it-theme-1);
    background-color: var(--it-theme-1);
}
.it-slider-2-arrow-wrap button:hover svg {
    color: var(--it-common-white);
}
@media (max-width: 767px) {
    .it-slider-2-btn {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-2-btn {
        flex-wrap: nowrap;
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .it-slider-2-btn .it-btn-theme {
        margin-bottom: 25px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-2-btn .it-btn-theme {
        margin-bottom: 0;
    }
}

.it-slider-3-area .shape {
    left: 2%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-slider-3-area .shape {
        display: none;
    }
}
.it-slider-3-area .it-slider-2-overlay::after {
    background: linear-gradient(90deg, #0c121d 0%, rgba(12, 18, 29, 0) 100%);
}
.it-slider-3-area .it-slider-2-stat-box {
    position: static;
    padding-top: 30px;
    backdrop-filter: blur(10px);
}
.it-slider-3-area .it-slider-2-stat-box p {
    font-weight: 500;
    font-size: 25px;
    line-height: 1.6;
    color: var(--it-common-white);
}
.it-slider-3-area .it-slider-2-stat-box .number {
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 20px;
    display: block;
    color: var(--it-theme-1);
}
.it-slider-3-area .it-slider-2-stat-box-wrap {
    position: absolute;
    bottom: 11%;
    right: 5.5%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3-area .it-slider-2-stat-box-wrap {
        right: 3%;
        bottom: 4%;
        transform: scale(0.7);
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3-area .it-slider-2-stat-box-wrap {
        right: 1%;
        bottom: 2%;
        transform: scale(0.75);
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-3-area .it-slider-2-stat-box-wrap {
        right: -5%;
        bottom: -3%;
        transform: scale(0.6);
    }
}
@media (max-width: 767px) {
    .it-slider-3-area .it-slider-2-stat-box-wrap {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-3-area .it-slider-2-stat-box-wrap {
        right: -9%;
        bottom: -5%;
        display: block;
        transform: scale(0.6);
    }
}
.it-slider-3-area .it-about-author-designation i {
    color: rgba(255, 255, 255, 0.8);
}
.it-slider-3-area .it-about-author-designation span {
    color: var(--it-common-white);
}
.it-slider-3-area .it-slider-2-title {
    font-weight: 600;
    font-size: 75px;
    line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3-area .it-slider-2-title {
        font-size: 58px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3-area .it-slider-2-title {
        font-size: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-3-area .it-slider-2-title {
        font-size: 55px;
    }
}
@media (max-width: 767px) {
    .it-slider-3-area .it-slider-2-title {
        font-size: 33px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-3-area .it-slider-2-title {
        font-size: 44px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3-area .it-slider-2-text p br {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-3-area .it-slider-2-text p {
        font-size: 17px;
    }
    .it-slider-3-area .it-slider-2-text p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-slider-3-area .it-slider-2-text p {
        font-size: 15px;
    }
    .it-slider-3-area .it-slider-2-text p br {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-3-area .it-slider-2-text p {
        font-size: 17px;
    }
    .it-slider-3-area .it-slider-2-text p br {
        display: none;
    }
}
.it-slider-3-area .it-slider-2-content {
    padding-top: 230px;
    padding-bottom: 250px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3-area .it-slider-2-content {
        padding-top: 160px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-3-area .it-slider-2-content {
        padding-top: 120px;
    }
}
@media (max-width: 767px) {
    .it-slider-3-area .it-slider-2-content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-3-area .it-slider-2-content {
        padding-top: 120px;
        padding-bottom: 250px;
    }
}
.it-slider-3-area .swiper-pagination-custom {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    z-index: 10;
    max-width: 300px;
}
@media (max-width: 767px) {
    .it-slider-3-area .swiper-pagination-custom {
        font-size: 16px;
        left: 10px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-3-area .swiper-pagination-custom {
        left: 30px;
    }
}
.it-slider-3-area .swiper-progress-container {
    width: 210px;
    height: 2px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
    .it-slider-3-area .swiper-progress-container {
        width: 70%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-3-area .swiper-progress-container {
        width: 50%;
    }
}
.it-slider-3-area .swiper-total {
    color: rgba(255, 255, 255, 0.5);
}
.it-slider-3-area .swiper-progress-bar {
    height: 100%;
    width: 0%;
    background-color: #fff;
    transition: width 0.6s ease-in-out;
}
.it-slider-3-active .swiper-slide-active .it-slider-2-title, .it-slider-3-active .swiper-slide-active .it-slider-2-text, .it-slider-3-active .swiper-slide-active .it-slider-2-btn {
    display: inline-block;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}

.it-slider-4-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}
.it-slider-4-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-position: center;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 9000ms ease, opacity 1500ms ease-in;
    transition: transform 9000ms ease, opacity 1500ms ease-in, -webkit-transform 9000ms ease;
}
.it-slider-4-overlay::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    background: linear-gradient(90deg, rgba(12, 18, 29, 0.9) 0%, rgba(12, 18, 29, 0.4) 100%);
}
.it-slider-4-overlay .shape {
    position: absolute;
    top: 0;
    left: 8%;
    z-index: -1;
}
.it-slider-4-wrap .swiper-slide.swiper-slide-active .it-slider-4-bg img {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.it-slider-4-wrap .swiper-slide.swiper-slide-active .it-slider-4-title {
    animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    animation-name: img-anim-bottom;
    animation-duration: 1.3s;
    opacity: 0;
}
.it-slider-4-wrap .swiper-slide.swiper-slide-active .it-slider-4-customer-info {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}
.it-slider-4-wrap .swiper-slide.swiper-slide-active .it-slider-4-text-box {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}
.it-slider-4-wrap .swiper-slide.swiper-slide-active .it-slider-4-social-box::before {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    animation-name: img-anim-top;
    animation-duration: 1.3s;
    opacity: 0;
}
.it-slider-4-wrap .swiper-slide.swiper-slide-active .it-slider-4-social-box::after {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    animation-name: img-anim-top;
    animation-duration: 1.3s;
    opacity: 0;
}
.it-slider-4-wrap .it-hero-experience {
    position: absolute;
    top: auto;
    bottom: 6%;
    right: 8%;
    z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4-wrap .it-hero-experience {
        bottom: 3%;
        right: 3%;
        transform: scale(0.7);
    }
}
.it-slider-4-social-box {
    position: absolute;
    bottom: 34%;
    left: 6%;
    z-index: 1;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-slider-4-social-box {
        left: 2%;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-4-social-box {
        left: 2%;
        bottom: 20%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4-social-box {
        left: 2%;
        bottom: 20%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4-social-box {
        left: 2%;
        bottom: 20%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-slider-4-social-box {
        display: none;
    }
}
.it-slider-4-social-box::before {
    position: absolute;
    content: "";
    top: -154%;
    left: 50%;
    width: 1px;
    height: 144%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4-social-box::before {
        height: 100%;
        top: -110%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4-social-box::before {
        height: 70%;
        top: -80%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-slider-4-social-box::before {
        display: none;
    }
}
.it-slider-4-social-box::after {
    position: absolute;
    content: "";
    bottom: -154%;
    right: 50%;
    width: 1px;
    height: 144%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    transform: rotate(-180deg);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4-social-box::after {
        height: 100%;
        bottom: -110%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4-social-box::after {
        height: 70%;
        bottom: -80%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-slider-4-social-box::after {
        display: none;
    }
}
.it-slider-4-social-box a {
    display: block;
    margin: 10px 0;
    color: var(--it-common-white);
    background: rgba(255, 255, 255, 0.1);
}
.it-slider-4-content {
    padding-top: 205px;
    padding-bottom: 220px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4-content {
        padding-top: 180px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4-content {
        padding-top: 160px;
        padding-bottom: 190px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4-content {
        padding-top: 170px;
        padding-bottom: 180px;
    }
}
@media (max-width: 767px) {
    .it-slider-4-content {
        padding-top: 150px;
        padding-bottom: 120px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-4-content {
        padding-top: 170px;
    }
}
.it-slider-4-content p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.7;
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4-content p {
        font-size: 17px;
    }
    .it-slider-4-content p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-slider-4-content p {
        font-size: 16px;
    }
    .it-slider-4-content p br {
        display: none;
    }
}
.it-slider-4-title {
    font-weight: 600;
    font-size: 110px;
    line-height: 1.09;
    margin-bottom: 165px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--it-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-4-title {
        font-size: 107px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4-title {
        font-size: 86px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4-title {
        font-size: 73px;
        margin-bottom: 120px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4-title {
        font-size: 67px;
        margin-bottom: 100px;
    }
}
@media (max-width: 767px) {
    .it-slider-4-title {
        font-size: 31px;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-4-title {
        font-size: 54px;
    }
}
.it-slider-4-text p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.7;
    color: var(--it-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4-text p {
        font-size: 18px;
    }
    .it-slider-4-text p br {
        display: none;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4-text p {
        font-size: 17px;
    }
    .it-slider-4-text p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-slider-4-text p {
        font-size: 15px;
    }
    .it-slider-4-text p br {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-4-text p {
        font-size: 17px;
    }
}
.it-slider-4-customer-info {
    display: inline-block;
    padding: 23px 25px 30px 30px;
    border-left: 9px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4-customer-info {
        padding: 25px 25px 35px 30px;
    }
}
@media (max-width: 767px) {
    .it-slider-4-customer-info {
        display: none;
    }
}
.it-slider-4-customer-info .number {
    font-weight: 600;
    font-size: 45px;
    line-height: 1.21;
    margin-bottom: 25px;
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4-customer-info .number {
        font-size: 34px;
    }
}
.it-slider-4-customer-info span {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.33;
    display: block;
    margin-bottom: 10px;
    font-family: var(--it-ff-heading);
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4-customer-info span {
        font-size: 20px;
    }
}
.it-slider-4-mlr {
    margin-left: 100px;
    margin-right: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4-mlr {
        margin-right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-slider-4-mlr {
        margin: 0;
    }
}

/*----------------------------------------*/
/*  26. project css start
/*----------------------------------------*/
.it-project-area {
    position: relative;
    z-index: 1;
    background-color: var(--it-common-black);
}
.it-project-thumb {
    overflow: hidden;
    border-radius: 20px;
}
.it-project-thumb img {
    border-radius: 20px;
    transition: 1.3s all ease;
}
@media (max-width: 767px) {
    .it-project-thumb img {
        border-radius: 0;
    }
}
.it-project-thumb:hover img {
    transform: scale(1.1);
}
.it-project-active {
    margin: 0 -480px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-active {
        margin: 0 -250px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-active {
        margin: 0;
    }
}
.it-project-arrow-wrap {
    display: flex;
    gap: 30px;
    z-index: 9;
}
@media (max-width: 767px) {
    .it-project-arrow-wrap {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-arrow-wrap {
        display: block;
    }
}
.it-project-arrow-wrap button {
    padding: 0;
    height: 51px;
    width: 51px;
    transition: 0.3s;
    line-height: 45px;
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--it-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-arrow-wrap button {
        height: 40px;
        width: 40px;
        line-height: 35px;
    }
}
.it-project-arrow-wrap button i, .it-project-arrow-wrap button svg {
    transition: 0.3s;
    display: inline-block;
    color: var(--it-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-arrow-wrap button i, .it-project-arrow-wrap button svg {
        width: 12px;
    }
}
.it-project-arrow-wrap button.arrow-prev {
    position: absolute;
    top: 50%;
    left: 14%;
    transform: translateY(-50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-arrow-wrap button.arrow-prev {
        left: 8%;
    }
}
.it-project-arrow-wrap button.arrow-next {
    position: absolute;
    top: 50%;
    right: 14%;
    transform: translateY(-50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-arrow-wrap button.arrow-next {
        right: 8%;
    }
}
.it-project-arrow-wrap button:hover {
    background-color: var(--it-theme-1);
    border: 1px solid var(--it-theme-1);
}
.it-project-arrow-wrap button:hover i {
    color: var(--it-common-white);
}
.it-project-title {
    margin-bottom: 17px;
    color: var(--it-common-white);
}
.it-project-category {
    color: var(--it-common-white);
}
@media (max-width: 767px) {
    .it-project-area {
        padding-bottom: 130px;
    }
}
.it-project-area .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
}
.it-project-area .shape-2 {
    position: absolute;
    bottom: 12%;
    left: 0;
    right: 0;
    z-index: -1;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .it-project-area .shape-2 {
        display: none;
    }
}

.it-project-2-area {
    position: relative;
}
.it-project-2-arrow-wrap {
    gap: 20px;
    display: flex;
    justify-content: end;
}
@media (max-width: 767px) {
    .it-project-2-arrow-wrap {
        justify-content: space-between;
    }
}
.it-project-2-arrow-wrap button {
    padding: 0;
    height: 35px;
    width: 35px;
    transition: 0.3s;
    line-height: 35px;
    border-radius: 5px;
    display: inline-block;
    background-color: var(--it-gray-1);
    border: 1px solid rgba(0,0,0,.2);
}
.light .it-project-2-arrow-wrap button {
    background-color: var(--it-gray-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-2-arrow-wrap button {
        height: 40px;
        width: 40px;
        line-height: 35px;
    }
}
.it-project-2-arrow-wrap button i, .it-project-2-arrow-wrap button svg {
    transition: 0.3s;
    display: inline-block;
    color: rgba(0,0,0,.3);
}
.light .it-project-2-arrow-wrap button i {
    color: rgba(0,0,0,.3);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-2-arrow-wrap button i, .it-project-2-arrow-wrap button svg {
        width: 12px;
    }
}
.it-project-2-arrow-wrap button:hover {
    background-color: var(--it-theme-1);
    border: 1px solid var(--it-theme-1);
}
.it-project-2-arrow-wrap button:hover svg {
    color: var(--it-common-white);
}
.it-project-2-title {
    font-weight: 500;
    font-size: 20px;
    margin: 0;
    color: var(--it-common-white);
}
.it-project-2-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    padding: 30px;
    width: 100%;
    background: linear-gradient(360deg, #0c121d 0%, rgba(12, 18, 29, 0) 100%);
}
@media screen and (max-width: 991px) {
    .it-project-2-content {
        padding: 15px;
    }
}
.it-project-2-item {
    border-radius: 10px;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
}
.it-project-2-item img {
    border-radius: 10px;
    width: 100%;
    transition: 1.3s all ease;
}
.it-project-2-item:hover img {
    transform: scale(1.1);
}
.it-project-2-btn .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transform: translateY(-50%);
}
.it-project-2-style-2 .it-project-2-title {
    font-size: 25px;
    margin-bottom: 20px;
    margin-right: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-project-2-style-2 .it-project-2-title {
        font-size: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-2-style-2 .it-project-2-title {
        font-size: 17px;
        margin-right: 20px;
        margin-bottom: 10px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-2-style-2 .it-project-2-title {
        font-size: 21px;
    }
}
.it-project-2-style-2 .it-project-2-item {
    overflow: hidden;
}
.it-project-2-style-2 .it-project-2-item img {
    transform: scale(1.04) translateX(-1%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-project-2-style-2 .it-project-2-item.style-1 {
        height: 100%;
    }
}
.it-project-2-style-2 .it-project-2-item.style-1 img {
    width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-project-2-style-2 .it-project-2-item.style-1 img {
        height: 100%;
        object-fit: cover;
    }
}
.it-project-2-style-2 .it-project-2-item::before {
    background: linear-gradient(180deg, rgba(12, 18, 29, 0) 0%, #0c121d 100%);
}
.it-project-2-style-2 .it-project-2-item:hover img {
    transform: scale(1.04) translateX(1%);
}
.it-project-2-style-2 .it-project-2-item:hover .it-project-2-arrow svg, .it-project-2-style-2 .it-project-2-item:hover .it-project-2-arrow i {
    color: var(--it-common-black);
}
.it-project-2-style-2 .it-project-2-item:hover .it-project-2-arrow::after {
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
}
.it-project-2-style-2 .it-project-2-content {
    bottom: 40px;
    left: 40px;
    right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-2-style-2 .it-project-2-content {
        left: 20px;
        right: 20px;
        bottom: 25px;
    }
}
.it-project-2-style-2 .it-project-2-arrow {
    border-radius: 5px;
    width: 51px;
    height: 51px;
    line-height: 51px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--it-theme-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-2-style-2 .it-project-2-arrow {
        width: 41px;
        height: 41px;
        line-height: 41px;
        border-radius: 3px;
    }
}
.it-project-2-style-2 .it-project-2-arrow svg, .it-project-2-style-2 .it-project-2-arrow i {
    z-index: 1;
    position: relative;
    transition: 0.3s ease;
    color: var(--it-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-2-style-2 .it-project-2-arrow svg, .it-project-2-style-2 .it-project-2-arrow i {
        width: 15px;
    }
}
.it-project-2-style-2 .it-project-2-arrow::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    transition: 0.4s ease;
    transform: scale(0);
    background-color: var(--it-common-white);
}

.it-project-3-area .it-project-2-content {
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center;
    transition: all 0.5s ease-in-out;
    align-items: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-3-area .it-project-2-content span {
        font-size: 14px;
    }
}
.it-project-3-area .it-project-2-item {
    border-radius: 0;
}
.it-project-3-area .it-project-2-item::before {
    border-radius: 0;
    bottom: 0;
    height: 20%;
    opacity: 0;
    transition: 0.5s;
    background: linear-gradient(180deg, rgba(12, 18, 29, 0) 0%, #0c121d 100%);
}
.it-project-3-area .it-project-2-item:hover::before {
    opacity: 1;
    height: 100%;
}
.it-project-3-area .it-project-2-item:hover .it-project-2-content {
    transform: perspective(400px) rotateX(0deg);
}
.it-project-3-area .it-project-2-item img {
    border-radius: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-project-3-area .it-project-2-title {
        font-size: 24px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-3-area .it-project-2-title {
        font-size: 19px;
    }
}
@media (max-width: 767px) {
    .it-project-3-area .it-project-2-section-title-box {
        margin-bottom: 40px;
    }
}
.it-project-3-area .it-project-2-arrow-wrap button {
    border: 1px solid #fff;
    background-color: transparent;
}
.it-project-3-area .it-project-2-arrow-wrap button svg, .it-project-3-area .it-project-2-arrow-wrap button i {
    color: var(--it-common-white);
}
.it-project-3-area .it-project-2-arrow-wrap button:hover {
    border: 1px solid var(--it-theme-1);
    background-color: var(--it-theme-1);
}
.it-project-3-area .it-project-2-arrow-wrap .arrow-prev {
    position: absolute;
    top: 50%;
    left: 3%;
    z-index: 3;
    transform: translateY(-50%);
}
.it-project-3-area .it-project-2-arrow-wrap .arrow-next {
    position: absolute;
    top: 50%;
    right: 3%;
    z-index: 3;
    transform: translateY(-50%);
}

.it-it-project-2-area .it-project-2-content {
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center;
    transition: all 0.5s ease-in-out;
    align-items: center;
}
.it-it-project-2-area .it-project-2-item {
    border-radius: 0;
}
.it-it-project-2-area .it-project-2-item::before {
    border-radius: 0;
    bottom: 0;
    height: 20%;
    opacity: 0;
    transition: 0.5s;
    background: linear-gradient(180deg, rgba(12, 18, 29, 0) 0%, #0c121d 100%);
}
.it-it-project-2-area .it-project-2-item:hover::before {
    opacity: 1;
    height: 100%;
}
.it-it-project-2-area .it-project-2-item:hover .it-project-2-content {
    transform: perspective(400px) rotateX(0deg);
}
.it-it-project-2-area .it-project-2-item img {
    border-radius: 0;
}
.it-it-project-2-area .it-project-2-arrow-wrap button {
    line-height: 48px;
    border: 1px solid #fff;
    background-color: transparent;
}
.it-it-project-2-area .it-project-2-arrow-wrap button svg, .it-it-project-2-area .it-project-2-arrow-wrap button i {
    color: var(--it-common-white);
}
.it-it-project-2-area .it-project-2-arrow-wrap button:hover {
    border: 1px solid var(--it-theme-1);
    background-color: var(--it-theme-1);
}
.it-it-project-2-area .it-project-2-arrow-wrap .arrow-prev {
    position: absolute;
    top: 50%;
    left: 3%;
    z-index: 3;
    transform: translateY(-50%);
}
.it-it-project-2-area .it-project-2-arrow-wrap .arrow-next {
    position: absolute;
    top: 50%;
    right: 3%;
    z-index: 3;
    transform: translateY(-50%);
}
.it-it-project-2-area .swiper-pagination-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.it-it-project-2-area .swiper-current, .it-it-project-2-area .swiper-total {
    font-weight: 600;
    font-size: 25px;
    color: var(--it-text-body);
}
.it-it-project-2-area .swiper-progress-container {
    width: 87%;
    height: 3px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}
.it-it-project-2-area .swiper-progress-bar {
    height: 100%;
    background: var(--it-theme-1);
    width: 0%;
    transition: width 0.5s ease;
}

.fraction-wrapper .swiper-pagination-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}
@media (max-width: 767px) {
    .fraction-wrapper .swiper-pagination-custom {
        margin-top: 0;
    }
}
.fraction-wrapper .swiper-current, .fraction-wrapper .swiper-total {
    font-weight: 600;
    font-size: 25px;
    color: var(--it-text-body);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .fraction-wrapper .swiper-current, .fraction-wrapper .swiper-total {
        font-size: 14px;
    }
}
.fraction-wrapper .swiper-progress-container {
    width: 100%;
    height: 3px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}
.fraction-wrapper .swiper-progress-bar {
    height: 100%;
    background: var(--it-theme-1);
    width: 0%;
    transition: width 0.5s ease;
}
.fraction-wrapper .slider-pagination.swiper-pagination-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: auto;
    right: 6%;
    bottom: 52%;
    z-index: 2;
    width: 14%;
    gap: 15px;
    transform: rotate(90deg);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .fraction-wrapper .slider-pagination.swiper-pagination-custom {
        width: 18%;
        right: 5%;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .fraction-wrapper .slider-pagination.swiper-pagination-custom {
        width: 20%;
        bottom: 57%;
        right: 4.5%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .fraction-wrapper .slider-pagination.swiper-pagination-custom {
        width: 20%;
        bottom: 57%;
        right: 5.5%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .fraction-wrapper .slider-pagination.swiper-pagination-custom {
        display: none;
    }
}
.fraction-wrapper .slider-pagination .swiper-current, .fraction-wrapper .slider-pagination .swiper-total {
    color: #fff;
    transform: rotate(-90deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .fraction-wrapper .slider-pagination .swiper-current, .fraction-wrapper .slider-pagination .swiper-total {
        font-size: 17px;
    }
}
.fraction-wrapper .slider-pagination .swiper-total {
    color: rgba(255, 255, 255, 0.5);
}
.fraction-wrapper .slider-pagination .swiper-progress-container {
    width: 100%;
    height: 2px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
}
.fraction-wrapper .slider-pagination .swiper-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--it-common-white);
    transition: width 0.5s ease;
}

@media (max-width: 767px) {
    .it-project-2-area.fraction-wrapper .swiper-pagination-custom {
        padding-top: 30px;
    }
}

/* details css here */
.it-pro-details-more-info span {
    font-weight: 600;
    font-size: 24px;
    display: block;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-pro-details-more-info span {
        font-size: 22px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-pro-details-more-info span {
        font-size: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-pro-details-more-info span {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .it-pro-details-more-info span {
        font-size: 17px;
    }
}
.it-pro-details-more-info i, .it-pro-details-more-info a {
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    font-style: normal;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-pro-details-more-info i, .it-pro-details-more-info a {
        font-size: 13px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-pro-details-more-info i, .it-pro-details-more-info a {
        font-size: 11px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-pro-details-more-info i, .it-pro-details-more-info a {
        font-size: 13px;
    }
}
@media (max-width: 767px) {
    .it-pro-details-more-info i, .it-pro-details-more-info a {
        font-size: 11px;
    }
}
.it-pro-details-more-social a {
    display: inline-block;
    color: var(--it-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-pro-details-more-social a svg {
        width: 11px;
    }
}
.it-pro-details-more-social a:not(:last-child) {
    margin-right: 12px;
}
.it-pro-details-more-social a:hover {
    color: var(--it-theme-1);
}
.it-pro-details-more-box {
    padding: 35px 34px;
    padding-bottom: 15px;
    border-radius: 20px 20px 0 0;
    background-color: var(--it-gray-3);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.it-pro-details-more-box > div {
    flex: 1;
    min-width: 150px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-pro-details-more-box > div {
        min-width: 100px;
    }
}
.it-pro-details-area .postbox-dsc p {
    margin-bottom: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-pro-details-area .postbox-details-wrapper .it-sv-details-list {
        margin-bottom: 50px;
    }
}

/*----------------------------------------*/
/*  24. offer css start
/*----------------------------------------*/
.it-offer-banner-area {
    background: linear-gradient(to bottom, rgba(40, 50, 58, .9), rgba(40, 50, 48, .8)), url(../img/background/background-3.jpg) no-repeat center center / cover;
    position: relative;
    width: 100%;
    padding: 100px 0;
}

/*----------------------------------------*/
/*  11. contact css start
/*----------------------------------------*/
.it-contact-area.list {
    background: linear-gradient(to bottom, rgba(40,50,58,.98), rgba(40,50,48,.99)), url(../img/background/background-2.png) no-repeat center center / cover;
    position: relative;
    width: 100%;
}
.it-contact-left {
    margin-right: 33px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-left {
        margin-right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-left {
        margin-right: 0;
        margin-bottom: 50px;
    }
}
.it-contact-left > p {
    line-height: 2;
    margin-right: 50px;
    margin-bottom: 50px;
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-contact-left > p {
        font-size: 15px;
    }
    .it-contact-left > p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-contact-left > p {
        margin-right: 0;
        font-size: 15px;
    }
    .it-contact-left > p br {
        display: none;
    }
}
.it-contact-info-features p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-contact-info-features p {
        font-size: 15px;
    }
    .it-contact-info-features p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-contact-info-features p {
        font-size: 15px;
    }
}
.it-contact-info-features span {
    display: block;
    margin-bottom: 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-info-features span svg {
        height: 40px;
    }
}
.it-contact-info-features h5 {
    margin-bottom: 17px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-info-features h5 {
        font-size: 18px;
    }
    .it-contact-info-features h5 br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-contact-info-features {
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-contact-info-features {
        margin-left: 20px;
    }
}
.it-contact-form-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}
.it-contact-form-box {
    margin-left: -30px;
    padding: 60px 35px;
    padding-top: 50px;
    border-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-contact-form-box {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .it-contact-form-box {
        padding: 50px 20px;
        margin-left: 0;
    }
}
.it-contact-input-box label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-input-box label {
        font-size: 12px;
    }
}
.it-contact-input-box textarea {
    height: 117px;
    width: 100%;
    padding: 20px 25px;
    position: relative;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(98, 94, 88, 0.15);
}
.it-contact-input-box textarea:focus {
    border: 1px solid var(--it-theme-1);
}
.it-contact-style-2 .it-contact-left p {
    color: var(--it-text-body);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-style-2 .it-contact-left p {
        margin-right: 0;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-style-2 .it-contact-form-box {
        margin-left: 0;
    }
}
.it-contact-style-2 .it-contact-info-features p {
    color: var(--it-text-body);
}
.it-contact-style-2 .contact__select .nice-select {
    background-color: var(--it-gray-3);
}
.it-contact-style-2 .it-contact-input-box textarea {
    background-color: var(--it-gray-3);
}
@media (max-width: 767px) {
    .it-contact-style-3 .it-contact-info-features {
        margin-bottom: 50px;
    }
}
.it-contact-style-3 .it-contact-info-features h5 {
    color: var(--it-common-black);
}
.it-contact-style-3 .it-contact-info-features p {
    color: var(--it-common-black);
}
.it-contact-style-3 .it-contact-2-form-box {
    padding: 50px 50px;
    padding-top: 40px;
    border-radius: 20px;
    background-color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-contact-style-3 .it-contact-2-form-box {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .it-contact-style-3 .it-contact-2-form-box {
        margin-left: 0;
        padding: 30px 20px;
    }
}
.it-contact-style-3 .it-contact-2-input-box textarea {
    border-radius: 5px;
    height: 113px;
}
.it-contact-style-3 .nice-select.open .list {
    border-radius: 5px;
}
.it-contact-style-3 .contact__select .nice-select {
    border-radius: 5px;
    height: 60px;
    line-height: 60px;
    background-color: #F6F7F9;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-style-3 .contact__select .nice-select {
        height: 48px;
        line-height: 48px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-style-3 .it-contact-left > p {
        margin-right: 0;
    }
}

.contact__select label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact__select label {
        font-size: 12px;
    }
}
.contact__select .nice-select {
    width: 100%;
    padding: 0 25px;
    position: relative;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(98, 94, 88, 0.15);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .contact__select .nice-select {
        height: 45px;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .contact__select .nice-select {
        height: 45px;
        line-height: 45px;
        font-size: 14px;
    }
}
.contact__select .nice-select::after {
    right: 25px;
    margin-top: -6px;
}

.it-contact-methods {
    display: flex;
    gap: 30px;
    padding-top: 30px;
}

.custom-checkbox {
    position: absolute;
    top: -6px;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid rgba(98, 94, 88, 0.15);
}
.custom-checkbox::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 20px;
    width: 20px;
    margin: 0 auto;
    text-align: center;
    border-radius: 5px;
    transition: 0.2s;
    transform: translateY(-50%) scale(0);
    background-color: var(--it-theme-1);
}

.checkbox-wrapper {
    position: relative;
    padding-left: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    user-select: none;
}

.checkbox-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(98, 94, 88, 0.15);
}

.checkbox-wrapper input:checked ~ .custom-checkbox::after {
    transform: translateY(-50%) scale(1);
}

.it-contact-2-left {
    margin-right: 83px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-contact-2-left {
        margin-right: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-2-left {
        margin-right: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-2-left {
        margin-right: 0;
        margin-bottom: 70px;
    }
}
.it-contact-2-left ul li {
    width: 100%;
    list-style-type: none;
}
.it-contact-2-left ul li button {
    padding: 18px 0;
    display: flex;
    width: 100%;
    z-index: 1;
    transition: 0.4s;
    position: relative;
    align-items: center;
    border-radius: 10px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-2-left ul li button {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}
.it-contact-2-left ul li button::after {
    position: absolute;
    content: "";
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    transition: 0.4s;
    border-radius: 10px;
    background-color: var(--it-theme-1);
}
.it-contact-2-left ul li button .arrow {
    height: 42px;
    width: 42px;
    line-height: 39px;
    display: inline-block;
    border-radius: 5px;
    transition: 0.3s;
    color: var(--it-common-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.it-contact-2-left ul li button .arrow svg, .it-contact-2-left ul li button .arrow i {
    display: inline-block;
}
.it-contact-2-left ul li button:hover {
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 1px solid transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-contact-2-left ul li button:hover {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.it-contact-2-left ul li button:hover::after {
    bottom: auto;
    top: 0;
    height: 100%;
}
.it-contact-2-left ul li button:hover .arrow {
    color: var(--it-common-black);
    background-color: var(--it-common-white);
}
.it-contact-2-left ul li button.active {
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: 1px solid transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-contact-2-left ul li button.active {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.it-contact-2-left ul li button.active::after {
    bottom: auto;
    top: 0;
    height: 100%;
}
.it-contact-2-left ul li button.active .arrow {
    color: var(--it-common-black);
    background-color: var(--it-common-white);
}
.it-contact-2-nav-link {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 0;
    line-height: 1;
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-contact-2-nav-link {
        font-size: 20px;
    }
}
.it-contact-2-form-box {
    position: relative;
}
.it-measure .it-contact-2-form-box {
    padding: 20px;
    background-color: var(--it-gray-1);
    border-radius: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-contact-2-form-box p br {
        display: none;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-contact-2-form-box p {
        margin-bottom: 30px !important;
    }
    .it-contact-2-form-box p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-contact-2-form-box p {
        font-size: 15px;
        margin-bottom: 30px !important;
    }
    .it-contact-2-form-box p br {
        display: none;
    }
}
.it-contact-2-form-box .it-shop-widget-filter .title {
    font-weight: 600;
    font-size: 20px;
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-2-form-box .it-shop-widget-filter .title {
        font-size: 15px;
    }
}
.it-contact-2-form-box .it-shop-widget-filter .ui-widget.ui-widget-content {
    height: 13px;
    border-radius: 5px;
    position: relative;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-2-form-box .it-shop-widget-filter .ui-widget.ui-widget-content {
        height: 8px;
    }
}
.it-contact-2-form-box .it-shop-widget-filter .ui-slider .ui-slider-handle {
    position: absolute;
    top: -3px;
    width: 19px;
    height: 19px;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background-color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-2-form-box .it-shop-widget-filter .ui-slider .ui-slider-handle {
        height: 13px;
        width: 13px;
    }
}
.it-contact-2-form-box .it-shop-widget-filter .ui-slider-horizontal .ui-slider-range {
    background-color: var(--it-common-white);
}
.it-contact-2-form-box .it-shop-widget-filter-info .input-range input {
    font-weight: 600;
    font-size: 20px;
    color: var(--it-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-2-form-box .it-shop-widget-filter-info .input-range input {
        font-size: 15px;
    }
}
.it-contact-2-input-box input,
.it-contact-2-input-box textarea,
.it-contact-2-input-box select {
    border-radius: 5px;
    font-weight: 500;
    border: 1px solid rgba(98, 94, 88, 0.15);
    transition: all .3s;
}
.it-contact-2-input-box input:focus,
.it-contact-2-input-box textarea:focus,
.it-contact-2-input-box select:focus {
    border-color: var(--it-theme-1);
    transition: all .3s;
}
.it-contact-2-input-box input:hover,
.it-contact-2-input-box textarea:hover,
.it-contact-2-input-box select:hover {
    border-color: rgba(0,0,0,.3);
    transition: all .3s;
}
.it-contact-2-input-box button {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}
.it-contact-2-bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
}
.it-contact-2-bg-1::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(12, 18, 29, 0.85);
}
.it-contact-2-bg-1 img {
    height: 100%;
    object-fit: cover;
}
.it-contact-2-bg-2 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-2-bg-2 {
        right: -9%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-2-bg-2 {
        display: none;
    }
}
.it-contact-2-bg-2 img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .it-contact-list {
        margin-bottom: 40px;
    }
}
.it-contact-list span {
    font-weight: 500;
    font-size: 20px;
    color: var(--it-common-black);
    margin-bottom: 5px;
    display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-list span {
        font-size: 18px;
    }
}
.it-contact-list a,
.it-contact-list p {
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    color: var(--it-theme-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-list a,
    .it-contact-list p{
        font-size: 16px;
    }
}
.it-contact-list-icon span {
    display: inline-block;
    height: 100px;
    width: 100px;
    line-height: 103px;
    text-align: center;
    margin-right: 25px;
    border-radius: 5px;
    background-color: var(--it-gray-1);
    border: 1px solid rgba(121, 121, 121, 0.2);
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-list-icon span {
        height: 65px;
        width: 65px;
        line-height: 65px;
    }
}
.it-contact-list-icon span i {
    font-size: 30px;
}
.it-contact-list-box {position: relative;}
.it-contact-inner-style .it-contact-left {
    margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-inner-style .it-contact-left {
        margin-right: 0;
    }
}
.it-contact-inner-style .it-contact-list {
    margin-bottom: 0;
}
.it-contact-inner-style .it-contact-2-form-box {
    padding: 30px;
    background-color: var(--it-gray-2);
    border: 1px solid rgba(98, 94, 88, 0.15);
    margin-top: 60px;
    border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-contact-inner-style .it-contact-2-form-box {
        margin-left: 0;
    }
}
.it-contact-inner-style .it-contact-2-input-box input {
    padding: 0 25px;
    font-size: 16px;
    background-color: var(--it-common-white);
}
.it-contact-inner-style .it-contact-2-input-box input::placeholder {
    font-size: 16px;
}
.it-contact-inner-style .it-contact-2-input-box input:focus {
    border: 1px solid var(--it-theme-1);
}
.it-contact-inner-style .contact__select .nice-select {
    border-radius: 5px;
    transition: 0.3s;
}
.it-contact-inner-style .contact__select .nice-select:focus {
    border: 1px solid var(--it-theme-1);
}
.it-contact-inner-style .it-contact-2-input-box textarea {
    min-height: 100px;
}
@media (max-width: 767px) {
    .it-contact-inner-style .it-contact-2-input-box textarea {
        height: 180px;
    }
}
.it-contact-inner-style .it-contact-2-input-box textarea::placeholder {
    font-size: 16px;
}
.it-contact-inner-style .it-contact-2-input-box textarea:focus {
    border: 1px solid var(--it-theme-1);
}

.it-map-wrap {
    height: 640px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-map-wrap {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .it-map-wrap {
        height: 250px;
    }
}
@media (max-width: 767px) {
    .it-map-wrap {
        height: 350px;
    }
}
.it-map-wrap iframe {
    height: 100%;
    width: 100%;
}

.it-signup-title {
    font-weight: 600;
    font-size: 34px;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-signup-title {
        font-size: 29px;
    }
}
@media (max-width: 767px) {
    .it-signup-title {
        font-size: 25px;
    }
}
@media (max-width: 767px) {
    .it-signup-title {
        font-size: 30px;
    }
}
.it-signup-bg {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    padding: 15px 115px 15px 15px;
    overflow: hidden;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-signup-bg {
        padding-right: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-signup-bg {
        padding: 40px;
    }
}
@media (max-width: 767px) {
    .it-signup-bg {
        padding: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-signup-bg {
        padding: 30px;
    }
}
.it-signup-bg p {
    line-height: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-signup-bg p {
        line-height: 1.4;
        font-size: 14px;
    }
}
.it-signup-continue-item {
    padding: 12px 30px;
    border: 1px solid rgba(121, 121, 121, 0.2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-signup-continue-item {
        padding: 12px 15px;
    }
}
@media (max-width: 767px) {
    .it-signup-continue-item {
        padding: 12px 15px;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .it-signup-continue-item img {
        width: 20px;
    }
}
.it-signup-continue-item span {
    display: inline-block;
    padding-left: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .it-signup-continue-item span {
        font-size: 13px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-signup-text span {
        font-size: 15px;
    }
}
.it-signup-text span a {
    color: var(--it-theme-1);
    text-decoration: underline;
}
.it-signup-border {
    margin-bottom: 35px;
    position: relative;
}
.it-signup-border span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 0 10px;
    z-index: 1;
    display: inline-block;
    font-family: var(--it-ff-heading);
    background-color: var(--it-gray-1);
}
.it-signup-border::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}
.it-signup-input label {
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--it-common-black);
}
.it-signup-input input {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid rgba(121, 121, 121, 0.2);
}
.it-signup-input input:focus {
    border-color: var(--it-theme-1);
}
.it-signup-input-icon {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .it-signup-input-icon {
        left: 19px;
    }
}
@media (max-width: 767px) {
    .it-signup-input-icon svg {
        width: 15px;
    }
}
.it-signup-wrap {
    padding: 90px 0;
    margin-left: 38px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-signup-wrap {
        margin-left: 0;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-signup-wrap {
        padding: 40px 0;
        margin-left: 0;
    }
}
.it-signup-wrap .it-contact-agree .form-check-input.form-check-input[type=checkbox] {
    width: 20px;
    height: 20px;
    padding: 0;
    margin-top: 2px;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #797979;
}
.it-signup-wrap .it-btn::after {
    height: 700px;
    width: 700px;
    transition: 0.5s;
}
.it-signup-text span {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
}
.it-signup-text span a {
    color: var(--it-theme-1);
}
.it-signup-logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 45px;
    padding: 90px 20px;
    border-radius: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-signup-logo {
        margin-right: 20px;
        padding: 90px 80px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-signup-logo {
        margin-right: 0;
        padding: 50px 40px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-signup-logo {
        padding: 80px 40px;
    }
}
.it-signup-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.it-signup-area .form-check label {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
}
.it-signup-area .form-check label span {
    color: var(--it-theme-1);
}
.it-signup-forget a {
    font-weight: 600;
    font-size: 14px;
    line-height: 171%;
    letter-spacing: 0.01em;
    color: var(--it-theme-1);
    font-family: var(--it-ff-heading);
}
.it-signup-agree label {
    color: var(--it-common-white);
}
@media (max-width: 767px) {
    .it-signup-agree label {
        font-size: 14px;
    }
}
.it-signup-agree .form-check-input:checked {
    background-color: var(--it-common-black);
    border-color: transparent;
}
.it-signup-agree .form-check-input:focus {
    box-shadow: none;
}
.it-signup-agree .form-check-input.form-check-input[type=checkbox] {
    border-radius: 2px;
    margin-top: 10px;
    height: 15px;
    width: 15px;
    padding: 0;
    border-radius: 3px;
    border: 1px solid #E2E1E1;
}
@media (max-width: 767px) {
    .it-signup-continue-wrap {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .it-signup-continue-wrap {
        flex-wrap: nowrap;
    }
}

/*----------------------------------------*/
/*  29. shop css start
/*----------------------------------------*/
@media (max-width: 767px) {
    .it-shop-text {
        margin-bottom: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-shop-text {
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .it-shop-top-wrap {
        flex-wrap: wrap;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-shop-top-wrap {
        flex-wrap: nowrap;
    }
}
@media (max-width: 767px) {
    .it-shop-top-wrap .it-shop-filter.ml-30 {
        margin-left: 0;
        margin-top: 20px;
        display: block;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-shop-top-wrap .it-shop-filter.ml-30 {
        margin-top: 0;
        margin-left: 25px;
    }
}
@media (max-width: 767px) {
    .it-shop-filter-box {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .it-shop-filter-box span {
        width: 100%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-shop-filter-box span {
        width: auto;
    }
}
.it-shop-filter .nice-select {
    font-weight: 400;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    height: 50px;
    padding-left: 20px;
    padding-right: 45px;
    line-height: 50px;
    background-color: #F3F3F3;
    border: 1px solid rgba(121, 121, 121, 0.2);
}
.it-shop-filter .nice-select::after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 7px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 31px;
    top: 55%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 7px;
}
.it-shop-filter .nice-select.open::after {
    transform: rotate(-136deg);
}
.it-shop-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}
.it-shop-thumb {
    border-radius: 10px;
}
.it-shop-thumb img {
    width: 100%;
    border-radius: 5px;
    transition: 1.3s all ease;
}
.it-shop-item {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(121, 121, 121, 0.3);
}
.it-shop-item:hover .it-shop-thumb img {
    transform: scale(1.07);
    transition: 1.3s all ease;
}
.it-shop-item:hover .it-shop-action-2 {
    visibility: visible;
    opacity: 1;
    top: 15px;
}

/* details css here */
.it-shop-details__right-wrap {
    position: sticky;
    top: 80px;
}
.it-shop-details__title-sm {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 30px;
}
.it-shop-details__icon a {
    width: 77px;
    line-height: 55px;
    height: 55px;
    display: inline-block;
    text-align: center;
    margin-right: 8px;
    transition: 0.3s;
    color: var(--it-common-black);
    background-color: var(--it-gray-3);
}
.it-shop-details__icon a:hover {
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
}
.it-shop-details__text p {
    font-size: 16px;
    line-height: 1.7;
}
.it-shop-details__text p:last-child {
    margin: 0;
}

/*----------------------------------------*/
/*  14. error css start
/*----------------------------------------*/
.it-error-title {
    font-size: 25px;
}

/*----------------------------------------*/
/*  10. choose css start
/*----------------------------------------*/
.it-choose-2-item {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    transition: all .3s;
}
.it-choose-2-item:hover {
    border-color: var(--it-theme-1);
    transform: translateY(-10px);
    transition: all .3s;
}
.it-choose-2-item p {
    margin: 0;
}
.it-choose-2-item.item-style-2 {
    height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-choose-2-item.item-style-2 {
        height: auto;
        margin-bottom: 0;
        margin-top: 30px;
    }
}
.it-choose-2-item.item-style-2 .it-choose-2-title {
    margin-bottom: 30px;
}
.it-choose-2-item.item-style-2 p {
    padding-bottom: 30px;
    margin-bottom: 40px;
    margin-right: 0;
    border-bottom: 2px solid rgba(217, 217, 217, 0.4);
}
.it-choose-2-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 500;
    transition: all .3s;
}
.it-choose-2-item:hover .it-choose-2-title {
    color: var(--it-theme-1);
    transition: all .3s;
}
.it-choose-2-icon img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

/*----------------------------------------*/
/*  15. faq css start
/*--------------------------------------- -*/
.it-faq-more-info {
    position: absolute;
    bottom: -30px;
    right: -5.5%;
    display: inline-block;
    border-radius: 20px;
    padding: 40px 30px;
    padding-top: 33px;
    padding-right: 50px;
    background-color: var(--it-theme-1);
    animation: translateX 4s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-faq-more-info {
        right: 2%;
        animation: unset;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-faq-more-info {
        bottom: -2%;
        right: -8%;
        transform: scale(0.8);
        animation: unset;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-faq-more-info {
        display: none;
    }
}
.it-faq-more-info span {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    display: block;
    margin-bottom: 10px;
    color: var(--it-common-white);
}
.it-faq-more-info i {
    font-weight: 600;
    font-size: 34px;
    font-style: normal;
    display: block;
    margin-bottom: 23px;
    color: var(--it-common-white);
}
.it-faq-thumb {
    padding-right: 75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-faq-thumb {
        height: 100%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-faq-thumb {
        height: 100%;
        padding-right: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-faq-thumb {
        padding-right: 0;
        margin-bottom: 50px;
    }
}
.it-faq-thumb img {
    object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-faq-thumb img {
        height: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-faq-thumb img {
        width: 100%;
        object-fit: cover;
    }
}
.it-faq-thumb::after {
    position: absolute;
    top: -9%;
    right: 4%;
    height: 54%;
    width: 11px;
    content: "";
    animation: translateY 4s infinite alternate;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(45, 196, 87, 0.6) 100%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-faq-thumb::after {
        right: 7%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-faq-thumb::after {
        display: none;
    }
}
.it-faq-right {
    position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-faq-right {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .it-faq-area {
        padding-bottom: 110px;
    }
}
.it-faq-2-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.it-faq-2-thumb {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45.5%;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-faq-2-thumb {
        height: 110%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-faq-2-thumb {
        position: relative;
        margin-top: 50px;
        width: 100%;
    }
}
.it-faq-2-thumb img {
    border-radius: 0 20px 20px 0;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-faq-2-thumb img {
        height: 100%;
        object-fit: cover;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-faq-2-thumb img {
        width: 100%;
        height: 110%;
        border-radius: 0;
    }
}
.it-faq-2-video {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
}
.it-faq-2-video span {
    padding-left: 4px;
    display: inline-block;
}
.it-faq-2-area {
    padding-top: 255px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-faq-2-area {
        padding-top: 180px;
    }
}
.it-faq-2-area .it-custom-accordion .accordion-buttons {
    position: relative;
    text-align: left;
    padding: 25px 35px;
    padding-right: 65px;
    font-size: 24px;
    color: var(--it-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-faq-2-area .it-custom-accordion .accordion-buttons {
        font-size: 21px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .it-faq-2-area .it-custom-accordion .accordion-buttons {
        font-size: 18px;
        padding: 20px 35px;
        padding-right: 40px;
    }
}
@media (max-width: 767px) {
    .it-faq-2-area .it-custom-accordion .accordion-buttons {
        font-size: 16px;
        padding: 20px 15px;
        padding-right: 60px;
    }
}
@media (max-width: 767px) {
    .it-faq-2-area .it-custom-accordion .accordion-body {
        padding: 20px 15px;
    }
}
.it-faq-2-area .it-custom-accordion .accordion-items {
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.it-faq-2-area .it-custom-accordion .accordion-body p {
    margin-right: 90px;
    color: rgba(255, 255, 255, 0.8);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-faq-2-area .it-custom-accordion .accordion-body p {
        margin-right: 0;
    }
}
.it-faq-2-area .it-custom-accordion .accordion-buttons::after {
    content: "\f106";
}
@media (max-width: 767px) {
    .it-faq-2-area .it-custom-accordion .accordion-buttons::after {
        right: 15px;
    }
}
.it-faq-2-area .it-custom-accordion .accordion-buttons.collapsed::after {
    content: "\f107";
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-faq-2-area .it-faq-right {
        margin-left: 83px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-faq-2-area .it-faq-right {
        margin-left: 70px;
    }
}

/*----------------------------------------*/
/*  16. feature css start
/*----------------------------------------*/
.it-feature-border {
    border: 1px solid rgba(121, 121, 121, 0.3);
}
.it-feature-icon {
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    background-color: var(--it-common-black);
}
.it-feature-icon svg, .it-feature-icon i {
    position: relative;
    z-index: 1;
}
.it-feature-icon::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    transition: 0.5s ease;
    transform: scale(0);
    background-color: var(--it-theme-1);
}
.it-feature-title {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 15px;
}
.it-feature-item {
    padding: 40px 40px 30px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-feature-item {
        padding: 20px;
    }
}
.it-feature-item p {
    line-height: 2;
    margin-bottom: 0;
}
.it-feature-item:hover .it-feature-icon::after {
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
}
.it-feature-item:hover .it-feature-icon svg, .it-feature-item:hover .it-feature-icon i {
    transform: rotate(360deg);
    transition: 0.6s;
}
.it-feature-item-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

/*----------------------------------------*/
/*  13. cta css start
/*----------------------------------------*/
.it-cta-overlay {
    padding-top: 90px;
    padding-bottom: 70px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
@media (max-width: 767px) {
    .it-cta-overlay {
        padding: 100px 0;
    }
}
.it-cta-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: rgba(9, 18, 22, 0.8);
}
.it-cta-contant p {
    line-height: 2;
    color: var(--it-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-cta-contant p br {
        display: none;
    }
}
@media (max-width: 767px) {
    .it-cta-btn {
        margin-top: 40px;
    }
}
.it-cta-shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.it-cta-2-wrap {
    padding: 39px 75px;
    margin-bottom: -75px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-cta-2-wrap {
        padding: 39px 35px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-cta-2-wrap .it-cta-2-title {
        font-size: 24px;
    }
}
.it-cta-2-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
@media (max-width: 767px) {
    .it-cta-2-btn {
        margin-top: 30px;
    }
}

/*----------------------------------------*/
/*  35. video css start
/*--------------------------------------- -*/
.it-video-area {
    background: linear-gradient(to bottom, var(--it-common-black), rgba(128, 128, 128, 0.8)), url(../img/background/background-1.jpg) no-repeat center center / cover;
    position: relative;
    width: 100%;
}
.it-video-area .it-section-title {
    margin-bottom: 30px;
    color: var(--it-common-white);
}
.it-video-area .it-section-title span {
    color: var(--it-theme-1);
}
.it-video-area .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.it-video-icon {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 100px;
    width: 100px;
    line-height: 97px;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.5);
}
.it-video-icon svg, .it-video-icon i {
    padding-left: 5px;
}
.it-video-thumb img {
    object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-video-thumb img {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .it-video-thumb img {
        height: 260px;
    }
}

/*----------------------------------------*/
/*  04. blog-sidebar css start
/*----------------------------------------*/
.sidebar-button button {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.sidebar-button button i {
    color: var(--it-common-black);
}
.sidebar-contact {
    padding: 72px 16px 50px 16px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    z-index: 2;
}
.sidebar-contact::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(24, 24, 24, 0.7);
    content: "";
    border-radius: 5px;
    z-index: -1;
}
.sidebar-contact-call a {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--it-common-white);
    margin-bottom: 20px;
}
.sidebar-contact-call i {
    display: block;
    font-size: 42px;
    color: var(--it-theme-1);
    margin-bottom: 10px;
}
.sidebar-contact-time span {
    display: inline-block;
    font-size: 14px;
    color: var(--it-common-white);
    margin-bottom: 15px;
}
.distributor.postbox-main-thumb {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.distributor.postbox-main-thumb img {
    height: 50px;
    object-fit: contain;
}
.postbox-dsc p:last-child {
    margin: 0;
}
.sidebar-widget {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--it-gray-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .sidebar-widget {
        padding: 20px;
    }
}
.sidebar-widget-title {
    font-weight: 600;
    font-size: 20px;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
}
.sidebar-widget-title::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--it-theme-1);
    position: relative;
    top: 1px;
}
.sidebar-widget-list {
    width: 100%;
    padding: 15px;
    display: flex;
    font-size: 17px;
    transition: 0.3s;
    border-radius: 10px;
    justify-content: space-between;
    border: 1px solid rgba(98, 94, 88, 0.1);
    background-color: var(--it-common-white);
    align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .sidebar-widget-list {
        padding: 12px 15px;
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sidebar-widget-list {
        padding: 12px 15px;
        font-size: 14px;
    }
}
.sidebar-widget a:last-child .sidebar-widget-list {
    margin-bottom: 0;
}
.sidebar-widget-list span {
    transition: 0.3s;
}
.sidebar-widget-list.active {
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
}
.sidebar-widget-list.active span {
    color: var(--it-common-white);
}
.sidebar-widget-list:hover {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}
.sidebar-widget-list:hover span {
    color: var(--it-common-white);
}
.sidebar-widget-quote {
    padding: 50px 60px;
    padding-bottom: 40px;
    border-radius: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .sidebar-widget-quote {
        padding: 50px 20px;
        padding-bottom: 40px;
    }
}
.sidebar-widget-quote h5 {
    font-weight: 600;
    font-size: 25px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--it-ff-body);
}
.sidebar-widget-quote span {
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    display: block;
    margin-bottom: 25px;
}
.sidebar-widget-quote .quote-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0.7;
    mix-blend-mode: luminosity;
}
.sidebar-widget-social a {
    height: 52px;
    width: 52px;
    line-height: 52px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #F2EBE9;
    transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .sidebar-widget-social a {
        height: 44px;
        width: 44px;
        line-height: 44px;
    }
}
.sidebar-widget-social a:not(:last-child) {
    margin-right: 10px;
}
.sidebar-widget-social a:hover {
    border: 1px solid var(--it-theme-1);
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
}
.sidebar-widget-post ul li {
    list-style-type: none;
}
.sidebar-widget-post ul li:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(121, 121, 121, 0.2);
}
.sidebar-search-box input {
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding-left: 25px;
    text-transform: capitalize;
    padding-right: 60px;
    color: var(--it-common-black);
    background-color: var(--it-common-white);
    border-radius: 10px;
    border: 1px solid rgba(98, 94, 88, 0.1);
}
.sidebar-search-box input::placeholder {
    font-weight: 400;
    font-size: 16px;
}
.sidebar-search-box input:focus {
    border: 1px solid var(--it-theme-1);
}
.sidebar-search-button button {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 991px) {
    .sidebar-right {
        margin-top: 40px;
    }
}

.categories a {
    position: relative;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 700;
    display: block;
    color: #8A879F;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: 0.3s;
}
.categories a:hover {
    color: var(--it-common-black);
}
.categories a:hover i {
    right: -5px;
}
.categories a i {
    position: absolute;
    right: 0;
    transition: 0.3s;
}

.tagcloud a {
    display: block;
    line-height: 1;
    padding: 20px;
    margin-bottom: 10px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(121, 121, 121, 0.2);
    border-radius: 10px;
    transition: all .3s;
    text-align: center;
}
.tagcloud a:last-child {
    margin-bottom: 0;
}
.tagcloud a:hover {
    border-color: var(--it-theme-1);
    transition: all .3s;
}
.tagcloud img {width: 100%;height: 60px;object-fit: contain;margin-bottom: 20px;border-bottom: 1px solid rgba(121, 121, 121, 0.2);padding-bottom: 20px;}
.tagcloud .title {
    font-weight: 600;
    font-size: 17px;
    margin: 0;
}

.rc-post-thumb img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.rc-post-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.56;
    margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .rc-post-title {
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .rc-post-title {
        font-size: 15px;
    }
    .rc-post-title br {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .rc-post-title {
        font-size: 18px;
    }
}
.rc-meta i {
    margin-right: 5px;
}

/*----------------------------------------*/
/*  31. solution css start
/*----------------------------------------*/
.it-solution-text {
    margin-right: 83px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-solution-text {
        margin-right: 0;
    }
}
.it-solution-text p {
    padding-bottom: 42px;
    margin-bottom: 45px;
    border-bottom: 1px solid #D9D9D9;
    position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-solution-text p br {
        display: none;
    }
}
.it-solution-text p::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 126px;
    height: 2px;
    content: "";
    background-color: var(--it-theme-1);
}
.it-solution-left .it-slider-2-contact span {
    background-color: #F2F8F5;
    border: 1px solid rgba(98, 94, 88, 0.1);
}
.it-solution-list-box.box-col-2 {
    transform: translateX(-20px);
}
@media (max-width: 767px) {
    .it-solution-list-box.box-col-2 {
        margin-top: 30px;
        transform: translateX(0);
    }
}
.it-solution-list-box span {
    font-weight: 600;
    font-size: 20px;
    display: block;
    margin-bottom: 20px;
    color: var(--it-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-list-box span {
        font-size: 16px;
    }
}
.it-solution-list-box ul li {
    list-style-type: none;
    padding-left: 30px;
    position: relative;
    display: block;
    font-weight: 500;
}
.it-solution-list-box ul li:not(:last-child) {
    margin-bottom: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-list-box ul li {
        font-size: 14px;
        padding-left: 26px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-solution-list-box ul li {
        font-size: 16px;
    }
}
.it-solution-list-box ul li svg, .it-solution-list-box ul li i {
    position: absolute;
    top: -1px;
    left: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-list-box ul li svg, .it-solution-list-box ul li i {
        width: 15px;
    }
}
.it-solution-thumb {
    margin-left: -30px;
    overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-solution-thumb {
        margin-left: 0;
        margin-top: 50px;
    }
}
.it-solution-thumb img {
    transform: scale(1.04) translateX(-1%);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .it-solution-thumb img {
        width: 100%;
    }
}
.it-solution-thumb:hover img {
    transform: scale(1.04) translateX(1%);
}
@media (max-width: 767px) {
    .it-solution-btn {
        flex-wrap: wrap;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-solution-btn {
        flex-wrap: nowrap;
    }
}
@media (max-width: 767px) {
    .it-solution-btn .it-btn-theme.mr-30 {
        margin-bottom: 25px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-solution-btn .it-btn-theme.mr-30 {
        margin-bottom: 0;
    }
}

.gallery-area {
    position: relative;
}
.gallery-area a {
    margin-top: 30px;
    display: block;
    transition: all .3s;
}
.gallery-area a.document {
    padding: 15px;
    background-color: #f3f3f3;
    border-radius: 10px;
    font-size: 3rem;
    text-align: center;
    line-height: 1;
}
.gallery-area a.video {
    padding: 15px;
    background-color: #ffe7e8;
    color: #c11f26;
    border-radius: 10px;
    font-size: 3rem;
    text-align: center;
    line-height: 1;
}
.gallery-area a:hover {
    transform: translateY(-10px);
    transition: all .3s;
}
.gallery-area a img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--it-gray-1);
}

.product-images {
    position: relative;
}
.product-images .item {
    display: block;
    margin-bottom: 30px;
    border: 1px solid #f6f6f6;
    border-radius: 10px;
    padding: 10px;
}
.product-images .item:last-child {
    margin-bottom: 0;
}
.product-images .item img {
    width: 100%;
}

.files-area {
    position: relative;
    margin-top: 15px;
}
.files-area .item {
    display: block;
    margin-top: 25px;
    padding: 20px;
    background-color: rgba(0,0,0,.02);
    border: 1px solid var(--it-gray-1);
    border-radius: 10px;
    transition: all .3s;
    position: relative;
}
.files-area .item:hover {
    border-color: var(--it-theme-1);
    transition: all .3s;
}
.files-area .item .product-name {
    position: absolute;
    top: -13px;
    background-color: var(--it-gray-1);
    padding: 5px;
    font-size: 13px;
    margin-left: -5px;
    border-radius: 5px;
}
.files-area .item .title {
    font-size: 20px;
}

.footer-title {
    font-size: 18px;
    line-height: 1;
    color: var(--it-common-white);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: 10px;
}

.form-error, .form-error p {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    font-style: italic;
    color: red;
}

.search-list {
    position: relative;
}
.search-list .group {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}
.search-list .group .title {
    font-size: 25px;
    border-bottom: 1px solid #e8e8e8;
    line-height: 1;
    padding-bottom: 20px;
}
.search-list .group .item {
    margin-bottom: 30px;
}
.search-list .group .item:last-child {
    margin-bottom: 0;
}
.search-list .group .item .item-title {
    font-size: 18px;
    font-weight: 500;
}
.search-list .group .item .content {
    font-size: 14px;
    line-height: 1.5;
    color: #7e7e7e;
    margin-bottom: 20px;
}
.search-list .group .item:last-child .content {
    margin-bottom: 0;
}
.search-list .group .item strong {
    background-color: #e91818;
    color: #fff;
}
.search-list .group .item .button-style2 {
    padding: 3px 10px;
    font-size: 15px;
}

.category-desc {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.category-desc .inner {
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #7e7e7e;
    position: relative;
}
.category-desc .inner.small {
    height: 53px;
}
.category-desc .inner.small:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, #ffffff, transparent);
}
.category-desc .inner p {
    font-size: 13px;
    line-height: 1.4;
}
.category-desc .inner p:last-child {
    margin-bottom: 0;
}
.category-desc .category-desc-action {
    cursor: pointer;
    font-size: 13px;
    color: #fff;
    background-color: var(--it-text-body);
    padding: 2px 5px;
    border-radius: 4px;
    display: inline-block;
}