:root {
    /**
  @font family declaration
  */
    --it-ff-body: 'Roboto', sans-serif;
    --it-ff-heading: 'Roboto', sans-serif;
    --it-ff-fontawesome: Font Awesome 6 Pro;
    /**
  @color declaration
  */
    --it-common-white: #ffffff;
    --it-common-black: #04171a;
    --it-common-black-2: #181818;
    --it-heading-primary: #04171a;
    --it-grey-1: #f5f3ee;
    --it-grey-2: #e2e2dd;
    --it-grey-3: #757a7b;
    --it-grey-4: #f3f3f3;
    --it-grey-5: #f2f2f2;
    --it-text-body: #7b8789;
    --it-theme-1: #f9be17;
    --it-theme-2: #00242a;
    --it-theme-3: #ff3838;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}

.container-large {
    max-width: 1285px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/

body {
    font-family: var(--it-ff-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--it-text-body);
    line-height: 1.3;
    overflow-x: hidden;
}

body.monserat {
    font-family: var(--it-ff-monserat);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--it-ff-heading);
    color: var(--it-heading-primary);
    margin-top: 0px;
    font-weight: 700;
    line-height: 1.1;
    -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%;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
}

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

.z-index {
    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;
}

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

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 {
    outline: none;
    color: var(--it-common-black);
    height: 60px;
    line-height: 60px;
    width: 100%;
    padding: 0 30px;
}

input::-webkit-input-placeholder {
    color: #757a7b;
}

input:-moz-placeholder {
    color: #757a7b;
}

input::-moz-placeholder {
    color: #757a7b;
}

input:-ms-input-placeholder {
    color: #757a7b;
}

textarea {
    outline: none;
    color: var(--it-common-black);
    width: 100%;
    padding: 0 30px;
}

textarea::-webkit-input-placeholder {
    color: #757a7b;
}

textarea:-moz-placeholder {
    color: #757a7b;
}

textarea::-moz-placeholder {
    color: #757a7b;
}

textarea:-ms-input-placeholder {
    color: #757a7b;
}

input[type=color] {
    appearance: none;
    -moz-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);
    font-size: var(--it-fz-body);
    opacity: 1;
}

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

/*---------------------------------
    common classes css start 
---------------------------------*/

.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

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

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

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

.gx-50 {
    --bs-gutter-x: 12px;
}

.gx-60 {
    --bs-gutter-x: 65px;
}

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

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

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

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .gx-60 {
        --bs-gutter-x: 40px;
    }
}

/*--
    - Spacing
-----------------------------------------*/

.it-btn {
    display: inline-block;
    background-color: var(--it-theme-1);
    height: 60px;
    line-height: 60px;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--it-common-black);
    position: relative;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.it-btn span {
    position: relative;
    z-index: 2;
}

.it-btn::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-common-white);
    transition: all 500ms ease-in-out;
}

.it-btn.hover-2::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-common-black);
    transition: all 500ms ease-in-out;
}

.it-btn.hover-2:hover {
    color: var(--it-common-white);
}

.it-btn.hover-2:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

@media (max-width: 767px) {
    .it-btn {
        font-size: 12px;
    }
}

.it-btn:hover {
    color: var(--it-common-black);
}

.it-btn:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

.it-black-btn {
    display: inline-block;
    background-color: var(--it-common-black);
    height: 60px;
    line-height: 60px;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: var(--it-common-white);
}

.it-black-btn span {
    position: relative;
    z-index: 2;
}

.it-black-btn.hover-2::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-theme-3);
    transition: all 500ms ease-in-out;
}

.it-black-btn.hover-2:hover {
    color: var(--it-common-white);
}

.it-black-btn.hover-2:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

.it-black-btn::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-common-white);
    transition: all 500ms ease-in-out;
}

.it-black-btn:hover {
    color: var(--it-common-black);
}

.it-black-btn:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

@media (max-width: 767px) {
    .it-black-btn {
        font-size: 12px;
    }
}

.it-black-sm-btn {
    display: inline-block;
    background-color: var(--it-common-black);
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--it-common-white);
    position: relative;
}

.it-black-sm-btn span {
    position: relative;
    z-index: 2;
}

.it-black-sm-btn::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-common-white);
    transition: all 500ms ease-in-out;
}

.it-black-sm-btn:hover {
    color: var(--it-common-black);
}

.it-black-sm-btn:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

@media (max-width: 767px) {
    .it-black-sm-btn {
        font-size: 12px;
    }
}

.it-red-btn {
    display: inline-block;
    background-color: var(--it-theme-3);
    height: 60px;
    line-height: 60px;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--it-common-white);
    position: relative;
}

@media (max-width: 767px) {
    .it-red-btn {
        font-size: 12px;
    }
}

.it-red-btn span {
    position: relative;
    z-index: 2;
}

.it-red-btn::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-common-white);
    transition: all 500ms ease-in-out;
}

.it-red-btn:hover {
    color: var(--it-common-black);
}

.it-red-btn:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

.it-red-btn.hover-2::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-common-black);
    transition: all 500ms ease-in-out;
}

.it-red-btn.hover-2:hover {
    color: var(--it-common-white);
}

.it-red-btn.hover-2:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

.it-border-btn {
    display: inline-block;
    border: 1px solid #c9c4c4;
    height: 60px;
    line-height: 60px;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--it-theme-3);
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-border-btn {
        padding: 0 35px;
        font-size: 13px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-border-btn {
        padding: 0 35px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .it-border-btn {
        font-size: 12px;
    }
}

.it-border-btn span {
    position: relative;
    z-index: 2;
}

.it-border-btn::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-theme-3);
    transition: all 500ms ease-in-out;
}

.it-border-btn:hover {
    color: var(--it-common-white);
    border: 1px solid transparent;
}

.it-border-btn:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

.it-white-btn {
    display: inline-block;
    background-color: #FFF;
    height: 60px;
    line-height: 60px;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--it-theme-3);
    position: relative;
}

.it-white-btn span {
    position: relative;
    z-index: 2;
}

.it-white-btn.hover-2::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-common-black);
    transition: all 500ms ease-in-out;
}

.it-white-btn.hover-2:hover {
    color: var(--it-common-white);
}

.it-white-btn.hover-2:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

@media (max-width: 767px) {
    .it-white-btn {
        font-size: 12px;
    }
}

.it-grey-btn {
    display: inline-block;
    background-color: #f5efef;
    height: 60px;
    line-height: 60px;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--it-theme-3);
    position: relative;
}

@media (max-width: 767px) {
    .it-grey-btn {
        font-size: 12px;
    }
}

.it-grey-btn span {
    position: relative;
    z-index: 2;
}

.it-grey-btn::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-theme-3);
    transition: all 500ms ease-in-out;
}

.it-grey-btn:hover {
    color: var(--it-common-white);
}

.it-grey-btn:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

.it-grey-btn-2 {
    display: inline-block;
    background-color: #f5efef;
    height: 60px;
    line-height: 60px;
    padding: 0 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--it-common-black);
    position: relative;
}

.it-grey-btn-2 span {
    position: relative;
    z-index: 2;
}

.it-grey-btn-2.hover-2::after {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0%;
    height: 100%;
    content: "";
    background: var(--it-common-black);
    transition: all 500ms ease-in-out;
}

.it-grey-btn-2.hover-2:hover {
    color: var(--it-common-white);
}

.it-grey-btn-2.hover-2:hover::after {
    left: 0%;
    right: auto;
    width: 100%;
}

@media (max-width: 767px) {
    .it-grey-btn-2 {
        font-size: 12px;
    }
}

/* pulse effect animation */

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes circle-animations {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes itupdown {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes ittranslateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes section-animation {
    0% {
        width: 0;
    }
    15% {
        width: 100%;
    }
    85% {
        opacity: 1;
    }
    90% {
        width: 100%;
        opacity: 0;
    }
    to {
        width: 0;
        opacity: 0;
    }
}

@keyframes about-sm {
    100% {
        transform: translateY(60px);
    }
    100% {
        transform: translateY(50px);
    }
}

@keyframes hero-thumb-animation {
    0% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes itleftright {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes itrotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes ittranslateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(8px);
        -moz-transform: translateY(8px);
        -ms-transform: translateY(8px);
        -o-transform: translateY(8px);
        transform: translateY(8px);
    }
}

@keyframes RL_smooth {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slide_up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes ittranslateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes scale_up_down {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0px;
        stroke-dasharray: 3000;
    }
}

@keyframes itupdown {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes itswing {
    0% {
        -webkit-transform: rotate(6deg);
        -moz-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
        -o-transform: rotate(6deg);
        transform: rotate(6deg);
    }
    100% {
        -webkit-transform: rotate(-6deg);
        -moz-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
        -o-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
}

@keyframes borderanimate2 {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes about-circle {
    0% {
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes services-triangle {
    0% {
        -webkit-transform: rotate(0deg) translateX(-50px);
        -moz-transform: rotate(0deg) translateX(-50px);
        -ms-transform: rotate(0deg) translateX(-50px);
        -o-transform: rotate(0deg) translateX(-50px);
        transform: rotate(0deg) translateX(-50px);
    }
    100% {
        -webkit-transform: rotate(360deg) translateY(100px);
        -moz-transform: rotate(360deg) translateY(100px);
        -ms-transform: rotate(360deg) translateY(100px);
        -o-transform: rotate(360deg) translateY(100px);
        transform: rotate(360deg) translateY(100px);
    }
}

@keyframes hero-3-dot-2 {
    0% {
        transform: translateY(-50px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes tfLeftToRight {
    49% {
        transform: translateX(60%);
    }
    50% {
        opacity: 0;
        transform: translateX(-60%);
    }
    51% {
        opacity: 1;
    }
}

@keyframes rotate2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translateX(-50px);
    }
    50% {
        transform: translatey(-40px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes leftright {
    0% {
        transform: translatex(0);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes movinglight {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translateX(-70px);
    }
    50% {
        transform: translatey(-70px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes movinglight2 {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translateX(70px);
    }
    50% {
        transform: translatey(70px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes movingtop {
    0% {
        transform: translatey(0px);
    }
    20% {
        transform: translatey(70px);
    }
    50% {
        transform: translatey(-70px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes circle-animation {
    0% {
        right: 0;
    }
    50% {
        right: 100%;
    }
    100% {
        right: 0%;
    }
}

@keyframes circle-animation-2 {
    0% {
        left: 0;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 0%;
    }
}

@keyframes animationglob {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.5);
    }
}

@keyframes zoom2 {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}

@keyframes wobble-vertical {
    10% {
        transform: translateY(-10px);
    }
    50% {
        transform: skew(15deg);
    }
    80% {
        transform: rotate(10deg);
    }
    100% {
        transform: translate(0);
    }
}

@-webkit-keyframes section-highlight {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-moz-keyframes section-highlight {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-ms-keyframes section-highlight {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes section-highlight {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes widthcalc {
    0% {
        width: 20%;
    }
    50% {
        width: 50%;
    }
    75% {
        width: 90%;
    }
    90% {
        opacity: 75%;
    }
    90% {
        opacity: 100%;
    }
}

/* right bounce */

@keyframes bounceRight {
    0%,
    20%,
    50%,
    80%,
    100% {
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -ms-transform: translateY(-35px);
        transform: translateY(-35px);
    }
    60% {
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* /right bounce */

@keyframes icon-bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes light-one {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
    75% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

/*--- preloader ---*/

.dark #preloader {
    background-color: var(--it-theme-3);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f7f7f7;
    z-index: 999999;
}

.preloader {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
}

.preloader span {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--it-theme-1);
    -webkit-animation: preloader 1.3s linear infinite;
    animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
}

@keyframes preloader {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes preloader {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}

/*--- end of preloader ---*/

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

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

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

/*Background color
/*-----------------------------------------*/

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

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

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

.grey-bg-2 {
    background: var(--it-grey-4);
}

.grey-bg-3 {
    background: var(--it-grey-5);
}

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

.red-bg {
    background: var(--it-theme-3);
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 24, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
}

.body-overlay.apply {
    opacity: 1;
    visibility: visible;
}

.body-overlay:hover {
    cursor: url(../img/cross-out.png), pointer;
}

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

.itoffcanvas {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    right: -100%;
    width: 580px;
    bottom: 0;
    box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
    background-color: var(--it-common-black);
    z-index: 9999;
    padding: 50px;
    padding-top: 100px;
    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: 300px;
        padding: 40px 35px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .itoffcanvas {
        width: 400px;
        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: 40px;
}

@media (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .itoffcanvas__logo {
        padding-top: 0;
    }
}

.itoffcanvas__logo img {
    width: 100%;
    height: 100%;
}

.itoffcanvas__close-btn button {
    font-size: 35px;
    color: white;
    position: absolute;
    right: 50px;
    top: 42px;
    transition: 1s;
    font-weight: 300;
    opacity: 0.8;
    -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;
}

@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;
		right: 20px;
		top: 15px;
	}
}

.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.color-red a:hover {
    color: var(--it-common-white);
    background-color: var(--it-theme-3);
}

.itoffcanvas__social .social-icon a {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    background-color: var(--it-common-white);
    color: var(--it-common-black);
    margin-right: 15px;
    transition: 0.3s;
    display: inline-block;
    border-radius: 10px;
}

@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-black);
}

.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 {
    border-bottom: 1px solid #3b3838;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.itoffcanvas__info .offcanva-title {
    color: var(--it-common-white);
    margin: 30px 0 40px 0;
    font-size: 20px;
    font-weight: 600;
}

.itoffcanvas__info-icon.red-color a {
    color: var(--it-common-white);
    background-color: var(--it-theme-3);
}

.itoffcanvas__info-icon a {
    height: 50px;
    width: 50px;
    background-color: #f37336;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 21px;
    margin-right: 20px;
}

.itoffcanvas__info-address.red-color a:hover {
    color: var(--it-theme-3);
}

.itoffcanvas__info-address span {
    display: block;
    color: rgba(255, 255, 255, 0.6392156863);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2px;
}

.itoffcanvas__info-address a {
    display: block;
    color: var(--it-common-white);
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .itoffcanvas__info-address a {
        font-size: 16px;
    }
}

.itoffcanvas__info-address a:hover {
    color: var(--it-theme-1);
}

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

.it-offcanva-bottom-shape img {
    width: 100%;
}

.it-breadcrumb-height {
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

@media (max-width: 767px) {
    .it-breadcrumb-height {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .it-breadcrumb__content {
        text-align: center;
    }
}

.it-breadcrumb__shape-1 {
    position: absolute;
    top: -27%;
    left: 0;
    animation: moving 9s linear infinite;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-breadcrumb__shape-1 {
        left: -8%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-breadcrumb__shape-1 {
        display: none;
    }
}

.it-breadcrumb__shape-2 {
    position: absolute;
    top: -3px;
    right: 0%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-breadcrumb__shape-2 {
        right: -12%;
    }
}

@media (max-width: 767px) {
    .it-breadcrumb__shape-2 {
        display: none;
    }
}

.it-breadcrumb__shape-3 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-breadcrumb__shape-3 {
        right: -5%;
    }
}

@media (max-width: 767px) {
    .it-breadcrumb__shape-3 {
        display: none;
    }
}

.it-breadcrumb__shape-4 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-breadcrumb__shape-4 {
        right: -12%;
    }
}

@media (max-width: 767px) {
    .it-breadcrumb__shape-4 {
        display: none;
    }
}

@media (max-width: 767px) {
    .it-breadcrumb__section-box {
        text-align: center;
    }
}

.it-breadcrumb__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: var(--it-common-white);
    margin-bottom: 0;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .it-breadcrumb__title {
        font-size: 30px;
    }
}

.it-breadcrumb__list {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.102);
    margin-bottom: 20px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-breadcrumb__list {
        padding: 6px 20px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-breadcrumb__list {
        padding: 6px 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-breadcrumb__list {
        padding: 6px 20px;
    }
}

.it-breadcrumb__list span {
    font-size: 16px;
    font-weight: 400;
    color: var(--it-common-white);
    text-transform: uppercase;
    opacity: 85%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-breadcrumb__list span {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-breadcrumb__list span {
        font-size: 14px;
    }
}

.it-breadcrumb__list span.color {
    color: var(--it-theme-1);
}

.it-custom-accordion .accordion-items {
    margin-bottom: 10px;
    box-shadow: 2px 3.464px 20px 0px rgba(16, 23, 40, 0.06);
    background-color: var(--it-common-white);
}

.it-custom-accordion .accordion-buttons {
    position: relative;
    width: 100%;
    padding: 22px 30px;
    font-weight: 700;
    font-size: 18px;
    color: var(--it-common-black);
    text-align: left;
    padding-left: 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-custom-accordion .accordion-buttons {
        font-size: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-custom-accordion .accordion-buttons {
        font-size: 19px;
    }
}

.it-custom-accordion .accordion-buttons::after {
    position: absolute;
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
    background-image: none;
    top: 21px;
    left: 30px;
    width: auto;
    height: auto;
    font-weight: 400;
    font-size: 12px;
    opacity: 1;
    height: 25px;
    width: 25px;
    line-height: 25px;
    border-radius: 50%;
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
    text-align: center;
}

.it-custom-accordion .accordion-buttons.collapsed::after {
    content: "\f067";
}

.it-custom-accordion .collapsed {
    border-radius: 16px 16px 16px 16px;
    position: relative;
    z-index: 1;
}

.it-custom-accordion .accordion-body {
    border-top: 1px solid rgba(6, 7, 40, 0.1);
    background-color: var(--tp-common-white);
    padding: 23px 0;
    padding-bottom: 30px;
    margin: 0px 40px;
    position: relative;
    z-index: 1;
    border-radius: 0 0px 16px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #696A7E;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-custom-accordion .accordion-body {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-custom-accordion .accordion-body {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-custom-accordion .accordion-body {
        font-size: 14px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-custom-accordion .accordion-body {
        font-size: 15px;
    }
}

.it-custom-accordion-2 .accordion-items {
    margin-bottom: 10px;
    box-shadow: 2px 3.464px 20px 0px rgba(16, 23, 40, 0.06);
    background-color: #FFF;
}

.it-custom-accordion-2 .accordion-buttons {
    position: relative;
    width: 100%;
    padding: 22px 30px;
    border: 1px solid var(--tp-border-4);
    font-weight: 700;
    font-size: 18px;
    color: var(--tp-common-black);
    text-align: left;
    padding-left: 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-custom-accordion-2 .accordion-buttons {
        font-size: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-custom-accordion-2 .accordion-buttons {
        font-size: 19px;
    }
}

.it-custom-accordion-2 .accordion-buttons::after {
    position: absolute;
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
    background-image: none;
    top: 21px;
    left: 30px;
    width: auto;
    height: auto;
    font-weight: 400;
    font-size: 12px;
    opacity: 1;
    height: 25px;
    width: 25px;
    line-height: 25px;
    border-radius: 50%;
    background-color: var(--it-theme-3);
    color: var(--it-common-white);
    text-align: center;
}

.it-custom-accordion-2 .accordion-buttons.collapsed::after {
    content: "\f067";
}

.it-custom-accordion-2 .collapsed {
    border-radius: 16px 16px 16px 16px;
    position: relative;
    z-index: 99;
}

.it-custom-accordion-2 .accordion-body {
    border-top: 1px solid rgba(6, 7, 40, 0.1);
    background-color: var(--tp-common-white);
    padding: 23px 0;
    padding-bottom: 30px;
    margin: 0px 40px;
    position: relative;
    z-index: 1;
    border-radius: 0 0px 16px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #696A7E;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-custom-accordion-2 .accordion-body {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-custom-accordion-2 .accordion-body {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-custom-accordion-2 .accordion-body {
        font-size: 14px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-custom-accordion-2 .accordion-body {
        font-size: 15px;
    }
}

.trust-logo {
    text-align: center;
    margin-top: 20px;
}

.trust-logo img {
    max-width: 300px;
    display: inline-block;
    margin-left: 65px;
}

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

/*  SEARCH CSS START
/*----------------------------------------*/

.search__popup {
    padding-top: 70px;
    padding-bottom: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    -webkit-transform: translateY(calc(-100% - 80px));
    -moz-transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(calc(-100% - 80px));
    -o-transform: translateY(calc(-100% - 80px));
    transform: translateY(calc(-100% - 80px));
    -webkit-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    -moz-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    transition-delay: 0.7s;
}

.search__popup.search-opened {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    transition-delay: 0s;
}

.search__popup.search-opened .search__input {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
}

.search__popup.search-opened .search__input::after {
    width: 100%;
    transition-delay: 0.5s;
}

.search__popup-2 {
    background-color: var(--it-common-black-13);
}

.search__popup-2 .search__input .search-input-field~.search-focus-border {
    background-color: var(--it-theme-8);
}

.search__popup-3 .search__input .search-input-field~.search-focus-border {
    background-color: var(--it-theme-10);
}

.search__top {
    margin-bottom: 80px;
}

.search__input {
    position: relative;
    height: 80px;
    transition-delay: 0.5s;
    opacity: 0;
}

.search__input::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transition-delay: 0.3s;
}

.search__input input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 24px;
    color: var(--it-common-white);
    border-bottom: 1px solid transparent;
    padding: 0;
    padding-right: 30px;
}

.search__input input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.search__input input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.search__input input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.search__input input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.search__input button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--it-common-white);
}

.search__input .search-input-field~.search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--it-common-orange);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.search__input .search-input-field:focus~.search-focus-border {
    width: 100%;
    left: 0;
    right: auto;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.search__close-btn {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.3);
}

.search__close-btn:hover {
    color: var(--it-common-white);
}

.search__result-title {
    font-size: 50px;
    letter-spacing: -0.04em;
    margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .search__result-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .search__result-title {
        font-size: 35px;
    }
}

.search__result-title span {
    color: var(--it-theme-1);
    display: inline-block;
}

.search__result-content p {
    font-size: 16px;
    line-height: 1.62;
    color: var(--it-text-1);
}

.search__result-input {
    position: relative;
}

.search__result-input-box {
    position: relative;
    margin-bottom: 20px;
}

.search__result-input-box button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 22px 43px;
}

@media (max-width: 767px) {
    .search__result-input-box button {
        position: relative;
        margin-top: 15px;
    }
}

.search__result-input-box button:hover {
    background-color: var(--it-common-black);
}

.search__result-input input {
    width: 100%;
    height: 70px;
    padding-left: 60px;
    padding-right: 177px;
    background-color: var(--it-common-white);
    border: 1px solid var(--it-common-white);
    box-shadow: -3px 0px 0px var(--it-theme-1), 0px 1px 2px rgba(3, 4, 28, 0.14);
}

@media (max-width: 767px) {
    .search__result-input input {
        padding-right: 25px;
    }
}

.search__result-input span {
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: #A0A0B5;
}

.search__result-input span svg {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.search__result-tags a {
    display: inline-block;
    font-family: var(--it-ff-space);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #D5D5DD;
    padding: 5px 18px;
    line-height: 1;
    margin-right: 2px;
    margin-bottom: 7px;
}

.search__result-tags a:hover {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}

.search__blog-item {
    padding: 50px 50px;
    border: 1px solid #EAEAEF;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search__blog-item {
        padding: 30px 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search__blog-item {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .search__blog-item {
        padding: 20px;
    }
}

.search__blog-title {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin-bottom: 13px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search__blog-title {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search__blog-title {
        font-size: 21px;
    }
    .search__blog-title br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 767px) {
    .search__blog-title br {
        display: none;
    }
}

@media (max-width: 767px) {
    .search__blog-title {
        font-size: 25px;
    }
}

.search__blog-title a:hover {
    color: var(--it-theme-1);
}

.search__blog-tag {
    margin-bottom: 10px;
}

.search__blog-tag a {
    display: inline-block;
    background-color: rgba(99, 100, 219, 0.06);
    font-family: var(--it-ff-space);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    color: var(--it-common-purple);
    padding: 4px 12px;
}

.search__blog-tag a:hover {
    background-color: var(--it-common-purple);
    color: var(--it-common-white);
}

.search__blog-meta span {
    color: var(--it-text-1);
    margin-right: 15px;
    margin-bottom: 10px;
    display: inline-block;
}

.search__blog-meta span i,
.search__blog-meta span svg {
    margin-right: 2px;
}

.search__blog-meta span svg {
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

.search__blog-meta span svg path {
    stroke: #7A7E83;
}

.search__blog-meta-author {
    margin-bottom: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search__blog-meta-author {
        margin-right: 20px;
    }
}

.search__blog-meta-author-thumb img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 10px;
}

.search__blog-meta-author-content span {
    display: inline-block;
    font-family: var(--it-ff-inter);
    font-size: 14px;
    color: #7A7E83;
}

.search__blog-meta-author-content span a {
    color: var(--it-common-black-11);
    font-weight: 500;
}

.search__blog-meta-author-content span a:hover {
    color: var(--it-theme-1);
}

.search__blog-content p {
    font-size: 15px;
    line-height: 1.47;
    color: var(--it-text-1);
    margin-bottom: 20px;
}

.search__blog-btn .it-btn-border {
    padding: 8px 29px;
}

.search__blog-btn .it-btn-border svg,
.search__blog-btn .it-btn-border i {
    margin-left: 5px;
}

.search__blog-btn .it-btn-border svg {
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

.search__blog-btn .it-btn-border:hover {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}

.it-section-subtitle {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: var(--it-grey-3);
    text-transform: uppercase;
    padding-bottom: 15px;
}

.it-section-subtitle::before {
    content: "";
    height: 2px;
    width: 20px;
    background-color: var(--it-theme-1);
    display: inline-block;
    margin-right: 10px;
    transform: translateY(-4px);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-section-subtitle {
        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-section-subtitle {
        font-size: 12px;
    }
}

.it-section-border-subtitle {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: var(--it-grey-3);
    text-transform: uppercase;
    padding-bottom: 15px;
}

.it-section-border-subtitle::before {
    content: "";
    height: 2px;
    width: 20px;
    background-color: var(--it-theme-1);
    display: inline-block;
    margin-right: 10px;
    transform: translateY(-4px);
}

.it-section-border-subtitle::after {
    content: "";
    height: 2px;
    width: 20px;
    background-color: var(--it-theme-1);
    display: inline-block;
    margin-left: 10px;
    transform: translateY(-4px);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-section-border-subtitle {
        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-section-border-subtitle {
        font-size: 12px;
    }
}

.it-section-subtitle-2 {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: var(--it-grey-3);
    text-transform: uppercase;
    padding-bottom: 15px;
}

.it-section-subtitle-2 em {
    margin-left: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-section-subtitle-2 {
        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-section-subtitle-2 {
        font-size: 12px;
    }
}

.it-section-subtitle-3 {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    color: var(--it-grey-3);
    text-transform: uppercase;
    padding-bottom: 15px;
}

.it-section-subtitle-3 em {
    margin-left: 15px;
}

.it-section-subtitle-3 em:first-child {
    margin-right: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-section-subtitle-3 {
        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-section-subtitle-3 {
        font-size: 13px;
    }
}

.it-section-subtitle-4 {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: var(--it-theme-3);
    text-transform: uppercase;
    padding-bottom: 15px;
}

.it-section-subtitle-4 em {
    margin-right: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-section-subtitle-4 {
        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-section-subtitle-4 {
        font-size: 13px;
    }
}

.it-section-subtitle-5 {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: var(--it-theme-3);
    text-transform: uppercase;
    padding-bottom: 15px;
}

.it-section-yellow-subtitle {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: var(--it-theme-1);
    text-transform: uppercase;
    padding-bottom: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-section-yellow-subtitle {
        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-section-yellow-subtitle {
        font-size: 12px;
    }
}

.it-section-yellow-subtitle::before {
    content: "";
    height: 2px;
    width: 20px;
    background-color: var(--it-common-white);
    display: inline-block;
    margin-right: 10px;
    transform: translateY(-4px);
}

.it-section-title {
    font-weight: 700;
    font-size: 48px;
    color: var(--it-common-black);
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-section-title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-section-title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-section-title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-section-title {
        font-size: 37px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-section-title {
        font-size: 36px;
    }
    .it-section-title br {
        display: none;
    }
}

@media (max-width: 767px) {
    .it-section-title {
        font-size: 31px;
    }
    .it-section-title br {
        display: none;
    }
}

/** slider title goes here **/

.it-slider-subtitle {
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    color: var(--it-common-white);
    text-transform: uppercase;
    padding-bottom: 13px;
}

@media (max-width: 767px) {
    .it-slider-subtitle {
        font-size: 12px;
    }
}

.it-slider-subtitle::before {
    content: "";
    height: 2px;
    width: 20px;
    background-color: var(--it-theme-1);
    display: inline-block;
    margin-right: 10px;
    transform: translateY(-4px);
}

.it-slider-title {
    font-weight: 700;
    font-size: 90px;
    color: var(--it-common-white);
    text-transform: capitalize;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-slider-title {
        font-size: 80px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-title {
        font-size: 75px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-title {
        font-size: 75px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-title {
        font-size: 65px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-title {
        font-size: 55px;
    }
    .it-slider-title br {
        display: none;
    }
}

@media (max-width: 767px) {
    .it-slider-title {
        font-size: 50px;
    }
    .it-slider-title br {
        display: none;
    }
}

.it-slider-2-title {
    font-weight: 700;
    font-size: 90px;
    color: var(--it-common-white);
    text-transform: capitalize;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-slider-2-title {
        font-size: 85px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-2-title {
        font-size: 86px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-2-title {
        font-size: 75px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-2-title {
        font-size: 65px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-2-title {
        font-size: 55px;
    }
    .it-slider-2-title br {
        display: none;
    }
}

@media (max-width: 767px) {
    .it-slider-2-title {
        font-size: 40px;
    }
    .it-slider-2-title br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-2-title {
        font-size: 43px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-slider-2-title {
        font-size: 39px;
    }
}

.it-slider-3-subtitle {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: var(--it-common-white);
    text-transform: uppercase;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .it-slider-3-subtitle {
        font-size: 12px;
    }
}

.it-slider-5-subtitle {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: #8f8f8f;
    text-transform: uppercase;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .it-slider-5-subtitle {
        font-size: 12px;
    }
}

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

/*  03. MEANMENU CSS START
/*----------------------------------------*/

.mobile-menu.mean-container {
    overflow: hidden;
}

@media (max-width: 767px) {
    .mobile-menu.mean-container {
        margin-bottom: 30px;
    }
}

.mobile-menu .sidebar-list {
    clear: both;
}

.mobile-menu .sidebar-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: var(--tp-common-white);
}

.mobile-menu .sidebar-list li::after {
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #c00;
    background-color: transparent;
    content: "";
    display: inline-block;
    position: absolute;
}

.mobile-menu .tp-sidebar-social {
    margin-top: 20px;
}

.mobile-menu .tp-sidebar-social a {
    margin-right: 5px;
    background-color: var(--tp-theme-primary);
    color: #fff;
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 14px;
    line-height: 34px;
}

.sidebar-title h3 {
    color: var(--tp-common-white);
}

/* mean menu customize */

.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 15px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--it-theme-1);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 10px;
    padding: 0 !important;
    line-height: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #fff;
    line-height: 30px;
    top: 0;
    font-weight: 400;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    color: var(--it-theme-1);
    border-color: #888888;
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
    color: var(--tp-theme-2);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    color: var(--tp-common-white);
}

.it-about-3__text h3 {
    font-size: 23px;
}

.it-about-3__text p {
    font-size: 17px;
    color: #000;
}

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

/*  18. header css start
/*----------------------------------------*/

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    width: 100%;
    z-index: 99;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
    background-color: var(--it-common-white);
}

.header-sticky .it-header__main-menu {
    margin-right: 0;
    margin-left: 550px;
}

.header-sticky .it-header__logo img {
    max-width: 300px !important;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .header-sticky .it-header__main-menu {
        margin-left: 500px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .header-sticky .it-header__main-menu {
        margin-left: 400px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .header-sticky .it-header__main-menu {
        margin-left: 400px;
    }
}

.it-top__space {
    padding: 3px 0;
    padding-left: 55px;
    padding-right: 45px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-top__space {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-top__space {
        padding-left: 20px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-top__space {
        padding-left: 20px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top__space {
        padding-left: 0px;
        padding-right: 0px;
    }
}

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

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top__left-box ul li:nth-child(2) {
        display: none;
    }
}

.it-top__left-box ul li:not(:last-child) {
    padding-right: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top__left-box ul li:not(:last-child) {
        padding-right: 35px;
    }
}

.it-top__left-box ul li i {
    font-size: 17px;
    color: var(--it-common-white);
    display: inline-block;
    transform: translateY(0px);
    padding-right: 2px;
}

.it-top__left-box ul li a {
    font-size: 16px;
    transition: 0.3s;
}

.it-top__left-box ul li.anounsment {
    display: flex;
    width: 100%;
    align-items: center;
}

.anounsment p {
    color: #fff;
    margin-bottom: 0;
}

.anounsment p a {
    font-weight: 600;
    text-decoration: underline;
    font-size: 14px !important;
}

.heading { width:31%}

.heading {
    color: #fff;
    font-weight: 600;
    padding-right: 8px;
    border-right: 1px solid #fff;
    margin-right: 8px;
}

.head_news {
	width:80%
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top__left-box ul li a {
		font-size: 17px;
		color: #fff;
	}
}

.it-top__left-box ul li a:hover {
    color: var(--it-common-white);
}

.it-top__social-box li {
    display: inline-block;
    padding: 7px 10px;
}

.it-top__social-box li:last-child {
    padding-right: 0;
}

.it-top__social-box li a {
    font-size: 16px;
    color: var(--it-common-white);
    transition: 0.3s;
    font-weight: 600;
}

.it-top__social-box li a:hover {
    color: var(--it-theme-1);
}

.it-top__social-box li span {
    font-size: 16px;
    padding-right: 10px;
    display: inline-block;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top__social-box li span {
        font-size: 14px;
    }
}

.it-header__space {
    padding-left: 55px;
    padding-right: 45px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header__space {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header__space {
        padding-left: 20px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-header__space {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header__space {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.it-header__right-wrapper {
    padding-left: 650px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header__right-wrapper {
        padding-left: 600px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header__right-wrapper {
		padding-left: 530px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header__right-wrapper {
		padding-left: 540px;
	}
	.heading {
		width: 30%;
		font-size: 14px;
	}
	.it-header__main-menu ul li>a {
		font-size: 16px !important;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
	.it-header__logo img {
		max-width: 450px !important;
	}
	.it-header__right-wrapper {
		padding-left: 490px;
	}
	.it-header__main-menu ul li>a {
		font-size: 15px !important;
	}
	.it-header__main-menu ul li {
		padding: 0 5px !important;
	}
	.it-header__space {
		padding-left: 0px;
		padding-right: 0px;
	}
	.heading {
		width: 34%;
		font-size: 14px;
	}
}

.black-custom {
	background:#ff9800
}
.black-custom2 {
	background:#a34898
}


@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__right-wrapper {
        padding-left: 0px;
    }
}

.it-header__logo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    padding: 15px 61px;
	background: #ffffff;
	

}

.header_color {
    background-color: #ffffff;
}

.it-top__area {
    background: #a34898;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 2% 100%, 0% 0%);
}

.it-header__logo img {
    max-width: 500px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header__logo {
        padding: 15px 45px;
    }
}

@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-header__logo {
		padding: 10px 15px;
	}
}

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

.it-header__main-menu ul li {
    display: inline-block;
    list-style: none;
    position: relative;
    padding: 0 21px;
}

.it-header__main-menu ul li .submenu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 260px;
    text-align: left;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9;
    background-color: var(--it-common-white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.it-header__main-menu ul li .submenu li {
    padding: 0;
    display: block;
    margin-bottom: 15px;
}

.it-header__main-menu ul li .submenu li:last-child {
    margin-bottom: 0;
}

.it-header__main-menu ul li .submenu li>a {
    display: inline-block;
    padding: 0;
    color: var(--it-common-black);
    transition: 0.3s;
    text-transform: capitalize;
    position: relative;
    font-size: 17px;
}

.it-header__main-menu ul li .submenu li>a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    left: auto;
    height: 2px;
    width: 0;
    background-color: #ff9800;
    transition: 0.7s;
    display: inline-block;
}

.it-header__main-menu ul li .submenu li>a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header__main-menu ul li {
        padding: 0 16px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header__main-menu ul li {
        padding: 0 8px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header__main-menu ul li {
        padding: 0 9px;
    }
}

.it-header__main-menu ul li.has-dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    font-size: 16px;
    margin-left: 5px;
    font-weight: 400;
    transition: 0.3s;
    transform: translateY(1px);
}

.it-header__main-menu ul li:first-child {
    padding-left: 0;
}

.it-header__main-menu ul li:last-child {
    padding-right: 0;
}

.it-header__main-menu ul li>a {
    font-weight: 500;
    font-size: 17px;
    padding: 30px 0;
    display: inline-block;
    transition: 0.3s;
    color: #000;
}

.it-header__main-menu ul li:hover.has-dropdown::after {
    transform: rotate(-180deg);
    color: #ff9800;
}

.it-header__main-menu ul li:hover a {
    color: #ff9800;
}

.it-header__main-menu ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.it-header__icon-box {
    background-color: var(--it-grey-1);
    padding: 0 23px;
    text-align: center;
    height: 82px;
    line-height: 82px;
}

@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__icon-box {
        background-color: transparent;
    }
}

.it-header__icon-box button {
    margin-right: 30px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header__icon-box button {
        margin-right: 20px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header__icon-box button {
        margin-right: 15px;
    }
}

.it-header__icon-box button i {
    font-size: 30px;
    color: var(--it-common-black);
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header__icon-box button i {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header__icon-box button i {
        font-size: 23px;
    }
}

@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__icon-box button i {
        font-size: 26px;
    }
}

.it-header__icon-box>a i {
    font-size: 30px;
    color: var(--it-common-black);
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header__icon-box>a i {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header__icon-box>a i {
        font-size: 23px;
    }
}

@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__icon-box>a i {
        font-size: 26px;
    }
}

.it-header__btn a {
    font-weight: 700;
    color: #ffffff;
    background-color: #f37336;
    height: 60px;
    line-height: 60px;
    padding: 0 40px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.it-header__btn a:hover {
	background-color: #ff9800;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header__btn a {
        padding: 0 30px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header__btn a {
        padding: 0 45px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header__btn a {
        padding: 0 30px;
    }
}

.it-header__tel-box {
    padding-left: 25px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header__tel-box {
        padding-left: 15px;
    }
}

.it-header__tel-icon span {
    font-size: 45px;
    color: var(--it-common-black);
    font-weight: 700;
    display: inline-block;
    padding-right: 15px;
    transform: translateY(6px);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header__tel-icon span {
        font-size: 39px;
    }
}

.it-header__tel-text span {
    display: block;
    padding-bottom: 5px;
}

.it-header__tel-text a {
    font-weight: 600;
    font-size: 18px;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
    transition: 0.3s;
}

.it-header__tel-text a:hover {
    color: var(--it-theme-1);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header__tel-text a {
        font-size: 16px;
    }
}

.it-header-xl__bar button {
    height: 70px;
    width: 70px;
    line-height: 53px;
    margin-left: 10px;
    text-align: center;
    display: inline-block;
    color: #000000;
    font-size: 50px;
}

@media (max-width: 767px) {
    .it-header-xl__bar button {
        height: 60px;
        line-height: 60px;
        width: 55px;
        margin: 10px 0;
    }
}

.it-header-xl__red-bar {
    margin: 10px 0;
}

.it-header-xl__red-bar button {
    height: 62px;
    width: 60px;
    line-height: 53px;
    margin-left: 20px;
    background-color: var(--it-theme-3);
    text-align: center;
    display: inline-block;
    color: var(--it-common-white);
    font-size: 24px;
}

.it-header-top-4__bg {
    background-color: #0f0f0f;
    padding: 10px 0;
}

.it-header-top-4__left-box ul li {
    list-style: none;
    display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-top-4__left-box ul li:nth-child(2) {
        display: none;
    }
}

.it-header-top-4__left-box ul li:not(:last-child) {
    padding-right: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-top-4__left-box ul li:not(:last-child) {
        padding-right: 35px;
    }
}

.it-header-top-4__left-box ul li i {
    font-size: 14px;
    color: var(--it-common-white);
    display: inline-block;
    transform: translateY(2px);
    padding-right: 9px;
}

.it-header-top-4__left-box ul li a {
    font-size: 16px;
    transition: 0.3s;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-top-4__left-box ul li a {
        font-size: 14px;
    }
}

.it-header-top-4__left-box ul li a:hover {
    color: var(--it-common-white);
}

.it-header-top-4__social-box li {
    display: inline-block;
    padding: 0 10px;
}

.it-header-top-4__social-box li:last-child {
    padding-right: 0;
}

.it-header-top-4__social-box li a {
    font-size: 15px;
    color: var(--it-common-white);
    transition: 0.3s;
}

.it-header-top-4__social-box li a:hover {
    color: var(--it-theme-3);
}

.it-header-top-4__social-box li span {
    font-size: 16px;
    padding-right: 10px;
    display: inline-block;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-top-4__social-box li span {
        font-size: 14px;
    }
}

.it-header-middle__space {
    background-color: #f3f2f8;
    padding: 20px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-middle__space {
        padding: 0;
    }
}

.it-header-middle__icon span {
    font-size: 23px;
    color: var(--it-common-black);
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 65px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #cbc6c6;
    margin-right: 20px;
    transition: 0.3s;
}

.it-header-middle__icon span:hover {
    border: 1px solid var(--it-theme-3);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-header-middle__icon span {
        font-size: 18px;
        width: 45px;
        height: 45px;
        line-height: 50px;
    }
}

.it-header-middle__text span {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-middle__text span {
        font-size: 13px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-header-middle__text span {
        font-size: 13px;
    }
}

.it-header-middle__text a {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--it-ff-heading);
    color: var(--it-common-black);
    transition: 0.3s;
}

.it-header-middle__text a:hover {
    color: var(--it-theme-3);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-middle__text a {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-header-middle__text a {
        font-size: 15px;
    }
}

.it-header-middle__contact-box ul li {
    display: inline-block;
    list-style-type: none;
    padding-right: 30px;
}

.it-header-middle__contact-wrap {
    display: flex;
    align-items: center;
    justify-content: end;
}

.it-header-middle__btn {
    margin-left: -50px;
}

.it-heder-menu-4__wrapper {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 11;
}

.it-heder-menu-4__bg {
    background-color: var(--it-theme-3);
    position: relative;
}

.it-heder-menu-4__bg::after {
    content: "";
    height: 61px;
    width: 40px;
    background-color: var(--it-theme-3);
    position: absolute;
    top: 0;
    right: -40px;
    clip-path: polygon(100% 0, 0 0, 0 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-heder-menu-4__bg::after {
        display: none;
    }
}

.it-heder-menu-4__bg::before {
    content: "";
    height: 61px;
    width: 39px;
    background-color: var(--it-theme-3);
    position: absolute;
    top: 0;
    left: -39px;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-heder-menu-4__bg::before {
        height: 61px;
    }
}

@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-heder-menu-4__bg::before {
        display: none;
    }
}

.it-heder-menu-4__shape {
    position: relative;
}

.it-heder-menu-4__shape::before {
    content: "";
    height: 62px;
    width: 77px;
    background-color: #b70b0d;
    position: absolute;
    top: 0;
    left: -77px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-heder-menu-4__shape::before {
        display: none;
    }
}

.it-heder-menu-4__shape::after {
    content: "";
    height: 61px;
    width: 79px;
    background-color: #b70b0d;
    position: absolute;
    top: 0;
    right: -79px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-heder-menu-4__shape::after {
        height: 62px;
        right: -78px;
    }
}

@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-heder-menu-4__shape::after {
        display: none;
    }
}

.it-heder-menu-4__main-menu-box {
    padding-left: 25px;
}

.it-heder-menu-4__main-menu-box nav ul li {
    list-style: none;
    padding: 0 25px;
    display: inline-block;
    position: relative;
}

.it-heder-menu-4__main-menu-box nav ul li .submenu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 220px;
    text-align: left;
    padding: 40px;
    background-color: var(--it-common-black);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 2;
}

.it-heder-menu-4__main-menu-box nav ul li .submenu li {
    padding: 0;
    display: block;
    margin-bottom: 15px;
}

.it-heder-menu-4__main-menu-box nav ul li .submenu li:last-child {
    margin-bottom: 0;
}

.it-heder-menu-4__main-menu-box nav ul li .submenu li a {
    display: inline-block;
    padding: 0;
    color: var(--it-common-white);
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
}

.it-heder-menu-4__main-menu-box nav ul li .submenu li a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    left: auto;
    height: 1px;
    width: 0;
    background-color: var(--it-theme-3);
    transition: 0.7s;
    display: inline-block;
}

.it-heder-menu-4__main-menu-box nav ul li .submenu li a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.it-heder-menu-4__main-menu-box nav ul li a {
    font-weight: 500;
    font-size: 16px;
    color: var(--it-common-white);
    padding: 20px 0;
    display: inline-block;
}

.it-heder-menu-4__main-menu-box nav ul li.has-dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    font-size: 14px;
    margin-left: 7px;
    color: var(--it-common-white);
    font-weight: 400;
    transition: 0.3s;
}

.it-heder-menu-4__main-menu-box nav ul li:hover.has-dropdown::after {
    transform: rotate(-180deg);
}

.it-heder-menu-4__main-menu-box nav ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.it-heder-menu-4__right-box {
    margin-right: 50px;
}

.it-heder-menu-4__right-box button {
    font-size: 24px;
    color: var(--it-common-white);
    margin-right: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-heder-menu-4__right-box button {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-heder-menu-4__right-box button {
        font-size: 20px;
    }
}

.it-heder-menu-4__right-box a {
    font-size: 24px;
    color: var(--it-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-heder-menu-4__right-box a {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-heder-menu-4__right-box a {
        font-size: 20px;
    }
}

.it-top-5__space {
    padding: 10px 0;
    padding-left: 40px;
    padding-right: 45px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-top-5__space {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-top-5__space {
        padding-left: 20px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-top-5__space {
        padding-left: 20px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top-5__space {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.it-top-5__left-box ul li {
    list-style: none;
    display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top-5__left-box ul li:nth-child(2) {
        display: none;
    }
}

.it-top-5__left-box ul li:not(:last-child) {
    padding-right: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top-5__left-box ul li:not(:last-child) {
        padding-right: 35px;
    }
}

.it-top-5__left-box ul li i {
    font-size: 14px;
    color: var(--it-common-white);
    display: inline-block;
    transform: translateY(2px);
    padding-right: 9px;
}

.it-top-5__left-box ul li a {
    font-size: 16px;
    transition: 0.3s;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top-5__left-box ul li a {
        font-size: 14px;
    }
}

.it-top-5__left-box ul li a:hover {
    color: var(--it-common-white);
}

.it-top-5__social-box li {
    display: inline-block;
    padding: 0 10px;
}

.it-top-5__social-box li:last-child {
    padding-right: 0;
}

.it-top-5__social-box li a {
    font-size: 15px;
    color: var(--it-common-white);
    transition: 0.3s;
}

.it-top-5__social-box li a:hover {
    color: var(--it-theme-1);
}

.it-top-5__social-box li span {
    font-size: 16px;
    padding-right: 10px;
    display: inline-block;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-top-5__social-box li span {
        font-size: 14px;
    }
}

.it-top-5__social-box.red-color li {
    padding-right: 0;
}

.it-top-5__social-box.red-color a:hover {
    color: var(--it-theme-3);
}

.it-header-5__space {
    padding-left: 55px;
    padding-right: 45px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header-5__space {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-5__space {
        padding-left: 20px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-header-5__space {
        padding-left: 20px;
        padding-right: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-5__space {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.it-header-5__right-wrapper {
    padding-left: 300px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header-5__right-wrapper {
        padding-left: 268px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-5__right-wrapper {
        padding-left: 247px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-5__right-wrapper {
        padding-left: 247px;
    }
}

@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-5__right-wrapper {
        padding-left: 0px;
    }
}

.it-header-5__logo {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--it-theme-3);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    padding: 15px 61px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header-5__logo {
        padding: 15px 45px;
    }
}

@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-header-5__logo {
        padding: 15px 35px;
    }
}

.it-header-5__main-menu ul li {
    display: inline-block;
    list-style: none;
    position: relative;
    padding: 0 21px;
}

.it-header-5__main-menu ul li .submenu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 220px;
    background-color: var(--it-common-black);
    text-align: left;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9;
}

.it-header-5__main-menu ul li .submenu li {
    padding: 0;
    display: block;
    margin-bottom: 15px;
}

.it-header-5__main-menu ul li .submenu li:last-child {
    margin-bottom: 0;
}

.it-header-5__main-menu ul li .submenu li a {
    display: inline-block;
    padding: 0;
    color: var(--it-common-white);
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
}

.it-header-5__main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    left: auto;
    height: 1px;
    width: 0;
    background-color: var(--it-theme-3);
    transition: 0.7s;
    display: inline-block;
}

.it-header-5__main-menu ul li .submenu li a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header-5__main-menu ul li {
        padding: 0 16px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-5__main-menu ul li {
        padding: 0 11px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-5__main-menu ul li {
        padding: 0 16px;
    }
}

.it-header-5__main-menu ul li.has-dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    font-size: 16px;
    margin-left: 5px;
    font-weight: 400;
    transition: 0.3s;
    transform: translateY(3px);
}

.it-header-5__main-menu ul li:first-child {
    padding-left: 0;
}

.it-header-5__main-menu ul li:last-child {
    padding-right: 0;
}

.it-header-5__main-menu ul li a {
    font-weight: 500;
    font-size: 16px;
    padding: 44px 0;
    display: inline-block;
    transition: 0.3s;
}

.it-header-5__main-menu ul li:hover.has-dropdown::after {
    transform: rotate(-180deg);
    color: var(--it-common-black);
}

.it-header-5__main-menu ul li:hover a {
    color: var(--it-common-black);
}

.it-header-5__main-menu ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.it-header-5__icon-box {
    padding-right: 30px;
    text-align: center;
    height: 110px;
    line-height: 116px;
}

@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-5__icon-box {
        background-color: transparent;
    }
}

.it-header-5__icon-box button {
    margin-right: 25px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header-5__icon-box button {
        margin-right: 20px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-5__icon-box button {
        margin-right: 15px;
    }
}

.it-header-5__icon-box button i {
    font-size: 30px;
    color: var(--it-common-black);
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header-5__icon-box button i {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-5__icon-box button i {
        font-size: 23px;
    }
}

@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-5__icon-box button i {
        font-size: 26px;
    }
}

.it-header-5__icon-box>a i {
    font-size: 30px;
    color: var(--it-common-black);
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-header-5__icon-box>a i {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-5__icon-box>a i {
        font-size: 23px;
    }
}

@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-5__icon-box>a i {
        font-size: 26px;
    }
}

.it-header-5__tel-box {
    padding-left: 25px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-5__tel-box {
        padding-left: 15px;
    }
}

.it-header-5__tel-icon span {
    font-size: 45px;
    color: var(--it-common-black);
    font-weight: 700;
    display: inline-block;
    padding-right: 15px;
    transform: translateY(6px);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-5__tel-icon span {
        font-size: 39px;
    }
}

.it-header-5__tel-text span {
    display: block;
    padding-bottom: 5px;
}

.it-header-5__tel-text a {
    font-weight: 600;
    font-size: 18px;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
    transition: 0.3s;
}

.it-header-5__tel-text a:hover {
    color: var(--it-theme-3);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-5__tel-text a {
        font-size: 16px;
    }
}

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

/*  25. slider css start
/*----------------------------------------*/

.it-slider__height {
    height: 720px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider__height {
        height: 650px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider__height {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .it-slider__height {
        height: 600px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-slider__height {
        height: 580px;
    }
}

.it-slider__bg {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: right;
    background-position: right center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 2500ms ease-in;
    transition: transform 7000ms ease, opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider__bg {
        right: -8%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider__bg {
        right: -18%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider__bg {
        right: -33%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider__bg {
        right: -33%;
        background-position: left;
    }
}

@media (max-width: 767px) {
    .it-slider__bg {
        display: none;
    }
}

.it-slider__content {
    padding-top: 240px;
    transform: translateY(-200px);
    opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider__content {
        padding-top: 170px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider__content {
        padding-top: 190px;
    }
}

@media (max-width: 767px) {
    .it-slider__content {
        padding-top: 110px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider__content {
        padding-top: 160px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-slider__content {
        padding-top: 160px;
    }
}

.it-slider__icon-box {
    display: block;
}

.it-slider__icon-box a {
    color: var(--it-theme-1);
    font-size: 18px;
    display: inline-block;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid #667274;
    text-align: center;
    line-height: 60px;
    margin-right: 20px;
    position: relative;
}

.it-slider__icon-box a::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 70%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.43);
    animation: borderanimate2 2s linear infinite;
    z-index: -1;
    border-radius: 50%;
}

.it-slider__icon-box a::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 90%;
    height: 90%;
    transform: scale(1.5);
    border: 1px solid var(--it-common-white);
    animation: borderanimate2 2s linear infinite;
    border-radius: 50%;
}

.it-slider__icon-box a i {
    padding-left: 3px;
}

.it-slider__icon-text span {
    color: var(--it-common-white);
}

@media (max-width: 767px) {
    .it-slider__icon-text span {
        font-size: 14px;
    }
}

.it-slider__shape-1 {
    position: absolute;
    left: -6.9%;
    top: 0;
    z-index: -1;
}

.it-slider__shape-2 {
    position: absolute;
    right: 46%;
    top: 21%;
    animation: circle-animations 3s ease-in-out 1s forwards infinite alternate;
}

@media (max-width: 767px) {
    .it-slider__shape-2 {
        display: none;
    }
}

.it-slider__shape-3 {
    position: absolute;
    left: 570px;
    top: 0%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-slider__shape-3 {
        display: none;
    }
}

.it-slider__shape-4 {
    position: absolute;
    left: 970px;
    top: 0%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-slider__shape-4 {
        display: none;
    }
}

.it-slider__button {
    transform: translateY(200px);
    opacity: 0;
}

@media (max-width: 767px) {
    .it-slider__button {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider__button {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-slider__button {
        flex-wrap: wrap;
    }
}

.it-slider__button>a {
    margin-right: 30px;
    background: #ee2333;
    color: #fff;
    font-size: 18px;
}

@media (max-width: 767px) {
    .it-slider__button>a {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider__button>a {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-slider__button>a {
        margin-bottom: 0;
        margin-right: 50px;
    }
}

.it-slider__active .swiper-slide.swiper-slide-active .it-slider__bg {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    opacity: 1;
    visibility: visible;
}

.it-slider__active .swiper-slide.swiper-slide-active .it-slider__content {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider__active .swiper-slide.swiper-slide-active .it-slider__button {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-dots {
    display: flex;
    position: absolute;
    bottom: 10%;
    transform: translateY(0%);
    right: 0;
    z-index: 2;
    left: 0;
    justify-content: center;
}

.it-slider-dots .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
    margin: 7px 5px;
    transition: 0.3s;
    position: relative;
}

.it-slider-dots .swiper-pagination-bullet::after {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.it-slider-dots .swiper-pagination-bullet-active {
    background-color: #fff;
}

.it-slider-dots .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-slider-dots {
        display: none;
    }
}

.it-slider-2__button {
    transform: translateY(300px);
    opacity: 0;
    position: relative;
    z-index: 999;
}

@media (max-width: 767px) {
    .it-slider-2__button {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-2__button {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-slider-2__button {
        flex-wrap: wrap;
    }
}

.it-slider-2__button>a {
    margin-right: 30px;
}

@media (max-width: 767px) {
    .it-slider-2__button>a {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-2__button>a {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-slider-2__button>a {
        margin-bottom: 0;
        margin-right: 50px;
    }
}

.it-slider-2__icon-box {
    display: block;
}

.it-slider-2__icon-box>a {
    color: var(--it-theme-1);
    font-size: 18px;
    display: inline-block;
    margin-right: 20px;
}

.it-slider-2__height {
    min-height: 820px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-2__height {
        min-height: 750px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-2__height {
        min-height: 700px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-2__height {
        min-height: 700px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-2__height {
        min-height: 590px;
    }
}

@media (max-width: 767px) {
    .it-slider-2__height {
        min-height: 550px;
    }
}

.it-slider-2__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    background-position: right center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 2500ms ease-in;
    transition: transform 7000ms ease, opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    z-index: -1;
}

.it-slider-2__bg::after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(4, 23, 26, 0.702);
    position: absolute;
}

.it-slider-2__icon-box a {
    text-decoration: underline;
    font-weight: 700;
    color: var(--it-common-white);
}

.it-slider-2__shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-1000px);
    opacity: 0;
}

.it-slider-2__shape-2 {
    position: absolute;
    left: 0;
    top: 24%;
    z-index: 2;
    transform: translateX(-500px);
    opacity: 0;
}

.it-slider-2__arrow-box {
    position: absolute;
    top: 50%;
    right: 19%;
    transform: translateY(-50%);
    z-index: 9;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-2__arrow-box {
        right: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-2__arrow-box {
        right: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-slider-2__arrow-box {
        display: none;
    }
}

.it-slider-2__arrow-box .test-next {
    margin-bottom: 15px;
}

.it-slider-2__arrow-box .test-next button {
    color: #fff;
    font-size: 24px;
    height: 60px;
    width: 60px;
    background-color: rgb(34, 56, 60);
    border-radius: 50%;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.it-slider-2__arrow-box .test-next button:hover {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.it-slider-2__arrow-box .test-prev button {
    color: #fff;
    font-size: 24px;
    height: 60px;
    width: 60px;
    background-color: rgb(34, 56, 60);
    border-radius: 50%;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.it-slider-2__arrow-box .test-prev button:hover {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.it-slider-2__arrow-box .test-prev button.active {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.it-slider-2__content {
    padding-top: 240px;
    transform: translateY(-300px);
    opacity: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-2__content {
        padding-top: 200px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-2__content {
        padding-top: 200px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-2__content {
        padding-top: 200px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-2__content {
        padding-top: 170px;
    }
}

@media (max-width: 767px) {
    .it-slider-2__content {
        padding-top: 115px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-slider-2__content {
        padding-top: 160px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-slider-2__content {
        padding-top: 150px;
    }
}

.it-slider-2__active .swiper-slide.swiper-slide-active .it-slider-2__bg {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.it-slider-2__active .swiper-slide.swiper-slide-active .it-slider-2__content {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-2__active .swiper-slide.swiper-slide-active .it-slider-2__button {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-2__active .swiper-slide.swiper-slide-active .it-slider-2__shape-1 {
    opacity: 1;
    transform: translateX(0px);
    transition: all 3000ms ease;
}

.it-slider-2__active .swiper-slide.swiper-slide-active .it-slider-2__shape-2 {
    opacity: 1;
    transform: translateX(0px);
    transition: all 2000ms ease;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3__arrow-box {
        right: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3__arrow-box {
        right: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-slider-3__arrow-box {
        display: none;
    }
}

.it-slider-3__arrow-box .test-next {
    margin-bottom: 15px;
    position: absolute;
    top: 50%;
    right: 19.3%;
    transform: translateY(-50%);
    z-index: 9;
}

.it-slider-3__arrow-box .test-next button {
    color: #fff;
    font-size: 24px;
    height: 60px;
    width: 60px;
    background-color: rgb(34, 56, 60);
    border-radius: 50%;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.it-slider-3__arrow-box .test-next button:hover {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.it-slider-3__arrow-box .test-next button.active {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.it-slider-3__arrow-box .test-prev {
    position: absolute;
    top: 50%;
    left: 19.3%;
    transform: translateY(-50%);
    z-index: 9;
}

.it-slider-3__arrow-box .test-prev button {
    color: #fff;
    font-size: 24px;
    height: 60px;
    width: 60px;
    background-color: rgb(34, 56, 60);
    border-radius: 50%;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.it-slider-3__arrow-box .test-prev button:hover {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.it-slider-3__space {
    position: relative;
    overflow: hidden;
}

.it-slider-3__space::after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 1005px;
    background-color: rgba(4, 23, 26, 0.451);
    position: absolute;
}

.it-slider-3__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    background-position: right center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 2500ms ease-in;
    transition: transform 7000ms ease, opacity 2500ms ease-in, -webkit-transform 7000ms ease;
}

.it-slider-3__height {
    min-height: 840px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-3__height {
        min-height: 740px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3__height {
        min-height: 700px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3__height {
        min-height: 680px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-3__height {
        min-height: 590px;
    }
}

@media (max-width: 767px) {
    .it-slider-3__height {
        min-height: 550px;
    }
}

.it-slider-3__content {
    position: relative;
    z-index: 1;
    transform: translateY(-200px);
    opacity: 0;
}

.it-slider-3__content-box {
    padding-top: 290px;
    padding-bottom: 200px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-3__content-box {
        padding-top: 210px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3__content-box {
        padding-top: 180px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3__content-box {
        padding-top: 180px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-3__content-box {
        padding-top: 160px;
        padding-bottom: 160px;
    }
}

@media (max-width: 767px) {
    .it-slider-3__content-box {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.it-slider-3__button-2 {
    transform: translateY(200px);
    opacity: 0;
}

.it-slider-3__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: translateX(-500px);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-3__shape-1 {
        bottom: -19%;
        left: -2%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3__shape-1 {
        bottom: -25%;
        left: -4%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3__shape-1 {
        bottom: -40%;
        left: -4%;
    }
}

.it-slider-3__shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(-500px);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3__shape-2 {
        top: -8%;
        left: -5%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3__shape-2 {
        top: -10%;
        left: -10%;
    }
}

.it-slider-3__shape-3 {
    position: absolute;
    bottom: 85px;
    left: 0;
    opacity: 0;
    transform: translateY(-500px);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-3__shape-3 {
        left: -2%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3__shape-3 {
        left: -5%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3__shape-3 {
        bottom: 20px;
        left: -7%;
    }
}

.it-slider-3__shape-4 {
    position: absolute;
    bottom: -3%;
    right: 0;
    opacity: 0;
    transform: translateX(500px);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-3__shape-4 {
        right: -3%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3__shape-4 {
        right: -8%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3__shape-4 {
        right: -11%;
        bottom: -20%;
    }
}

.it-slider-3__shape-5 {
    position: absolute;
    top: -1%;
    right: 0;
    opacity: 0;
    transform: translateY(-500px);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-3__shape-5 {
        right: -7%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-3__shape-5 {
        right: -15%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-3__shape-5 {
        right: -8%;
        top: -20%;
    }
}

.it-slider-3__active .swiper-slide.swiper-slide-active .it-slider-3__bg {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.it-slider-3__active .swiper-slide.swiper-slide-active .it-slider-3__content {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-3__active .swiper-slide.swiper-slide-active .it-slider-3__shape-1 {
    opacity: 1;
    transform: translateX(0px);
    transition: all 3000ms ease;
}

.it-slider-3__active .swiper-slide.swiper-slide-active .it-slider-3__shape-2 {
    opacity: 1;
    transform: translateY(0px);
    transition: all 4000ms ease;
}

.it-slider-3__active .swiper-slide.swiper-slide-active .it-slider-3__shape-3 {
    opacity: 1;
    transform: translateY(0px);
    transition: all 2000ms ease;
}

.it-slider-3__active .swiper-slide.swiper-slide-active .it-slider-3__shape-4 {
    opacity: 1;
    transform: translateX(0px);
    transition: all 4000ms ease;
}

.it-slider-3__active .swiper-slide.swiper-slide-active .it-slider-3__shape-5 {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-3__active .swiper-slide.swiper-slide-active .it-slider-3__button-2 {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-4__height {
    height: 840px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4__height {
        height: 745px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4__height {
        height: 700px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4__height {
        height: 590px;
    }
}

@media (max-width: 767px) {
    .it-slider-4__height {
        height: 550px;
    }
}

.it-slider-4__button {
    transform: translateY(200px);
    opacity: 0;
}

.it-slider-4__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    background-position: right center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 2500ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 2500ms ease-in;
    transition: transform 7000ms ease, opacity 2500ms ease-in, -webkit-transform 7000ms ease;
}

.it-slider-4__bg::after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: rgb(24, 24, 24);
    opacity: 0.651;
}

.it-slider-4__shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-1000px);
    opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4__shape-1 {
        right: -10%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4__shape-1 {
        right: -25%;
    }
}

.it-slider-4__shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    transform: translateX(500px);
    opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4__shape-2 {
        bottom: 0;
        right: -9%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4__shape-2 {
        bottom: 0;
        right: -12%;
    }
}

.it-slider-4__shape-3 {
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: 1;
    transform: translateY(500px);
    opacity: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4__shape-3 {
        bottom: -11%;
        right: -10%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4__shape-3 {
        bottom: -11%;
        right: -16.3%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4__shape-3 {
        bottom: -30%;
        right: -30.3%;
    }
}

.it-slider-4__shape-4 {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 1;
    transform: translateY(-500px);
    opacity: 1;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-4__shape-4 {
        left: -8%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4__shape-4 {
        top: -7%;
        left: -7%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4__shape-4 {
        top: -7%;
        left: -19%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-4__shape-4 {
        top: -7%;
        left: -34%;
    }
}

.it-slider-4__icon {
    display: inline-block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4__icon img {
        max-width: 70%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-slider-4__icon img {
        max-width: 60%;
    }
}

.it-slider-4__arrow-box {
    position: absolute;
    top: 50%;
    left: 19%;
    transform: translateY(-50%);
    z-index: 9;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-4__arrow-box {
        left: 12%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-4__arrow-box {
        left: 8%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-slider-4__arrow-box {
        display: none;
    }
}

.it-slider-4__arrow-box .test-next {
    margin-bottom: 15px;
}

.it-slider-4__arrow-box .test-next button {
    color: #fff;
    font-size: 24px;
    height: 60px;
    width: 60px;
    background-color: #181818;
    border-radius: 50%;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.it-slider-4__arrow-box .test-next button:hover {
    background-color: var(--it-common-white);
    color: var(--it-theme-3);
}

.it-slider-4__arrow-box .test-prev button {
    color: #fff;
    font-size: 24px;
    height: 60px;
    width: 60px;
    background-color: #181818;
    border-radius: 50%;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.it-slider-4__arrow-box .test-prev button:hover {
    background-color: var(--it-common-white);
    color: var(--it-theme-3);
}

.it-slider-4__content {
    position: relative;
    z-index: 9;
    transform: translateY(-200px);
    opacity: 0;
}

.it-slider-4__active .swiper-slide.swiper-slide-active .it-slider-4__bg {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.it-slider-4__active .swiper-slide.swiper-slide-active .it-slider-4__content {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-4__active .swiper-slide.swiper-slide-active .it-slider-4__shape-1 {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-4__active .swiper-slide.swiper-slide-active .it-slider-4__shape-2 {
    opacity: 1;
    transform: translateX(0px);
    transition: all 5000ms ease;
}

.it-slider-4__active .swiper-slide.swiper-slide-active .it-slider-4__shape-3 {
    opacity: 1;
    transform: translateY(0px);
    transition: all 4000ms ease;
}

.it-slider-4__active .swiper-slide.swiper-slide-active .it-slider-4__shape-4 {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-4__active .swiper-slide.swiper-slide-active .it-slider-4__button {
    opacity: 1;
    transform: translateY(0px);
    transition: all 3000ms ease;
}

.it-slider-5__bg {
    background-size: cover;
    background-repeat: no-repeat;
    height: 840px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-slider-5__bg {
        height: 780px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-5__bg {
        height: 745px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-5__bg {
        height: 700px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-5__bg {
        height: 590px;
    }
}

@media (max-width: 767px) {
    .it-slider-5__bg {
        height: 550px;
    }
}

.it-slider-5__thumb {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-5__thumb {
        max-width: 60%;
        right: -10%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-5__thumb {
        max-width: 60%;
        right: -10%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-5__thumb {
        max-width: 71%;
        right: -20%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-5__thumb {
        max-width: 71%;
        right: -20%;
    }
}

.it-slider-5__icon-text {
    animation: rotate2 15s linear infinite;
}

.it-slider-5__icon-box {
    position: absolute;
    right: 41%;
    bottom: 60px;
}

.it-slider-5__icon {
    position: absolute;
    bottom: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.it-slider-5__icon a {
    color: var(--it-theme-3);
}

.it-slider-5__shape-1 {
    animation: animationglob 30s cubic-bezier(1, 0.99, 0.03, 0.01) infinite;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-slider-5__shape-1 img {
        max-width: 80%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-5__shape-1 img {
        max-width: 80%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-slider-5__shape-1 img {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .it-slider-5__shape-1 img {
        max-width: 70%;
    }
}

.it-slider-2__content {
    position: relative;
    z-index: 9999;
}

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

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

/*  15. feature css start
/*----------------------------------------*/

.it-feature__item {
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.06);
    padding: 40px 30px;
    padding-top: 35px;
    position: relative;
}

@media (max-width: 767px) {
    .it-feature__item {
        flex-wrap: wrap;
        padding: 40px 22px;
    }
}

.it-feature__item:hover .it-feature__bg {
    width: 100%;
    clip-path: none;
}

.it-feature__item:hover .it-feature__bg::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.it-feature__item:hover .it-feature__title-sm {
    color: var(--it-common-white);
}

.it-feature__item:hover .it-feature__text p {
    color: #9dabae;
}

.it-feature__item:hover .it-feature__shape {
    opacity: 1;
    visibility: visible;
}

.it-feature__icon span {
    font-size: 35px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    width: 80px;
    color: var(--it-common-black);
    border-radius: 50%;
    background-color: var(--it-theme-1);
    display: inline-block;
    margin-right: 25px;
}

@media (max-width: 767px) {
    .it-feature__icon span {
        margin-bottom: 25px;
    }
}

.it-feature__title-sm {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 24px;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .it-feature__title-sm {
        font-size: 19px;
    }
    .it-feature__title-sm br {
        display: none;
    }
}

.it-feature__text p {
    margin-bottom: 0;
    transition: 0.3s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-feature__text p {
        font-size: 15px;
    }
    .it-feature__text p br {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-feature__text p {
        font-size: 14px;
    }
    .it-feature__text p br {
        display: none;
    }
}

.it-feature__bg {
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(0% 0%, 100% 0, 57% 52%, 100% 100%, 0% 100%);
    height: 100%;
    width: 30%;
    z-index: -1;
    transition: 0.4s;
}

.it-feature__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background-color: rgba(4, 23, 26, 0.851);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.it-feature__shape {
    position: absolute;
    right: 0;
    top: 3px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .it-feature__shape {
        display: none;
    }
}

.it-feature-2__thumb-box {
    position: relative;
}

.it-feature-2__thumb-box::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(90deg, rgb(4, 23, 26) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(4, 23, 26) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(4, 23, 26) 0%, rgba(0, 0, 0, 0) 100%);
}

.it-feature-2__thumb-box::before {
    position: absolute;
    content: "";
    bottom: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: rgba(4, 23, 26, 0.8);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.it-feature-2__thumb-content {
    position: absolute;
    bottom: 36px;
    left: 35px;
    right: 35px;
    top: 38%;
    z-index: 11;
    transition: 0.3s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-feature-2__thumb-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        top: 41%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-feature-2__thumb-content {
        top: 49%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-feature-2__thumb-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        top: 47%;
    }
}

@media (max-width: 767px) {
    .it-feature-2__thumb-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        top: 63%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-feature-2__thumb-content {
        bottom: 50px;
        left: 50px;
        right: 50px;
        top: 47%;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-feature-2__thumb-content {
        bottom: 35px;
        left: 30px;
        right: 30px;
        top: 45%;
    }
}

@media (max-width: 767px) {
    .it-feature-2__icon {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-feature-2__icon {
        display: block;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-feature-2__icon {
        display: block;
    }
}

.it-feature-2__icon span {
    width: 65px;
    height: 65px;
    line-height: 75px;
    background-color: var(--it-common-white);
    color: var(--it-common-black);
    display: inline-block;
    font-size: 40px;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-feature-2__icon span {
        width: 50px;
        height: 50px;
        line-height: 55px;
        font-size: 30px;
    }
}

.it-feature-2__content-text {
    background-color: var(--it-theme-1);
    padding: 22px 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-feature-2__content-text {
        padding: 15px 25px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-feature-2__content-text {
        padding: 30px 25px;
    }
}

.it-feature-2__content-text p {
    color: #5a6163;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-feature-2__content-text p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-feature-2__content-text p {
        font-size: 16px;
        padding-right: 120px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-feature-2__content-text p {
        font-size: 16px;
    }
}

.it-feature-2__title {
    font-weight: 700;
    font-size: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-feature-2__title {
        font-size: 18px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-feature-2__title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.it-feature-2__thumb-wrapper:hover .it-feature-2__thumb-content {
    top: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-feature-2__thumb-wrapper:hover .it-feature-2__thumb-content {
        top: 85px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-feature-2__thumb-wrapper:hover .it-feature-2__thumb-content {
        top: 45px;
    }
}

@media (max-width: 767px) {
    .it-feature-2__thumb-wrapper:hover .it-feature-2__thumb-content {
        top: 60px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-feature-2__thumb-wrapper:hover .it-feature-2__thumb-content {
        top: 100px;
    }
}

.it-feature-2__thumb-wrapper:hover .it-feature-2__thumb-box::before {
    bottom: 0;
    top: auto;
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.it-feature-3__bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 120px;
}

.it-feature-3__bg-2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.it-feature-3__plr {
    padding-left: 245px;
    padding-right: 245px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-feature-3__plr {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-feature-3__plr {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@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-feature-3__plr {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.it-feature-3__icon {
    margin-bottom: 25px;
}

.it-feature-3__icon span {
    height: 100px;
    width: 100px;
    background-color: var(--it-theme-2);
    display: inline-block;
    text-align: center;
    line-height: 115px;
    border-radius: 50%;
    color: var(--it-common-white);
    transition: 0.4s;
    font-size: 46px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-feature-3__icon span {
        height: 80px;
        width: 80px;
        line-height: 92px;
        font-size: 35px;
    }
}

@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-3__icon span {
        height: 80px;
        width: 80px;
        line-height: 92px;
        font-size: 35px;
    }
}

.it-feature-3__item {
    background-color: var(--it-common-white);
    text-align: center;
    padding: 30px 15px;
    overflow: hidden;
}

.it-feature-3__item:hover .it-feature-3__shape {
    top: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
}

.it-feature-3__item:hover .it-feature-3__icon span {
    background-color: var(--it-theme-1);
    color: var(--it-theme-2);
}

.it-feature-3__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--it-theme-2);
    margin-bottom: 0;
    transition: 0.4s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-feature-3__title {
        font-size: 17px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-feature-3__title {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-feature-3__title {
        font-size: 17px;
    }
}

.it-feature-3__shape {
    position: absolute;
    top: -15px;
    right: -15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.it-feature-3__red-color .it-feature-3__icon span {
    background-color: #f5efef;
    color: var(--it-common-black);
    transition: 0.3s;
}

.it-feature-3__red-color .it-feature-3__item {
    background-color: var(--it-common-white);
}

.it-feature-3__red-color .it-feature-3__item:hover .it-feature-3__icon span {
    background-color: var(--it-theme-3);
    color: var(--it-common-white);
}

.it-feature-3__red-color .it-feature-3__title {
    color: var(--it-common-black);
}

.it-feature-3__red-color .it-feature-3__shape {
    position: absolute;
    top: -15px;
    right: -15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

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

/*  14. faq css start
/*----------------------------------------*/

.it-faq-2__right-side {
    padding-top: 15px;
    margin-left: 75px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-faq-2__right-side {
        margin-left: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-faq-2__right-side {
        font-size: 16px;
        margin-left: 21px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-faq-2__right-side {
        margin-left: 0;
    }
}

.it-faq-2__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 51%;
    background-color: var(--it-common-black);
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-faq-2__bg::after {
        display: none;
    }
}

.it-faq-2__shape {
    position: absolute;
    top: -17%;
    right: -4%;
    z-index: -1;
    animation: ittranslateX2 3s infinite alternate;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-faq-2__shape {
        top: -17%;
        right: -9%;
    }
}

.it-faq-4__left-box {
    margin-right: 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-faq-4__left-box {
        margin-right: 0;
    }
}

.it-faq-4__bg {
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-faq-4__bg {
        width: 40%;
        height: 907px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-faq-4__bg img {
        height: 907px;
    }
}

.it-faq-4__bg::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(225, 18, 18, 0.841);
    opacity: 87%;
}

.it-faq-4__shape {
    position: absolute;
    left: 0;
    bottom: 0;
}

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

/*  03. about css start
/*----------------------------------------*/

.it-about__thumb {
    animation: scale_up_down 3s infinite alternate both;
    max-width: 470px;
}

.it-about__left-box {
    margin-left: -140px;
    margin-bottom: 80px;
}

.it-about__left-box.space {
    margin-left: -48px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about__left-box.space {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about__left-box {
        margin-left: -95px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about__left-box {
        margin-left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about__left-box img {
        max-width: 91%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about__left-box img {
        width: 100%;
        margin-bottom: 30px;
    }
}

.it-about__thumb-sm {
    position: absolute;
    right: 4%;
    bottom: -80px;
    animation: ittranslateY2 4s forwards infinite alternate;
    max-width: 420px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about__thumb-sm {
        right: 6%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about__thumb-sm {
        right: -16%;
        bottom: -112px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about__thumb-sm {
        position: static;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about__thumb-sm img {
        max-width: 80%;
    }
}

.it-about__circle-text {
    position: absolute;
    right: 21.5%;
    top: 75px;
    animation: rotate2 15s linear infinite;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about__circle-text {
        right: 18.5%;
    }
}

.it-about__content>p {
    padding-bottom: 15px;
    text-align: justify;
    color: #000;
    font-size: 17px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about__content>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),
(max-width: 767px) {
    .it-about__content>p {
        font-size: 17px;
    }
    .it-about__content>p br {
        display: none;
    }
}

.it-about__content>span {
    color: var(--it-theme-1);
    font-weight: 500;
    padding-bottom: 45px;
    display: inline-block;
}

.it-about__icon-box {
    margin-bottom: 23px;
}

.it-about__icon-box:not(:last-child) {
    margin-right: 75px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about__icon-box:not(:last-child) {
        margin-right: 50px;
    }
}

@media (max-width: 767px) {
    .it-about__icon-box:not(:last-child) {
        margin-right: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about__icon-box:not(:last-child) {
        margin-right: 30px;
    }
}

.it-about__icon-box:hover .it-about__icon span {
    background-color: var(--it-common-black);
    color: var(--it-common-white);
}

@media (max-width: 767px) {
    .it-about__icon-box {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about__icon-box {
        flex-wrap: nowrap;
    }
}

.it-about__icon-text h5 {
    font-size: 20px;
    margin-bottom: 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-about__icon-text h5 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .it-about__icon {
        margin-bottom: 20px;
    }
}

.it-about__icon span {
    transition: 0.3s;
    margin-right: 25px;
    font-size: 40px;
    color: var(--it-common-black);
    height: 70px;
    width: 70px;
    background-color: rgb(245, 243, 238);
    display: inline-block;
    text-align: center;
    line-height: 80px;
}

@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) {
    .it-about__icon span {
        font-size: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about__icon span {
        font-size: 40px;
        height: 60px;
        width: 60px;
        line-height: 74px;
    }
}

@media (max-width: 767px) {
    .it-about__icon span {
        font-size: 45px;
    }
}

.it-about__list-box {
    padding-bottom: 45px;
}

.it-about__list-box ul li {
    font-weight: 500;
    color: var(--it-common-black);
    list-style-type: none;
    padding-left: 28px;
    padding-bottom: 10px;
    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-about__list-box ul li {
        font-size: 14px;
    }
}

.it-about__list-box ul li:last-child {
    padding-bottom: 0;
}

.it-about__list-box ul li i {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 16px;
}

.it-about__shape {
    position: absolute;
    right: 17%;
    top: 0;
    z-index: -1;
}

.it-about__experience-box {
    margin-left: 30px;
}

@media (max-width: 767px) {
    .it-about__experience-box {
        margin-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about__experience-box {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-about__experience-box {
        margin-left: 20px;
    }
}

.it-about__experience-box h6 {
    font-size: 60px;
    margin-bottom: 0;
    margin-right: 15px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-about__experience-box h6 {
        font-size: 73px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about__experience-box h6 {
        font-size: 65px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about__experience-box h6 {
        font-size: 65px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about__experience-box h6 {
        font-size: 65px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about__experience-box h6 {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .it-about__experience-box h6 {
        font-size: 60px;
    }
}

.it-about__experience-box span {
    font-size: 16px;
    line-height: 28px;
    color: #6a6a6a;
    display: inline-block;
    transform: translateY(-9px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about__experience-box span {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .it-about__experience-box span {
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 767px) {
    .it-about__btn {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .it-about__btn a {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about__btn a {
        margin-bottom: 0px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-about__btn a {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-2__left-box {
        margin-bottom: 60px;
    }
}

.it-about-2__item {
    width: 200px;
    background-color: var(--it-grey-1);
    position: relative;
    margin-top: 40px;
    padding: 30px 15px;
    padding-top: 0;
}

.it-about-2__item:not(:last-child) {
    margin-right: 30px;
}

.it-about-2__item.bg::after {
    content: "";
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: var(--it-common-black);
    position: absolute;
}

.it-about-2__item::after {
    content: "";
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: var(--it-theme-1);
    position: absolute;
}

.it-about-2__text span {
    font-weight: 700;
    font-size: 20px;
    color: var(--it-common-black);
    padding-top: 60px;
    display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-2__text span {
        font-size: 17px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-2__text span {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-2__text span {
        font-size: 15px;
    }
}

.it-about-2__icon {
    position: absolute;
    z-index: 1;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.it-about-2__icon span {
    font-size: 44px;
    color: var(--it-common-black);
    display: inline-block;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 88px;
    background-color: var(--it-theme-1);
}

.it-about-2__icon.color span {
    background-color: var(--it-common-white);
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.06);
}

.it-about-2__list-box {
    padding-bottom: 50px;
}

.it-about-2__list-box ul li {
    font-weight: 500;
    color: var(--it-common-black);
    list-style-type: none;
    padding-left: 28px;
    padding-bottom: 15px;
    position: relative;
}

.it-about-2__list-box ul li:last-child {
    padding-bottom: 0;
}

.it-about-2__list-box ul li i {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 18px;
}

.it-about-2__thumb-box {
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-2__thumb-box img {
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    .it-about-2__thumb-box img {
        margin-bottom: 20px;
        width: 100%;
    }
}

.it-about-2__thumb-sm {
    position: absolute;
    bottom: 0;
    left: -100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-2__thumb-sm {
        left: -60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-2__thumb-sm {
        left: 0px;
    }
}

@media (max-width: 767px) {
    .it-about-2__thumb-sm {
        position: static;
    }
}

.it-about-2__thumb-sm img {
    width: 100%;
}

.it-about-2__shape {
    position: absolute;
    left: 0;
    top: -42%;
    z-index: -1;
    animation: ittranslateX2 3s infinite alternate;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-about-2__shape {
        left: -5%;
        top: -42%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about-2__shape {
        left: -14%;
    }
}

.it-about-2__thumb-shape {
    position: absolute;
    left: -5%;
    top: 21%;
    z-index: -1;
    animation: itupdown 0.8s infinite alternate;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-2__thumb-shape {
        left: 6%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-2__section-box p {
        font-size: 15px;
        line-height: 30px;
        padding-right: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-2__section-box p {
        font-size: 15px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-2__section-box p {
        font-size: 14px;
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .it-about-3__bottom-box {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about-3__bottom-box {
        flex-wrap: nowrap;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-about-3__bottom-box {
        flex-wrap: nowrap;
    }
}

.it-about-3__bottom-box:hover .it-about-3__icon::after {
    background-color: var(--it-common-black);
}

.it-about-3__bottom-box:hover .it-about-3__icon span i {
    animation: icon-bounce 0.8s 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-3__img-wrap {
        margin-bottom: 60px;
    }
}

.it-about-3__img-1 {
    animation: moving 9s linear infinite;
}

.it-about-3__img-1 img {
    max-width: inherit;
    margin-left: -210px;
}

@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__img-1 img {
        max-width: 100%;
        margin-left: 0;
    }
}

.it-about-3__yellow-circle {
    position: absolute;
    top: 10%;
    left: -10%;
    z-index: -1;
    animation: zoom 5s infinite;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-3__yellow-circle {
        top: 1%;
        left: -2%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-3__yellow-circle {
        top: 1%;
        left: -1%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-3__yellow-circle {
        top: 4%;
        left: 9%;
    }
}

.it-about-3__yellow-circle span {
    height: 400px;
    width: 400px;
    background-color: var(--it-theme-1);
    display: inline-block;
    border-radius: 50%;
}

.it-about-3__section-box {
    margin-bottom: 35px;
}

.it-about-3__section-box .it-section-title {
    margin-bottom: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-3__section-box p {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-3__section-box p {
        font-size: 14px;
    }
    .it-about-3__section-box p br {
        display: none;
    }
}

.it-about-3__fea-list {
    margin-bottom: 40px;
}

.it-about-3__fea-list ul li {
    position: relative;
    padding-left: 30px;
    list-style-type: none;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--it-theme-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-about-3__fea-list ul li {
        font-size: 14px;
    }
}

.it-about-3__fea-list ul li:last-child {
    margin-bottom: 0;
}

.it-about-3__fea-list ul li i {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 18px;
}

.it-about-3__icon {
    position: relative;
    padding-right: 40px;
}

.it-about-3__icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5px;
    width: 2px;
    height: 100%;
    background-color: #eeeded;
    transition: 0.3s;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about-3__icon::after {
        display: none;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-about-3__icon::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .it-about-3__icon {
        margin-bottom: 20px;
    }
}

.it-about-3__icon span {
    display: inline-block;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background-color: var(--it-theme-1);
    line-height: 105px;
    text-align: center;
    font-size: 50px;
    color: var(--it-common-black);
}

.it-about-3__icon span i {
    display: inline-block;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-3__icon span {
        font-size: 40px;
        height: 70px;
        width: 70px;
        line-height: 85px;
    }
}

@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__icon span {
        font-size: 30px;
        height: 60px;
        width: 60px;
        line-height: 70px;
    }
}

.it-about-3__content {
    margin-left: 25px;
}

@media (max-width: 767px) {
    .it-about-3__content {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.it-about-3__content h5 {
    font-size: 20px;
    padding-bottom: 4px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-3__content h5 {
        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-about-3__content h5 {
        font-size: 15px;
    }
}

.it-about-3__content p {
    line-height: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-3__content p {
        font-size: 15px;
        padding-right: 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-about-3__content p {
        font-size: 14px;
    }
}

.it-about-3__bg {
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: right;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-about-3__bg img {
        height: auto;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about-3__bg img {
		height: auto;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-3__bg img {
        height: auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-3__bg img {
        height: auto;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-about-3__bg {
        width: 50%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about-3__bg {
        width: 50%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-3__bg {
        width: 54%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-3__bg {
        width: 50%;
        height: 550px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-3__bg {
        position: static;
        margin-bottom: 40px;
        width: 100%;
        height: 100%;
    }
}

.it-about-3__play-icon {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-3__play-icon {
        top: 29%;
    }
}

.it-about-3__play-icon a {
    font-size: 25px;
    color: var(--it-common-black);
    width: 80px;
    height: 80px;
    background-color: var(--it-theme-1);
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    display: inline-block;
    position: relative;
}

.it-about-3__play-icon a::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 70%;
    height: 70%;
    background-color: rgba(249, 189, 23, 0.5);
    animation: borderanimate2 2s linear infinite;
    z-index: -1;
    border-radius: 50%;
}

.it-about-3__play-icon a::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 90%;
    height: 90%;
    transform: scale(1.5);
    border: 1px solid var(--it-theme-1);
    animation: borderanimate2 2s linear infinite;
    border-radius: 50%;
}

.it-about-3__play-icon a i {
    padding-left: 5px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-about-3__text p {
        padding-right: 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-3__text p {
        font-size: 15px;
        padding-right: 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-about-3__text p {
        font-size: 17px;
    }
}

.it-about-4__idea-icon span {
    font-size: 65px;
    color: var(--it-theme-3);
    display: inline-block;
    height: 90px;
    width: 90px;
    text-align: center;
    background-color: #f3f2f8;
    line-height: 111px;
    margin-right: 30px;
}

@media (max-width: 767px) {
    .it-about-4__idea-icon span {
        margin-bottom: 25px;
    }
}

.it-about-4__content {
    background-color: #fff;
    border-top: 2px solid var(--it-theme-3);
    padding: 25px 15px;
    padding-bottom: 40px;
    box-shadow: 2px 3.464px 20px 0px rgba(4, 23, 26, 0.06);
    position: relative;
    z-index: 11;
    margin-left: -10px;
}

.it-about-4__content i {
    font-size: 44px;
    color: var(--it-theme-3);
    display: inline-block;
    margin-bottom: 3px;
}

.it-about-4__content span {
    display: inline-block;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #d6d3e3;
    position: absolute;
    right: 38%;
    top: 8%;
    z-index: -1;
}

.it-about-4__content h5 {
    font-size: 20px;
    margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about-4__content h5 {
        font-size: 16px;
    }
}

.it-about-4__right-wrap {
    margin-right: 56px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-4__right-wrap {
        margin-bottom: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-4__right-wrap {
        margin-bottom: 80px;
        margin-right: 0;
    }
}

.it-about-4__thumb-box {
    margin-left: -5px;
    position: relative;
}

.it-about-4__thumb-box::after {
    content: "";
    bottom: 0;
    right: 0;
    background-color: var(--it-theme-3);
    position: absolute;
    width: 80%;
    height: 88%;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-4__thumb-box::after {
        width: 100%;
        height: 105%;
    }
}

.it-about-4__thumb-box img {
    max-width: inherit;
    position: relative;
    z-index: 5;
}

.it-about-4__shape-1 {
    position: absolute;
    top: 1%;
    right: -30%;
    animation: zoom 5s infinite;
}

.it-about-4__shape-2 {
    position: absolute;
    top: 32%;
    right: 31%;
    z-index: 1;
}

.it-about-4__thumb-text {
    position: absolute;
    bottom: 50px;
    right: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-4__thumb-text {
        right: 20px;
    }
}

.it-about-4__thumb-text i {
    font-size: 50px;
    color: var(--it-common-white);
}

.it-about-4__thumb-text span {
    font-weight: 500;
    font-size: 16px;
    color: var(--it-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-4__thumb-text span {
        font-size: 13px;
    }
}

.it-about-4__thumb-text h5 {
    font-weight: 700;
    font-size: 80px;
    color: var(--it-common-white);
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-4__thumb-text h5 {
        font-size: 40px;
    }
}

.it-about-4__thumb-icon {
    position: absolute;
    top: 41%;
    left: 25px;
    z-index: 111;
}

.it-about-4__thumb-icon a {
    font-size: 25px;
    color: var(--it-theme-3);
}

.it-about-4__shape-3 {
    position: absolute;
    top: 207px;
    left: -5.6%;
    animation: rotate2 15s linear infinite;
    z-index: 5;
}

@media (max-width: 767px) {
    .it-about-4__btn-box {
        margin-bottom: 25px;
    }
}

.it-about-5__experience-box {
    transform: translateY(-13px);
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-about-5__experience-box {
        transform: translateY(-8px);
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about-5__experience-box {
        transform: translateY(-1px);
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-5__experience-box {
        transform: translateY(0px);
    }
}

@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-5__experience-box {
        transform: translateY(0px);
    }
}

.it-about-5__experience-box h6 {
    font-size: 80px;
    margin-bottom: 0;
    margin-right: 15px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-about-5__experience-box h6 {
        font-size: 73px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about-5__experience-box h6 {
        font-size: 65px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-5__experience-box h6 {
        font-size: 65px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-5__experience-box h6 {
        font-size: 65px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-5__experience-box h6 {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .it-about-5__experience-box h6 {
        font-size: 60px;
    }
}

.it-about-5__experience-box span {
    font-size: 16px;
    line-height: 28px;
    color: #6a6a6a;
    display: inline-block;
    transform: translateY(-9px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-5__experience-box span {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .it-about-5__experience-box span {
        font-size: 13px;
        line-height: 18px;
    }
}

.it-about-5__button-box a {
    margin-right: 75px;
}

@media (max-width: 767px) {
    .it-about-5__button-box a {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about-5__button-box a {
        margin-bottom: 0px;
        margin-right: 30px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-about-5__button-box a {
        margin-right: 30px;
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .it-about-5__button-box {
        flex-wrap: wrap;
    }
}

.it-about-5__bottom-icon i {
    font-size: 44px;
    color: var(--it-theme-3);
    margin-right: 15px;
    display: inline-block;
    transform: translateY(10px);
}

.it-about-5__bottom-icon span {
    font-size: 20px;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
    font-weight: 700;
    line-height: 24px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-about-5__bottom-icon span {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about-5__bottom-icon span {
        font-size: 17px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-5__bottom-icon 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) {
    .it-about-5__bottom-icon span {
        font-size: 15px;
        line-height: 18px;
    }
}

@media (max-width: 767px) {
    .it-about-5__bottom-icon span {
        font-size: 15px;
        line-height: 18px;
    }
}

.it-about-5__bottom-wrapper {
    margin-right: 115px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about-5__bottom-wrapper {
        margin-right: 180px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-about-5__bottom-wrapper {
        margin-right: 350px;
    }
}

@media (max-width: 767px) {
    .it-about-5__bottom-wrapper {
        margin-right: 0;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-about-5__bottom-wrapper {
        margin-right: 80px;
    }
}

.it-about-5__fea-list {
    margin-bottom: 50px;
}

.it-about-5__fea-list ul li {
    font-weight: 500;
    color: var(--it-theme-3);
    list-style-type: none;
    padding-left: 28px;
    padding-bottom: 15px;
    position: relative;
}

@media (max-width: 767px) {
    .it-about-5__fea-list ul li {
        font-size: 14px;
    }
}

.it-about-5__fea-list ul li:last-child {
    padding-bottom: 0;
}

.it-about-5__fea-list ul li i {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 18px;
    color: var(--it-common-black);
}

@media (max-width: 767px) {
    .it-about-5__thumb-box img {
        width: 100%;
    }
}

.it-about-5__thumb-sm {
    position: absolute;
    bottom: 45px;
    left: 60px;
    animation: ittranslateX2 4s infinite alternate;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-about-5__thumb-sm {
        left: 15px;
    }
}

@media (max-width: 767px) {
    .it-about-5__thumb-sm {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .it-about-5__thumb-sm img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-5__left-box {
        margin-bottom: 50px;
    }
}

.it-about-5__shape-1 {
    position: absolute;
    top: 7%;
    left: 13%;
    z-index: -1;
    animation: ittranslateY2 3s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about-5__shape-1 {
        left: 16%;
    }
}

.it-about-5__shape-2 {
    position: absolute;
    bottom: 1%;
    right: -22%;
    z-index: -1;
    animation: itupdown 2s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-about-5__shape-2 {
        right: -18%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-5__shape-2 {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-about-5__text p {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-about-5__text p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .it-about-5__left-box {
        margin-bottom: 50px;
    }
}

.it-about-progress {
    width: 100%;
}

.it-about-progress-item {
    position: relative;
    padding-bottom: 30px;
}

.it-about-progress-item h4 {
    font-weight: 800;
    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-about-progress-item h4 {
        font-size: 15px;
    }
}

.it-about-progress-item .progress-count {
    position: absolute;
    top: 7px;
    right: 0;
    font-size: 14px;
    font-weight: 800;
}

.it-about-progress-item .progress {
    height: 4px;
    background-color: #e2e6e6;
    border-radius: 0;
    overflow: visible;
}

.it-about-progress-item .progress .progress-bar {
    background-color: var(--it-theme-3);
    overflow: visible;
}

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

/*  28. technology css start
/*----------------------------------------*/

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-technology-3__left-box {
        margin-bottom: 50px;
    }
}

.it-technology-3__list-box {
    padding-bottom: 45px;
}

.it-technology-3__list-box ul li {
    font-weight: 500;
    color: var(--it-common-white);
    list-style-type: none;
    padding-left: 28px;
    padding-bottom: 10px;
    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-technology-3__list-box ul li {
        font-size: 14px;
    }
}

.it-technology-3__list-box ul li:last-child {
    padding-bottom: 0;
}

.it-technology-3__list-box ul li i {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 18px;
    color: var(--it-theme-1);
}

.it-technology-3__bg {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.it-technology-3__bg::after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(4, 23, 26);
    opacity: 0.922;
    position: absolute;
    z-index: -1;
}

.it-technology-3__text p {
    padding-right: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-technology-3__text p {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-technology-3__text p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .it-technology-3__text p {
        font-size: 14px;
        padding-right: 0;
    }
}

.it-technology-3__icon {
    margin-bottom: 55px;
}

@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-technology-3__icon {
        margin-bottom: 40px;
    }
}

.it-technology-3__icon span {
    font-size: 55px;
    color: #fff;
    transition: all 0.3s ease-out 0s;
    display: inline-block;
}

.it-technology-3__text span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    font-family: var(--it-ff-heading);
    transition: 0.3s;
}

.it-technology-3__item {
    padding: 36px 15px;
    border: 1px solid rgb(20, 56, 62);
    transform: 0.3s;
}

.it-technology-3__item:hover {
    border: 1px solid #fff;
}

.it-technology-3__item:hover .it-technology-3__icon span {
    color: var(--it-theme-1);
    animation: icon-bounce 0.8s 1;
}

.it-technology-3__item:hover .it-technology-3__text span {
    color: var(--it-theme-1);
}

.it-technology-3__right-box {
    margin-left: -40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-technology-3__right-box {
        margin-left: 0;
    }
}

.it-technology-3__shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    animation: itupdown 0.8s infinite alternate;
}

.it-technology-3__shape-2 {
    animation: ittranslateX2 3s infinite alternate;
    position: absolute;
    bottom: 0;
    right: -20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-technology-4__right-box {
        margin-bottom: 50px;
    }
}

.it-technology-4__list-box {
    padding-bottom: 55px;
}

.it-technology-4__list-box ul li {
    font-weight: 500;
    color: var(--it-common-black);
    list-style-type: none;
    padding-left: 28px;
    padding-bottom: 10px;
    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-technology-4__list-box ul li {
        font-size: 14px;
    }
}

.it-technology-4__list-box ul li:last-child {
    padding-bottom: 0;
}

.it-technology-4__list-box ul li i {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 18px;
    color: var(--it-theme-3);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-technology-4__text p {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-technology-4__text p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .it-technology-4__text p {
        font-size: 14px;
        padding-right: 0;
    }
}

.it-technology-4__icon {
    margin-bottom: 55px;
}

@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-technology-4__icon {
        margin-bottom: 40px;
    }
}

.it-technology-4__icon span {
    font-size: 55px;
    color: #fff;
    transition: 0.3s;
}

.it-technology-4__idea-text p {
    color: var(--it-theme-3);
    font-weight: 700;
    font-size: 18px;
    font-family: var(--it-ff-heading);
    padding-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-technology-4__idea-text p {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-technology-4__idea-text p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-technology-4__idea-text p {
        font-size: 14px;
    }
    .it-technology-4__idea-text p br {
        display: none;
    }
}

@media (max-width: 767px) {
    .it-technology-4__idea-wrap {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-technology-4__idea-wrap {
        flex-wrap: nowrap;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-technology-4__idea-wrap {
        flex-wrap: nowrap;
    }
}

.it-technology-4__idea-icon {
    position: relative;
    margin-right: 22px;
}

.it-technology-4__idea-icon i {
    font-size: 62px;
    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-technology-4__idea-icon i {
        font-size: 55px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-technology-4__idea-icon i {
        font-size: 50px;
    }
}

.it-technology-4__idea-icon span {
    height: 35px;
    width: 35px;
    background-color: var(--it-theme-3);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: -1;
}

.it-technology-4__item p {
    font-family: var(--it-ff-heading);
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: var(--it-common-black);
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-technology-4__item p {
        font-size: 13px;
    }
}

.it-technology-4__icon-2 {
    margin-left: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-technology-4__icon-2 {
        margin-left: 30px;
    }
}

.it-technology-4__icon-2 span {
    display: inline-block;
    height: 65px;
    width: 65px;
    border-radius: 50%;
    background-color: var(--it-common-black);
    line-height: 77px;
    text-align: center;
    font-size: 40px;
    margin-right: 15px;
    color: var(--it-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-technology-4__icon-2 span {
        font-size: 30px;
        height: 50px;
        width: 50px;
        line-height: 62px;
    }
}

@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-technology-4__icon-2 span {
        font-size: 30px;
        height: 60px;
        width: 60px;
        line-height: 70px;
    }
}

.it-technology-4__thumb-sm {
    position: absolute;
    bottom: 0;
    left: 0;
    animation: ittranslateX2 4s infinite alternate;
}

@media (max-width: 767px) {
    .it-technology-4__thumb-sm {
        position: static;
    }
}

@media (max-width: 767px) {
    .it-technology-4__thumb-sm img {
        width: 100%;
    }
}

.it-technology-4__thumb-box {
    margin-left: 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-technology-4__thumb-box {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .it-technology-4__thumb-box img {
        margin-bottom: 20px;
        width: 100%;
    }
}

.it-technology-4__shape {
    position: absolute;
    top: 75px;
    left: 90px;
    z-index: -1;
    animation: zoom 7s infinite;
}

.it-technology-4__shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 957px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-technology-4__shape-2 {
        width: 806px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-technology-4__shape-2 {
        width: 705px;
    }
}

@media (max-width: 767px) {
    .it-technology-4__list-wrapper a {
        margin-bottom: 60px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-technology-4__list-wrapper a {
        margin-bottom: 0px;
    }
}

.it-technology-4__color {
    margin-left: 75px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-technology-4__color {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-technology-4__color {
        margin-left: 0px;
    }
}

.it-technology-4__color .it-technology-4__idea-icon i {
    color: var(--it-common-white);
    position: relative;
    z-index: 11;
}

.it-technology-4__color .it-technology-4__idea-icon span {
    background-color: #292929;
    z-index: 1;
}

.it-technology-4__color .it-technology-4__idea-text p {
    color: var(--it-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-technology-4__color .it-technology-4__idea-text p {
        margin-bottom: 0px;
    }
}

.it-technology-4__color .it-technology-4__list-box ul li {
    color: #8f8f8f;
}

.it-technology-5__bg {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-technology-5__bg {
        width: 51%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-technology-5__bg {
        width: 51%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-technology-5__bg {
        width: 53%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-technology-5__bg {
        width: 52%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-technology-5__bg {
        position: static;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-technology-5__bg img {
        height: 630px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-technology-5__bg img {
        height: 550px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-technology-5__bg img {
        height: 580px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-technology-5__bg img {
        margin-bottom: 50px;
    }
}

.it-technology-5__bg-text {
    background-color: rgb(24, 24, 24);
    opacity: 0.8;
    padding: 23px 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-technology-5__bg-text {
        padding: 25px 27px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-technology-5__bg-text {
        padding: 30px 30px;
        bottom: 49%;
    }
}

.it-technology-5__bg-text i {
    font-size: 64px;
    color: var(--it-theme-3);
    display: inline-block;
    margin-right: 25px;
    transform: translateY(7px);
}

@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-technology-5__bg-text i {
        font-size: 50px;
    }
}

.it-technology-5__bg-text span {
    line-height: 28px;
    font-weight: 700;
    font-size: 18px;
    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-technology-5__bg-text span {
        font-size: 14px;
    }
}

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

/*  09. choose css start
/*----------------------------------------*/

.it-choose-3__space {
    margin-top: -95px;
    position: relative;
    z-index: 3;
}

@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-3__space {
        margin-top: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-choose-3__thumb {
        margin-left: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-choose-3__thumb {
        margin-left: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-choose-3__thumb {
        margin-bottom: 70px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-choose-3__thumb img {
        max-width: 90%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-choose-3__thumb img {
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .it-choose-3__thumb img {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-choose-3__thumb img {
        width: 100%;
    }
}

.it-choose-3__thumb-sm {
    position: absolute;
    left: -200px;
    bottom: 0;
    animation: ittranslateX2 4s forwards infinite alternate;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-choose-3__thumb-sm {
        left: -50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-choose-3__thumb-sm {
        left: -50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-choose-3__thumb-sm {
        left: 0px;
    }
}

@media (max-width: 767px) {
    .it-choose-3__thumb-sm {
        position: static;
    }
}

@media (max-width: 767px) {
    .it-choose-3__thumb-sm img {
        width: 100%;
    }
}

.it-choose-3__thumb-shape {
    position: absolute;
    top: 155px;
    left: -135px;
    z-index: -1;
    animation: zoom 7s infinite;
}

.it-choose-3__shape {
    position: absolute;
    top: 0;
    right: -3%;
    animation: ittranslateX2 3s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-choose-3__shape {
        right: -4%;
    }
}

.it-choose-3__icon {
    position: relative;
    margin-right: 30px;
}

.it-choose-3__icon i {
    font-size: 62px;
    color: var(--it-theme-2);
}

.it-choose-3__icon span {
    height: 35px;
    width: 35px;
    background-color: var(--it-theme-1);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 6px;
    z-index: -1;
}

@media (max-width: 767px) {
    .it-choose-2__item-box {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-choose-2__item-box {
        flex-wrap: nowrap;
    }
}

.it-choose-2__item {
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.08);
    padding: 20px;
    padding-right: 42px;
}

@media (max-width: 767px) {
    .it-choose-2__item {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-choose-2__item {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-choose-2__item {
        padding: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-choose-2__item {
        padding-right: 50px;
        padding-left: 40px;
    }
}

.it-choose-2__item.active {
    background-color: var(--it-theme-1);
}

.it-choose-2__item.active-2 {
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.08);
    background-color: var(--it-common-white);
}

.it-choose-2__item.active-2 span {
    color: var(--it-theme-3);
}

.it-choose-2__item.color {
    box-shadow: none;
    padding: 0;
}

.it-choose-2__item.color:not(:last-child) {
    padding-right: 55px;
}

.it-choose-2__item.color span {
    color: var(--it-theme-3);
}

.it-choose-2__item span {
    font-size: 50px;
    color: var(--it-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-choose-2__item span {
        font-size: 40px;
    }
}

.it-choose-2__item h6 {
    line-height: 24px;
    font-size: 20px;
    margin-left: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-choose-2__item h6 {
        font-size: 17px;
        margin-left: 21px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-choose-2__item h6 {
        font-size: 17px;
    }
}

.it-choose-2__content span {
    font-weight: 700;
    font-size: 24px;
    color: var(--it-common-black);
    display: block;
    margin-bottom: 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) {
    .it-choose-2__content p {
        font-size: 14px;
    }
    .it-choose-2__content p br {
        display: none;
    }
}

@media (max-width: 767px) {
    .it-choose-2__content p {
        font-size: 14px;
        padding-bottom: 20px;
    }
    .it-choose-2__content p br {
        display: none;
    }
}

.it-choose-2__text {
    margin-left: 55px;
}

.it-choose-2__text span b {
    font-size: 40px;
    color: var(--it-common-black);
}

.it-choose-2__text-2 p {
    font-weight: 700;
    color: var(--it-theme-3);
    line-height: 26px;
}

@media (max-width: 767px) {
    .it-choose-2__text-2 p {
        font-size: 14px;
    }
    .it-choose-2__text-2 p br {
        display: none;
    }
}

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

/*  10. contact css start
/*----------------------------------------*/

.it-contact-2__left-box {
    padding: 50px;
    padding-top: 45px;
    background-color: #0a2428;
    margin-left: -70px;
    margin-right: 65px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-contact-2__left-box {
        margin-left: 0;
        margin-right: 60px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-2__left-box {
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-contact-2__left-box {
        margin-bottom: 50px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 767px) {
    .it-contact-2__left-box {
        margin-bottom: 50px;
        padding: 30px 10px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-contact-2__left-box {
        margin-bottom: 50px;
        padding: 30px 25px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

.it-contact-2__input input {
    width: 100%;
    margin-bottom: 18px;
    background-color: var(--it-common-black);
    border: none;
    color: var(--it-common-white);
    border: 1px solid transparent;
}

@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-contact-2__input input {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .it-contact-2__input input {
        font-size: 13px;
    }
}

.it-contact-2__input input:focus {
    border-color: var(--it-theme-1);
}

.it-contact-2__input textarea {
    height: 150px;
    resize: none;
    padding: 30px;
    padding-top: 25px;
    margin-bottom: 20px;
    background-color: var(--it-common-black);
    border: none;
    color: var(--it-common-white);
    border: 1px solid transparent;
}

.it-contact-2__input textarea:focus {
    border-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) {
    .it-contact-2__input textarea {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .it-contact-2__input textarea {
        font-size: 13px;
    }
}

.it-contact-2__title-sm {
    font-size: 30px;
    color: var(--it-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-contact-2__title-sm {
        font-size: 23px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-contact-2__title-sm {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .it-contact-2__title-sm {
        font-size: 20px;
    }
}

.it-contact-2__left-color {
    border: none;
    background-color: #fff;
    margin-left: 0;
}

.it-contact-2__left-color .it-contact-2__input input {
    width: 100%;
    margin-bottom: 18px;
    border: none;
    background-color: rgb(245, 243, 238);
    color: var(--it-common-black);
    border: 1px solid transparent;
}

.it-contact-2__left-color .it-contact-2__input input:focus {
    border-color: var(--it-theme-1);
}

@media (max-width: 767px) {
    .it-contact-2__left-color .it-contact-2__input input {
        font-size: 14px;
    }
}

.it-contact-2__left-color .it-contact-2__input textarea {
    height: 150px;
    resize: none;
    padding: 30px;
    padding-top: 25px;
    margin-bottom: 20px;
    background-color: rgb(245, 243, 238);
    color: var(--it-common-black);
    border: none;
    border: 1px solid transparent;
}

.it-contact-2__left-color .it-contact-2__input textarea:focus {
    border-color: var(--it-theme-1);
}

@media (max-width: 767px) {
    .it-contact-2__left-color .it-contact-2__input textarea {
        font-size: 14px;
    }
}

.it-contact-2__color-2 {
    background-color: #f5f3ee;
    box-shadow: none;
    padding: 80px 75px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-contact-2__color-2 {
        padding: 80px 25px;
    }
}

@media (max-width: 767px) {
    .it-contact-2__color-2 {
        padding: 50px 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-contact-2__color-2 {
        padding: 50px 25px;
    }
}

.it-contact-2__color-2 .it-contact-2__input input {
    border: 1px solid transparent;
    background-color: var(--it-common-white);
}

.it-contact-2__color-2 .it-contact-2__input input:focus {
    border: 1px solid var(--it-theme-1);
}

.it-contact-2__color-2 .it-contact-2__input textarea {
    border: 1px solid transparent;
    background-color: var(--it-common-white);
}

.it-contact-2__color-2 .it-contact-2__input textarea:focus {
    border: 1px solid var(--it-theme-1);
}

.it-contact-2__red-border {
    border: none;
    background-color: #fff;
    margin-left: 0;
    border: 1px solid var(--it-theme-3);
}

.it-contact-2__red-border .it-contact-2__input input {
    width: 100%;
    margin-bottom: 18px;
    border: none;
    background-color: #f3f3f3;
    color: var(--it-common-black);
    transition: 0.3s;
    border: 1px solid transparent;
}

.it-contact-2__red-border .it-contact-2__input input:focus {
    border: 1px solid var(--it-theme-3);
}

@media (max-width: 767px) {
    .it-contact-2__red-border .it-contact-2__input input {
        font-size: 14px;
    }
}

.it-contact-2__red-border .it-contact-2__input textarea {
    height: 150px;
    resize: none;
    padding: 30px;
    padding-top: 25px;
    margin-bottom: 20px;
    background-color: #f3f3f3;
    color: var(--it-common-black);
    border: none;
    transition: 0.3s;
    border: 1px solid transparent;
}

.it-contact-2__red-border .it-contact-2__input textarea:focus {
    border: 1px solid var(--it-theme-3);
}

@media (max-width: 767px) {
    .it-contact-2__red-border .it-contact-2__input textarea {
        font-size: 14px;
    }
}

.it-contact-2__input-box {
    padding-top: 25px;
}

.it-contact-2__input-box .it-contact-2__input input {
    border: none;
    background-color: #f5f3ee;
    border: 1px solid transparent;
}

.it-contact-2__input-box .it-contact-2__input input:focus {
    border: 1px solid var(--it-theme-1);
}

.it-contact-2__input-box .it-contact-2__input textarea {
    background-color: #f5f3ee;
    border: none;
    border: 1px solid transparent;
}

.it-contact-2__input-box .it-contact-2__input textarea:focus {
    border: 1px solid var(--it-theme-1);
}

@media (max-width: 767px) {
    .it-contact-2__text p {
        font-size: 14px;
    }
}

.it-contact-3__space {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-bottom: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-3__space {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-contact-3__space {
        padding-top: 0;
        margin-bottom: 0;
    }
}

.it-contact-3__bg {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-contact-3__bg {
        width: 35%;
    }
}

.it-contact-3__right-box {
    margin-left: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-3__right-box {
        margin-left: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-contact-3__right-box {
        margin-left: 0;
    }
}

.it-contact-3__top-box {
    padding: 55px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .it-contact-3__top-box {
        padding: 25px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-contact-3__top-box {
        padding: 45px;
    }
}

.it-contact-3__top-box span {
    font-size: 70px;
    color: var(--it-theme-1);
    margin-right: 15px;
    line-height: 0;
}

@media (max-width: 767px) {
    .it-contact-3__top-box span {
        font-size: 53px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-contact-3__top-box span {
        font-size: 60px;
    }
}

.it-contact-3__top-box h6 {
    font-size: 24px;
    line-height: 34px;
    color: #fff;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-3__top-box h6 {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-contact-3__top-box h6 {
        font-size: 17px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-contact-3__top-box h6 {
        font-size: 21px;
    }
}

.it-contact-3__contact-list:hover .it-contact-3__icon span {
    background-color: var(--it-common-black);
    color: var(--it-theme-1);
}

.it-contact-3__icon {
    margin-right: 30px;
}

.it-contact-3__icon span {
    font-size: 40px;
    color: var(--it-common-black);
    display: inline-block;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    line-height: 90px;
    text-align: center;
    transition: 0.3s;
    background-color: #f2f4f8;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-3__icon span {
        font-size: 30px;
        height: 70px;
        width: 70px;
        line-height: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-contact-3__icon span {
        font-size: 30px;
        height: 70px;
        width: 70px;
        line-height: 70px;
    }
}

.it-contact-3__text span {
    display: block;
    padding-bottom: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-contact-3__text span {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-contact-3__text span {
        font-size: 14px;
    }
}

.it-contact-3__text a {
    font-size: 22px;
    font-weight: 700;
    color: var(--it-common-black);
    transition: 0.3s;
}

.it-contact-3__text a:hover {
    color: var(--it-theme-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-contact-3__text a {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-contact-3__text a {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .it-contact-3__text a {
        font-size: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-contact-3__text a {
        font-size: 19px;
    }
}

.it-contact-3__title-sm {
    font-size: 36px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-contact-3__title-sm {
        font-size: 30px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-contact-3__title-sm {
        font-size: 23px;
    }
}

@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-3__title-sm {
        font-size: 20px;
    }
}

.it-contact-3__shape {
    position: absolute;
    right: 0%;
    top: -22%;
    z-index: 4;
    animation: itupdown 0.8s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-contact-3__shape {
        right: -8%;
        top: -22%;
    }
}

.it-location__item iframe {
    width: 100%;
    height: 480px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-location__item iframe {
        height: 400px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-location__item iframe {
        height: 350px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-location__item iframe {
        height: 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-location__item iframe {
        height: 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-contact__location {
        margin-bottom: 50px;
    }
}

.it-contact__location iframe {
    width: 100%;
    height: 475px;
}

.it-contact__right-box {
    margin-left: 70px;
}

@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__right-box {
        margin-left: 0;
    }
}

.it-contact__content h5 {
    font-size: 24px;
    font-weight: 700;
    color: var(--it-theme-1);
    padding-bottom: 15px;
}

.it-contact__content ul li {
    display: block;
    list-style-type: none;
    padding-bottom: 20px;
}

.it-contact__content>a {
    font-size: 18px;
    font-weight: 700;
    color: var(--it-common-black);
    letter-spacing: 5px;
    transition: 0.3s;
}

.it-contact__content>a:hover {
    color: var(--it-theme-3);
}

.it-contact__list span {
    font-size: 18px;
    color: #a34898;
    font-weight: 700;
    display: block;
    padding-bottom: 5px;
}

.it-contact__list>a {
    transition: 0.3s;
    color: #000;
    line-height: 28px;
}

.it-contact__list>a:hover {
    color: #000;
}

@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__section-box p {
        font-size: 14px;
    }
}

.custom_list {
    list-style: none;
    color: #000;
}
.custom_list li {
    padding-bottom: 10px;
    font-size: 17px;
    line-height: 27px;
}

.custom_list li strong {
    color: #f37336;
    margin-bottom: -18px;
    display: block;
    font-size: 22px;
    margin-top: 20px;
}

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

/*  17. funfact css start
/*----------------------------------------*/

.it-funfact__item {
    position: relative;
    z-index: 11;
}

.it-funfact__item:hover .it-funfact__icon span {
    color: var(--it-theme-1);
}

.it-funfact__author-thumb {
    padding-right: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-funfact__author-thumb img {
        width: 93%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-funfact__author-thumb img {
        width: 85%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-funfact__author-thumb img {
        width: 85%;
    }
}

.it-funfact__author-info span {
    font-weight: 600;
    font-size: 24px;
    color: var(--it-common-black);
    display: block;
    font-family: var(--it-ff-heading);
    padding-bottom: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-funfact__author-info span {
        font-size: 22px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-funfact__author-info span {
        font-size: 18px;
    }
}

.it-funfact__author-info i {
    font-size: 14px;
    font-style: normal;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 20px;
}

.it-funfact__social a {
    font-size: 14px;
    margin-right: 7px;
    transition: 0.3s;
}

.it-funfact__social a:hover {
    color: var(--it-theme-1);
}

.it-funfact__icon span {
    font-size: 65px;
    color: var(--it-common-white);
    margin-right: 30px;
    transform: translateY(11px);
    display: inline-block;
    transition: 0.3s;
}

@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__icon span {
        font-size: 50px;
        margin-right: 20px;
        transform: translateY(7px);
    }
}

.it-funfact__title-sm {
    font-size: 40px;
    color: var(--it-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-funfact__title-sm {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-funfact__title-sm {
        font-size: 32px;
    }
}

.it-funfact__title-sm i {
    font-style: normal;
}

.it-funfact__text span {
    color: #7c888a;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-funfact__text span {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-funfact__text span {
        font-size: 14px;
    }
}

.it-funfact__bg {
    padding: 100px 120px;
    padding-bottom: 70px;
    position: relative;
}

@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) {
    .it-funfact__bg {
        padding: 100px 40px;
        padding-bottom: 70px;
    }
}

@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__bg {
        padding: 60px 17px;
        padding-bottom: 30px;
    }
}

.it-funfact__bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--it-theme-1);
    height: 32px;
    width: 32px;
}

.it-funfact__wrap {
    position: relative;
    padding: 0 260px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-funfact__wrap {
        padding: 0 215px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-funfact__wrap {
        padding: 0 60px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-funfact__wrap {
        padding: 0 15px;
    }
}

.it-funfact__wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--it-grey-1);
    height: 50%;
    width: 100%;
}

.it-funfact__wrap-2 {
    padding: 0 260px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-funfact__wrap-2 {
        padding: 0 215px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-funfact__wrap-2 {
        padding: 0 60px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-funfact__wrap-2 {
        padding: 0 15px;
    }
}

.it-funfact__shape {
    position: absolute;
    top: -31px;
    left: -14%;
}

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

/*  30. video css start
/*----------------------------------------*/

.it-video__space {
    padding: 120px 0;
    overflow: hidden;
}

.it-video__bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    height: 85%;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-video__bg {
        background-position: center;
        width: 52%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-video__bg {
        background-position: center;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-video__bg {
        background-position: center;
        position: static;
        height: 700px;
        width: 100%;
        margin-bottom: 50px;
        background-size: cover;
    }
}

@media (max-width: 767px) {
    .it-video__bg {
        background-position: center;
        position: static;
        height: 400px;
        width: 100%;
        margin-bottom: 50px;
        background-size: cover;
    }
}

.it-video__bg::after {
    content: "";
    position: absolute;
    top: 220px;
    right: -165px;
    height: 700px;
    width: 700px;
    border-radius: 50%;
    border: 1px solid var(--it-common-white);
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-video__bg::after {
        top: 288px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-video__bg::after {
        top: 288px;
        right: -179px;
    }
}

@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-video__bg::after {
        display: none;
    }
}

.it-video__bg-icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-video__bg-icon {
        display: none;
    }
}

.it-video__bg-icon a {
    color: var(--it-common-black);
    font-size: 25px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 84px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--it-theme-1);
    position: relative;
}

.it-video__bg-icon a::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 70%;
    height: 70%;
    background-color: rgba(249, 189, 23, 0.5);
    animation: borderanimate2 2s linear infinite;
    z-index: -1;
    border-radius: 50%;
}

.it-video__bg-icon a::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 90%;
    height: 90%;
    transform: scale(1.5);
    border: 1px solid var(--it-theme-1);
    animation: borderanimate2 2s linear infinite;
    border-radius: 50%;
}

.it-video__bg-icon a i {
    padding-left: 4px;
}

.it-video__section-box p {
    margin-bottom: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-video__section-box p {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-video__section-box p {
        font-size: 14px;
    }
    .it-video__section-box p br {
        display: none;
    }
}

.it-video__icon span {
    margin-right: 25px;
    font-size: 28px;
    color: var(--it-common-black);
    display: inline-block;
    transition: 0.3s;
}

.it-video__icon span i {
    transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-video__icon span {
        font-size: 19px;
        height: 40px;
        line-height: 46px;
        width: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-video__icon span {
        font-size: 19px;
        height: 60px;
        line-height: 66px;
        width: 60px;
    }
}

@media (max-width: 767px) {
    .it-video__icon span {
        font-size: 19px;
        height: 40px;
        line-height: 46px;
        width: 40px;
    }
}

.it-video__title-sm {
    font-size: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-video__title-sm {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-video__title-sm {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-video__text p {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-video__text p {
        font-size: 14px;
    }
    .it-video__text p br {
        display: none;
    }
}

.it-video__content {
    transition: 0.3s;
}

.it-video__content:not(:last-child) {
    margin-bottom: 20px;
}

.it-video__content:hover .it-video__icon span {
    color: #ff9800;
}

.it-video__color:hover .it-video__icon span {
    background-color: var(--it-common-white);
}

.it-video__color .it-video__title-sm {
    color: #ffffff;
}

.it-video__color .it-video__text p {
    font-size: 14px;
}

.it-video__color .it-video__icon span {
    margin-right: 12px;
    font-size: 23px;
    color: #ffffff;
    height: 50px;
    line-height: 56px;
    text-align: center;
    width: 50px;
    background-color: #ff9800;
    border-radius: 50%;
    display: inline-block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-video__color .it-video__icon span {
        font-size: 19px;
        height: 40px;
        line-height: 46px;
        width: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-video__color .it-video__icon span {
        font-size: 19px;
        height: 60px;
        line-height: 66px;
        width: 60px;
    }
}

.it-video-2__bg {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 600px;
    padding-top: 120px;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-video-2__bg {
        height: 500px;
        padding-top: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-video-2__bg {
        height: 440px;
        padding-top: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-video-2__bg {
        height: 300px;
        justify-content: center;
        align-items: center;
        display: flex;
        padding-top: 0;
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .it-video-2__bg {
        height: 450px;
        justify-content: center;
        align-items: center;
        display: flex;
        padding-top: 0;
        margin-bottom: 70px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-video-2__bg {
        height: 350px;
        justify-content: center;
        align-items: center;
        display: flex;
        padding-top: 0;
        margin-bottom: 70px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-video-2__bg {
        height: 300px;
    }
}

.it-video-2__bg::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 23, 26, 0.8);
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-video-2__content {
        display: flex;
        justify-content: space-between;
    }
}

.it-video-2__icon {
    margin-bottom: 40px;
}

.it-video-2__icon a {
    font-size: 25px;
    color: var(--it-common-black);
    width: 80px;
    height: 80px;
    background-color: var(--it-theme-1);
    border-radius: 50%;
    line-height: 85px;
    text-align: center;
    display: inline-block;
    position: relative;
}

.it-video-2__icon a::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 70%;
    height: 70%;
    background-color: rgba(249, 189, 23, 0.5);
    animation: borderanimate2 2s linear infinite;
    z-index: -1;
    border-radius: 50%;
}

.it-video-2__icon a::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 90%;
    height: 90%;
    transform: scale(1.5);
    border: 1px solid var(--it-theme-1);
    animation: borderanimate2 2s linear infinite;
    border-radius: 50%;
}

.it-video-2__icon a i {
    padding-left: 5px;
}

.it-video-2__title {
    font-size: 80px;
    color: #fff;
    line-height: 1;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-video-2__title {
        font-size: 70px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-video-2__title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-video-2__title {
        font-size: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-video-2__title {
        font-size: 47px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-video-2__title {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .it-video-2__title {
        font-size: 33px;
    }
    .it-video-2__title br {
        display: none;
    }
}

.it-video-2__shape-1 {
    position: absolute;
    right: -3%;
    top: 0%;
    animation: moving 9s linear infinite;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-video-2__shape-1 {
        right: -8%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-video-2__shape-1 {
        right: -35%;
    }
}

.it-video-2__shape-2 {
    position: absolute;
    left: 0%;
    top: -1%;
    animation: itupdown 0.8s infinite alternate;
}

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

/* 07. cart css start
/*----------------------------------------*/

.table-content .table> :not(:first-child) {
    border-top: 0;
}

.table-content table {
    background: #ffffff;
    border-color: #eaedff;
    border-radius: 0;
    border-style: solid;
    border-width: 1px 0 0 1px;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
}

.table-content .table> :not(:last-child)> :last-child>* {
    border-bottom-color: #eaedff;
}

.table-content .product-quantity {
    float: none;
}

.table-content table td.product-name {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.table-content table td.product-name a:hover {
    color: var(--it-theme-1);
}

.table-content table td {
    border-top: medium none;
    padding: 20px 10px;
    vertical-align: middle;
    font-size: 16px;
}

.table-content table th,
.table-content table td {
    border-bottom: 1px solid #eaedff;
    border-right: 1px solid #eaedff;
}

.product-quantity>input {
    color: #000;
    font-size: 14px;
    font-weight: normal;
    border: 1px solid #dcdcdc;
    height: 22px;
    line-height: 22px;
    padding: 0;
}

.table td,
.table th {
    border-top: 1px solid #eaedff;
}

.product-quantity>input {
    width: 80px;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-quantity>input {
        width: inherit;
    }
}

.table-content table td.product-subtotal {
    font-size: 16px;
}

.table-content table td .cart-plus-minus {
    float: none;
    margin: 0 auto;
}

.coupon-all {
    margin-top: 50px;
}

.coupon {
    float: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .coupon .it-btn {
        padding: 0 35px;
    }
}

@media (max-width: 767px) {
    .coupon {
        float: none;
    }
}

#coupon_code {
    height: 58px;
    border: 2px solid #eaedff;
    padding: 0 30px;
    margin-right: 10px;
    border-radius: 30px;
    width: auto;
}

@media (max-width: 767px) {
    #coupon_code {
        margin-bottom: 15px;
    }
}

.coupon2 {
    float: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .coupon2 .it-btn {
        padding: 0 35px;
    }
}

@media (max-width: 767px) {
    .coupon2 {
        float: none;
        margin-top: 15px;
    }
}

.cart-page-total {
    padding-top: 50px;
}

.cart-page-total>h2 {
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.cart-page-total>ul {
    border: 1px solid #eaedff;
}

.cart-page-total>ul>li {
    list-style: none;
    font-size: 15px;
    color: #6f7172;
    padding: 10px 30px;
    border-bottom: 1px solid #eaedff;
    font-weight: 400;
}

.cart-page-total ul>li>span {
    float: right;
}

.cart-page-total li:last-child {
    border-bottom: 0;
}

td.product-thumbnail img {
    width: 125px;
}

.cart-plus,
.cart-minus {
    width: 20px;
    height: 20px;
    border: 1px solid #e7e7e7;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}

.cart-plus> :hover,
.cart-minus> :hover {
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
}

/* 17. Checkout */

.coupon-accordion h3 {
    background-color: #f7f7f7;
    border-top: 3px solid var(--it-theme-1);
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 25px;
    padding: 1em 2em 1em 3.5em;
    position: relative;
    width: auto;
}

.coupon-accordion h3::before {
    content: "\f07b";
    left: 15px;
    top: 13px;
    position: absolute;
    color: var(--it-theme-1);
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
}

.form-row>label {
    margin-top: 15px;
    margin-left: 15px;
    color: #6f7172;
}

p.lost-password {
    margin-top: 15px;
}

p.lost-password a {
    color: #6f6f6f;
}

p.checkout-coupon input[type=text] {
    height: 45px;
    padding: 0 15px;
    width: 100%;
    border: 1px solid #eaedff;
    margin-bottom: 15px;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

p.checkout-coupon input[type=text]:focus {
    border-color: var(--it-common-black);
}

.coupon-checkout-content {
    display: none;
}

.checkbox-form h3 {
    border-bottom: 1px solid #eaedff;
    font-size: 26px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    width: 100%;
}

.country-select {
    margin-bottom: 30px;
    position: relative;
}

.country-select select {
    width: 100%;
    background-color: transparent;
    border: 1px solid #eaedff;
    padding: 0 10px;
    height: 50px;
}

.country-select label,
.checkout-form-list label {
    color: #6f7172;
    display: block;
    margin: 0 0 5px;
}

.country-select label span.required,
.checkout-form-list label span.required {
    color: var(--it-theme-1);
}

.country-select .nice-select {
    border: 1px solid #eaedff;
    height: 45px;
    padding-left: 10px;
    width: 100%;
    color: #6f7172;
    margin-bottom: 20px;
}

.country-select .nice-select .list {
    width: 100%;
}

.checkout-form-list {
    margin-bottom: 30px;
}

.checkout-form-list label {
    color: #6f7172;
}

.checkout-form-list input[type=text],
.checkout-form-list input[type=password],
.checkout-form-list input[type=email] {
    background: #ffffff;
    border: 1px solid #eaedff;
    border-radius: 0;
    height: 45px;
    padding: 0 0 0 10px;
    width: 100%;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.checkout-form-list input[type=text]:focus,
.checkout-form-list input[type=password]:focus,
.checkout-form-list input[type=email]:focus {
    border-color: var(--it-common-black);
}

.checkout-form-list input[type=text]::-moz-placeholder,
.checkout-form-list input[type=password]::-moz-placeholder,
.checkout-form-list input[type=email]::-moz-placeholder {
    color: #6f7172;
    opacity: 1;
}

.checkout-form-list input[type=text]::placeholder,
.checkout-form-list input[type=password]::placeholder,
.checkout-form-list input[type=email]::placeholder {
    color: #6f7172;
    opacity: 1;
}

.checkout-form-list input[type=checkbox] {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 1px;
}

.create-acc label {
    color: #6f7172;
    display: inline-block;
}

.create-account {
    display: none;
}

.ship-different-title h3 label {
    display: inline-block;
    margin-right: 20px;
    color: var(--it-common-black);
}

.order-notes textarea {
    border: 1px solid #eaedff;
    height: 120px;
    padding: 15px;
    width: 100%;
    outline: 0;
    resize: none;
}

.order-notes textarea:focus {
    border-color: var(--it-common-black);
}

.order-notes textarea::-moz-placeholder {
    color: #6f7172;
    opacity: 1;
}

.order-notes textarea::placeholder {
    color: #6f7172;
    opacity: 1;
}

#ship-box-info {
    display: none;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-default>.panel-heading {
    border-radius: 0;
}

.your-order {
    padding: 30px 40px 45px;
    border: 3px solid #f7f7f7;
}

@media (max-width: 767px) {
    .your-order {
        padding: 15px;
    }
}

.your-order h3 {
    border-bottom: 1px solid #eaedff;
    font-size: 30px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    width: 100%;
}

.your-order-table table {
    background: none;
    border: 0;
    width: 100%;
}

.your-order-table table th,
.your-order-table table td {
    border-bottom: 1px solid #eaedff;
    border-right: medium none;
    color: #6f7172;
    font-size: 14px;
    padding: 15px 0;
    text-align: left;
}

@media (max-width: 767px) {
    .your-order-table table th,
    .your-order-table table td {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .your-order-table table th,
    .your-order-table table td {
        padding-right: 10px;
    }
}

.your-order-table table th {
    border-top: medium none;
    color: #6f7172;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    width: 250px;
}

.panel-body>p {
    color: #222;
}

.your-order-table table .shipping ul li {
    list-style: none;
}

.your-order-table table .shipping ul li input {
    position: relative;
    top: 2px;
}

.your-order-table table .shipping ul li label {
    color: #6f7172;
}

.your-order-table table .shipping th {
    vertical-align: top;
}

.your-order-table table .order-total th {
    border-bottom: 0;
    font-size: 14px;
}

.your-order-table table .order-total td {
    border-bottom: medium none;
}

.your-order-table table tr.cart_item:hover {
    background: #F9F9F9;
}

.your-order-table table tr.order-total td span {
    color: var(--it-common-black);
    font-size: 18px;
    font-weight: 500;
}

.payment-method {
    margin-top: 40px;
}

.payment-method .accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.payment-method .accordion-item {
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #e7e7e7;
}

.payment-method .accordion-button {
    font-size: 16px;
    font-weight: 500;
    color: var(--it-common-black);
    padding: 23px 0;
    border: none;
}

.payment-method .accordion-button:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.payment-method .accordion-button::after {
    position: absolute;
    content: "\f067";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 400;
    margin-left: 0;
    background-image: none;
    color: var(--it-common-black);
    font-family: "Font awesome 5 pro";
}

.payment-method .accordion-button:not(.collapsed) {
    color: var(--it-common-black);
    background-color: var(--it-common-white);
    box-shadow: none;
}

.payment-method .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font awesome 5 pro";
}

.payment-method .accordion-body {
    padding: 8px 0;
    padding-bottom: 40px;
}

.payment-method .accordion-collapse {
    border: none;
}

.panel-title>a {
    display: block;
}

.order-button-payment input {
    background: #232323 none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    margin: 0px 0 0;
    padding: 0;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    width: 100%;
}

.order-button-payment input:hover {
    background: #3e976c none repeat scroll 0 0;
}

.payment-method .card {
    background-color: #ffffff;
    border: 1px solid #eaedff;
    border-radius: 0;
    margin-bottom: 10px;
}

.payment-method .accordion .card:first-of-type {
    border: 1px solid #eaedff;
}

.card-header:first-child {
    border-radius: 0;
}

.payment-method .card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaedff;
}

.order-button-payment button {
    width: 100%;
}

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

/*  06. checkout css start
/*----------------------------------------*/

.checkout__wrapper span {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 35px;
    display: inline-block;
}

.checkout__input input {
    height: 55px;
    line-height: 55px;
    border: 2px solid #ebebeb;
    outline: none;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 20px;
    margin-bottom: 30px;
}

.checkout__input input:focus {
    border: 1px solid var(--it-theme-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .checkout__input input {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .checkout__input input {
        font-size: 13px;
        padding-left: 20px;
    }
}

.checkout__summary-wrapper {
    margin-top: 57px;
    padding: 30px 0;
    background-color: #f1f2f9;
}

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

.checkout__list-item {
    padding: 0 50px;
    padding-bottom: 11px;
    border-bottom: 1px solid #c9c9c9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .checkout__list-item {
        padding: 0 28px;
    }
}

.checkout__list-item b {
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: #333333;
    padding-bottom: 20px;
    display: inline-block;
}

.checkout__summary-list span {
    color: #4a4c59;
    display: inline-block;
    padding-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .checkout__summary-list span {
        font-size: 14px;
    }
}

.checkout__bottom {
    padding: 0 50px;
    padding-top: 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) {
    .checkout__bottom {
        padding: 0 30px;
        padding-top: 28px;
    }
}

.checkout__bottom span {
    font-weight: 700;
    color: #333333;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .checkout__bottom span {
        font-size: 14px;
    }
}

.checkout-form-list input {
    display: inline-block;
    margin-right: 20px;
    position: relative;
    top: 1px;
    width: 19px;
    height: 19px;
    border-color: rgb(221, 221, 221);
}

.checkout-form-list label {
    font-size: 16px;
    color: #636363;
}

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

/*  29. testimonial css start
/*----------------------------------------*/

.it-testimonial__space {
    padding-top: 115px;
    padding-bottom: 120px;
}

.it-testimonial__item {
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.06);
    padding: 40px 30px;
}

@media (max-width: 767px) {
    .it-testimonial__item {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-testimonial__item {
        flex-wrap: nowrap;
    }
}

.it-testimonial__thumb {
    margin-right: 29px;
    position: relative;
    flex: 0 0 auto;
}

.it-testimonial__thumb::after {
    content: "";
    position: absolute;
    left: -12px;
    bottom: 0;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    border: 1px solid var(--it-common-black);
    z-index: -1;
}

.it-testimonial__author-name {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-testimonial__author-name {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .it-testimonial__author-info {
        padding-top: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-testimonial__author-info {
        padding-top: 0px;
    }
}

.it-testimonial__author-info p {
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-testimonial__author-info 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),
(max-width: 767px) {
    .it-testimonial__author-info p {
        font-size: 14px;
    }
    .it-testimonial__author-info p br {
        display: none;
    }
}

.it-testimonial__star {
    padding-bottom: 15px;
}

.it-testimonial__star i {
    font-size: 17px;
    color: var(--it-theme-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-testimonial__star i {
        font-size: 12px;
    }
}

.it-testimonial__shape {
    position: absolute;
    top: -16%;
    left: -6%;
    z-index: -1;
}

.it-testimonial__icon {
    position: absolute;
    right: 40px;
    top: 60px;
}

.it-testimonial__icon span {
    color: var(--it-common-black);
    font-size: 20px;
}

.it-testimonial__section-box {
    padding-bottom: 50px;
}

.it-testimonial__active {
    padding: 20px;
    margin: -20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-testimonial__active {
        padding: 10px;
        margin: -10px;
    }
}

.it-testimonial-2__bg {
    background-repeat: no-repeat;
    background-size: cover;
}

.it-testimonial-2__item {
    position: relative;
    z-index: 11;
    box-shadow: 2px 3.464px 40px 0px rgba(16, 23, 40, 0.08);
}

.it-testimonial-2__item::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 84%;
    width: 100%;
    background-color: var(--it-common-white);
    z-index: -1;
}

.it-testimonial-2__thumb {
    margin-right: 25px;
}

@media (max-width: 767px) {
    .it-testimonial-2__thumb {
        margin-right: 17px;
    }
}

.it-testimonial-2__author-box {
    background-color: var(--it-theme-1);
    margin-left: 30px;
    padding: 5px 10px;
    border-top-left-radius: 56px;
    border-bottom-left-radius: 56px;
    margin-bottom: 35px;
}

.it-testimonial-2__author-info span {
    font-size: 14px;
    color: #5a6163;
    text-transform: uppercase;
}

.it-testimonial-2__author-name {
    font-weight: 600;
    font-size: 24px;
}

@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-testimonial-2__author-name {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .it-testimonial-2__author-name {
        font-size: 18px;
    }
}

.it-testimonial-2__content {
    padding-left: 30px;
    padding-bottom: 40px;
    padding-right: 40px;
}

.it-testimonial-2__content p {
    padding-bottom: 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),
(max-width: 767px) {
    .it-testimonial-2__content p {
        font-size: 14px;
    }
}

.it-testimonial-2__star i {
    color: var(--it-theme-1);
    padding-right: 2px;
}

@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-testimonial-2__arrow-box {
        display: none;
    }
}

.it-testimonial-2__arrow-box button {
    color: var(--it-common-black);
    font-size: 25px;
    box-shadow: 2px 3.464px 40px 0px rgba(16, 23, 40, 0.08);
}

.it-testimonial-2__arrow-box button.test-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -9.5%;
    z-index: 9;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 50%;
    text-align: center;
    background-color: var(--it-common-white);
    transition: 0.3s;
}

.it-testimonial-2__arrow-box button.test-prev:hover {
    background-color: var(--it-common-black);
    color: var(--it-common-white);
}

.it-testimonial-2__arrow-box button.test-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -9.5%;
    z-index: 9;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 50%;
    text-align: center;
    background-color: var(--it-common-white);
    transition: 0.3s;
}

.it-testimonial-2__arrow-box button.test-next:hover {
    background-color: var(--it-common-black);
    color: var(--it-common-white);
}

.it-testimonial-4__top-wrapper {
    margin-bottom: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-testimonial-4__top-wrapper {
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .it-testimonial-4__top-wrapper {
        flex-wrap: wrap;
    }
}

.it-testimonial-4__top-thumb {
    margin-right: 40px;
    flex: 0 0 auto;
    border: 10px solid var(--it-theme-3);
    border-radius: 50%;
}

.it-testimonial-4__item {
    padding-right: 60px;
    padding-bottom: 20px;
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.06);
    background-color: #fff;
    border-top-left-radius: 160px;
    position: relative;
    z-index: 11;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-testimonial-4__item {
        padding: 0px 30px 15px 10px;
    }
}

@media (max-width: 767px) {
    .it-testimonial-4__item {
        padding: 0px 20px 15px 10px;
    }
}

.it-testimonial-4__text p {
    padding-left: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-testimonial-4__text p {
        padding-left: 30px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .it-testimonial-4__text p {
        padding-left: 20px;
        font-size: 14px;
    }
}

.it-testimonial-4__author-info {
    margin-right: 105px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-testimonial-4__author-info {
        margin-right: 0px;
    }
}

@media (max-width: 767px) {
    .it-testimonial-4__author-info {
        margin-right: 0px;
        margin-left: 20px;
    }
}

.it-testimonial-4__author-info span {
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
    .it-testimonial-4__author-info span {
        font-size: 12px;
    }
}

.it-testimonial-4__author-info h6 {
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 9px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-testimonial-4__author-info h6 {
        font-size: 19px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
    .it-testimonial-4__author-info h6 {
        font-size: 19px;
    }
}

.it-testimonial-4__author-info i {
    color: var(--it-theme-3);
}

.it-testimonial-4__quot span {
    font-size: 44px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-testimonial-4__quot span {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .it-testimonial-4__quot span {
        display: none;
    }
}

.it-testimonial-4__active {
    padding: 30px 20px;
    margin: -30px -20px;
}

.it-testimonial-4__active .swiper-slide.swiper-slide-active .it-testimonial-4__quot span {
    color: var(--it-theme-3);
}

.it-testimonial-4__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.it-testimonial-4__shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

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

/*  22. service css start
/*----------------------------------------*/

.it-service__space {
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
    z-index: 11;
}

.it-service__shape {
    position: absolute;
    right: -1%;
    top: -33%;
    z-index: -1;
}

.it-service__shape-2 {
    animation: animationglob 30s cubic-bezier(1, 0.99, 0.03, 0.01) infinite;
    position: absolute;
    left: 0%;
    top: -29%;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service__left-text p {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-service__left-text p {
        font-size: 14px;
    }
    .it-service__left-text p br {
        display: none;
    }
}

.it-service__item:hover .it-service__thumb::after {
    opacity: 1;
    visibility: visible;
}

.it-service__item:hover .it-service__icon {
    opacity: 1;
    visibility: visible;
}

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

.it-service__thumb {
    position: relative;
    margin-bottom: 27px;
}

.it-service__thumb img {
    border-radius: 150px;
    width: 100%;
    transition: 0.3s;
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-service__thumb img {
        border-radius: 200px;
    }
}

.it-service__thumb::after {
    position: absolute;
    content: "";
    border-radius: 150px;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(233, 173, 11, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-service__thumb::after {
        border-radius: 200px;
    }
}

.it-service__icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.it-service__icon a {
    font-size: 80px;
    color: var(--it-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service__icon a {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-service__icon a {
        font-size: 45px;
    }
}

.it-service__title {
    font-size: 20px;
    color: #000000;
    transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service__title {
        font-size: 17px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-service__title {
        font-size: 16px;
    }
}

.it-service-2__item:hover .it-service-2__wrapper {
    top: 50%;
    transform: translateY(-50%);
}

.it-service-2__item:hover .it-service-2__thumb::after {
    opacity: 0;
    height: 100%;
    visibility: visible;
}

.it-service-2__item:hover .it-service-2__thumb img {
    transform: scale(1.1);
}

.it-service-2__item:hover .it-service-2__icon span {
    background-color: var(--it-theme-1);
}

.it-service-2__wrapper {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 56%;
    transition: 0.5s;
    z-index: 3;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-2__wrapper {
        top: 60%;
        bottom: 50px;
        left: 50px;
        right: 50px;
    }
}

.it-service-2__content-box {
    padding-top: 0px;
}

.it-service-2__content-box a {
    font-weight: 700;
    font-size: 14px;
    color: var(--it-theme-1);
}

.it-service-2__top {
    padding: 30px 15px;
    padding-top: 60px;
    transition: 0.5s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-service-2__top {
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-2__top {
        padding-top: 30px;
        padding-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-service-2__top {
        padding-bottom: 20px;
    }
}

.it-service-2__title-sm {
    margin-bottom: 0;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: var(--it-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-2__title-sm {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-service-2__title-sm {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .it-service-2__title-sm {
        font-size: 16px;
    }
    .it-service-2__title-sm br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-2__title-sm {
        font-size: 20px;
    }
    .it-service-2__title-sm br {
        display: block;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-service-2__title-sm {
        font-size: 20px;
    }
    .it-service-2__title-sm br {
        display: block;
    }
}

.it-service-2__content {
    padding: 30px 15px;
    padding-bottom: 15px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-service-2__content {
        padding-top: 15px;
    }
}

.it-service-2__icon {
    position: absolute;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
}

.it-service-2__icon span {
    font-size: 45px;
    height: 80px;
    line-height: 96px;
    text-align: center;
    width: 80px;
    background-color: var(--it-common-white);
    border-radius: 50%;
    display: inline-block;
    color: var(--it-common-black);
    transition: 0.5s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-2__icon span {
        font-size: 30px;
        height: 60px;
        line-height: 70px;
        text-align: center;
        width: 60px;
    }
}

.it-service-2__thumb {
    position: relative;
    overflow: hidden;
}

.it-service-2__thumb img {
    transition: 0.7s;
}

.it-service-2__thumb::before {
    position: absolute;
    content: "";
    bottom: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(90deg, rgb(4, 23, 26) 0%, rgba(4, 23, 26, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(4, 23, 26) 0%, rgba(4, 23, 26, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(4, 23, 26) 0%, rgba(4, 23, 26, 0) 100%);
    transition: 0.7s;
    z-index: 2;
	opacity:0.5
}

.it-service-2__thumb::after {
    position: absolute;
    content: "";
    bottom: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: rgba(4, 23, 26, 0.8);
    transition: 0.7s;
    opacity: 0;
    visibility: hidden;
}

.it-service-3__bg {
    background-repeat: no-repeat;
    background-size: cover;
}

.it-service-3__item {
    background-color: var(--it-common-white);
    padding: 90px 40px 50px 40px;
    border-radius: 40px 0 0 0;
    transition: 0.3s;
    position: relative;
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.08);
}

.magnific-img img {
  width: 100%;
  height: auto;
}

.magnific-img {
    display: inline-block;
    width: 32.3%;
    padding: 2px;
    padding-bottom: 4px;
}
a.image-popup-vertical-fit {
  cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
  border-right: none !important;
}
.mfp-arrow-right:before {
  border-left: none !important;
}
button.mfp-arrow,
.mfp-counter {
  opacity: 0 !important;
  transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
  opacity: 1 !important;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-service-3__item {
        padding: 90px 15px 50px 15px;
    }
}

.it-service-3__item::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    background: #ff5722;
	border-radius: 40px 0 0 0;
}
.it-service-3__item:hover::after {
    opacity: 1;
    visibility: visible;
    border-radius: 40px 0 0 0;
}

.it-service-3__item:hover .it-service-3__icon span {
    background-color: #ffffff;
    color: #ff5722;
}

.it-service-3__item:hover .it-service-3__title {
    color: var(--it-common-white);
}

.it-service-3__item:hover .it-service-3__icon-2 {
    opacity: 1;
    visibility: visible;
}

.it-service-3__item:hover .it-service-3__content p {
    color: var(--it-common-white);
}

.it-service-3__item:hover .it-service-3__content .it-service-details__list {
    position: relative;
    z-index: 9;
}

.it-service-3__item:hover .it-service-3__content .it-service-details__list ul li {
	color: var(--it-common-white);
}

.it-service-3__icon-2 {
    position: absolute;
    left: 55%;
    transform: translateX(-50px);
    bottom: -25px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.it-service-3__icon-2 a {
    font-size: 16px;
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 55px;
    text-align: center;
    background-color: #FFF;
    color: var(--it-common-black);
    font-weight: 700;
    border-radius: 50%;
}

.it-service-3__icon {
    margin-top: -145px;
    margin-bottom: 30px;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.it-service-3__icon span {
    height: 110px;
    width: 110px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 127px;
    font-size: 50px;
    color: var(--it-common-white);
    background-color: #ff5722;
    transition: 0.3s;
}

.it-service-3__title {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.custom_ser .it-service-3__title {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.5;
	margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-service-3__title br {
        display: none;
    }
}

.it-service-3__content p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    transition: 0.3s;
    font-size: 18px;
    height: 195px;
	color: #000;
}

@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__content p {
        font-size: 17px;
    }
}

.it-service-3__bottom-text span {
    font-size: 16px;
}

.it-service-3__bottom-text span strong {
    font-weight: 500;
    color: var(--it-common-black);
}

.it-service-3__bg {
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .it-service-4__section-box {
        margin-bottom: 20px;
    }
}

.it-service-4__top-text p {
    margin-bottom: 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-service-4__top-text p {
        font-size: 14px;
    }
    .it-service-4__top-text p br {
        display: none;
    }
}

.it-service-4__section-wrap {
    margin-bottom: 50px;
}

.it-service-4__item {
    padding: 40px 15px;
    background-color: var(--it-common-white);
    box-shadow: 2px 3.464px 20px 0px rgba(16, 23, 40, 0.06);
    position: relative;
    z-index: 11;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    transition: 0.3s;
}

.it-service-4__item:hover {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.it-service-4__item:hover span {
    color: var(--it-common-white);
}

.it-service-4__item:hover span::after {
    background-color: #e3282a;
    top: -18px;
}

.it-service-4__item:hover .it-service-4__link a {
    color: #FFF;
}

.it-service-4__item:hover .it-service-4__title {
    color: #FFF;
}

.it-service-4__item:hover .it-service-4__overly {
    opacity: 1;
    visibility: visible;
}

.it-service-4__item span {
    font-size: 54px;
    color: var(--it-theme-3);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.it-service-4__item span::after {
    position: absolute;
    content: "";
    top: -65px;
    left: -18px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    z-index: -1;
    background-color: #f5efef;
    transition: 0.5s;
}

.it-service-4__overly {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--it-theme-3);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: -1;
}

.it-service-4__shape-1 {
    position: absolute;
    top: 50px;
    left: 0;
}

.it-service-4__title {
    font-size: 20px;
    padding-bottom: 15px;
    transition: 0.5s;
}

.it-service-4__link a {
    color: #6a6a6a;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.5s;
}

.it-service-4__bottom-text span strong {
    font-weight: 500;
    font-size: 16px;
    color: var(--it-theme-3);
}

.it-service-4__shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    animation: ittranslateX2 3s infinite alternate;
}

.it-service-4__shape-3 {
    position: absolute;
    left: 0;
    top: 0;
}

.it-service-details__wrap {
    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-service-details__wrap {
        margin-left: 0;
    }
}

.it-service-details__list {
    padding-bottom: 50px;
}

.it-service-details__list ul li {
    font-weight: 500;
    color: var(--it-common-black);
    list-style-type: none;
    padding-left: 28px;
    padding-bottom: 15px;
    position: relative;
	line-height: 1.6;
}

.it-service-details__list ul li:last-child {
    padding-bottom: 0;
}

.it-service-details__list ul li i {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 18px;
}

.it-service-details__item {
    background-color: #f5f3ee;
    padding: 40px 37px;
}

@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-details__item {
        padding: 40px 25px;
    }
}

.it-service-details__icon span {
    display: inline-block;
    height: 80px;
    width: 80px;
    line-height: 96px;
    text-align: center;
    border-radius: 50%;
    background-color: #04171a;
    font-size: 50px;
    color: var(--it-common-white);
    margin-right: 30px;
}

.it-service-details__icon span.color {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.it-service-details__text h5 {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .it-service-details__text h5 {
        font-size: 17px;
    }
}

.it-service-details__title {
    font-size: 23px;
    padding-bottom: 5px;
    color: #000;
	line-height: 35px;
}

@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-details__title {
        font-size: 24px;
    }
}

.it-service-details__content-box p {
    padding-right: 20px;
    color: #000;
    font-size: 17px;
    text-align: justify;
}

@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-details__content-box p {
        padding-right: 0;
        font-size: 17px;
    }
}

.it-service-details__thumb-box {
    padding: 40px 35px;
    position: relative;
    z-index: 1;
}

.it-service-details__thumb-box::before {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/service/Details-1-1.png);
    position: absolute;
    z-index: 1;
}

.it-service-details__thumb-box::after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(249, 190, 23);
    position: absolute;
    z-index: -1;
}

.it-service-details__main-thumb {
    position: absolute;
    top: 0;
    right: 0;
}

.it-service-details__thumb-box {
    height: 395px;
}

.it-service-details__text span {
    font-size: 14px;
    display: block;
    padding-bottom: 5px;
}

.it-service-details__text h6 {
    font-size: 60px;
    margin-bottom: 0;
    font-size: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-service-details__text h6 {
        font-size: 16px;
    }
}

.it-service-details__icon-2 {
    margin-right: 15px;
}

.it-service-details__icon-2 span {
    font-size: 35px;
    color: var(--it-common-black);
    display: inline-block;
    transform: translateY(4px);
    position: relative;
}

.it-service-details__icon-2 span::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--it-theme-1);
    border-radius: 50%;
    z-index: -1;
}

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

/*  27. team css start
/*----------------------------------------*/

.it-team__section-title {
    padding-bottom: 50px;
}

.it-team__plr {
    padding: 0 160px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-team__plr {
        padding: 0 60px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-team__plr {
        padding: 0px;
    }
}

.it-team__item {
    position: relative;
    overflow: hidden;
}

.it-team__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(249, 190, 23);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.it-team__item:hover::after {
    opacity: 1;
    visibility: visible;
}

.it-team__item:hover .it-team__item-shape {
    opacity: 1;
    visibility: visible;
}

.it-team__item:hover .it-team__content {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

.it-team__item-shape {
    position: absolute;
    top: -98px;
    right: -76px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.it-team__content {
    position: absolute;
    left: 40px;
    bottom: -30px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.it-team__content span {
    font-size: 14px;
    font-weight: 400;
    color: var(--it-common-black);
    display: inline-block;
    padding-bottom: 25px;
}

.it-team__author-name {
    font-size: 18px;
    font-family: "Kumbh Sans", sans-serif;
    margin-bottom: 0;
    padding-bottom: 5px;
}

.it-team__social-box a {
    font-size: 17px;
    height: 37px;
    width: 37px;
    line-height: 37px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--it-common-white);
    display: inline-block;
    color: var(--it-common-black);
    transition: 0.3s;
}

.it-team__social-box a:hover {
    color: var(--it-theme-1);
    background-color: var(--it-common-black);
}

.it-team-2__item:hover .it-team-2__main-thumb img {
    transform: rotate(-2deg) scale(1.1);
}

.it-team-2__item:hover .it-team-2__main-thumb::after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.it-team-2__main-thumb {
    position: relative;
    overflow: hidden;
}

.it-team-2__main-thumb img {
    transition: 0.5s;
}

.it-team-2__main-thumb::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 70%;
    width: 100%;
    content: "";
    background-image: -moz-linear-gradient(90deg, rgb(4, 23, 26) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(4, 23, 26) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(4, 23, 26) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.it-team-2__content {
    background-color: var(--it-common-white);
    box-shadow: 2px 3.464px 20px 0px rgba(16, 23, 40, 0.08);
    padding-left: 25px;
    margin-top: -40px;
    margin-left: 20px;
    position: relative;
    z-index: 11;
}

.it-team-2__author-name {
    font-size: 18px;
}

.it-team-2__content-text span {
    font-size: 14px;
}

.it-team-2__icon {
    padding: 21px 0;
}

.it-team-2__icon>span {
    font-size: 16px;
    color: var(--it-common-black);
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--it-theme-1);
}

.it-team-2__icon>span:hover {
    cursor: pointer;
}

.it-team-2__icon:hover .it-team-2__social-box {
    bottom: 60px;
    opacity: 1;
    visibility: visible;
}

.it-team-2__social-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: 0.5s;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: row;
    padding-bottom: 40px;
}

.it-team-2__social-box a {
    font-size: 16px;
    color: #FFF;
    transition: 0.3s;
    padding: 0 8px;
}

.it-team-2__social-box a:last-child {
    padding-right: 0px;
}

.it-team-2__social-box a:hover {
    color: var(--it-theme-1);
}

.it-team-4__author-info {
    background-color: #f3f3f3;
    padding: 30px;
    padding-top: 20px;
}

.it-team-4__author-info span {
    font-size: 14px;
    display: inline-block;
    padding-bottom: 7px;
}

.it-team-4__author-name {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0;
    transition: 0.3s;
}

.it-team-4__author-name.color:hover {
    color: var(--it-theme-3);
}

.it-team-4__author-name:hover {
    color: var(--it-theme-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-team-4__author-name {
        font-size: 20px;
    }
}

.it-team-4__social-box {
    position: absolute;
    bottom: 0;
    left: 30px;
    z-index: 11;
}

.it-team-4__social-box span {
    height: 36px;
    width: 36px;
    background-color: var(--it-theme-3);
    display: inline-block;
    line-height: 36px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.5s;
}

.it-team-4__social-box:hover .it-team-4__social-item {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.it-team-4__social-item {
    position: absolute;
    left: 100%;
    top: 120%;
    flex-direction: row;
    display: flex;
    background-color: var(--it-common-black);
    padding: 0px 10px;
    height: 36px;
    line-height: 36px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.it-team-4__social-item a {
    font-size: 16px;
    color: var(--it-common-white);
    padding: 0 10px;
}

.it-team-4__item:hover .it-team-4__thumb::after {
    opacity: 1;
    visibility: visible;
}

.it-team-4__item:hover .it-team-4__social-box span {
    background-color: #FFF;
    color: var(--it-common-black);
}

.it-team-4__thumb {
    transition: 0.5s;
    position: relative;
}

.it-team-4__thumb img {
    width: 100%;
}

.it-team-4__thumb::after {
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    background-image: -moz-linear-gradient(90deg, rgb(255, 56, 56) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(255, 56, 56) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(255, 56, 56) 0%, rgba(0, 0, 0, 0) 100%);
}

.it-team-4__yellow-color .it-team-4__social-box span {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.it-team-4__yellow-color .it-team-4__thumb::after {
    background-image: -moz-linear-gradient(90deg, rgb(249, 190, 23) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(249, 190, 23) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(249, 190, 23) 0%, rgba(0, 0, 0, 0) 100%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-team-details__thumb {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-team-details__thumb img {
        width: 100%;
    }
}

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

.it-team-details__item {
    padding-right: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-team-details__item {
        padding-right: 0;
    }
}

.it-team-details__big-text {
    position: absolute;
    top: 10%;
    left: 12px;
    font-size: 120px;
    transform: rotate(-90deg);
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-team-details__big-text {
        left: -30px;
    }
}

.it-team-details__bg {
    position: relative;
    padding-top: 60px;
    padding-bottom: 55px;
}

.it-team-details__bg::after {
    position: absolute;
    background-color: var(--it-grey-1);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-team-details__bg::after {
        display: none;
    }
}

.it-team-details__title {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-team-details__title {
        font-size: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-team-details__title {
        font-size: 24px;
    }
}

.it-team-details__content {
    padding-bottom: 65px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-team-details__content {
        padding-bottom: 20px;
    }
}

.it-team-details__content>span {
    display: block;
    padding-bottom: 15px;
    text-transform: capitalize;
}

.it-team-details__content>span>strong {
    color: var(--it-common-black);
    font-size: 16px;
}

.it-team-details__content>span a {
    transition: 0.3s;
}

.it-team-details__content>span a:hover {
    color: var(--it-theme-3);
}

.it-team-details__social a i {
    height: 38px;
    display: inline-block;
    width: 38px;
    line-height: 38px;
    border-radius: 50%;
    background-color: #4661c5;
    color: var(--it-common-white);
    text-align: center;
    margin-left: 5px;
}

.it-team-details__social a i.instagram {
    background-color: #1da1f2;
}

.it-team-details__social a i.linkedin {
    background-color: #c935a0;
}

.it-team-details__social a i.twitter {
    background-color: #0073b0;
}

.it-team-details__section-box span {
    display: inline-block;
    padding-bottom: 25px;
    font-size: 23px;
    color: #f37336;
}

.it-team-details__right-box p {
    font-size: 18px;
    color: #000;
	text-align: justify;
}

.it-team-details__text-box p {
    padding-right: 25px;
    font-size: 18px;
    color: #000;
    text-align: justify;
}

@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-team-details__text-box p {
        font-size: 14px;
        padding-right: 0;
    }
}

.it-team-details__title-sm {
    font-size: 23px;
    padding-bottom: 3px;
}

@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-team-details__title-sm {
        font-size: 20px;
    }
}

.it-team-details__progress-box {
    margin-right: 70px;
}

@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-team-details__progress-box {
        margin-right: 0;
    }
}

.it-team-details__progress {
    width: 100%;
}

.it-team-details__progress-item {
    position: relative;
}

@media (max-width: 767px) {
    .it-team-details__progress-item {
        margin: 0 15px;
        padding-bottom: 30px;
    }
}

.it-team-details__progress-item.progress-pb {
    padding-bottom: 30px;
}

.it-team-details__progress-item h4 {
    font-weight: 800;
    font-size: 18px;
    padding-bottom: 4px;
}

@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-team-details__progress-item h4 {
        font-size: 15px;
    }
}

.it-team-details__progress-item .progress-count {
    position: absolute;
    top: 3px;
    right: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--it-theme-1);
}

.it-team-details__progress-item .progress {
    height: 4px;
    background-color: #f5f3ee;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 30px;
}

.it-team-details__progress-item .progress .progress-bar {
    background-color: var(--it-theme-1);
    overflow: visible;
}

.it-team-details__progress-item .progress-goals {
    display: flex;
    justify-content: space-between;
}

.it-team-details__progress-item .progress-goals span {
    font-size: 14px;
    font-weight: 400;
}

.it-team-details__progress-item .progress-goals span b {
    font-weight: 800;
    color: var(--it-theme-1);
}

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

/*  24. skill css start
/*----------------------------------------*/

.it-skill-3__title {
    font-size: 60px;
    line-height: 1.1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-skill-3__title {
        font-size: 55px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-skill-3__title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-skill-3__title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .it-skill-3__title {
        font-size: 42px;
    }
    .it-skill-3__title br {
        display: none;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-skill-3__title {
        font-size: 41px;
    }
}

.it-skill-3__bg {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.it-skill-3__bg::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgb(4, 23, 26);
    opacity: 0.8;
    height: 100%;
    width: 100%;
}

.it-skill-3__content {
    padding-bottom: 162px;
    padding-top: 160px;
    position: relative;
    z-index: 9;
}

@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-skill-3__content {
        padding: 120px 0;
    }
}

.it-skill-3__shape-1 {
    position: absolute;
    bottom: 0;
    left: -4%;
    z-index: 1;
    opacity: 50%;
    animation: ittranslateX2 2s infinite alternate;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-skill-3__shape-1 {
        left: -9%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-skill-3__shape-1 {
        left: -16%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-skill-3__shape-1 {
        left: -34%;
    }
}

.it-skill-3__shape-2 {
    position: absolute;
    bottom: 0;
    left: 205px;
    opacity: 46%;
    z-index: 1;
    animation: jumpTwo 3s infinite linear;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-skill-3__shape-2 {
        left: 100px;
        bottom: -50px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-skill-3__shape-2 {
        left: 80px;
        bottom: -70px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-skill-3__shape-2 {
        left: 30px;
        bottom: -140px;
    }
}

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

/*  13. error css start
/*----------------------------------------*/

.it-error__thumb img {
    max-width: 100%;
}

.it-error__title {
    font-size: 48px;
    font-weight: 700;
    padding-bottom: 20px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-error__title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-error__title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-error__title {
        font-size: 37px;
    }
}

@media (max-width: 767px) {
    .it-error__title {
        font-size: 30px;
    }
}

.it-error__content p {
    color: var(--it-common-black);
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 60px;
}

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

/*  05. brand css start
/*----------------------------------------*/

.it-brand__item {
    text-align: center;
}

.it-brand__item img {
    opacity: 35%;
    transition: 0.3s;
}

.it-brand__item img:hover {
    opacity: 100%;
}

.it-brand__border {
    border-top: 1px solid #e7e7e7;
}

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

/*  19. newsletter css start
/*----------------------------------------*/

.it-newsletter-4__title {
    line-height: 48px;
    font-size: 40px;
    color: #FFF;
    margin-bottom: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-newsletter-4__title {
        font-size: 38px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-newsletter-4__title {
        font-size: 32px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-newsletter-4__title {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-newsletter-4__title {
        font-size: 29px;
    }
}

@media (max-width: 767px) {
    .it-newsletter-4__title {
        font-size: 27px;
        margin-bottom: 30px;
    }
}

.it-newsletter-4__bg {
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 109px;
    padding-bottom: 120px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-newsletter-4__bg {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-newsletter-4__bg {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-newsletter-4__bg {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-newsletter-4__bg {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.it-newsletter-4__thumb {
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-newsletter-4__thumb img {
        max-width: 90%;
        height: 276px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-newsletter-4__thumb img {
        max-width: 100%;
        height: 256px;
    }
}

.it-newsletter-4__shape-1 {
    position: absolute;
    bottom: 0;
    left: 14%;
    opacity: 85%;
    animation: ittranslateX2 4s infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-newsletter-4__shape-1 {
        bottom: -15%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-newsletter-4__shape-1 {
        bottom: -20%;
    }
}

.it-newsletter-4__text {
    margin-right: 40px;
}

@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),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-newsletter-4__text {
        margin-right: 0;
    }
}

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

/*  23. shop-details css start
/*----------------------------------------*/

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-shop-details__thumb-box {
        margin-bottom: 50px;
    }
}

.it-shop-details__thumb-box img {
    width: 100%;
}

.it-shop-details__title-sm {
    font-size: 36px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-shop-details__title-sm {
        font-size: 31px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-shop-details__title-sm {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-shop-details__title-sm {
        font-size: 19px;
    }
}

.it-shop-details__right-wrap {
    margin-left: 70px;
}

@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__right-wrap {
        margin-left: 0;
    }
}

.it-shop-details__right-wrap>span {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--it-ff-heading);
    color: var(--it-common-black);
    display: inline-block;
    padding-bottom: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-shop-details__right-wrap>span {
        font-size: 24px;
    }
}

.it-shop-details__price {
    padding-bottom: 10px;
}

.it-shop-details__price span {
    font-size: 28px;
    font-weight: 700;
    color: var(--it-common-black);
}

.it-shop-details__ratting {
    padding-bottom: 12px;
}

.it-shop-details__ratting span {
    color: var(--it-theme-1);
}

.it-shop-details__ratting span svg {
    width: 15px;
}

.it-shop-details__ratting span.review-text {
    font-size: 14px;
    color: #757a7b;
    margin-left: 10px;
}

.it-shop-details__quantity {
    border: 1px solid #e6e9e9;
    border-right: 0;
    width: 70px;
    height: 60px;
    position: relative;
}

@media (max-width: 767px) {
    .it-shop-details__quantity {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-shop-details__quantity {
        margin-bottom: 0px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-shop-details__quantity {
        margin-bottom: 0;
    }
}

.it-shop-details__quantity>input {
    border: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--it-theme-1);
    font-weight: 700;
    font-size: 16px;
    padding: 0 10px;
    color: var(--it-theme-1);
}

.it-shop-details__quantity>.cart-minus {
    position: absolute;
    top: -1px;
    right: -29px;
    width: 30px;
    height: 100%;
    line-height: 30px;
    text-align: center;
    color: var(--it-theme-1);
    border: 1px solid #e6e9e9;
    border-bottom: none;
    font-weight: 600;
    font-size: 12px;
    color: var(--it-theme-1);
    transition: 0.3s;
}

.it-shop-details__quantity>.cart-minus:hover {
    cursor: pointer;
}

.it-shop-details__quantity>.cart-plus {
    position: absolute;
    bottom: -1px;
    right: -29px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--it-theme-1);
    font-weight: 600;
    font-size: 12px;
    color: var(--it-theme-1);
    border: 1px solid #e6e9e9;
    transition: 0.3s;
}

.it-shop-details__quantity>.cart-plus:hover {
    cursor: pointer;
}

.it-shop-details__quantity-box {
    padding-bottom: 35px;
}

@media (max-width: 767px) {
    .it-shop-details__quantity-box {
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-shop-details__quantity-box {
        flex-wrap: nowrap;
    }
}

.it-shop-details__quantity-box>span {
    margin-right: 20px;
    color: var(--it-common-black);
    font-size: 18px;
    font-weight: 700;
}

.it-shop-details__text p {
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-shop-details__text p {
        font-size: 14px;
    }
    .it-shop-details__text p br {
        display: none;
    }
}

.it-shop-details__text>span {
    font-size: 18px;
    padding-bottom: 5px;
    color: var(--it-common-black);
    font-weight: 700;
    padding-bottom: 3px;
    display: block;
}

.it-shop-details__text-2>span {
    font-size: 16px;
    font-weight: 400;
    display: block;
    color: #757a7b;
    padding-bottom: 5px;
}

.it-shop-details__text-2>span strong {
    font-weight: 600;
    color: var(--it-common-black);
}

.it-shop-details__social span {
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    padding-right: 10px;
}

.it-shop-details__social a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: inline-block;
    margin: 0 2px;
}

.it-shop-details__social a:hover {
    color: var(--it-theme-1);
}

.it-shop-details__text-box {
    padding: 55px 60px;
    box-shadow: 2px 3.464px 25px 0px rgba(23, 19, 4, 0.04);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-shop-details__text-box {
        padding: 55px 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-shop-details__text-box p {
        font-size: 14px;
    }
}

.it-shop-details__review-thumb {
    flex: 0 0 auto;
    margin-right: 30px;
}

@media (max-width: 767px) {
    .it-shop-details__review-thumb {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .it-shop-details__review {
        flex-wrap: wrap;
    }
}

.it-shop-details__star {
    padding-bottom: 5px;
}

.it-shop-details__star i {
    color: var(--it-theme-1);
    display: inline-block;
    margin-right: 2px;
}

.it-shop-details__author-info span {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--it-ff-heading);
    display: block;
    padding-bottom: 10px;
}

.it-shop-details__author-info span strong {
    color: var(--it-common-black);
}

.it-shop-details__author-info p {
    padding-right: 40px;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-shop-details__author-info p {
        font-size: 14px;
        padding-right: 0;
    }
}

.it-shop-details__btn {
    margin-left: 50px;
}

@media (max-width: 767px) {
    .it-shop-details__btn {
        margin-left: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-shop-details__btn {
        margin-left: 50px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-shop-details__btn {
        margin-left: 50px;
    }
}

.it-shop-widget-filter {
    position: relative;
}

.it-shop-widget-filter .ui-widget.ui-widget-content {
    height: 5px;
    background-color: var(--it-theme-1);
    border: 0;
}

.it-shop-widget-filter .ui-slider-horizontal .ui-slider-range {
    position: absolute;
}

.it-shop-widget-filter .ui-slider .ui-slider-handle {
    top: -6px;
    width: 5px;
    height: 15px;
    border: 0;
    padding: 0;
    margin: 0;
    background-color: var(--it-theme-1);
    position: absolute;
}

.it-shop-widget-filter-info .input-range input {
    height: auto;
    background-color: transparent;
    color: var(--it-theme-1);
    padding: 0;
    border: 0;
    font-weight: 500;
    font-size: 14px;
}

.it-shop-widget-filter-info .it-shop-widget-filter-btn {
    font-weight: 400;
    font-size: 14px;
    color: var(--it-common-black);
    background-color: #F5F5F5;
    padding: 2px 21px;
}

.it-shop-widget-filter-info .it-shop-widget-filter-btn:hover {
    color: var(--it-common-white);
    background-color: var(--it-common-black);
}

.it-product__social-box {
    position: absolute;
    top: -80px;
    left: 20px;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.it-product__social-box a {
    border-radius: 5px;
    border: 0px solid var(--red-primary-color, #D72323);
    background: var(--it-common-white);
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    transition: 0.3s;
    margin: 4px 0px;
}

.it-product__social-box a:hover {
    color: var(--it-common-black);
    background-color: var(--it-theme-1);
}

.it-product__item:hover .it-product__social-box {
    top: 40px;
    opacity: 1;
    visibility: visible;
}

.it-product__item:hover .it-product__button {
    bottom: 5%;
    opacity: 1;
    visibility: visible;
}

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

.it-product__button {
    position: absolute;
    bottom: -20%;
    left: 0%;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.it-product__content {
    padding: 20px 15px;
    text-align: center;
}

.it-product__content span {
    font-weight: 600;
    display: inline-block;
    padding-right: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-product__content span {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-product__content span {
        font-size: 14px;
    }
}

.it-product__content span del {
    color: var(--it-common-black);
}

.it-product__title {
    font-size: 20px;
}

.it-product__star {
    padding-bottom: 5px;
}

.it-product__star i {
    color: var(--it-theme-1);
}

.it-product__text-2 {
    position: absolute;
    top: 20px;
    left: 0;
}

.it-product__text-2 span {
    height: 25px;
    line-height: 25px;
    padding: 0 12px;
    display: inline-block;
    background-color: var(--it-common-black);
    font-size: 14px;
    color: var(--it-common-white);
}

.it-product__text {
    position: absolute;
    top: 20px;
    right: 0;
}

.it-product__text span {
    height: 25px;
    line-height: 25px;
    padding: 0 12px;
    display: inline-block;
    background-color: var(--it-common-black);
    font-size: 14px;
    color: var(--it-common-white);
}

.it-product__filter>.nice-select {
    position: relative;
    background: var(--it-common-white);
    border-radius: 0;
    padding: 0px 30px;
    padding-right: 80px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    border: 1px solid #e6e9e9;
    font-size: 16px;
    z-index: 9;
}

.it-product__filter>.nice-select.open::after {
    transform: translateY(-45%) rotate(-180deg);
}

.it-product__filter>.nice-select .option.selected {
    font-weight: 400;
    color: var(--it-common-black);
}

.it-product__filter>.nice-select::after {
    border: none;
    background-color: transparent;
    transform: translateY(-50%);
    margin-top: 0;
    right: 30px;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    transform-origin: center;
    height: auto;
    width: auto;
    font-size: 20px;
    font-weight: 400;
    color: var(--it-common-black);
    top: 50%;
}

.it-product__filter>.nice-select ul {
    padding: 25px;
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 0;
}

.it-product__filter>.nice-select ul li {
    color: #77829D;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
    padding: 0;
}

.it-product__filter>.nice-select ul li:last-child {
    margin-bottom: 0;
}

.it-product__filter>.nice-select .option {
    line-height: 1;
    min-height: 0;
}

.it-product__filter>.nice-select.open ul {
    opacity: 1;
    visibility: visible;
}

.it-product__input {
    position: relative;
}

.it-product__input input {
    padding: 0px 30px;
    padding-right: 60px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    transition: 0.3s;
    border: 1px solid #e6e9e9;
}

.it-product__input input:focus {
    border: 1px solid var(--it-theme-1);
}

.it-product__input-box {
    border: 1px solid #e6e9e9;
    padding: 0px 30px;
    width: 100%;
    height: 60px;
    line-height: 60px;
}

.it-product__search {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.it-product__title {
    font-size: 22px;
    margin-bottom: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-product__title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-product__title {
        font-size: 18px;
    }
}

.it-product__widget {
    padding: 30px;
    border: 1px solid #e6e9e9;
}

@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-product__widget {
        padding: 30px 20px;
    }
}

.it-product__widget ul li {
    list-style-type: none;
    overflow: hidden;
}

.it-product__widget ul li:not(:last-child) {
    padding-bottom: 12px;
}

.it-product__widget ul li span {
    font-size: 16px;
    font-weight: 700;
    color: #757a7b;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.it-product__widget ul li span::after {
    position: absolute;
    content: "";
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--it-common-black);
    transition: 0.3s;
}

.it-product__widget ul li span:hover {
    color: var(--it-common-black);
    padding-left: 25px;
}

.it-product__widget ul li span:hover::after {
    left: 0;
}

.it-product__text-box span {
    font-size: 14px;
    color: var(--it-common-black);
}

.it-product__text-box h5 {
    font-size: 18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-product__text-box h5 {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-product__text-box h5 {
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-product__text-box h5 {
        font-size: 14px;
    }
}

.it-product__star-2 i {
    color: var(--it-theme-1);
    font-size: 10px;
}

.it-product__thmb-sm {
    margin-right: 15px;
    flex: 0 0 auto;
}

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

/*  06. business css start
/*----------------------------------------*/

.it-business__space {
    position: relative;
    overflow: hidden;
}

.it-business__space::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: var(--it-common-black);
}

.it-business__bg {
    margin: 0 245px;
    padding: 110px 0;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-business__bg {
        margin: 0 150px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-business__bg {
        margin: 0 60px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-business__bg {
        margin: 0 15px;
        padding: 70px 0;
    }
}

.it-business__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: -moz-linear-gradient(0deg, rgb(249, 190, 23) 0%, rgb(127, 107, 25) 39%, rgb(4, 23, 26) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(249, 190, 23) 0%, rgb(127, 107, 25) 39%, rgb(4, 23, 26) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(249, 190, 23) 0%, rgb(127, 107, 25) 39%, rgb(4, 23, 26) 100%);
    opacity: 0.949;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-business__section-title {
        margin-bottom: 30px;
    }
}

.it-business__section-title .it-section-subtitle::before {
    background-color: var(--it-common-white);
}

.it-business__section-title .it-section-title {
    font-size: 47px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-business__section-title .it-section-title {
        font-size: 46px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-business__section-title .it-section-title {
        font-size: 38px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-business__section-title .it-section-title {
        font-size: 22px;
    }
}

.it-business__icon span {
    margin-bottom: 15px;
    display: inline-block;
    font-size: 40px;
    color: var(--it-common-white);
    height: 80px;
    width: 80px;
    line-height: 92px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--it-common-white);
    transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-business__icon span {
        margin-bottom: 10px;
        font-size: 29px;
        color: var(--it-common-white);
        height: 60px;
        width: 60px;
        line-height: 68px;
    }
}

.it-business__title {
    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-business__title {
        font-size: 17px;
    }
}

.it-business__text span {
    color: #bababa;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-business__text span {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-business__text span {
        font-size: 14px;
        color: var(--it-common-white);
    }
}

.it-business__item-box {
    padding-left: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-business__item-box {
        padding-left: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-business__item-box {
        flex-wrap: wrap;
        padding-left: 0px;
    }
}

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

.it-business__item:hover .it-business__icon span {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
    border: 1px solid transparent;
}

.it-business-3__plr {
    padding: 0 125px;
}

@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),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-business-3__plr {
        padding: 0px;
    }
}

.it-business-3__title {
    font-size: 26px;
    line-height: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-business-3__title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-business-3__title {
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .it-business-3__title {
        font-size: 19px;
    }
    .it-business-3__title br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-business-3__title {
        font-size: 23px;
    }
    .it-business-3__title br {
        display: block;
    }
}

.it-business-3__thumb {
    margin-right: 30px;
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .it-business-3__thumb {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-business-3__thumb {
        margin-bottom: 0px;
    }
}

.it-business-3__item {
    padding: 45px 35px;
    padding-left: 0;
    position: relative;
}

@media (max-width: 767px) {
    .it-business-3__item {
        flex-wrap: wrap;
        padding: 45px 25px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-business-3__item {
        flex-wrap: nowrap;
        padding: 45px 35px;
    }
}

.it-business-3__item::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 88%;
    background-color: #fff;
    box-shadow: 5px 8.66px 40px 0px rgba(16, 23, 40, 0.12);
    z-index: -1;
}

@media (max-width: 767px) {
    .it-business-3__item::after {
        width: 100%;
    }
}

.it-business-3__text p {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-business-3__text p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .it-business-3__text p {
        font-size: 13px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-business-3__text p {
        font-size: 14px;
    }
}

.it-business-3__big-text {
    position: absolute;
    bottom: 0;
    left: 65px;
}

@media (max-width: 767px) {
    .it-business-3__big-text {
        display: none;
    }
}

.it-business-3__big-text span {
    font-weight: 700;
    font-size: 100px;
    color: var(--it-common-black);
    display: inline-block;
    height: 130px;
    width: 130px;
    line-height: 130px;
    text-align: center;
    background-color: #fff;
}

.it-business-3__active {
    padding: 20px;
    margin: -20px;
}

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

/*  26. solution css start
/*----------------------------------------*/

.it-solution-2__bg {
    position: relative;
    z-index: 11;
}

.it-solution-2__space {
    padding-top: 60px;
    padding-bottom: 60px;
}

.it-solution-2__shape-1 {
    position: absolute;
    right: 0;
    top: -40%;
    z-index: -1;
}

.it-solution-2__shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-solution-2__shape-2 {
        left: -4%;
        top: -8%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-solution-2__shape-2 {
        left: 0%;
        top: -28%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-solution-2__shape-2 {
        left: -4%;
        top: -33%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-2__shape-2 {
        left: -4%;
        top: -47%;
    }
}

.it-solution-2__shape-3 {
    position: absolute;
    bottom: 0;
    left: 19%;
    z-index: 1;
    animation: zoom 7s infinite;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-solution-2__shape-3 {
        left: 4%;
        bottom: -6%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-solution-2__shape-3 {
        left: 4%;
        bottom: -8%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-solution-2__shape-3 {
        left: 4%;
        bottom: -6%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-2__shape-3 {
        left: -8%;
        bottom: -6%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-solution-2__shape-3 {
        bottom: 49%;
    }
}

.it-solution-2__shape-4 {
    position: absolute;
    top: 0;
    left: 29%;
    z-index: -1;
    animation: itupdown 0.8s infinite alternate;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-solution-2__shape-4 {
        left: 27%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-solution-2__shape-4 {
        left: 24%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-solution-2__shape-4 {
        left: 19%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-2__shape-4 {
        left: 17%;
    }
}

.it-solution-2__thumb {
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-solution-2__thumb {
        left: -9%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-solution-2__thumb {
        left: -18%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-solution-2__thumb {
        left: -28%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-2__thumb {
        left: -43%;
        background-position: right;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-solution-2__thumb {
        position: static;
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-2__thumb img {
        background-position: left;
    }
}

.it-solution-2__bottom-box {
    padding: 32px 30px;
    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) {
    .it-solution-2__bottom-box {
        padding: 32px 15px;
    }
}

@media (max-width: 767px) {
    .it-solution-2__bottom-box {
        padding: 20px 15px;
        flex-wrap: wrap;
    }
}

.it-solution-2__bottom-thumb {
    position: relative;
    margin-right: 50px;
}

@media (max-width: 767px) {
    .it-solution-2__bottom-thumb {
        margin-bottom: 20px;
    }
}

.it-solution-2__bottom-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
}

.it-solution-2__bottom-text h6 {
    font-size: 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-solution-2__bottom-text h6 {
        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-solution-2__bottom-text span {
        font-size: 14px;
    }
}

.it-solution-4__shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.it-solution-4__plr {
    padding: 0 290px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-solution-4__plr {
        padding: 0 100px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-solution-4__plr {
        padding: 0 50px;
    }
}

@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-solution-4__plr {
        padding: 0px;
    }
}

.it-solution-4__item {
    padding: 30px 10px;
    padding-bottom: 35px;
    border: 1px solid #252525;
    transition: 0.3s;
}

.it-solution-4__item:hover {
    border: 1px solid #FFF;
}

.it-solution-4__item:hover .it-solution-4__title {
    color: var(--it-theme-3);
}

.it-solution-4__item:hover span::after {
    height: 120px;
    width: 120px;
}

.it-solution-4__item span {
    display: inline-block;
    font-size: 50px;
    color: var(--it-common-white);
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #252525;
    line-height: 117px;
    text-align: center;
    margin-bottom: 25px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.it-solution-4__item span i {
    position: relative;
    z-index: 2;
}

.it-solution-4__item span::after {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: var(--it-theme-3);
    top: 50%;
    right: -5px;
    transition: 0.5s;
}

.it-solution-4__title {
    font-size: 20px;
    color: var(--it-common-white);
    margin-bottom: 0;
    transition: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-solution-5__item {
        margin-bottom: 90px;
    }
}

.it-solution-5__item:hover .it-solution-5__thumb img {
    transform: scale(1.2);
    filter: grayscale(100%);
    opacity: 0.9;
}

.it-solution-5__item:hover .it-solution-5__thumb::after {
    opacity: 1;
    visibility: visible;
    bottom: auto;
    top: 0;
    height: 100%;
}

.it-solution-5__item:hover .it-solution-5__icon {
    opacity: 1;
    visibility: visible;
}

.it-solution-5__item:hover .it-solution-5__content {
    background-color: var(--it-theme-3);
}

.it-solution-5__item:hover .it-solution-5__content h5 {
    color: var(--it-common-white);
}

.it-solution-5__item:hover .it-solution-5__icon-2 {
    color: var(--it-theme-3);
    background-color: var(--it-common-white);
}

.it-solution-5__thumb img {
    transition: 0.7s;
}

.it-solution-5__thumb::after {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.549);
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
}

.it-solution-5__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.it-solution-5__icon a {
    color: var(--it-common-white);
    font-size: 30px;
    line-height: 0;
}

.it-solution-5__content {
    position: absolute;
    bottom: -65px;
    left: 20px;
    z-index: 11;
    background-color: #fff;
    padding: 25px 30px;
    transition: 0.5s;
    text-align: center;
}

.it-solution-5__content h5 {
    font-size: 18px;
    margin-bottom: 0;
    display: block;
    padding-right: 50px;
    transition: 0.5s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-5__content h5 {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .it-solution-5__content h5 {
        font-size: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-solution-5__content h5 {
        font-size: 18px;
        padding-right: 140px;
    }
}

.it-solution-5__icon-2 {
    font-size: 43px;
    color: #FFF;
    display: inline-block;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 91px;
    background-color: var(--it-theme-3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    transition: 0.5s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-solution-5__icon-2 {
        font-size: 35px;
        height: 60px;
        width: 60px;
        line-height: 71px;
    }
}

@media (max-width: 767px) {
    .it-solution-5__icon-2 {
        font-size: 35px;
        height: 60px;
        width: 60px;
        line-height: 71px;
        top: -30px;
    }
}

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

/*  21. project css start
/*----------------------------------------*/

.col-custom {
    flex: 1;
    width: 320px;
    height: 560px;
    margin: 0px 15px 20px 15px;
    transition: 0.4s;
    cursor: pointer;
}

@media (max-width: 767px) {
    .col-custom {
        width: 100%;
    }
}

.row-custom {
    display: flex;
    margin: 0 -15px;
}

.it-panel-content {
    height: 100%;
}

.it-panel-content img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.it-panel-content-2 span {
    font-size: 14px;
    font-weight: 700;
    padding: 9px 30px;
    background-color: var(--it-common-white);
    color: var(--it-common-black);
    text-transform: uppercase;
    display: inline-block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-panel-content-2 span {
        font-size: 13px;
    }
}

.it-panel-content-shape {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    mix-blend-mode: color;
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.4s;
    -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;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-panel-content-shape img {
        max-width: inherit;
    }
}

.it-panel-content-shape-2 {
    position: absolute;
    top: 21%;
    left: 52%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.4s;
    -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;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-panel-content-shape-2 img {
        max-width: inherit;
    }
}

.it-panel-title-2 {
    font-size: 24px;
    font-weight: 700;
    padding: 12px 30px;
    background-color: #ff5722;
    color: var(--it-common-white);
    text-transform: capitalize;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-panel-title-2 {
        font-size: 17px;
    }
}

.it-panel-item-2 {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.4s;
    -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;
}

.col-custom.active {
    flex: 3;
    height: 420px;
}

.col-custom.active .it-panel-content img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    mix-blend-mode: luminosity;
}

.col-custom.active .it-panel-item-2 {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

.col-custom.active .it-panel-content-shape {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

.col-custom.active .it-panel-content-shape-2 {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

.it-panel-item-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.it-project-2__bg {
    padding-top: 120px;
    padding-bottom: 230px;
}

.it-project-2__shape {
    position: absolute;
    top: -39%;
    left: 0;
    z-index: -1;
}

.it-project-2__thumb {
    background-color: #fff;
}

.it-project-2__thumb img {
    transition: 0.7s;
}

.it-project-2__thumb:hover img {
    transform: scale(1.1);
}

.it-project-2__thumb:hover .it-project-2__circle-box {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.it-project-2__circle-box {
    position: absolute;
    left: -30%;
    bottom: 40px;
    z-index: 11;
    background-color: var(--it-theme-1);
    padding: 30px 40px;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-project-2__circle-box {
        padding: 30px 30px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-2__circle-box {
        padding: 20px 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
    .it-project-2__circle-box {
        padding: 20px 15px;
    }
}

.it-project-2__text span {
    color: #214247;
    font-size: 14px;
    display: block;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-project-2__text span {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .it-project-2__text span {
        font-size: 13px;
    }
}

.it-project-2__title-sm {
    font-size: 24px;
    margin-bottom: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-project-2__title-sm {
        font-size: 21px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-2__title-sm {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-project-2__title-sm {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .it-project-2__title-sm {
        font-size: 19px;
    }
}

.it-project-2__icon a {
    color: var(--it-common-black);
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: var(--it-common-black);
    line-height: 55px;
    text-align: center;
    color: var(--it-common-white);
    font-size: 16px;
    margin-right: 17px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-project-2__icon a {
        height: 30px;
        width: 30px;
        font-size: 14px;
        line-height: 33px;
    }
}

.it-project-2__plr {
    padding: 0 155px;
    margin-top: -220px;
    position: relative;
    z-index: 22;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-project-2__plr {
        padding: 0 100px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-project-2__plr {
        padding: 0 30px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-2__plr {
        padding: 0 0px;
    }
}

@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-2__plr {
        padding: 0 0px;
    }
}

@media (max-width: 767px) {
    .it-project-3__title-box {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-3__title-box {
        margin-bottom: 0px;
    }
}

.it-project-3__yellow-circle {
    position: absolute;
    bottom: -50%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
}

.it-project-3__yellow-circle span {
    height: 340px;
    width: 340px;
    background-color: var(--it-theme-1);
    border-radius: 50%;
    display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-project-3__yellow-circle span {
        height: 230px;
        width: 230px;
    }
}

@media (max-width: 767px) {
    .it-project-3__yellow-circle span {
        height: 300px;
        width: 300px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-3__yellow-circle span {
        height: 270px;
        width: 270px;
    }
}

.it-project-3__yellow-circle a {
    height: 50px;
    width: 50px;
    background-color: var(--it-common-white);
    text-align: center;
    line-height: 50px;
    color: var(--it-theme-2);
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50%;
}

.it-project-3__item::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    content: "";
    background-image: -moz-linear-gradient(-90deg, rgb(249, 190, 23) 0%, rgb(127, 107, 25) 44%, rgb(4, 23, 26) 100%);
    background-image: -webkit-linear-gradient(-90deg, rgb(249, 190, 23) 0%, rgb(127, 107, 25) 44%, rgb(4, 23, 26) 100%);
    background-image: -ms-linear-gradient(-90deg, rgb(249, 190, 23) 0%, rgb(127, 107, 25) 44%, rgb(4, 23, 26) 100%);
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    transition: 0.6s;
}

.it-project-3__item:hover::after {
    opacity: 0.6;
    visibility: visible;
    height: 100%;
}

.it-project-3__item:hover .it-project-3__yellow-circle {
    bottom: -35%;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-project-3__item:hover .it-project-3__yellow-circle {
        bottom: -27%;
    }
}

.it-project-3__item:hover .it-project-3__content {
    opacity: 1;
    visibility: visible;
}

.it-project-3__item:hover .it-project-3__thumb img {
    transform: scale(1.1) rotate(-2deg);
}

.it-project-3__thumb img {
    width: 100%;
    transition: 0.9s;
}

.it-project-3__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 30px;
    padding-bottom: 45px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
}

.it-project-3__content span {
    font-size: 14px;
    font-weight: 700;
    color: #214247;
    margin-bottom: 10px;
    display: inline-block;
}

.it-project-3__title-sm {
    margin-bottom: 0;
    font-size: 24px;
    color: #214247;
}

@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-3__title-sm {
        font-size: 21px;
    }
}

.it-project-3__slider-active {
    margin-right: -400px;
}

.it-project-3__theme-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 490px;
    background-color: var(--it-common-black);
    z-index: -1;
}

.it-project-3__arrow-box button {
    height: 60px;
    width: 60px;
    background-color: var(--it-common-white);
    color: var(--it-theme-2);
    display: inline-block;
    text-align: center;
    line-height: 64px;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.4s;
}

@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-3__arrow-box button {
        height: 48px;
        width: 48px;
        line-height: 52px;
        font-size: 16px;
    }
}

.it-project-3__arrow-box button:hover {
    background-color: var(--it-theme-1);
    color: var(--it-theme-2);
}

.it-project-3__shape {
    position: absolute;
    top: -20%;
    left: 0;
    z-index: 1;
}

.it-project-3__section-wrap {
    position: relative;
    z-index: 33;
}

.it-project-4__plr {
    padding: 0 155px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-project-4__plr {
        padding: 0 50px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-project-4__plr {
        padding: 0px;
    }
}

.it-project-4__item {
    position: relative;
    overflow: hidden;
}

@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-4__item {
        margin-bottom: 30px;
    }
}

.it-project-4__item img {
    width: 100%;
    transition: 0.7s;
}

.it-project-4__item::after {
    content: "";
    bottom: -60%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 290px;
    width: 290px;
    border-radius: 50%;
    position: absolute;
    background-color: rgba(255, 56, 56, 0.8);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-4__item::after {
        height: 260px;
        width: 260px;
    }
}

@media (max-width: 767px) {
    .it-project-4__item::after {
        height: 245px;
        width: 245px;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-project-4__item::after {
        height: 290px;
        width: 290px;
    }
}

.it-project-4__item:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -100px;
}

.it-project-4__item:hover .it-project-4__text {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-4__item:hover .it-project-4__text {
        bottom: 25px;
    }
}

@media (max-width: 767px) {
    .it-project-4__item:hover .it-project-4__text {
        bottom: 25px;
    }
}

.it-project-4__item:hover img {
    transform: scale(1.2);
}

.it-project-4__text {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}

.it-project-4__text i {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--it-common-black);
    color: #FFF;
    margin-bottom: 15px;
}

.it-project-4__text span {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.it-project-4__text h6 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-4__text h6 {
        font-size: 18px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-4__text h6 {
        font-size: 17px;
    }
}

.it-project-4__section-box {
    margin-bottom: 60px;
}

.it-project-4__shape {
    position: absolute;
    top: -39%;
    left: 0;
    z-index: -1;
}

.it-project-5__plr {
    padding: 0 155px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-project-5__plr {
        padding: 0 50px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-project-5__plr {
        padding: 0px;
    }
}

.it-project-5__item {
    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-project-5__item {
        margin-bottom: 30px;
    }
}

.it-project-5__item img {
    width: 100%;
    transition: 0.5s;
}

.it-project-5__item:hover img {
    transform: scale(1.1);
}

.it-project-5__item:hover .it-project-5__text {
    left: 40px;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-5__item:hover .it-project-5__text {
        left: 15px;
    }
}

.it-project-5__item:hover .it-project-5__shape {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-project-5__item:hover .it-project-5__shape {
        left: -7%;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-project-5__item:hover .it-project-5__shape {
        left: -18%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-5__item:hover .it-project-5__shape {
        left: -40%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-project-5__item:hover .it-project-5__shape {
        left: -25%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-project-5__item:hover .it-project-5__shape {
        left: -15%;
    }
}

@media (max-width: 767px) {
    .it-project-5__item:hover .it-project-5__shape {
        left: -25%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-5__item:hover .it-project-5__shape {
        left: 0%;
    }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
    .it-project-5__item:hover .it-project-5__shape {
        left: 0;
    }
}

.it-project-5__text {
    position: absolute;
    bottom: 40px;
    left: -60px;
    z-index: 11;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-5__text {
        bottom: 15px;
    }
}

.it-project-5__text i {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--it-common-black);
    color: #FFF;
    margin-bottom: 15px;
}

.it-project-5__text span {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.it-project-5__text h6 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-project-5__text h6 {
        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-project-5__text h6 {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .it-project-5__text h6 {
        font-size: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-5__text h6 {
        font-size: 17px;
    }
}

.it-project-5__section-box {
    margin-bottom: 60px;
}

.it-project-5__shape {
    position: absolute;
    bottom: 0;
    left: -50%;
    transition: 0.7s;
    opacity: 0;
    visibility: hidden;
}

.project-5-slider-dots {
    text-align: center;
    margin-top: 40px;
}

.project-5-slider-dots .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    display: inline-block;
    background-color: var(--it-theme-3);
    opacity: 1;
    transition: 0.3s;
    border-radius: 0;
}

.project-5-slider-dots .swiper-pagination-bullet-active {
    background-color: var(--it-common-black);
}

.project-5-slider-dots .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .project-5-slider-dots {
        display: none;
    }
}

.it-project-details__thumb-text-box {
    padding: 45px 110px;
    border-radius: 100px;
    background-color: var(--it-common-white);
    margin-top: -71px;
    position: relative;
    z-index: 11;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-project-details__thumb-text-box {
        padding: 45px 20px;
    }
}

@media (max-width: 767px) {
    .it-project-details__thumb-text-box {
        padding: 45px 20px;
        margin-top: 0;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-project-details__thumb-text-box {
        padding: 45px 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .it-project-details__thumb-text-box .it-team-details__social {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .it-project-details__thumb-text {
        margin-bottom: 30px;
    }
}

.it-project-details__thumb-text span {
    font-weight: 700;
    font-size: 14px;
    display: block;
}

.it-project-details__thumb-text strong {
    font-weight: 700;
    font-size: 18px;
    font-family: var(--it-ff-heading);
    color: var(--it-common-black);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-project-details__thumb-text strong {
        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-project-details__text p {
        font-size: 14px;
    }
}

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

/*  12. customar css start
/*----------------------------------------*/

.it-customar-review__item-box {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.it-customar-review__item-box::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 26, 25, 0.8);
    z-index: 1;
}

.it-customar-review__gradiant-box {
    position: relative;
    padding: 44px 60px;
}

@media (max-width: 767px) {
    .it-customar-review__gradiant-box {
        padding: 44px 20px;
    }
}

.it-customar-review__gradiant-box::after {
    content: "";
    top: -1px;
    right: 0;
    background-color: var(--it-common-white);
    height: 100px;
    width: 100px;
    position: absolute;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.it-customar-review__gradiant-box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: -moz-linear-gradient(180deg, rgb(249, 190, 23) 0%, rgb(127, 107, 25) 44%, rgb(4, 23, 26) 100%);
    background-image: -webkit-linear-gradient(180deg, rgb(249, 190, 23) 0%, rgb(127, 107, 25) 44%, rgb(4, 23, 26) 100%);
    background-image: -ms-linear-gradient(180deg, rgb(249, 190, 23) 0%, rgb(127, 107, 25) 44%, rgb(4, 23, 26) 100%);
    z-index: -1;
}

.it-customar-review__title {
    font-size: 48px;
    color: var(--it-common-white);
    line-height: 1;
}

.it-customar-review__item {
    padding: 57px 60px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.it-customar-review__item::after {
    content: "";
    top: -1px;
    right: 0;
    background-color: var(--it-common-white);
    height: 100px;
    width: 100px;
    position: absolute;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-customar-review__item::after {
        top: -1px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-customar-review__item {
        padding: 57px 40px;
    }
}

@media (max-width: 767px) {
    .it-customar-review__item {
        padding: 57px 20px;
        flex-wrap: wrap;
    }
}

.it-customar-review__icon {
    margin-right: 30px;
}

@media (max-width: 767px) {
    .it-customar-review__icon {
        margin-bottom: 20px;
    }
}

.it-customar-review__icon span {
    font-size: 50px;
    color: var(--it-common-black);
    display: inline-block;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: var(--it-theme-1);
    text-align: center;
    line-height: 115px;
}

.it-customar-review__content span {
    font-family: var(--it-ff-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--it-common-white);
    display: inline-block;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .it-customar-review__content span {
        font-size: 20px;
    }
}

.it-customar-review__content p {
    color: #c9c9c9;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-customar-review__content 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-customar-review__content p {
        font-size: 14px;
    }
}

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

/*  20. pricing css start
/*----------------------------------------*/

.it-pricing-5__item {
    background-color: #FFF;
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.08);
    padding: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-pricing-5__item {
        padding: 30px;
    }
}

.it-pricing-5__item.active {
    background-color: var(--it-common-black);
}

.it-pricing-5__item.active .it-pricing-5__top-box i {
    color: var(--it-common-white);
}

.it-pricing-5__item.active .it-pricing-5__top-box span {
    color: var(--it-common-white);
    background-color: #272727;
}

.it-pricing-5__item.active .it-pricing-5__middle-box span {
    color: var(--it-common-white);
}

.it-pricing-5__top-box i {
    font-size: 80px;
    color: var(--it-common-black);
    display: inline-block;
    margin-right: 40px;
    transform: translateY(11px);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-pricing-5__top-box i {
        font-size: 70px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-pricing-5__top-box i {
        font-size: 65px;
    }
}

@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-pricing-5__top-box i {
        font-size: 60px;
    }
}

.it-pricing-5__top-box span {
    font-weight: 700;
    font-size: 22px;
    color: var(--it-common-black);
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    background-color: #f5efef;
    display: inline-block;
    text-align: center;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-pricing-5__top-box span {
        font-size: 19px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-pricing-5__top-box span {
        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-pricing-5__top-box span {
        font-size: 15px;
    }
}

.it-pricing-5__middle-box span {
    font-weight: 500;
    font-size: 18px;
    color: var(--it-common-black);
}

.it-pricing-5__middle-box span strong {
    font-weight: 700;
    font-size: 48px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-pricing-5__middle-box span strong {
        font-size: 45px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-pricing-5__middle-box span strong {
        font-size: 42px;
    }
}

@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-pricing-5__middle-box span strong {
        font-size: 35px;
    }
}

.it-pricing-5__list ul li {
    list-style-type: none;
    font-size: 16px;
    padding-bottom: 15px;
}

.it-pricing-5__shape {
    position: absolute;
    right: -52%;
    bottom: 65px;
    z-index: -1;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-pricing-5__shape {
        right: -20%;
    }
}

.it-pricing-5__title-wrap {
    margin-bottom: 55px;
}

@media (max-width: 767px) {
    .it-pricing-5__section-box {
        margin-bottom: 20px;
    }
}

.it-pricing-5__tab ul li button {
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--it-common-black);
}

.it-pricing-5__tab ul li button.active {
    color: var(--it-theme-3);
}

.it-pricing-5__tab ul li button:hover {
    color: var(--it-theme-3);
}

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

/*  04. blog css start
/*----------------------------------------*/

.it-blog__shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.it-blog__section-title {
    padding-bottom: 50px;
}

.it-blog__button {
    padding-top: 78px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .it-blog__button {
        padding-top: 70px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-blog__button {
        padding-top: 61px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog__button {
        padding-top: 57px;
    }
}

.it-blog__item {
    position: relative;
}

.it-blog__item:hover .it-blog__thumb img {
    filter: grayscale(100%);
    opacity: 0.7;
    transform: scale(1.2);
}

.it-blog__item:hover .it-blog__thumb::after {
    opacity: 1;
    visibility: visible;
    bottom: auto;
    top: 0;
    height: 100%;
}

.it-blog__item:hover .it-blog__icon {
    opacity: 1;
    visibility: visible;
}

.it-blog__thumb {
    overflow: hidden;
}

.it-blog__thumb img {
    transition: 0.7s;
}

.it-blog__thumb::after {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background-color: rgba(4, 23, 26, 0.702);
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
}

.it-blog__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.it-blog__icon a {
    color: var(--it-common-white);
    font-size: 75px;
    line-height: 0;
}

.it-blog__content {
    padding: 30px;
    padding-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog__content {
        padding: 30px 0;
        padding-top: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-blog__content {
        padding: 30px 0;
        padding-top: 25px;
    }
}

.it-blog__content a {
    font-weight: 70;
    font-size: 14px;
    color: #767676;
    transition: 0.3s;
}

.it-blog__content a:hover {
    color: var(--it-theme-1);
}

.it-blog__meta span {
    font-weight: 400;
    font-size: 14px;
    color: #767676;
    display: inline-block;
    padding-bottom: 15px;
}

.it-blog__title {
    font-size: 26px;
    line-height: 35px;
    padding-bottom: 10px;
    transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog__title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-blog__title {
        font-size: 23px;
    }
    .it-blog__title br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-blog__title {
        font-size: 25px;
    }
    .it-blog__title br {
        display: none;
    }
}

.it-blog__title:hover {
    color: var(--it-theme-1);
}

.it-blog-2__shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 385px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-blog-2__shape {
        height: 100%;
    }
}

.it-blog-2__item:hover .it-blog-2__thumb img {
    transform: scale(1.2) rotate(-2deg);
    filter: grayscale(100%);
    opacity: 0.9;
}

.it-blog-2__item:hover .it-blog-2__content {
    background-color: var(--it-theme-1);
}

.it-blog-2__item:hover .it-blog-2__meta {
    color: var(--it-common-black);
}

.it-blog-2__content-box {
    margin-top: -60px;
    position: relative;
    z-index: 1;
    margin-left: 30px;
}

.it-blog-2__thumb img {
    transition: 0.5s;
}

.it-blog-2__content {
    transition: 0.5s;
    background-color: #fff;
    padding: 30px 26px;
    padding-top: 20px;
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.08);
}

.it-blog-2__date {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    padding-bottom: 15px;
    padding-left: 26px;
    color: var(--it-common-white);
    text-transform: uppercase;
}

.it-blog-2__meta {
    font-size: 14px;
    display: inline-block;
    padding-bottom: 15px;
    transition: 0.5s;
}

.it-blog-2__title {
    font-size: 26px;
    padding-bottom: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-blog-2__title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog-2__title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-blog-2__title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .it-blog-2__title {
        font-size: 19px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-blog-2__title {
        font-size: 23px;
    }
}

.it-blog-2__link {
    transition: 0.3s;
}

.it-blog-2__link i {
    color: var(--it-common-black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog-2__link i {
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-blog-2__link i {
        font-size: 12px;
    }
}

.it-blog-2__link span {
    color: var(--it-common-black);
    display: inline-block;
    transform: translateY(2px);
}

.it-blog-3__bg {
    position: relative;
    z-index: 2;
}

.it-blog-3__bg::after {
    content: "";
    top: 0;
    left: 0;
    height: 508px;
    width: 100%;
    background-color: var(--it-common-black);
    position: absolute;
    z-index: -1;
}

.it-blog-3__shape {
    position: absolute;
    bottom: 2%;
    left: 0;
}

.it-blog-3__item {
    position: relative;
    z-index: 9;
}

.it-blog-3__item:hover .it-blog-3__thumb::after {
    opacity: 1;
    visibility: visible;
}

.it-blog-3__item:hover .it-blog-3__thumb img {
    transform: scale(1.1) rotate(-2deg);
}

.it-blog-3__item:hover .it-blog-3__date {
    color: var(--it-common-black);
}

.it-blog-3__item.color:hover .it-blog-3__date {
    color: var(--it-common-white);
}

.it-blog-3__content-box {
    margin-top: -60px;
    position: relative;
    z-index: 1;
    margin-left: 30px;
}

.it-blog-3__thumb {
    position: relative;
}

.it-blog-3__thumb::after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(249, 189, 23, 0.8);
    position: absolute;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
}

.it-blog-3__thumb.black-color::after {
    background-color: rgba(15, 15, 15, 0.702);
}

.it-blog-3__thumb img {
    transition: 0.5s;
}

.it-blog-3__content {
    background-color: #fff;
    padding: 30px 26px;
    padding-top: 20px;
    box-shadow: 2px 3.464px 40px 0px rgba(4, 23, 26, 0.08);
}

.it-blog-3__content.space {
    padding: 20px 26px;
    padding-bottom: 15px;
}

.it-blog-3__date {
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    padding-bottom: 15px;
    padding-left: 26px;
    color: var(--it-common-white);
    text-transform: uppercase;
    transition: 0.3s;
}

.it-blog-3__meta {
    font-size: 14px;
    display: inline-block;
    padding-bottom: 15px;
}

.it-blog-3__meta>strong {
    transition: 0.3s;
}

.it-blog-3__meta>strong.color:hover {
    color: var(--it-theme-3);
}

.it-blog-3__title {
    font-size: 26px;
    padding-bottom: 20px;
    transition: 0.3s;
}

.it-blog-3__title.space {
    padding-bottom: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-blog-3__title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog-3__title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-blog-3__title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .it-blog-3__title {
        font-size: 19px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-blog-3__title {
        font-size: 23px;
    }
}

.it-blog-3__title:hover {
    color: var(--it-theme-1);
}

.it-blog-3__link {
    padding: 10px 30px;
    background-color: rgb(245, 243, 238);
    transition: 0.3s;
}

.it-blog-3__link:hover {
    background-color: var(--it-theme-1);
}

.it-blog-3__link span {
    color: var(--it-common-black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog-3__link span {
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-blog-3__link span {
        font-size: 12px;
    }
}

.it-blog-3__link i {
    color: var(--it-common-black);
    display: inline-block;
    transform: translateY(2px);
    font-style: normal;
}

.it-blog-3__link-2 {
    color: var(--it-common-black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
    transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog-3__link-2 {
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-blog-3__link-2 {
        font-size: 12px;
    }
}

.it-blog-3__link-2:hover {
    color: var(--it-theme-3);
}

.it-blog-3__link-2:hover i {
    color: var(--it-common-white);
    background-color: var(--it-theme-3);
}

.it-blog-3__link-2 i {
    color: var(--it-common-black);
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #f5f3ee;
    text-align: center;
    line-height: 53px;
    transition: 0.3s;
}

.it-blog-3__link-3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
    transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog-3__link-3 {
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-blog-3__link-3 {
        font-size: 12px;
    }
}

.it-blog-3__link-3:hover {
    color: var(--it-common-black);
}

.it-blog-3__link-3:hover i {
    color: var(--it-common-white);
    background-color: var(--it-common-black);
}

.it-blog-3__link-3 i {
    color: var(--it-common-black);
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #f5f3ee;
    text-align: center;
    line-height: 53px;
    transition: 0.3s;
}

.it-blog-4__section-title {
    padding-bottom: 50px;
}

.it-blog-4__item {
    position: relative;
}

.it-blog-4__thumb {
    overflow: hidden;
}

.it-blog-4__thumb img {
    transition: 0.7s;
}

.it-blog-4__thumb:hover img {
    transform: scale(1.1);
}

.it-blog-4__thumb:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: auto;
    top: 0;
    height: 100%;
}

.it-blog-4__thumb:hover .it-blog-4__icon {
    opacity: 1;
    visibility: visible;
}

.it-blog-4__thumb::after {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.702);
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
}

.it-blog-4__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.it-blog-4__icon a {
    color: var(--it-common-white);
    font-size: 30px;
    line-height: 0;
}

.it-blog-4__content {
    padding: 30px;
    padding-top: 25px;
    padding-left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog-4__content {
        padding: 30px 0;
        padding-top: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-blog-4__content {
        padding: 30px 0;
        padding-top: 25px;
    }
}

.it-blog-4__content a {
    font-weight: 700;
    font-size: 14px;
    color: #767676;
    transition: 0.3s;
    text-transform: uppercase;
}

.it-blog-4__content a i {
    margin-left: 10px;
}

.it-blog-4__content a:hover {
    color: var(--it-theme-3);
}

.it-blog-4__meta span {
    font-weight: 400;
    font-size: 14px;
    color: #767676;
    display: inline-block;
    padding-bottom: 15px;
}

.it-blog-4__title {
    font-size: 26px;
    line-height: 35px;
    padding-bottom: 10px;
    transition: 0.3s;
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-blog-4__title {
        font-size: 22px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-blog-4__title {
        font-size: 23px;
    }
    .it-blog-4__title br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-blog-4__title {
        font-size: 25px;
    }
    .it-blog-4__title br {
        display: none;
    }
}

.it-blog-4__title:hover {
    color: var(--it-theme-3);
}

.it-blog-4__date {
    position: absolute;
    bottom: -25px;
    right: 20px;
    text-transform: uppercase;
    z-index: 11;
}

.it-blog-4__date span {
    font-weight: 700;
    font-size: 14px;
    color: #FFF;
    display: inline-block;
    padding: 7px 13px;
    background-color: var(--it-theme-3);
}

.it-blog-3__bg-2 {
    position: relative;
}

.it-blog-3__bg-2::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 385px;
    content: "";
    background-color: #eeeeee;
    z-index: -1;
}

.it-blog-3__bg-2 .it-blog-3__thumb::after {
    background-color: rgba(15, 15, 15, 0.702);
}

.it-blog-3__bg-2 .it-blog-3__title:hover {
    color: var(--it-theme-3);
}

.it-blog-3__bg-2 .it-blog-3__link {
    background-color: rgb(245, 243, 238);
}

.it-blog-3__bg-2 .it-blog-3__link:hover {
    background-color: var(--it-theme-3);
}

.it-blog-3__bg-2 .it-blog-3__link:hover span {
    color: var(--it-common-white);
}

.it-blog-3__bg-2 .it-blog-3__link:hover i {
    color: var(--it-common-white);
}

.it-blog-3__bg-2 .it-blog-3__link span {
    color: #6a6a6a;
    transition: 0.3s;
}

.it-blog-3__bg-2 .it-blog-3__link i {
    color: #6a6a6a;
    transition: 0.3s;
}

.it-blog-3__bg-2 .it-blog-3__item:hover .it-blog-3__thumb img {
    transform: scale(1.1) rotate(-2deg);
    filter: grayscale(100%);
    opacity: 0.9;
}

.it-blog-3__bg-2 .it-blog-3__item:hover .it-blog-3__date {
    color: var(--it-common-white);
}

/*-- blog details area ---*/

.postbox__details-checkmark {
    padding-bottom: 40px;
}

.postbox__details-checkmark ul li {
    list-style-type: none;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.2;
    color: #202124;
}

@media (max-width: 767px) {
    .postbox__details-checkmark ul li {
        font-size: 14px;
    }
}

.postbox__details-checkmark ul li:last-child {
    margin-bottom: 0;
}

.postbox__details-checkmark ul li i {
    height: 20px;
    width: 20px;
    background-color: var(--it-common-black);
    color: var(--it-common-white);
    border-radius: 50%;
    line-height: 20px;
    text-align: center;
    font-size: 10px;
    transform: translateX(2px);
    position: absolute;
    top: -2px;
    left: 0;
}

.postbox__details-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #a34898;
    padding-bottom: 10px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
    .postbox__details-title {
        font-size: 33px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .postbox__details-title {
        font-size: 33px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__details-title {
        font-size: 32px;
    }
    .postbox__details-title br {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__details-title {
        font-size: 25px;
    }
    .postbox__details-title br {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__details-title {
        font-size: 30px;
    }
    .postbox__details-title br {
        display: none;
    }
}

@media (max-width: 767px) {
    .postbox__details-title {
        font-size: 20px;
    }
    .postbox__details-title br {
        display: none;
    }
}

.postbox__details-title-box span {
    font-weight: 700;
    font-size: 14px;
    color: var(--it-common-black);
    display: inline-block;
    margin-bottom: 30px;
}

.postbox__details-title-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
    padding-bottom: 10px;
    padding-right: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__details-title-box p {
        font-size: 15px;
    }
    .postbox__details-title-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) {
    .postbox__details-title-box p {
        font-size: 15px;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .postbox__details-title-box p {
        font-size: 13px;
        padding-right: 0;
    }
    .postbox__details-title-box p br {
        display: none;
    }
}

.postbox__details-img-box {
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .postbox__details-img-box {
        flex-wrap: wrap;
    }
}

.postbox__details-img-box span img {
    border-radius: 20px;
    margin-bottom: 20px;
}

.postbox__details-img-box span img.img-mr {
    margin-right: 20px;
}

.postbox__details-img-caption {
    font-weight: 400;
    font-size: 13px;
    line-height: 10px;
    color: #87888A;
}

.postbox__details-img-caption i {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 10px;
    color: #5F6168;
}

.postbox__details-wrapper {
    padding-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .postbox__details-wrapper {
        padding-right: 0;
    }
}

.postbox__details-qoute {
    background: linear-gradient(90.21deg, #FAFAFA -0.62%, rgba(255, 255, 255, 0) 18.02%);
    padding: 40px 50px;
    border-left: 3px solid var(--it-common-blue-4);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__details-qoute {
        padding: 40px 40px;
    }
}

@media (max-width: 767px) {
    .postbox__details-qoute {
        padding: 30px;
    }
}

.postbox__details-qoute blockquote {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .postbox__details-qoute blockquote {
        flex-wrap: wrap;
    }
}

.postbox__details-qoute-icon svg {
    transform: translateY(5px);
    margin-right: 30px;
}

@media (max-width: 767px) {
    .postbox__details-qoute-icon svg {
        margin-bottom: 20px;
    }
}

.postbox__details-qoute-text P {
    font-weight: 500;
    font-size: 23px;
    line-height: 34px;
    color: #202124;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__details-qoute-text P {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .postbox__details-qoute-text P {
        font-size: 17px;
        line-height: 26px;
    }
}

.postbox__details-qoute-text span {
    font-weight: 500;
    font-size: 15px;
    line-height: 14px;
    color: var(--it-common-blue-4);
}

.postbox__details-qoute-text span::before {
    content: "";
    height: 1px;
    width: 16px;
    background-color: var(--it-common-blue-4);
    display: inline-block;
    transform: translateY(-4px);
    margin-right: 10px;
}

.postbox__details-author-info-box {
    background-color: #F8F8F8;
    border-radius: 14px;
    padding: 50px 45px;
}

@media (max-width: 767px) {
    .postbox__details-author-info-box {
        flex-wrap: wrap;
        padding: 40px 30px;
    }
}

.postbox__details-author-avata {
    flex: 0 0 auto;
    margin-right: 25px;
}

@media (max-width: 767px) {
    .postbox__details-author-avata {
        margin-bottom: 20px;
    }
}

.postbox__details-author-avata img {
    flex: 0 0 auto;
    border-radius: 50%;
}

.postbox__details-author-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 16px;
    color: #202124;
}

.postbox__details-author-social a {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    box-shadow: 0px 1px 1px rgba(32, 33, 36, 0.12);
    display: inline-block;
    font-size: 12px;
    margin-right: 6px;
    transition: 0.3s;
}

.postbox__details-author-social a:hover {
    background-color: var(--it-common-blue-4);
    color: var(--it-common-white);
}

.postbox__comment-input {
    position: relative;
}

.postbox__comment-input input:focus~.floating-label,
.postbox__comment-input input:not(:focus):valid~.floating-label {
    top: 0;
    left: 20px;
    font-size: 13px;
    font-weight: 400;
    color: var(--it-common-blue-3);
    background-color: var(--it-common-white);
    padding: 0px 4px;
}

.postbox__comment-input textarea:focus~.floating-label-2,
.postbox__comment-input textarea:not(:focus):valid~.floating-label-2 {
    top: -9px;
    left: 20px;
    font-size: 13px;
    font-weight: 400;
    color: var(--it-common-blue-3);
    background-color: var(--it-common-white);
    padding: 0px 4px;
}

.postbox__comment-input .eye-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.postbox__comment-input .eye-btn span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.postbox__comment-input .eye-btn .eye-open {
    opacity: 0;
}

.postbox__comment-input .eye-btn .eye-off {
    opacity: 1;
}

.postbox__comment-input .eye-btn.pass-btn-open .eye-open {
    opacity: 1;
}

.postbox__comment-input .eye-btn.pass-btn-open .eye-off {
    opacity: 0;
}

.postbox__comment-input .inputText {
    border-radius: 12px;
    padding: 0px 20px;
    font-size: 14px;
    width: 100%;
    height: 55px;
    border: 0;
    outline: 0;
    font-weight: 500;
    font-size: 15px;
    color: #87888A;
    box-shadow: inset 0 0 0 1px #E5E5E5;
    transition: box-shadow 0.3s cubic-bezier(0.3, 0, 0, 0.3);
    color: var(--it-common-black);
}

.postbox__comment-input .inputText:focus {
    box-shadow: 0px 1px 2px 1px rgba(32, 33, 36, 0.06), inset 0 0 0 2px var(--it-common-blue-3);
}

.postbox__comment-input .textareaText {
    border-radius: 12px;
    padding: 20px;
    font-size: 14px;
    width: 100%;
    height: 160px;
    resize: none;
    border: 0;
    outline: 0;
    font-weight: 500;
    font-size: 15px;
    color: #87888A;
    box-shadow: inset 0 0 0 1px #E5E5E5;
    transition: box-shadow 0.3s cubic-bezier(0.3, 0, 0, 0.3);
    color: var(--it-common-black);
}

.postbox__comment-input .textareaText:focus {
    box-shadow: 0px 1px 2px 1px rgba(32, 33, 36, 0.06), inset 0 0 0 2px var(--it-common-blue-3);
}

.postbox__comment-input .floating-label {
    position: absolute;
    pointer-events: none;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s ease all;
}

.postbox__comment-input .floating-label-2 {
    position: absolute;
    pointer-events: none;
    left: 20px;
    top: 20px;
    transition: 0.2s ease all;
}

.rc__post {
    background-color: var(--it-common-white);
    padding: 10px;
    box-shadow: 1.5px 2.598px 20px 0px rgba(21, 24, 32, 0.06);
    border: 1px solid transparent;
    transition: 0.3s;
}

.rc__post ul li:not(:last-child) {
    margin-bottom: 15px;
}

.rc__post:hover {
    border: 1px solid var(--it-common-black);
}

.rc__post-thumb {
    flex: 0 0 auto;
}

.rc__post-thumb img {
    width: 75px;
    height: 75px;
    flex: 0 0 auto;
    object-fit: cover;
}

.rc__post-title {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-right: 30px;
    color: var(--it-common-black);
    line-height: 23px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .rc__post-title {
        font-size: 14px;
        margin-right: 0;
    }
}

.rc__post-title a:hover {
    color: var(--it-theme-1);
}

.rc__meta span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: #6A6A74;
}

.sidebar__wrapper {
    padding-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) {
    .sidebar__wrapper {
        padding-left: 0;
    }
}

.sidebar__widget-content ul>li {
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    list-style-type: none;
    position: relative;
    margin-bottom: 10px;
    transition: 0.3s;
    background-color: var(--it-common-white);
}

.sidebar__widget-content ul>li:hover {
    background-color: var(--it-common-black);
}

.sidebar__widget-content ul>li:hover a {
    color: var(--it-common-white);
}

.sidebar__widget-content ul>li:hover::after {
    color: var(--it-common-white);
}

.sidebar__widget-content ul>li::after {
    content: "\f178";
    right: 30px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Pro";
    color: var(--it-common-black);
    font-size: 18px;
}

.sidebar__widget-content ul>li>a {
    font-weight: 500;
    font-size: 16px;
    color: var(--it-common-black);
    transition: 0.3s;
}

.sidebar__widget-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 16px;
    color: var(--it-common-black);
    margin-bottom: 30px;
    display: inline-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) {
    .sidebar__widget-title {
        font-size: 20px;
    }
    .sidebar__widget-title br {
        display: none;
    }
}

.sidebar__widget.border-color {
    border: 1px solid var(--it-theme-1);
    padding: 35px;
}

.sidebar__widget.border-color .sidebar__widget-content ul li {
    background-color: var(--it-grey-1);
}

.sidebar__widget.border-color .sidebar__widget-content ul li:hover {
    background-color: var(--it-common-black);
}

.sidebar__widget.border-color .sidebar__widget-content ul li:hover::after {
    color: var(--it-theme-1);
}

.sidebar__widget.border-color-2 {
    border: 2px solid var(--it-theme-1);
}

.sidebar__widget:last-child-title {
    border-bottom: 0;
}

.sidebar__widget>ul>li {
    list-style: none;
    margin-bottom: 15px;
}

.sidebar__widget>ul>li:last-child {
    margin-bottom: 0;
}

.sidebar__widget>ul>li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
    color: #5F6168;
    display: flex;
    justify-content: space-between;
}

.sidebar__widget>ul>li a:hover {
    color: var(--it-theme-1);
}

.sidebar__widget>ul>li a i {
    font-size: 18px;
    transform: translateY(2px);
    margin-right: 10px;
}

.sidebar__search {
    position: relative;
}

.sidebar__search input {
    width: 100%;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    text-transform: capitalize;
    background-color: var(--it-grey-1);
    border: 1px solid transparent;
    padding-right: 60px;
    color: #757a7b;
    outline: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sidebar__search input {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .sidebar__search input {
        padding-right: 40px;
        padding-left: 15px;
        font-size: 14px;
    }
}

.sidebar__search input:focus {
    border-color: var(--it-theme-1);
}

.sidebar__search input::placeholder {
    color: #777777;
}

.sidebar__search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    border-radius: 50%;
    display: inline-block;
    color: var(--it-common-black);
    font-size: 18px;
}

.sidebar__banner-content {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: var(--it-theme-1);
}

.sidebar__banner-content h4 {
    padding: 15px 20px;
    font-size: 24px;
    color: var(--it-common-white);
    text-transform: uppercase;
    margin-bottom: 0;
}

.tagcloud.space a {
    padding: 0px 15px;
}

.tagcloud a {
    border: 1px solid #d7d7d7;
    color: var(--it-common-black);
    display: inline-block;
    line-height: 1;
    padding: 0px 20px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 15px;
    margin-right: 10px;
    transition: 0.3s;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tagcloud a {
        font-size: 13px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tagcloud a {
        font-size: 13px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tagcloud a {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .tagcloud a {
        font-size: 13px;
    }
}

.tagcloud a:hover {
    background: var(--it-theme-1);
    border-color: var(--it-theme-1);
}

.tagcloud span {
    font-weight: 600;
    font-size: 16px;
    line-height: 12px;
    color: #202124;
    margin-right: 8px;
}

.basic-pagination ul li {
    padding-top: 30px;
    display: inline-block;
}

.basic-pagination ul li:not(:last-child) {
    margin-right: 10px;
}

.basic-pagination ul li a,
.basic-pagination ul li span {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    transition: 0.3s;
    background: var(--it-common-white);
    font-family: var(--it-ff-heading);
    color: var(--it-common-black);
    border-radius: 4px;
    box-shadow: 2px 3.464px 20px 0px rgba(4, 23, 26, 0.08);
}

@media (max-width: 767px) {
    .basic-pagination ul li a,
    .basic-pagination ul li span {
        height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 12px;
    }
}

.basic-pagination ul li a.current i,
.basic-pagination ul li span.current i {
    display: inline-block;
    transform: translateY(2px);
}

.basic-pagination ul li a:hover,
.basic-pagination ul li a.current {
    color: var(--it-theme-1);
}

.basic-pagination ul li span:hover,
.basic-pagination ul li span.current {
    color: var(--it-theme-1);
}

.basic-pagination ul li a {
    display: inline-block;
}

.basic-pagination ul li a.color {
    background-color: var(--it-common-black);
    color: var(--it-common-white);
    font-size: 18px;
}

.blog-grid-avata-box .it-blog-author-info h5 {
    font-weight: 700;
    font-size: 17px;
    line-height: 16px;
    color: #FFFFFF;
}

.blog-grid-avata-box .it-blog-author-info span {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.postbox__contact-input input {
    width: 100%;
    height: 45px;
    padding: 25px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 30px;
    border: 1px solid #dddddd;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__contact-input input {
        font-size: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__contact-input input {
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__contact-input input {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .postbox__contact-input input {
        font-size: 14px;
    }
}

.postbox__contact-input input:focus {
    border-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) {
    .approch-thumb {
        margin-bottom: 40px;
    }
}

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

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .approch-thumb img {
        width: 100%;
    }
}

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

@media (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__p-right {
        margin-right: 0px;
    }
}

.postbox__thumb .play-btn {
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    height: 90px;
    width: 90px;
    background-color: var(--it-common-white);
    text-align: center;
    line-height: 90px;
    color: var(--it-common-black);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@media (max-width: 767px) {
    .postbox__thumb .play-btn {
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
    .postbox__thumb .play-btn i {
        padding-left: 4px;
    }
}

.postbox__thumb .play-btn:hover {
    background-color: var(--it-common-blue-4);
    color: var(--it-common-white);
}

.postbox__thumb img {
    margin-bottom: 25px;
}

.postbox__audio {
    height: 100%;
    width: 100%;
}

.postbox__audio iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.postbox__item-single:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.postbox__content p img {
    margin-bottom: 30px;
    max-width: 100%;
    border-radius: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .postbox__content p img {
        width: 100%;
    }
}

.postbox__content-single {
    padding-left: 0;
    padding-right: 0;
    border: none;
}

.postbox__title {
    color: var(--it-common-black);
    line-height: 1.3;
    font-weight: 600;
    font-size: 25px;
    color: #202124;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__title {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__title {
        font-size: 19px;
    }
    .postbox__title br {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__title {
        font-size: 19px;
    }
    .postbox__title br {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .postbox__title {
        font-size: 19px;
    }
    .postbox__title br {
        display: none;
    }
}

@media (max-width: 767px) {
    .postbox__title {
        font-size: 18px;
    }
    .postbox__title br {
        display: none;
    }
}

.postbox__title a:hover {
    color: var(--it-theme-1);
}

.postbox__meta {
    margin-bottom: 20px;
}

.postbox__meta a {
    font-weight: 400;
    font-size: 17px;
    line-height: 12px;
    color: #888888;
    display: inline-block;
}

.postbox__meta a:hover {
    color: var(--it-theme-1);
}

.postbox__meta-2 {
    padding-bottom: 13px;
}

.postbox__meta-2 a {
    font-weight: 400;
    font-size: 17px;
    line-height: 12px;
    color: #888888;
    display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .postbox__meta-2 a {
        font-size: 13px;
    }
}

.postbox__meta-2 a:hover {
    color: var(--it-theme-1);
}

.postbox__text img {
    max-width: 100%;
}

.postbox__text p {
    font-size: 17px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__text p {
        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) {
    .postbox__text p {
        font-size: 14px;
    }
}

.postbox__text-single p {
    margin-bottom: 15px;
}

.postbox__slider button {
    position: absolute;
    left: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    font-size: 30px;
    color: var(--it-common-white);
}

.postbox__slider button.slick-next {
    left: auto;
    right: 50px;
}

@media (max-width: 767px) {
    .postbox__slider button.slick-next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .postbox__slider button {
        left: 10px;
    }
}

.postbox__comment ul li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    list-style: none;
    background-color: rgb(255, 255, 255);
    box-shadow: 2px 3.464px 60px 0px rgba(21, 24, 32, 0.1);
    padding: 25px;
    padding-right: 40px;
}

@media (max-width: 767px) {
    .postbox__comment ul li {
        padding-right: 25px;
    }
}

.postbox__comment ul-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--it-common-black);
    margin-bottom: 40px;
    margin-right: 20px;
}

.postbox__comment-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: #202124;
    margin-bottom: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__comment-title {
        font-size: 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) {
    .postbox__comment-title {
        font-size: 20px;
    }
}

.postbox__comment-avater img {
    width: 154px;
    height: 154px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .postbox__comment-avater img {
        width: 65px;
        height: 65px;
    }
}

.postbox__comment-name {
    margin-bottom: 5px;
}

.postbox__comment-name h5 {
    font-weight: 700;
    font-size: 22px;
    line-height: 20px;
    color: var(--it-common-black);
    margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .postbox__comment-name h5 {
        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) {
    .postbox__comment-name h5 {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .postbox__comment-text {
        margin-left: 0;
        margin-top: 15px;
    }
}

.postbox__comment-text p {
    font-size: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__comment-text p {
        font-size: 15px;
    }
    .postbox__comment-text p br {
        display: none;
    }
}

@media (max-width: 767px) {
    .postbox__comment-text p {
        font-size: 14px;
    }
    .postbox__comment-text p br {
        display: none;
    }
}

.postbox__comment-reply {
    margin-top: 10px;
    padding-bottom: 17px;
}

.postbox__comment-reply span {
    margin-right: 40px;
    display: inline-block;
}

@media (max-width: 767px) {
    .postbox__comment-reply span {
        font-size: 12px;
    }
}

.postbox__comment-reply>a {
    display: inline-block;
    font-weight: 500;
    font-size: 17px;
    color: var(--it-common-black);
    transition: 0.3s;
}

.postbox__comment-reply>a:hover {
    color: var(--it-theme-3);
}

@media (max-width: 767px) {
    .postbox__comment-reply>a {
        font-size: 14px;
    }
}

.postbox__comment-agree {
    margin-bottom: 30px;
}

.postbox__comment-agree .form-check-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #87888A;
}

.postbox__comment-agree .form-check-input:checked {
    background-color: var(--it-common-blue-4);
    border-color: transparent;
}

.postbox__comment-agree .form-check-input:focus {
    box-shadow: none;
}

.postbox__comment-agree .form-check-input.form-check-input[type=checkbox] {
    border-radius: 2px;
    margin-top: 4px;
}

.postbox__comment-input {
    position: relative;
    margin-bottom: 20px;
}

.postbox__comment-input span {
    font-weight: 600;
    color: var(--it-common-black);
    margin-bottom: 12px;
    display: block;
}

.postbox__comment-input input,
.postbox__comment-input textarea {
    height: 55px;
    padding: 0 20px;
    width: 100%;
    font-size: 14px;
    outline: none;
    border: 1px solid #f7f7f7;
    box-shadow: 0px 16px 24px rgba(189, 196, 205, 0.13);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -o-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
    color: var(--it-common-black);
}

.postbox__comment-input input::placeholder,
.postbox__comment-input textarea::placeholder {
    color: rgba(116, 116, 116, 0.5);
}

.postbox__comment-input input:focus,
.postbox__comment-input textarea:focus {
    border-color: var(--it-common-pink);
    color: var(--it-common-black);
}

.postbox__comment-input textarea {
    height: 175px;
    resize: none;
    padding-top: 20px;
    padding-bottom: 20px;
}

.postbox__tag span {
    font-size: 20px;
    margin-bottom: 17px;
    color: var(--it-common-black);
    margin-right: 30px;
    font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .postbox__social {
        margin-top: 40px;
    }
}

.postbox__social span {
    font-size: 20px;
    color: var(--it-common-black);
    font-weight: 500;
}

.postbox__social a {
    font-size: 15px;
    padding-left: 30px;
}

.postbox__social a .it-linkedin {
    color: #0E6BA1;
}

.postbox__social a .it-pinterest {
    color: #D70220;
}

.postbox__social a .it-facebook {
    color: #0E6BA1;
}

.postbox__social a .it-twitter {
    color: #36B6ED;
}

@media (max-width: 767px) {
    .postbox__navigation-more {
        flex-wrap: wrap;
    }
}

.postbox__navigation-img {
    margin-right: 15px;
}

.postbox__navigation-img img {
    border-radius: 12px;
}

@media (max-width: 767px) {
    .postbox__navigation-left {
        margin-bottom: 30px;
    }
}

.postbox__navigation-content a:hover span {
    color: var(--it-common-blue-4);
}

.postbox__navigation-content span {
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5F6168;
    padding-bottom: 15px;
    display: inline-block;
    transition: 0.3s;
}

.postbox__navigation-content span i {
    margin-right: 10px;
}

.postbox__navigation-content h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
    color: #202124;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .postbox__navigation-content h5 {
        font-size: 16px;
    }
}

.postbox__navigation-content h5:hover {
    color: var(--it-common-blue-4);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .postbox__navigation-content h5 {
        font-size: 15px;
    }
}

.postbox__navigation-right .postbox__navigation-img {
    margin-right: 0;
    margin-left: 15px;
}

.postbox__navigation-right .postbox__navigation-content span i {
    margin-right: 0;
    margin-left: 10px;
}

.postbox__item {
    padding-top: 10px;
    padding-bottom: 50px;
    border-bottom: 1px solid #f5f3ee;
}

.postbox__item i {
    font-size: 48px;
    color: var(--it-theme-1);
}

.postbox__item p {
    font-size: 20px;
    color: var(--it-common-black);
    line-height: 35px;
    font-family: var(--it-ff-heading);
    font-weight: 700;
}

@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__item p {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .postbox__details-tag {
        margin-bottom: 20px;
    }
}

.postbox__details-tag span {
    font-size: 22px;
    color: var(--it-common-black);
    font-family: var(--it-ff-heading);
    font-weight: 700;
    display: inline-block;
    padding-right: 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) {
    .postbox__details-tag span {
        font-size: 17px;
    }
}

.postbox__details-tag a {
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    background-color: var(--it-grey-1);
    transition: 0.3s;
    margin-left: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .postbox__details-tag a {
        padding: 0 10px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .postbox__details-tag a {
        padding: 0 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.postbox__details-tag a:hover {
    background-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.postbox__details-share span {
    color: var(--it-common-black);
    font-weight: 700;
    display: inline-block;
    padding-right: 15px;
}

.postbox__details-share a {
    font-size: 16px;
    color: var(--it-common-black);
    display: inline-block;
    padding: 0 5px;
    transition: 0.3s;
}

@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-share a {
        font-size: 14px;
    }
}

.postbox__details-share a:hover {
    color: var(--it-theme-1);
}

.postbox__details-share-wrapper {
    padding-top: 20px;
    padding-bottom: 65px;
}

.postbox__comment-info {
    flex: 0 0 auto;
}

.postbox__content-box {
    margin-left: 40px;
    padding: 30px;
    padding-top: 25px;
    padding-right: 80px;
    margin-top: -80px;
    background-color: var(--it-common-white);
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .postbox__content-box {
        margin-left: 0;
        padding: 16px;
        padding-top: 16px;
        padding-right: 16px;
        padding-top: 25px;
        padding-right: 15px;
        margin-top: 0;
    }
}

.postbox__meta span {
    display: inline-block;
    padding-bottom: 5px;
    margin-right: 15px;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
}

@media (max-width: 767px) {
    .postbox__meta span {
        font-size: 13px;
    }
}

.postbox__meta span i {
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-block;
    font-size: 14px;
}

.postbox__main-thumb img {
    width: 100%;
}

.postbox__content-img img {
    margin-bottom: 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__content-img img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .postbox__content-img {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .postbox__slider-arrow-wrap {
        display: none;
    }
}

.postbox__slider-arrow-wrap .postbox-arrow-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
    z-index: 9;
}

.postbox__slider-arrow-wrap .postbox-arrow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    z-index: 9;
}

.postbox__slider-arrow-wrap button {
    height: 70px;
    width: 70px;
    line-height: 70px;
    background-color: var(--it-common-white);
    color: var(--it-common-black);
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
}

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

/*  11. cta css start
/*----------------------------------------*/

.it-cta__yellow-bg {
    background-color: var(--it-theme-1);
    padding: 55px 100px;
    padding-bottom: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-cta__yellow-bg {
        padding: 55px 30px;
        padding-bottom: 35px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-cta__yellow-bg {
        padding: 55px 40px;
        padding-bottom: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-cta__yellow-bg {
        padding: 55px 20px;
        padding-bottom: 35px;
    }
}

.it-cta__title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-cta__title {
        font-size: 35px;
    }
}

@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-cta__title {
        font-size: 30px;
    }
}

.it-cta__icon span {
    font-size: 43px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: rgba(4, 23, 26, 0.102);
    line-height: 89px;
    text-align: center;
    display: inline-block;
    color: var(--it-common-black);
}

.it-cta-3__bg {
    background-color: var(--it-theme-1);
    padding: 44px 0;
}

.it-cta-3__red-bg {
    background-color: var(--it-theme-3);
    padding: 44px 0;
}

.it-cta-3__thumb {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .it-cta-3__thumb {
        display: none;
    }
}

.it-cta-3__title {
    font-size: 40px;
    line-height: 1.3;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-cta-3__title {
        font-size: 34px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-cta-3__title {
        font-size: 29px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-cta-3__title {
        font-size: 25px;
    }
	.heading {
		width: 36%;
	}
	.it-service-3__content p {
		height: auto;
	}
	.it-breadcrumb-height {
		padding-top: 40px;
		padding-bottom: 40px;
		
	}
	.trust-logo img {
		margin-left: 0;
	}
	.it-team-details__bg {
		    padding-top: 0px;
	}
}

@media (max-width: 767px) {
    .it-cta-3__title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .it-cta-3__title br {
        display: none;
    }
	.row-custom {
		display:block;
	}
	.col-custom.active {
		    height: auto;
	}
	.it-service-3__area.custom_ser .mb-90 {
		margin-bottom:30px;
	}
	.custom_ser .it-service-3__item {
		padding: 20px;
	}
	.custom_ser .it-service-3__bg.pt-80 {
		padding-top:30px;
	}
	.it-about__left-box {
		margin-bottom: 30px;
	}
	.it-about__content>p {
		padding-bottom: 0px;
		font-size: 17px;
	}
	.trust-logo img {
		margin-left: 0;
		margin-bottom: 20px;
	}
	.it-team-details__bg {
		padding-top: 0px;
	}
	.magnific-img {    width: 100%;}
}

.it-cta-3__plr {
    padding: 44px 115px;
    padding-right: 100px;
    margin-bottom: -100px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-cta-3__plr {
        padding: 44px 55px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-cta-3__plr {
        padding: 44px 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-cta-3__plr {
        padding: 44px 25px;
    }
}

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

/*  16. footer css start
/*----------------------------------------*/

.it-footer__space {
    padding-top: 60px;
    padding-bottom: 30px;
    background: #00664c;
}

.it-footer__logo {
    padding-bottom: 5px;
}

.it-footer__logo img {
    max-width: 100%;
}

.it-footer__text p {
    font-size: 15px;
    color: #fff;
    text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-footer__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),
(max-width: 767px) {
    .it-footer__text p {
        font-size: 14px;
    }
    .it-footer__text p br {
        display: none;
    }
}

.it-footer__contact-list ul li {
    position: relative;
    list-style-type: none;
    padding-bottom: 10px;
    font-size: 17px;
    color: #fff;
    line-height: 28px;
}

.it-footer__contact-list ul li strong {
	font-size: 18px;
}

.it-footer__contact-list ul li:last-child {
    padding-bottom: 0;
}

.it-footer__contact-list ul li i {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 17px;
    color: var(--it-theme-1);
}

.it-footer__contact-list ul li a {
    transition: 0.3s;
    font-size: 18px;
    color: var(--it-common-white);
}

.it-footer__contact-list ul li a.color {
    font-size: 18px;
    color: #ffffff;
}

.it-footer__contact-list ul li a.color-red {
    color: var(--it-theme-3);
}

.it-footer__widget-title {
    color: #fec544;
    font-size: 23px;
    padding-bottom: 24px;
    padding-top: 10px;
}

.it-footer__list.color-red ul li:hover {
    color: var(--it-theme-3);
}

.it-footer__list.color-red ul li:hover i {
    color: var(--it-theme-3);
}

.it-footer__list ul li {
    font-size: 17px;
    list-style-type: none;
    padding-bottom: 15px;
    position: relative;
    padding-left: 0;
    transition: 0.3s;
    overflow: hidden;
    color: #fff;
}

.it-footer__list ul li:hover {
    color: var(--it-theme-1);
    padding-left: 25px;
}

.it-footer__list ul li:hover i {
    left: 0;
}

.it-footer__list ul li:last-child {
    padding-bottom: 0;
}

.it-footer__list ul li i {
    color: var(--it-theme-1);
    font-size: 15px;
    display: inline-block;
    position: absolute;
    top: 2px;
    left: -25px;
    transition: 0.3s;
}

.it-footer__input-box {
    position: relative;
    margin-bottom: 20px;
}

.it-footer__input-box input {
    background-color: #072125;
    border: none;
    height: 45px;
    line-height: 45px;
    padding-right: 65px;
    padding-left: 20px;
    color: var(--it-common-white);
    font-size: 14px;
    width: 100%;
}

.it-footer__button-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: #0d3036;
    width: 50px;
    text-align: center;
}

.it-footer__button-box.color-red button {
    color: var(--it-common-white);
}

.it-footer__button-box button {
    height: 45px;
    line-height: 45px;
    color: var(--it-theme-1);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.it-footer__social.color-red a:hover {
    color: var(--it-theme-3);
}

.it-footer__social a {
    font-size: 15px;
    color: var(--it-common-white);
    margin-right: 15px;
    transition: 0.6s;
}

.it-footer__social a:hover {
    color: var(--it-theme-1);
}

.it-footer__gallery {
    position: relative;
    margin-bottom: 20px;
}

.it-footer__gallery-content {
    margin-left: 20px;
}

.it-footer__gallery-content span {
    color: var(--it-common-white);
    display: block;
    padding-bottom: 5px;
    font-size: 14px;
}

.it-footer__gallery-content span.color-red i {
    color: var(--it-theme-3);
}

.it-footer__gallery-content span i {
    color: var(--it-theme-1);
    display: inline-block;
    margin-right: 8px;
}

.it-footer__gallery-content p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 26px;
    margin-right: 58px;
}

@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__gallery-content p {
        margin-right: 0;
    }
}

.it-footer__red-color .it-footer__contact-list ul li i {
    color: var(--it-theme-3);
}

.it-footer__red-color .it-footer__list ul li:hover {
    color: var(--it-theme-3);
    padding-left: 25px;
}

.it-footer__red-color .it-footer__list ul li:hover i {
    left: 0;
}

.it-footer__red-color .it-footer__list ul li i {
    color: var(--it-theme-3);
}

.it-footer__red-color .it-footer__social a:hover {
    color: var(--it-theme-3);
}

.it-footer__red-color .it-footer__button-box button {
    color: var(--it-theme-3);
}

.it-footer__red-color .it-footer__gallery::after {
    width: 100%;
    background-color: rgba(255, 56, 56, 0.851);
}

.it-footer__red-color .it-footer__gallery-icon a {
    font-size: 18px;
    color: var(--it-common-white);
}

.footer-col-2 {
    padding-left: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .footer-col-2 {
        padding-left: 0;
    }
}

.footer-col-3 {
    margin-left: 18px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .footer-col-3 {
        margin-left: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .footer-col-3 {
        margin-left: 0;
    }
}

.footer-col-4 {
    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) {
    .footer-col-4 {
        margin-left: 0;
    }
}

.it-copyright__bg {
    background-color: #005e46;
}

.it-copyright__text {
    padding: 12px 0;
}

.it-copyright__text span {
    color: #c1c1c1;
    font-size: 15px;
}

.it-copyright__text span b {
    font-weight: 400;
    color: var(--it-theme-1);
}

.it-copyright__text span b.color-red {
    color: var(--it-theme-3);
}

.it-copyright__black-bg {
    background-color: #0f0f0f;
}

.it-copyright__black-bg .it-copyright__text span b {
    color: var(--it-theme-3);
}

/*media hidden */

@-ms-viewport {
    width: device-width;
}

.visible-xs {
    display: none !important
}

.visible-sm {
    display: none !important
}

.visible-md {
    display: none !important
}

.visible-lg {
    display: none !important
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important
}

@media(max-width:767px) {
    .visible-xs {
        display: block !important
    }
    table.visible-xs {
        display: table !important
    }
    tr.visible-xs {
        display: table-row !important
    }
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important
    }
    #mobile-menu-active{display:none;}
}

@media(max-width:767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media(max-width:767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media(max-width:767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important
    }
    table.visible-sm {
        display: table !important
    }
    tr.visible-sm {
        display: table-row !important
    }
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block !important
    }
    table.visible-md {
        display: table !important
    }
    tr.visible-md {
        display: table-row !important
    }
    th.visible-md,
    td.visible-md {
        display: table-cell !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media(min-width:1200px) {
    .visible-lg {
        display: block !important
    }
    table.visible-lg {
        display: table !important
    }
    tr.visible-lg {
        display: table-row !important
    }
    th.visible-lg,
    td.visible-lg {
        display: table-cell !important
    }
}

@media(min-width:1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media(min-width:1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media(min-width:1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media(max-width:767px) {
    .hidden-xs {
        display: none !important
    }
}

@media(min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none !important
    }
}

@media(min-width:1200px) {
    .hidden-lg {
        display: none !important
    }
}