@import "https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@400;500&display=swap";
html,
body {
    scroll-behavior: smooth
}

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

body {
    font-family: roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--clr-common-text);
    line-height: 26px
}

a {
    text-decoration: none
}

.w-img img {
    width: 100%
}

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

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-5,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

input {
    outline: 0
}

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: 0 0
}

button:hover {
    cursor: pointer
}

button:focus {
    outline: 0;
    border: 0
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: oswald, sans-serif;
    color: var(--clr-common-heading);
    margin-top: 0;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.3px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

h1 {
    font-size: 80px
}

h2 {
    font-size: 50px
}

h3 {
    font-size: 30px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 16px
}

h6 {
    font-size: 14px
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

p {
    font-family: roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--clr-common-text);
    margin-bottom: 15px;
    line-height: 26px;
	text-align:justify;
}

a:hover {
    color: var(--clr-common-color-red)
}

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

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

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

*::-moz-placeholder {
    color: var(--clr-common-placeholder);
    font-size: 16px;
    opacity: 1;
    text-transform: uppercase;
    font-family: oswald, sans-serif;
    font-weight: 400
}

*::placeholder {
    color: var(--clr-common-placeholder);
    font-size: 16px;
    opacity: 1;
    text-transform: uppercase;
    font-family: oswald, sans-serif;
    font-weight: 400
}

.fix {
    overflow: hidden
}

.clear {
    clear: both
}

.f-left {
    float: left
}

.f-right {
    float: right
}

.t-right {
    text-align: right
}

.z-index-1 {
    z-index: 1
}

.z-index-3 {
    z-index: 3 !important
}

.z-index-11 {
    z-index: 11
}

.lh-1 {
    line-height: 1
}

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

.p-relative {
    position: relative
}

.p-absolute {
    position: absolute
}

.pos-rel {
    position: relative
}

.pos-abs {
    position: absolute
}

.content-para {
    margin-bottom: 10px
}

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

.theme-bg {
    background: var(--clr-theme-1)
}

.red-bg {
    background: var(--clr-common-color-red)
}

.grey-bg {
    background: var(--clr-bg-gray)
}

.grey-bg-2 {
    background: var(--clr-bg-gray-2)
}

.grey-bg-3 {
    background: var(--clr-bg-gray-3)
}


.grey-bg-4 {
    background: var(--clr-bg-gray-4)
}

.green-bg {
    background: var(--clr-common-heading)
}

.pink-bg {
    background: var(--clr-common-black)
}

.white-bg {
    background: var(--clr-common-white)
}

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

.footer-bg-1 {
    background: var(--clr-theme-1)
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: var(--clr-common-white) !important
}

.white-color {
    color: var(--clr-common-white)
}

.theme-color {
    color: var(--clr-common-black) !important
}

.black-color {
    color: var(--clr-common-black)
}

.body-overlay {
    background-color: rgba(0, 0, 0, .5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 900;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.body-overlay:hover {
    cursor: pointer
}

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

@media(max-width:575px) {
    .progress-wrap {
        right: 15px;
        bottom: 15px
    }
}

.play-btn {
    width: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    line-height: 120px;
    color: var(--clr-theme-1);
    display: inline-block;
    text-align: center;
    font-size: 18px;
    animation: pulse 2s infinite
}

.play-btn:hover {
    background: var(--clr-theme-1);
    color: var(--clr-common-white)
}

.play-btn-white {
    background: var(--clr-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .play-btn {
        width: 95px;
        height: 95px;
        line-height: 95px
    }
}

@media(max-width:575px) {
    .play-btn {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 16px
    }
}

@media(max-width:450px) {
    .play-btn {
        width: 70px;
        height: 70px;
        line-height: 70px
    }
}

.pulse-btn {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 84px;
    text-align: center;
    background-color: var(--clr-common-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: var(--clr-common-black);
    animation: pulse 2s infinite
}

.pulse-btn:hover {
    background-color: var(--clr-common-black);
    color: var(--clr-common-white)
}

.pulse-btn i {
    padding-left: 2px
}

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

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

:root {
    --clr-common-white: #fff;
    --clr-common-black: #000;
    --clr-common-blue: #2785ff;
    --clr-common-heading: #3e4344;
    --clr-common-text: #333;
    --clr-common-border: #eaebee;
    --clr-common-border-2: #F3F3F3;
    --clr-common-border-3: #a4abbc;
    --clr-common-border-4: #ebebeb;
    --clr-common-border-5: #3d5375;
    --clr-common-border-6: #575757;
    --clr-common-border-7: #214170;
    --clr-common-border-8: #395173;
    --clr-common-border-9: #e0e3ed;
    --clr-common-border-10: rgba(255, 255, 255, 0.0705882353);
    --clr-common-border-11: #f0f0f0;
    --clr-common-placeholder: #bcbcbc;
    --clr-common-color-red: #a1c23f;
    --clr-common-color-red-2: #bc101c;
    --clr-common-color-red-3: #d51b28;
    --clr-common-color-1: #8a9db9;
    --clr-common-color-2: #012863;
    --clr-common-color-3: #999999;
    --clr-common-color-4: #99abc6;
    --clr-common-color-5: #113771;
    --clr-common-color-6: #7e94b5;
    --clr-common-color-7: #001f4f;
    --clr-common-color-8: #8799b4;
    --clr-common-color-9: #465e82;
    --clr-common-color-10: #a2b0c7;
    --clr-common-color-11: #607696;
    --clr-common-color-12: #f2f2f2;
    --clr-common-color-13: #08306c;
    --clr-common-color-14: #f09aa0;
    --clr-common-color-15: #ffefef;
    --clr-common-color-16: rgba(255, 255, 255, 0.0901960784);
    --clr-common-color-17: rgba(153, 171, 198, 0.1098039216);
    --clr-common-color-18: #f1f1f1;
    --clr-common-color-19: #eeeeee;
    --clr-common-color-20: #d4d4d4;
    --clr-common-color-21: #f5f6f9;
    --clr-common-color-22: rgba(238, 238, 238, 0.1215686275);
    --clr-common-color-23: #454545;
    --clr-common-color-24: #333333;
    --clr-common-color-25: #777;
    --clr-common-gray: #f8f8f8;
    --clr-common-placeholder-color: #bcbcbc;
    --clr-common-input-border: #f6f6f6;
    --clr-common-gradient: linear-gradient(to left, #db1c29, #db1c29);
    --clr-theme-1: #012863;
    --clr-theme-2: #fb5050;
    --clr-bg-gray: #f3f4f6;
    --clr-bg-gray-2: #f5f5f5;
    --clr-bg-gray-3: #f8f8f8;
    --clr-bg-gray-4: #f7f7f7;
    --clr-bg-gray-5: rgba(247, 247, 247, 0.5019607843);
    --clr-bg-black: #000;
    --clr-bg-footer: #f6f6f6;
    --clr-bg-1: #3e976c;
    --clr-bg-2: #EAEAEA;
    --clr-bg-3: #f8f8f9
}

.bg-gray {
    background-color: var(--clr-bg-gray)
}

.fill-btn {
    font-size: 16px;
    color: var(--clr-common-white);
    font-weight: 600;
    background: var(--clr-common-color-red);
    height: 60px;
    display: inline-block;
    line-height: 60px;
    padding: 0 38px;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-transform: capitalize;
    font-family: oswald, sans-serif
}

.fill-btn i {
    margin-right: 20px
}

.fill-btn:hover {
    color: var(--clr-common-white);
    background: var(--clr-common-heading)
}

.fill-btn-white {
    background: var(--clr-common-white);
    color: var(--clr-common-heading)
}

.fill-lg-btn {
    padding: 0 50px
}

.fill-xl-btn {
    padding: 0 53px
}

.fill-border-btn {
    background: 0 0;
    border: 2px solid var(--clr-common-white)
}

.border-btn {
    font-size: 16px;
    color: var(--clr-common-white);
    font-weight: 600;
    background: 0 0;
    border: 1px solid var(--clr-common-white);
    height: 60px;
    display: inline-block;
    line-height: 58px;
    padding: 0 43px;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-transform: uppercase
}

.border-btn-lg {
    padding: 0 50px
}

.border-btn-xl {
    padding: 0 53px
}

.border-btn:hover {
    color: var(--clr-common-white);
    background: var(--clr-common-heading)
}

.clip-btn {
    clip-path: polygon(11% 0, 100% 0, 89% 100%, 0 100%)
}

.clip-sm-btn {
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%)
}

.clip-md-btn {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%)
}

.skew-btn {
    background: 0 0;
    height: 60px;
    padding: 0 55px;
    line-height: 60px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--clr-common-white);
    font-family: oswald, sans-serif;
    position: relative;
    display: inline-flex;
    z-index: 2
}

.skew-btn::before {
    position: absolute;
    content: "";
    width: calc(100% - 20px);
    height: 100%;
    border: 2px solid var(--clr-common-border-2);
    -webkit-transform: skew(-18deg);
    -moz-transform: skew(-18deg);
    -ms-transform: skew(-18deg);
    transform: skew(-18deg);
    z-index: -1;
    left: 10px
}

.skew-btn:hover {
    color: var(--clr-common-heading)
}

.skew-btn:hover::before {
    background: var(--clr-common-white);
    border-color: var(--clr-common-white)
}

.btn-round {
    -webkit-box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: var(--clr-common-heading);
    font-size: 18px;
    background: var(--clr-common-white)
}

.btn-round:hover {
    background: var(--clr-common-color-red);
    color: var(--clr-common-white)
}

.bounce {
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite
}

.border-tb {
    border-top: 1px solid var(--clr-common-border-2);
    border-bottom: 1px solid var(--clr-common-border-2)
}

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

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--clr-common-color-red);
    mix-blend-mode: multiply
}

.section__title .sub-title,
.section__title span {
    color: var(--clr-common-color-red-3);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
    font-weight: 400;
    font-size: 16px;
    font-family: oswald, sans-serif;
    line-height: 1;
    margin-top: -2px
}

.section__title .sub-title.white,
.section__title span.white {
    color: var(--clr-common-white)
}

.section__title .title {
    font-size: 50px;
    margin-bottom: 0
}

.section__title .title-sm {
    font-size: 30px
}

@media(max-width:575px) {
    .section__title .title-sm {
        font-size: 26px
    }
}

.section__title .title.white {
    color: var(--clr-common-white)
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .section__title .title {
        font-size: 40px
    }
    .section__title .title br {
        display: none
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
    .section__title .title {
        font-size: 34px
    }
    .section__title .title br {
        display: none
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .section__title .title {
        font-size: 34px
    }
    .section__title .title br {
        display: none
    }
}

@media(max-width:450px) {
    .section__title .title {
        font-size: 28px
    }
}

.lh-1 {
    line-height: 1
}

.clip-box {
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%)
}

.clip-box-common {
    position: relative;
    background: 0 0;
    z-index: 2
}

.clip-box-common::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-common-white);
    z-index: -1
}

.clip-box-xxs {
    clip-path: polygon(1.4% 0, 100% 0, 98.6% 100%, 0 100%)
}

.clip-box-xs {
    clip-path: polygon(1.5% 0, 100% 0, 98.5% 100%, 0 100%)
}

.clip-box-sm {
    clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%)
}

.clip-box-md {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%)
}

.clip-box-md-before {
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%)
}

.clip-box-lg-before {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%)
}

.clip-box-sm-before {
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%)
}

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

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

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

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

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

.mt--62 {
    margin-top: -62px
}

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

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

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

.hr1 {
    border-bottom: 1px solid #dcdcdc
}

.breadcrumb-spacing {
    padding: 60px 0 40px;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .breadcrumb-spacing {
        padding: 80px 0
    }
}

.breadcrumb-spacing::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(1, 40, 99, 0.768627451) 0%, rgba(1, 40, 99, 0.6) 100%);
    z-index: -1
}

.breadcrumb-menu li {
    display: inline-block;
    padding: 0 15px;
    position: relative
}

.breadcrumb-menu li span {
    color: var(--clr-common-white);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase
}

.breadcrumb-menu li a:hover span {
    color: var(--clr-common-color-red)
}

.breadcrumb-menu li:not(:last-child)::after {
    display: inline-block;
    color: var(--clr-common-white);
    content: "\f101";
    position: absolute;
    right: -6px;
    top: 0;
    font-family: "font awesome 5 pro"
}

.page-title {
    color: var(--clr-common-white);
    font-size: 40px;
    font-weight: 700;
    font-family: oswald, sans-serif;
    line-height: 1;
    text-transform: uppercase
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .page-title {
        font-size: 50px;
        margin-bottom: 20px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .page-title {
        font-size: 45px;
        margin-bottom: 10px
    }
}

@media(max-width:450px) {
    .page-title {
        font-size: 35px
    }
}

.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate
}

@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-50px);
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        transform: translateY(-50px)
    }
}

@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-50px);
        -moz-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        transform: translateY(-50px)
    }
}

.hori-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover-hori 1s infinite alternate
}

@-webkit-keyframes mover-hori {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateX(-50px);
        -moz-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px)
    }
}

@keyframes mover-hori {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateX(-50px);
        -moz-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px)
    }
}

@-webkit-keyframes mappulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(219, 28, 41, .4)
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px transparent
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 transparent
    }
}

@keyframes mappulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(219, 28, 41, .4);
        box-shadow: 0 0 0 0 rgba(219, 28, 41, .4)
    }
    70% {
        -moz-box-shadow: 0 0 0 20px transparent;
        box-shadow: 0 0 0 20px transparent
    }
    100% {
        -moz-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
    margin-right: auto;
    margin-left: auto
}

.row {
    --bs-gutter-x: 30px
}

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

.header__top {
    background: var(--clr-theme-1)
}

.header__text {
    color: var(--clr-common-color-1)
}

.header__text span {
    font-family: oswald, sans-serif;
    font-weight: 400
}

.header__text span b {
    color: var(--clr-common-white);
    font-weight: 600;
    font-family: oswald, sans-serif
}

.header__social-link {
    padding: 6px 20px;
    background: var(--clr-common-color-red);
    display: inline-block
}

.header__social-link li {
    display: inline-block;
    margin-right: 13px
}

.header__social-link li:last-child {
    margin-right: 0
}

.header__social-link li a {
    color: var(--clr-common-white);
    font-size: 14px
}

.header__social-link li:hover a {
    color: var(--clr-common-color-2)
}

.header__info {
    padding: 5px 0 17px;
    display: flex;
    justify-content: end
}

@media only screen and (min-width:768px) and (max-width:991px),
(max-width:575px),
only screen and (min-width:576px) and (max-width:767px) {
    .header__info {
        display: none
    }
}

.header__info-item {
    display: flex;
    margin-right: 38px;
    margin-bottom: 15px
}

.header__info-item:last-child {
    margin-right: 0
}

.header__info-icon {
    margin-right: 10px
}

.header__info-icon i {
    font-size: 26px;
    color: var(--clr-common-color-red)
}

.header__info-text {
    line-height: 1
}

.header__info-text span {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: var(--clr-common-color-3);
    font-family: oswald, sans-serif
}

.header__info-text h5 {
    margin: 0;
    text-transform: none;
    letter-spacing: 0
}

.header__toggle-btn {
    cursor: pointer;
    margin-top: 9px;
    display: inline-block
}

.header__bar {
    display: inline-block
}

.header__bar span {
    width: 30px;
    height: 3px;
    background: var(--clr-common-heading);
    display: block;
    margin: 5px 0
}

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

.header__bar:hover span {
    width: 30px
}

.header__transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    z-index: 500
}
.sidebar__logo img{width:200px; }
@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .header__bottom-wrapper {
        padding: 5px 0
    }
	.logo-transform img {
  width: 150px !important;
}
}

.header__two-space {
    padding: 17px 0 0
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .header__two {
        padding: 18px 0
    }
}

.header__two-btn .fill-btn {
    padding: 0 43px
}

.header__two-space.menu-sticky.sticky {
    padding: 0
}

.header__top-3 {
    padding: 0 15px;
    line-height: 1
}

.header__top-3-text {
    padding: 13px 35px 12px 30px;
    margin-right: -125px;
    margin-left: 250px;
    clip-path: polygon(1.4% 0, 100% 0, 98.6% 100%, 0 100%)
}

@media only screen and (min-width:1800px) and (max-width:1850px) {
    .header__top-3-text {
        margin-right: -110px;
        clip-path: polygon(1.6% 0, 100% 0, 98.4% 100%, 0 100%)
    }
}

@media only screen and (min-width:1600px) and (max-width:1799px) {
    .header__top-3-text {
        margin-right: -75px;
        clip-path: polygon(1.6% 0, 100% 0, 98.4% 100%, 0 100%)
    }
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .header__top-3-text {
        margin-right: -30px;
        margin-left: 0;
        clip-path: polygon(1.6% 0, 100% 0, 98.4% 100%, 0 100%)
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .header__top-3-text {
        margin-right: -95px;
        margin-left: 0;
        clip-path: polygon(1.6% 0, 100% 0, 98.4% 100%, 0 100%)
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .header__top-3-text {
        margin-right: -40px;
        margin-left: 0;
        clip-path: polygon(2.6% 0, 100% 0, 97.4% 100%, 0 100%)
    }
}

.header__top-3-link {
    text-align: right
}

.header__top-3-link li {
    display: inline-block;
    margin-left: 15px
}

.header__top-3-link li a {
    color: var(--clr-common-white)
}

.header__top-3-link li:hover a {
    color: var(--clr-common-color-red)
}

.header__top-3-btn .fill-btn {
    height: 43px;
    line-height: 38px;
    padding: 0 43px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .header__top-3 {
        display: none
    }
}

.header__bottom-3-wrapper {
    display: flex;
    justify-content: end
}

.header__bottom-3-text h5 {
    margin-bottom: 0
}

.header__bottom-3-item {
    display: flex;
    align-items: center;
    margin-right: 30px
}

.header__bottom-3-info {
    display: flex;
    align-items: center
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
(max-width:575px) {
    .header__bottom-3-info {
        display: none
    }
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .header__bottom-3-info .header__bottom-3-item:first-child {
        display: none
    }
}

.header__bottom-3-ecom {
    display: flex;
    align-items: center;
    margin-left: 20px
}

.header__bottom-3-ecom div {
    position: relative;
    padding-left: 25px
}

.header__bottom-3-ecom div::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 1px;
    height: 20px;
    background: var(--clr-common-border-3);
    left: 11px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.header__bottom-3-ecom div i {
    color: var(--clr-common-heading)
}

.header__bottom-3-ecom div:hover i {
    color: var(--clr-common-color-red)
}

.header__bottom-3-icon {
    color: var(--clr-common-color-red);
    font-size: 28px
}

.header__bottom-3-squre.sidebar-toggle-btn a {
    padding-top: 5px;
    display: inline-block
}

.header__bottom-3 {
    padding: 0 16px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .header__bottom-3.sticky {
        padding: 18px 10px
    }
}

.logo-transform {
    -webkit-transform: translateY(7px);
    -moz-transform: translateY(7px);
    -ms-transform: translateY(7px);
    transform: translateY(7px)
}
.logo-transform img{
	width:200px;
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .logo-transform {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px)
    }
}

.menu-area.position {
    position: absolute;
    bottom: -45px;
    z-index: 100;
    width: 100%;
    right: 0
}

.main-menu ul li {
    position: relative;
    display: inline-block;
    margin-right: 59px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .main-menu ul li {
        margin-right: 50px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .main-menu ul li {
        margin-right: 35px
    }
}

.main-menu ul li:last-child {
    margin-right: 0
}

.main-menu ul li a {
    font-size: 16px;
    color: var(--clr-common-white);
    font-weight: 600;
    padding: 17px 0;
    display: block;
    text-transform: capitalize;
    font-weight: 600;
    font-family: oswald, sans-serif
}

.main-menu ul li.menu-item-has-children>a::after {
    content: "\f078";
    margin-left: 5px;
    font-family: "font awesome 5 pro";
    font-size: 14px;
    color: var(--clr-common-black)
}

.main-menu ul li .sub-menu {
    background: var(--clr-common-white) none repeat scroll 0 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .176);
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    visibility: hidden;
    width: 240px;
    z-index: 9;
    border-top: 3px solid var(--clr-common-heading);
    text-align: left;
    padding: 20px 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: top center
}

.main-menu ul li .sub-menu>li {
    display: block;
    margin-bottom: 7px;
    padding: 0 20px;
    margin-right: 0
}

.main-menu ul li .sub-menu>li:last-child {
    margin-bottom: 0
}

.main-menu ul li .sub-menu>li .sub-menu {
    left: 100%;
    top: 0
}

.main-menu ul li .sub-menu>li:hover {
    padding-left: 30px
}

.main-menu ul li .sub-menu>li:hover>a {
    color: var(--clr-common-color-red)
}

.main-menu ul li .sub-menu>li a {
    color: var(--clr-common-heading);
    padding: 0
}

.main-menu ul li:hover>a {
    color: rgba(255, 255, 255, .5607843137)
}

.main-menu ul li:hover>a::after {
    color: var(--clr-common-color-red)
}

.main-menu ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1)
}

.main-menu ul li:hover>.sub-menu li:hover>.sub-menu {
    top: 0
}

.main-menu-1 {
    padding-left: 50px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .main-menu-1 nav ul li {
        margin-right: 40px
    }
}

.main-menu-1 nav ul li a {
    padding: 16px 0
}

.main-menu-1 nav ul li a:hover {
    color:#fff;
}

.main-menu-1 nav ul li.menu-item-has-children>a::after {
    color: var(--clr-common-white)
}

.main-menu-1 nav ul li.menu-item-has-children:hover>a::after {
    color: rgba(255, 255, 255, .5607843137)
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .main-menu-1 {
        padding-left: 40px
    }
    .main-menu-1 ul li a {
        font-size: 15px
    }
}

.main-menu-2 ul li {
    margin: 0 29px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .main-menu-2 ul li {
        margin: 0 20px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .main-menu-2 ul li {
        margin: 0 16px
    }
}

.main-menu-2 ul li a {
    color: var(--clr-common-heading)
}

.main-menu-2 ul li ul li {
    margin: 0
}

.main-menu-3 {
    margin-left: -63px
}

@media only screen and (min-width:1800px) and (max-width:1850px) {
    .main-menu-3 {
        margin-left: -42px
    }
}

@media only screen and (min-width:1600px) and (max-width:1799px) {
    .main-menu-3 {
        margin-left: -2px
    }
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .main-menu-3 {
        text-align: center;
        margin-left: 0
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .main-menu-3 {
        margin-left: 0;
        text-align: center
    }
}

.main-menu-3 ul li {
    margin-right: 60px
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .main-menu-3 ul li {
        margin-right: 40px
    }
}

.main-menu-3 ul li a {
    color: var(--clr-common-heading)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
screen and (max-width:575px) {
    .menu-none {
        display: none !important
    }
}

.menu-bg {
    background: 0 0;
    position: relative;
    margin-left: 20px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .menu-bg {
        margin-left: 80px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .menu-bg {
        margin-left: 65px
    }
}

.menu-bg::before {
    content: "";
    position: absolute;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 1% 100%);
    left: 0;
    right: 0;
    top: 0;
    background: #564e48;
    width: 100%;
    height: 100%;
    z-index: -1
}

.menu-btn a {
    background: #a1c23f;
    display: block;
    padding: 17px 40px;
    text-transform: uppercase;
    color: var(--clr-common-white);
    font-weight: 600;
    font-family: oswald, sans-serif;
    display: inline-block
}

.menu-btn a:hover {
    background: #f8501d;
    color: var(--clr-common-white)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .menu-sticky.sticky {
        padding: 18px 0
    }
}

.menu-sticky .main-menu-1 {
    margin: auto;
    padding-left: 0
}

.menu-sticky ul li a {
    color: var(--clr-common-heading);
    padding: 32px 0
}

.menu-sticky ul li:hover a {
    color: var(--clr-common-color-red)
}

.menu-hidden {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0
}

.sticky {
    position: fixed;
    top: 0;
    background: var(--clr-common-white);
    z-index: 800;
    right: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    box-shadow: 0 0 60px 0 rgba(53, 57, 69, .15);
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    border: none;
    opacity: 1;
    visibility: visible
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .header__two.menu-sticky.sticky {
        padding: 18px 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px),
(max-width:450px) {
    .header__bottom.menu-sticky {
        padding: 10px 0
    }
}

.menu-sticky.sticky.menu-area {
    margin-top: 0 !important
}

.menu-sticky.sticky .logo {
    display: block !important
}
.menu-sticky.sticky .logo img{
    width:200px;
}

.menu-sticky.sticky .menu-bg {
    position: inherit
}

.menu-sticky.sticky .menu-bg::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)
}

.menu-sticky.sticky .main-menu li a {
    padding: 25px 0;
    display: block
}

.menu-sticky.sticky .main-menu li a:hover {
	color:#333;
}

.menu-sticky.sticky .main-menu li li a {
    padding: 0
}

.menu-sticky.sticky .main-menu-1 nav ul li.menu-item-has-children a::after {
    color: var(--clr-theme-1)
}

.menu-sticky.sticky .main-menu-1 nav ul li.menu-item-has-children:hover a::after {
    color: var(--clr-common-color-red)
}

.menu-sticky.sticky .menu-btn a {
    padding: 15px 40px
}

.header__bottom-3 .logo img {
    margin-top: -50px
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .header__bottom-3 .logo img {
        margin-top: 0
    }
}

.header__bottom-3.sticky .logo img {
    margin-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),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .header__bottom-3.sticky .logo img {
        margin-top: 0
    }
}

.header__bottom-3.menu-sticky ul li a {
    padding: 27px 0
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .header__bottom-3 {
        padding: 18px 10px
    }
}

.sidebar__area {
    position: fixed;
    right: -485px;
    top: 0;
    width: 445px;
    height: 100%;
    background: var(--clr-common-white) none repeat scroll 0 0;
    overflow-y: scroll;
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, .5);
    -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, .5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, .5);
    z-index: 999;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .sidebar__area {
        width: 315px
    }
}

.sidebar__area.sidebar-opened {
    right: 0
}

.sidebar__wrapper {
    position: relative;
    padding: 45px;
    border-left: 3px solid var(--clr-common-color-red)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .sidebar__wrapper {
        padding: 20px
    }
}

.sidebar__close {
    position: absolute;
    right: 45px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .sidebar__close {
        right: 20px
    }
}

.sidebar__close-btn {
    display: inline-block;
    font-size: 16px;
    height: 45px;
    width: 45px;
    line-height: 46px;
    color: var(--clr-common-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: var(--clr-common-heading)
}

.sidebar__close-btn:hover {
    background: var(--clr-common-color-red);
    color: var(--clr-common-white)
}

.sidebar__search {
    position: relative
}

.sidebar__search input {
    width: 100%;
    height: 50px;
    line-height: 40px;
    padding-right: 20px;
    background: var(--clr-theme-1);
    border: none;
    outline: none;
    color: var(--clr-common-white);
    font-size: 14px;
    padding: 0 45px 0 20px;
    display: block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.sidebar__search button {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--clr-common-white)
}

.sidebar__search .single-input-field {
    margin-bottom: 0
}

.sidebar__social ul li {
    display: inline-block
}

.sidebar__social ul li :not(:last-child) {
    margin-right: 5px
}

.sidebar__social ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    background: #f8501d;
    color: var(--clr-common-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
	font-size: 14px;
}

.sidebar__social ul li:hover a {
    background: var(--clr-common-color-red)
}

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

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

.mean-container .mean-nav ul {
    display: block
}

.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    width: 100%;
    padding: 10px;
    margin: 0;
    text-align: left;
    color: #3e4344;
    border-top: 1px solid var(--clr-common-border-9);
    text-decoration: none;
    text-transform: capitalize;
    color: var(--clr-common-heading);
    font-weight: 400;
    font-family: oswald, sans-serif
}

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

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

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 1px solid transparent
}

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

.sidebar__contact {
    margin-bottom: 10px
}

.sidebar__info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center
}

.sidebar__info-icon {
    font-size: 30px;
    color: var(--clr-common-color-red);
    margin-right: 20px
}

@media(max-width:450px) {
    .sidebar__info-icon {
        font-size: 25px
    }
}

.sidebar__info-text span {
    color: var(--clr-common-text);
    margin-bottom: 2px;
    display: block;
    font-weight: 400;
    font-family: oswald, sans-serif;
    font-size: 14px
}

.sidebar__info-text h5 {
    color: #3e4344;
    font-size: 16px
}

.banner-830 {
    min-height: 500px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
    .banner-830 {
        min-height: 760px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .banner-830 {
        min-height: 550px;
        display: flex;
        align-items: center
    }
}

@media(max-width:575px) {
    .banner-830 {
        min-height: 150px;
        display: flex;
        align-items: center
    }
}

.banner-840 {
    min-height: 840px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-840 {
        min-height: 650px
    }
}

.banner-970 {
    min-height: 970px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .banner-970 {
        min-height: 620px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-970 {
        min-height: 550px
    }
}

.banner-overlay::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(82, 90, 90) 0%, rgba(1, 40, 99, 0) 100%);
    top: 0;
    left: 0;
    content: ""
}

.banner-overlay-3::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #012863;
    top: 0;
    left: 0;
    content: "";
    opacity: .4
}

.banner-overlay-white {
    z-index: 2
}

.banner-overlay-white::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(202, 202, 202, 0.2392156863) 0%, rgba(202, 202, 202, 0.8) 100%);
    top: 0;
    left: 0;
    content: "";
    z-index: 0
}

.banner-content .banner-btn {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    gap: 20px 10px
}

.banner-content .banner-btn .skew-btn {
    padding: 0 39px
}

.banner-content .banner-btn .skew-btn:hover::before {
    border-color: var(--clr-common-white)
}

.banner-content .banner-btn .skew-btn::before {
    border-color: var(--clr-common-border-8)
}

.banner-content1 {
    padding-top: 150px
}

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

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-content1 {
        padding-top: 0
    }
}

.banner-content2 .banner-title {
    color: var(--clr-common-heading)
}

.banner-content3-round1 {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--clr-common-color-2);
    position: absolute;
    left: 0;
    top: 0;
    width: 600px;
    height: 600px;
    right: 0;
    margin: auto;
    bottom: 0;
    z-index: -1;
    opacity: .902
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-content3-round1 {
        width: 400px;
        height: 400px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-content3-round1 {
        width: 300px;
        height: 300px
    }
}

.banner-content3-round2 {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--clr-common-color-2);
    position: absolute;
    left: -31%;
    top: -70%;
    width: 100px;
    height: 100px;
    right: 0;
    margin: auto;
    bottom: 0;
    z-index: -1;
    opacity: .902
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-content3-round2 {
        width: 80px;
        height: 80px
    }
}

.slider__active-3 .slider-nav div {
    position: absolute;
    top: 0;
    left: 60px;
    display: inline-block;
    z-index: 100;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    position: absolute;
    -webkit-transform: skew(-14deg);
    -moz-transform: skew(-14deg);
    -ms-transform: skew(-14deg);
    transform: skew(-14deg);
    background: 0 0;
    border: 2px solid var(--clr-common-border-10);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.slider__active-3 .slider-nav div i {
    color: var(--clr-common-white)
}

.slider__active-3 .slider-nav div.slider-button-next {
    left: auto;
    right: 60px
}

.slider__active-3 .slider-nav div:hover {
    background: var(--clr-common-color-red);
    border: 2px solid var(--clr-common-color-red)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .slider__active-3 .slider-nav div {
        display: none
    }
}

.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
    background-color: var(--clr-common-white);
    transform: scale(1);
    transition: all 8s linear 0s
}

.swiper-slide-active .banner-bg {
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    transform: scale(1.12)
}

.banner-meta-text {
    margin-bottom: 10px
}

@media(max-width:450px) {
    .banner-meta-text {
        margin-bottom: 5px
    }
}

.banner-meta-text span {
    color: var(--clr-common-white);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 20px;
    font-family: oswald, sans-serif
}

@media(max-width:450px) {
    .banner-meta-text span {
        font-size: 16px
    }
}

.banner-title {
    color: var(--clr-common-white);
    font-size: 50px;
    line-height: 1.12;
    margin-bottom: 42px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .banner-title {
        font-size: 60px
    }
    .banner-title br {
        display: none
    }
}

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

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .banner-title {
        font-size: 42px
    }
    .banner-title br {
        display: none
    }
}

@media(max-width:450px) {
    .banner-title {
        font-size: 32px
    }
    .banner-title br {
        display: none
    }
}

.banner-btn .clip-btn {
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%)
}

.banner-btn .border-btn {
    height: 60px;
    padding: 0 52px;
    line-height: 58px
}

.banner-content1 {
    max-width: 1000px
}

@media(max-width:575px) {
    .banner-content1 {
        max-width: 400px
    }
}

@media(max-width:575px) {
    .banner-content2 {
        max-width: 400px
    }
}

.banner-content2-3 {
    max-width: 780px;
    margin-left: auto
}

@media(max-width:575px) {
    .banner-content2-3 {
        max-width: 450px;
        margin-left: 0
    }
}

.slider-pagination.slider1-pagination {
    position: absolute;
    right: 30px;
    top: 50%;
    display: flex;
    flex-direction: column;
    left: auto;
    width: inherit;
    z-index: 10;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    justify-content: center;
    gap: 20px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .slider-pagination.slider1-pagination {
        display: none
    }
}

.slider-pagination.slider1-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: var(--clr-common-heading);
    opacity: 1;
    margin-left: auto
}

.slider-pagination.slider1-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px
}

.banner-area1 .slider-nav .dp-nav-btn {
    position: absolute;
    top: 46%;
    z-index: 100;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    background: 0 0;
    border: 2px solid #3e4344;
    transition: all .3s ease-out 0s;
    border-radius: 50%;
    right: 5%;
    color: #3e4344;
    transform: translateY(-50%)
}

.banner-area1 .slider-nav .dp-nav-btn.slider-button-next {
    top: 55%;
    transform: translateY(-45%)
}


.banner-area1 .slider-nav .dp-nav-btn:hover {
    border-color: #fff;
    color: var(--clr-common-color-red);
    background: #fff
}

.services-one .services__box {
    background: 0 0;
    z-index: 200;
    position: relative;
    padding-top: 25px;
    padding-left: 40px;
    padding-right: 40px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .services-one .services__box {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .services-one .services__box {
        padding-top: 60px;
        padding-bottom: 13px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__box {
        padding-top: 55px;
        padding-bottom: 13px
    }
}

.services-one .services__box--space {
    margin-top: 0px;
    position: relative;
    z-index: 100
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__box--space {
        margin-top: 0
    }
}

.services-one .services__box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 98.5%;
    display: block;
    height: 10px;
    -webkit-transform: skew(-10deg);
    -moz-transform: skew(-10deg);
    -ms-transform: skew(-10deg);
    transform: skew(-10deg)
}

.services-one .services__box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: var(--clr-common-white);
    width: 102%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0% 100%)
}

.services-one .services__item {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    padding: 0 15px
}

.services-one .services__item-content {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__item-content {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        margin-bottom: 50px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .services-one .services__item {
        padding: 0 10px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .services-one .services__item {
        padding: 0 20px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__item {
        padding: 0 10px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__item {
        margin-bottom: 30px
    }
}

.services-one .services__item-btn {
    text-align: center;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__item-btn {
        opacity: 1;
        visibility: visible
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__item-btn {
        margin-top: 18px
    }
}

.services-one .services__item-btn a {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--clr-common-heading);
    font-weight: 600;
    font-family: oswald, sans-serif
}

.services-one .services__item-btn a:hover {
    color: var(--clr-common-color-red)
}

.services-one .services__item-icon {
    width: 133px;
    height: 133px;
    background: var(--clr-common-white);
    border: 4px solid transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    font-size: 70px;
    color: var(--clr-common-color-red);
    padding-top: 30px;
    font-size: 60px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__item-icon {
        border: 0;
        width: unset;
        height: unset;
        margin-bottom: 30px;
        padding-top: 0
    }
}

.services-one .services__item:hover {
}

.services-one .services__item:hover .services__item-icon {
    border: 4px solid var(--clr-common-color-red)
}

.services-one .services__item:hover .services__item-content {
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px)
}

.services-one .services__item:hover .services__item-btn {
    opacity: 1;
    visibility: visible
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__item:hover {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px)
    }
    .services-one .services__item:hover .services__item-icon {
        border: 0
    }
    .services-one .services__item:hover .services__item-content {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px)
    }
    .services-one .services__item:hover .services__item-btn {
        opacity: 1;
        visibility: visible
    }
}

.services-one .services__item-content h3 {
    margin-bottom: 20px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .services-one .services__item-content h3 {
        font-size: 26px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-one .services__item-content h3 {
        font-size: 22px
    }
}

.services-one .services__item-content h3:hover {
    color: var(--clr-common-color-red)
}

.services-one .services__item-content p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px
}

.services-one .services__item-content-2 h3 {
    margin-bottom: 20px
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .services__item-content {
        padding: 0 62px
    }
}

@media(max-width:575px) {
    .services__item-content {
        padding: 0 10px
    }
}

.services-two-active {
    margin-right: -600px !important
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services__section .section__title {
        margin-bottom: 60px
    }
}

.services-two {
    margin-left: 20px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-two {
        margin-left: 0
    }
}

.services-two .services__item {
    padding: 55px 50px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    position: relative;
    background: var(--clr-common-white);
    z-index: 2
}

.services-two .services__item h3 {
    margin-bottom: 23px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-two .services__item h3 {
        font-size: 25px
    }
}

@media(max-width:450px) {
    .services-two .services__item h3 {
        font-size: 22px
    }
}

.services-two .services__item h3:hover {
    color: var(--clr-common-color-red) !important
}

.services-two .services__item p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 24px
}

.services-two .services__item-icon {
    font-size: 72px;
    color: var(--clr-common-color-red)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-two .services__item {
        padding: 40px 30px
    }
}

.services-two .services__item:hover {
    background: var(--clr-theme-1)
}

.services-two .services__item:hover h3 {
    color: var(--clr-common-white)
}

.services-two .services__item:hover p {
    color: var(--clr-common-color-10)
}

.services-two .services__item:hover-shape {
    opacity: 1;
    visibility: visible
}

.services-two .services__item:hover .services__item-shape {
    opacity: 1;
    visibility: visible
}

.services-two .services__item-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 190px;
    height: 190px;
    background: var(--clr-common-color-13);
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.services-two-nav {
    display: flex;
    align-items: center
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services-two-nav {
        margin-bottom: 50px
    }
}

.services-two-nav div {
    width: 80px;
    height: 60px;
    text-align: center;
    background: var(--clr-common-white);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    color: var(--clr-common-heading);
    cursor: pointer;
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
    padding-top: 18px
}

.services-two-nav div:hover {
    background: var(--clr-common-color-red)
}

.services-two-nav div:hover i {
    color: var(--clr-common-white)
}

@media(max-width:575px) {
    .services-two-nav div {
        width: 60px;
        height: 50px;
        padding-top: 12px
    }
}

.swiper-container {
    margin-right: 4px
}

.services__3-item {
    background: var(--clr-common-white);
    position: relative;
    padding: 50px 50px 46px;
    clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%)
}

@media(max-width:450px) {
    .services__3-item {
        padding: 50px 30px 46px
    }
}

.services__3-item-num {
    padding: 28px 32px;
    background: var(--clr-common-color-15);
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media(max-width:450px) {
    .services__3-item-num {
        padding: 20px
    }
}

.services__3-item-num h3 {
    color: var(--clr-common-color-red);
    line-height: 1;
    margin-bottom: 0
}

.services__3-item-icon {
    margin-bottom: 35px;
    font-size: 70px;
    color: var(--clr-common-color-red)
}

.services__3-item-icon i {
    display: inline-block
}

@media(max-width:450px) {
    .services__3-item-icon {
        font-size: 60px
    }
}

.services__3-item-title {
    position: relative;
    margin-bottom: 16px;
    display: inline-block;
    font-family: oswald, sans-serif;
    color: var(--clr-common-heading);
    margin-top: 0;
    font-weight: 600
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services__3-item-title {
        font-size: 24px
    }
}

.services__3-item-title::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-common-heading)
}

.services__3-item-text {
    margin-bottom: 0
}

.services__3-item:hover .services__3-item-num {
    background: var(--clr-common-color-red)
}

.services__3-item:hover .services__3-item-num h3 {
    color: var(--clr-common-white)
}

.services__3-item:hover .services__3-item-icon i {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px)
}

.services__3-item:hover .services__3-item-title::before {
    width: 100%
}

@media(max-width:575px) {
    .services-overview-space {
        margin-bottom: 20px
    }
}

.services__details-img img,
.service__details-content img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.sidebar__widget ul.widget-services li {
    list-style: none;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    background: 0 0
}

.sidebar__widget ul.widget-services li:last-child {
    margin-bottom: 0
}

.sidebar__widget ul.widget-services li a {
    padding: 17px 30px;
    font-weight: 500;
    display: block;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    color: var(--clr-common-heading);
    background: var(--clr-common-white);
    text-transform: uppercase
}

@media only screen and (min-width:992px) and (max-width:1199px),
(max-width:450px) {
    .sidebar__widget ul.widget-services li a {
        padding: 17px 20px
    }
}

.sidebar__widget ul.widget-services li a i {
    margin-right: 15px
}

.sidebar__widget ul.widget-services li:hover a {
    color: var(--clr-common-white);
    background: var(--clr-theme-1)
}

.sidebar__widget {
    color: var(--clr-common-heading)
}

.section__title .title-sm {
    color: var(--clr-common-heading)
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .about__area-padding {
        padding-bottom: 55px
    }
}

.about__content {
    padding-left: 150px;
    padding-right: 53px;
    line-height: 1
}
.about__content ul li{
list-style:disc;
font-family:roboto, sans-serif;
font-size:15px;
line-height: 26px;
}

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

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .about__content {
        padding-left: 60px;
        padding-right: 40px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__content {
        padding-left: 15px;
        padding-right: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__content {
        padding-left: 0
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__content-tab-2 {
        margin-right: 0
    }
}

.about__content-tab-2 li button {
    background: var(--clr-common-color-12);
    padding: 8px 41px;
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-common-heading);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: oswald, sans-serif;
    clip-path: polygon(21px 0, 100% 0, calc(100% - 21px) 100%, 0 100%)
}

.about__content-tab-2 li button.active {
    background: var(--clr-theme-1);
    color: var(--clr-common-white)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__content-tab-2 li button {
        padding: 12px 30px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__content-tab-2 li button {
        padding: 12px 25px
    }
}

.about__img img {
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__img img {
        width: 100%
    }
}

.about__time-img {
    right: -135px;
    bottom: 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),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__time-img {
        width: 200px;
        right: -85px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__time-img {
        display: none
    }
}

.about__btn-2 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.about__img-2 {
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%)
}

.about__img-2 img {
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__img-2 {
        margin-left: 0
    }
}

.about__content-2 {
    padding-right: 10px
}

.about__content-2 .section__title h2 {
    letter-spacing: -1px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .about__area-2 {
        padding-bottom: 50px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__img-2 {
        margin-left: 0
    }
}

.about__3.about__gray-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: var(--clr-bg-gray-4);
    content: ""
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__3.about__gray-bg::before {
        display: none
    }
}

.about__3-img-wrapper {
    padding-bottom: 50px;
    padding-top: 100px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .about__3-img-wrapper {
        padding-bottom: 40px
    }
}

@media(max-width:575px) {
    .about__3-img-wrapper {
        padding-bottom: 40px;
        padding-top: 60px
    }
}

.about__3-top {
    width: 200px;
    height: auto;
    position: absolute;
    top: 0;
    left: -77px;
    z-index: 1;
    background: var(--clr-common-white);
    padding: 10px;
    clip-path: polygon(9% 0, 100% 0, 92% 100%, 0% 100%)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__3-top {
        left: -35px
    }
}

@media(max-width:575px) {
    .about__3-top {
        width: 120px;
        left: -16px;
        padding: 5px
    }
}

@media(max-width:450px) {
    .about__3-top {
        width: 100px;
        left: -8px;
        padding: 5px
    }
}

.about__3-text {
    background: var(--clr-common-color-red);
    padding: 29px 53px;
    display: flex;
    align-items: center;
    position: absolute;
    right: -38px;
    bottom: 0;
    clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.about__3-text i {
    color: var(--clr-common-white);
    font-size: 40px;
    margin-right: 20px
}

@media(max-width:575px) {
    .about__3-text i {
        font-size: 35px;
        margin-right: 15px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__3-text {
        padding: 19px 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),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__3-text {
        left: 0;
        right: auto
    }
}

@media(max-width:450px) {
    .about__3-text {
        padding: 20px 25px
    }
}

.about__3-title {
    color: var(--clr-common-white);
    display: inline-block;
    margin-bottom: 0;
    font-size: 24px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__3-title {
        font-size: 20px
    }
}

@media(max-width:575px) {
    .about__3-title {
        font-size: 18px
    }
}

.about__3-content {
    margin-left: 87px
}

@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) {
    .about__3-content {
        margin-left: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__3-content {
        margin-left: 0
    }
}

.about__3-content-left {
    padding-right: 200px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
(max-width:575px) {
    .about__3-content-left {
        padding-right: 160px
    }
}

@media(max-width:450px) {
    .about__3-content-left {
        padding-right: 0
    }
}

.about__3-content-inner {
    display: flex;
    margin-top: -2px
}

.about__3-content-right {
    position: absolute;
    top: 0;
    right: -5px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .about__3-content-right .about__3-shadow:last-child {
        display: none
    }
}

@media(max-width:450px) {
    .about__3-content-right {
        display: none
    }
}

.about__3-content-num {
    background: var(--clr-common-white);
    margin-bottom: 15px;
    text-align: center;
    margin-bottom: 15px;
    padding: 25px 43px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    clip-path: polygon(14% 0, 100% 0, 86% 100%, 0% 100%)
}

@media(max-width:450px) {
    .about__3-content-num {
        padding: 20px 25px
    }
}

.about__3-content-num h2 {
    font-size: 60px;
    color: var(--clr-common-color-red);
    margin-top: 0;
    line-height: 1
}

@media(max-width:450px) {
    .about__3-content-num h2 {
        font-size: 30px
    }
}

.about__3-content-num h6 {
    font-size: 14px;
    display: block;
    color: var(--clr-common-color-3);
    margin-bottom: 0
}

.about__3-content-num:hover {
    background: var(--clr-theme-1)
}

.about__3-content-num:hover h2 {
    color: var(--clr-common-white)
}

.about__3-content-num:hover h6 {
    color: var(--clr-common-white)
}

.about__3-content-btn .skew-btn {
    color: var(--clr-common-heading)
}

.about__3-content-btn .skew-btn:hover {
    color: var(--clr-common-white)
}

.about__3-content-btn .skew-btn:hover::before {
    background: var(--clr-theme-1);
    border-color: var(--clr-theme-1)
}

.about__3-shadow {
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.06))
}

.about__3-main {
    clip-path: polygon(4% 0, 100% 0, 97% 100%, 0 100%)
}

.about__3-main img {
    clip-path: polygon(4% 0, 100% 0, 97% 100%, 0 100%)
}

.services__cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center
}

@media(max-width:450px) {
    .services__cta-wrapper {
        display: block
    }
    .services__cta-wrapper .services__cta-item {
        text-align: center !important
    }
    .services__cta-wrapper .services__cta-item i {
        margin: auto
    }
}

.services__cta-box {
    z-index: 1;
    padding-top: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 15px;
    clip-path: polygon(1.5% 0%, 100% 0%, 98.5% 100%, 0% 100%)
}

.services__cta-overlay::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-common-color-red);
    opacity: .9;
    z-index: -1
}

.services__cta-item h3 {
    margin-bottom: 0;
    color: var(--clr-common-white)
}

.services__cta-item h3 a:hover {
    color: var(--clr-common-heading)
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .services__cta-item h3 a {
        display: block
    }
}

@media(max-width:575px) {
    .services__cta-item h3 a {
        display: inline-block
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .services__cta-item h3 {
        font-size: 25px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services__cta-item h3 {
        font-size: 20px
    }
}

.services__cta-item i {
    width: 60px;
    height: 60px;
    background: var(--clr-common-white);
    line-height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    color: var(--clr-common-color-red);
    font-size: 35px;
    display: block;
    line-height: 73px;
    margin: 0 30px
}

.services__cta-3-play {
    display: inline-block;
    background: var(--clr-common-color-16);
    padding: 10px;
    border: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 27px
}

.services__cta-3-title {
    color: var(--clr-common-white);
    margin-bottom: 43px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .services__cta-3-title {
        font-size: 30px
    }
    .services__cta-3-title br {
        display: none
    }
}

.services__cta-3-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 6px
}

@media(max-width:450px) {
    .services__cta-3-btn {
        flex-direction: column
    }
}

.services__cta-3-btn .fill-btn {
    clip-path: polygon(11% 0%, 100% 0, 89% 100%, 0% 100%);
    padding: 0 53px;
    background: var(--clr-common-white);
    color: var(--clr-common-heading)
}

.services__cta-3-btn .fill-btn:hover {
    background: var(--clr-theme-1);
    color: var(--clr-common-white)
}

.services__cta-3-btn .border-btn {
    -webkit-transform: skew(-17deg);
    -moz-transform: skew(-17deg);
    -ms-transform: skew(-17deg);
    transform: skew(-17deg)
}

.help__cta-btn .skew-btn::before {
    border: 2px solid var(--clr-common-border-2)
}

.help__cta-title h2 {
    color: var(--clr-common-white);
    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),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .help__cta-title h2 {
        font-size: 34px
    }
}

.call__cta.position {
    top: -50px;
    width: 100%;
    left: 0;
    right: 0
}

.call__cta-icon {
    font-size: 54px;
    color: var(--clr-common-white)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .call__cta-icon {
        font-size: 35px
    }
}

.call__cta-padd {
    padding: 23px 49px
}

@media(max-width:450px) {
    .call__cta-padd {
        padding: 25px
    }
}

.call__cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .call__cta-wrapper {
        margin-bottom: 35px
    }
}

.call__cta-content-small-title {
    color: var(--clr-common-white);
    font-size: 12px
}

.call__cta-content-title {
    margin-bottom: 0;
    line-height: 1;
    color: var(--clr-common-white)
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .call__cta-content-title {
        font-size: 25px
    }
}

@media(max-width:575px) {
    .call__cta-content-title {
        font-size: 22px
    }
}

.call__cta-content-title a:hover {
    color: var(--clr-common-white);
    opacity: .8
}

.contact__cat-btn .fill-btn {
    background: var(--clr-common-white);
    color: var(--clr-common-heading)
}

.contact__cat-btn .fill-btn:hover {
    background: var(--clr-common-heading);
    color: var(--clr-common-white)
}

.work {
    padding-top: 100px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .work {
        padding-top: 175px;
        padding-bottom: 60px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .work {
        padding-top: 180px;
        padding-bottom: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .work {
        padding-top: 100px;
        padding-bottom: 50px
    }
}

.work__content {
    padding-bottom: 105px;
    padding-top: 8px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px) {
    .work__content {
        padding: 0;
        margin-bottom: 60px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .work__content {
        padding-bottom: 30px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .work__content-list {
        padding-right: 0
    }
}

@media(max-width:575px) {
    .work__content-list {
        padding-right: 0
    }
}

.work__item {
    display: flex;
    padding-bottom: 15px;
    position: relative
}

.work__item-text h4 {
    margin-bottom: 9px
}

.work__item-num {
    min-width: 60px;
    height: 50px;
    background: var(--clr-common-color-red);
    text-align: center;
    margin-right: 45px;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%)
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .work__item-num {
        margin-right: 25px
    }
}

@media(max-width:575px) {
    .work__item-num {
        margin-right: 20px
    }
}

.work__item-num h5 {
    color: var(--clr-common-white);
    line-height: 49px;
    position: relative
}

.work__item::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 70%;
    background: var(--clr-common-color-red);
    top: 50px;
    left: 26px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .work__item::before {
        left: 28px
    }
}

@media(max-width:575px) {
    .work__item::before {
        left: 30px
    }
}

@media(max-width:575px) {
    .work__item::before {
        left: 26px
    }
}

.work__img {
    padding-top: 30px;
    clip-path: polygon(3% 0px, 100% 34px, 93% 100%, 0% 100%);
    position: absolute;
    bottom: 0
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .work__img img {
        width: 100%
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px) {
    .work__img {
        margin-bottom: 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),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .work__img {
        position: relative;
        bottom: auto;
        margin-left: 0
    }
}

.work__img img {
    clip-path: polygon(5% 0, 100% 4px, 95% 100%, 0% 100%)
}

.work__btn {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.work__content-list .work__item:last-child::before {
    display: none
}

.testimonial-one .testimonial-shadow {
    filter: drop-shadow(0px 0px 13px rgba(0, 0, 0, 0.06))
}

.testimonial-one .testimonial-items {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    background: var(--clr-common-white);
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .06);
    padding: 45px 47px 50px;
    position: relative;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%)
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .testimonial-one .testimonial-items {
        padding: 45px 30px 50px
    }
}

@media(max-width:575px) {
    .testimonial-one .testimonial-items {
        padding: 27px 50px 30px
    }
}

@media(max-width:450px) {
    .testimonial-one .testimonial-items {
        padding: 27px 18px 30px 25px
    }
}

.testimonial-one .testimonial__icon {
    margin-bottom: 17px
}

.testimonial-one .testimonial__icon i {
    color: var(--clr-common-color-red)
}

.testimonial-one .testimonial__text {
    margin-bottom: 35px
}

.testimonial-one .testimonial__text p {
    font-size: 20px;
    line-height: 34px
}

.testimonial-one .testimonial__auth {
    display: flex;
    align-items: center
}

.testimonial-one .testimonial__auth-img img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 60px;
    height: 60px
}

.testimonial-one .testimonial__auth-text h4 {
    margin-bottom: 1px
}

.testimonial-one .testimonial__auth-text span {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--clr-common-color-red);
    font-weight: 600
}

.testimonial-one .testimonial__quote-icon {
    position: absolute;
    top: 25px;
    right: 45px;
    opacity: 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.testimonial-one .testimonial__quote-icon i {
    font-size: 150px
}

@media(max-width:450px) {
    .testimonial-space {
        padding-bottom: 65px
    }
}

.testimonial-active .swiper-slide-active .testimonial-items {
    background: var(--clr-common-color-red)
}

.testimonial-active .swiper-slide-active .testimonial-items p,
.testimonial-active .swiper-slide-active .testimonial-items h4,
.testimonial-active .swiper-slide-active .testimonial-items span,
.testimonial-active .swiper-slide-active .testimonial-items .rate i {
    color: var(--clr-common-white)
}

.testimonial-active .swiper-slide-active .testimonial-items .testimonial__quote-icon {
    opacity: .2
}

.testimonial-box .swiper-container {
    padding: 20px 0
}

.testimonial-two {
    margin-left: 72px;
    margin-right: 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),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .testimonial-two {
        margin-left: 40px;
        margin-right: 0
    }
}

.testimonial-two .testimonial__item-img {
    width: 120px;
    height: 120px;
    position: absolute;
    top: -22px;
    left: -53px;
    z-index: 200
}

.testimonial-two .testimonial__item-img img {
    width: 100%;
    -webkit-transition: all 1s ease-out 0s;
    -moz-transition: all 1s ease-out 0s;
    -ms-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
    clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%)
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .testimonial-two .testimonial__item-img {
        width: 90px;
        height: 90px
    }
}

@media(max-width:450px) {
    .testimonial-two .testimonial__item-img {
        width: 80px;
        height: 80px
    }
}

.testimonial-two .testimonial__item-rate i {
    color: var(--clr-common-color-red)
}

@media(max-width:450px) {
    .testimonial-two .testimonial__item-rate i {
        font-size: 13px
    }
}

.testimonial-two .testimonial__item-auth h6 {
    color: var(--clr-common-color-red)
}

.testimonial-two .testimonial__item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.testimonial-two .testimonial__item-content {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    padding: 35px 37px 30px 66px;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%)
}

.testimonial-two .testimonial__item-content p {
    margin-bottom: 13px;
    font-size: 18px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .testimonial-two .testimonial__item-content {
        padding: 35px 20px 30px 40px
    }
}

@media(max-width:450px) {
    .testimonial-two .testimonial__item-content {
        padding: 30px
    }
}

.testimonial-two .testimonial__item:hover .testimonial__item-content {
    background: var(--clr-theme-1)
}

.testimonial-two .testimonial__item:hover .testimonial__item-content p {
    color: var(--clr-common-white)
}

.testimonial-two .testimonial__item:hover .testimonial__item-content h4 {
    color: var(--clr-common-white)
}

.testimonial-two .testimonial__item:hover .testimonial__item-content h6 {
    color: var(--clr-common-white)
}

.testimonial-two .testimonial__item:hover .testimonial__item-img img {
    transform: rotateY(360deg)
}

.brand-items a img {
    width: 165px
}

.brand-items {
    text-align: center
}

.brand-items-2 {
    text-align: center
}

.brand-padd {
    padding: 35px 0
}

.brand.two {
    padding: 33px 0
}

.brand-active-2 {
    padding: 0 65px;
    overflow: hidden
}

.brand-items-2 img {
    width: 165px
}

.brand__3-items {
    text-align: center
}

.brand__3-items img {
    width: 165px
}

.price__cta-content {
    padding: 80px 82px 80px 80px;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    background: var(--clr-common-white);
    margin-left: 40px;
    margin-bottom: -1px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .price__cta-content {
        margin-left: 0;
        padding: 70px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .price__cta-content {
        margin-left: 0;
        padding: 60px 40px
    }
}

@media(max-width:450px) {
    .price__cta-content {
        margin-left: 0;
        padding: 40px 25px
    }
}

.price__cta-content-shadow {
    filter: drop-shadow(0px 30px 10px rgba(0, 0, 0, 0.06))
}

.price__cta-3 {
    margin-top: -190px;
    padding-top: 310px;
    padding-bottom: 120px
}

.price__cta-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--clr-common-heading);
    height: 190px;
    width: 100%;
    z-index: -1
}

.price__cta-3-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    z-index: -1
}

.price__cta-3-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--clr-common-heading);
    opacity: .2;
    height: 190px
}

.price__cta-3-img img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.price__cta-content-3 {
    padding-left: 85px
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .price__cta-content-3 {
        padding-left: 50px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px),
(max-width:450px) {
    .price__cta-content-3 {
        padding-left: 0
    }
}

.price__range-wrapper {
    padding-top: 30px;
    margin-bottom: 48px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .price__range-wrapper {
        padding-top: 5px;
        margin-bottom: 58px
    }
}

.price__range-text h5 {
    margin-bottom: 0
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .price__range-text {
        margin-bottom: 30px
    }
}

.price__range-area {
    margin-left: -40px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .price__range-area {
        margin-left: 0
    }
}

.price__range-area .ui-slider-handle {
    width: 80px;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background: var(--clr-common-heading);
    color: var(--clr-common-white);
    cursor: pointer;
    top: 0;
    margin: auto;
    text-align: center;
    line-height: 60px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    font-size: 20px;
    font-weight: 600
}

@media(max-width:575px) {
    .price__range-area .ui-slider-handle {
        width: 60px;
        height: 50px;
        line-height: 50px;
        font-size: 17px
    }
}

.price__range-area .ui-widget {
    font-family: oswald, sans-serif;
    font-size: 20px;
    color: var(--clr-common-white);
    font-weight: 600
}

.price__range-area .ui-widget.ui-widget-content {
    border: none;
    background: var(--clr-common-color-18);
    height: 4px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.blog__more-btn {
    display: inline-block
}

.blog__more-btn a {
    text-transform: uppercase;
    color: var(--clr-common-color-red);
    font-weight: 400;
    font-family: oswald, sans-serif;
    position: relative
}

.blog__more-btn a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--clr-common-color-red)
}

.blog__more-btn:hover a {
    color: var(--clr-common-heading)
}

.blog__more-btn:hover a::before {
    background: var(--clr-common-heading)
}

.blog__item {
    position: relative
}

.blog__item-content h2 {
    font-size: 20px;
    font-family: oswald, sans-serif;
    color: var(--clr-common-heading);
    margin-top: 0;
    font-weight: 600;
	text-align:center;
	color:#fff;
}

.blog__item-content a {
	color:#fff !important;
}

.blog__item-content a:hover {
	color:#fff !important;
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog__item-content h2 {
        font-size: 20px
    }
}

.blog__item-date {
    position: absolute;
    background: var(--clr-common-color-red);
    width: 80px;
    height: 80px;
    text-align: center;
    padding-top: 15px;
    top: 20px;
    right: 20px;
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog__item-date {
        width: 70px;
        height: 70px;
        padding-top: 10px
    }
}

.blog__item-date span {
    color: var(--clr-common-white);
    font-weight: 700;
    text-transform: uppercase;
    font-family: oswald, sans-serif
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog__item-date span {
        font-size: 16px
    }
}

.blog__item-date span b {
    font-size: 40px;
    display: block;
    font-weight: 600;
    color: var(--clr-common-white);
    margin-bottom: 6px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog__item-date span b {
        font-size: 25px;
        margin-bottom: 0
    }
}

.blog__item-img {
    overflow: hidden;
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%)
}

.blog__item-img img {
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
}

.blog__item-content {
    padding: 5px;
	background: #a2bf44;
}

.blog__item-content h2:hover a {
    color: var(--clr-common-color-red)
}

.blog__meta {
    margin-bottom: 17px
}

.blog__meta span {
    margin-right: 25px;
    position: relative
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog__meta span {
        margin-right: 10px
    }
}

.blog__meta span i {
    color: var(--clr-common-color-red);
    margin-right: 5px
}

.blog__meta span:hover a {
    color: var(--clr-common-heading)
}

.blog__meta span:hover a i {
    color: var(--clr-common-heading)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog__padding1 {
        padding-top: 50px
    }
}

.blog-two .blog__item-date {
    top: -20px
}

.blog-two .blog__item-img {
    position: relative
}

.blog-two .blog__item-img img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.blog-two .blog__title-wrapper {
    margin-top: -47px;
    padding-left: 30px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-two .blog__title-wrapper {
        margin-top: -30px;
        padding-left: 0
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:1200px) and (max-width:1399px) {
    .blog-two .blog__title-wrapper {
        padding-left: 0
    }
}

.blog-two .blog__title-inner {
    display: flex;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid var(--clr-common-border-2)
}

.blog-two .blog__title-inner :last-child {
    border-bottom: 1px solid transparent
}

.blog-two .blog__title-inner .blog__item-date {
    height: 80px;
    background: var(--clr-common-color-red);
    position: inherit;
    margin-right: 20px;
    min-width: 80px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .blog-two .blog__title-inner .blog__item-date {
        min-width: 70px;
        height: 70px;
        margin-right: 14px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-two .blog__title-inner .blog__item-date {
        min-width: 70px;
        height: 70px;
        margin-right: 14px
    }
}

.blog-two .blog__title-inner .blog__item-title h4 {
    font-size: 24px;
    line-height: 34px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .blog-two .blog__title-inner .blog__item-title h4 {
        font-size: 20px;
        line-height: 30px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-two .blog__title-inner .blog__item-title h4 {
        font-size: 20px;
        line-height: 25px
    }
}

@media(max-width:450px) {
    .blog-two .blog__title-inner .blog__item-title h4 {
        font-size: 18px
    }
}

.blog-two .blog__title-inner:hover .blog__item-date {
    background: var(--clr-theme-1)
}

.blog-two .blog__title-inner:hover h4 {
    color: var(--clr-common-color-red)
}

.blog-two .blog__meta {
    position: absolute;
    z-index: 1;
    bottom: -17px;
    padding: 15px 20px;
    color: var(--clr-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .blog-two .blog__meta {
        padding: 7px 15px;
        left: -2px
    }
}

.blog-two .blog__meta:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(2% 0, 100% 0%, 97% 100%, 0% 100%);
    mix-blend-mode: multiply;
    background: var(--clr-common-color-red)
}

.blog-two .blog__meta a i {
    color: var(--clr-common-white)
}

.blog__title-wrapper article:last-child .blog__title-inner {
    border-bottom: 1px solid transparent
}

.postbox__wrapper {
    margin-right: 30px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .postbox__wrapper {
        margin-right: 0
    }
}

.postbox__shadow {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 1px 2px 0 rgba(10, 0, 58, .14);
    -moz-box-shadow: 0 1px 2px 0 rgba(10, 0, 58, .14);
    box-shadow: 0 1px 2px 0 rgba(10, 0, 58, .14)
}

.postbox__thumb {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.postbox__thumb img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.postbox__thumb .play-btn {
    background: var(--clr-common-white);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute
}

.postbox__thumb .play-btn:hover {
    background: var(--clr-common-heading);
    color: var(--clr-common-white)
}

.postbox__thumb:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
    .postbox__title {
        font-size: 24px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .postbox__title {
        font-size: 20px
    }
}

.postbox-nav button {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--clr-common-white);
    color: var(--clr-common-heading);
    display: inline-block;
    clip-path: polygon(13% 0, 100% 0, 87% 100%, 0% 100%)
}

.postbox-nav button.postbox-slider-button-next {
    left: auto;
    right: 0
}

.postbox-nav button i {
    height: 60px;
    width: 75px;
    line-height: 60px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .postbox-nav button i {
        height: 50px;
        width: 50px;
        line-height: 50px
    }
}

.postbox-nav button:hover {
    background: var(--clr-common-heading);
    color: var(--clr-common-white)
}

.postbox-slider-button-prev i {
    margin-left: 15px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .postbox-slider-button-prev i {
        margin-left: 5px
    }
}

.postbox-slider-button-next i {
    margin-right: 15px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .postbox-slider-button-next i {
        margin-right: 5px
    }
}

.basic-pagination ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.basic-pagination ul li {
    list-style: none
}

.basic-pagination ul li a,
.basic-pagination ul li span {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid var(--clr-common-border-3);
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-common-heading);
    border-radius: 50%
}

@media(max-width:575px) {
    .basic-pagination ul li a,
    .basic-pagination ul li span {
        width: 45px;
        height: 45px;
        line-height: 45px
    }
}

.basic-pagination ul li a:hover,
.basic-pagination ul li span:hover {
    background: var(--clr-theme-1);
    color: var(--clr-common-white);
    border-color: var(--clr-theme-1)
}

.basic-pagination ul li span.current {
    background: var(--clr-theme-1);
    color: var(--clr-common-white);
    border-color: var(--clr-theme-1)
}

.postbox__content blockquote {
    padding: 30px 40px 5px;
    color: var(--clr-body-text);
    position: relative;
    background: var(--clr-bg-gray);
    font-style: normal;
    text-align: left;
    clear: both;
    font-weight: 400;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 rgba(10, 0, 58, .14);
    border: 1px solid var(--clr-common-color-12);
    margin-bottom: 25px
}

@media(max-width:575px) {
    .postbox__content blockquote {
        padding: 30px 25px 5px
    }
}

.postbox__content blockquote::before {
    content: "\f10e";
    position: static;
    font-family: "font awesome 5 pro";
    font-size: 32px;
    color: var(--clr-theme-1);
    line-height: 1;
    margin-bottom: 18px;
    display: inline-block
}

.postbox__content blockquote cite::before {
    content: "";
    display: inline-block;
    background: var(--clr-theme-1);
    height: 2px;
    width: 40px;
    top: -4px;
    margin-right: 10px;
    position: relative
}

.blog__author {
    padding: 30px;
    -webkit-box-shadow: 0 1px 4px 0 rgba(10, 0, 58, .14);
    -moz-box-shadow: 0 1px 4px 0 rgba(10, 0, 58, .14);
    box-shadow: 0 1px 4px 0 rgba(10, 0, 58, .14);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px
}

.blog__author p {
    margin-bottom: 0
}

.post-comment-form h3 {
    margin-bottom: 30px
}

.comments-avatar {
    float: left;
    margin-right: 20px
}

.comments-avatar img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.comments-text {
    overflow: hidden;
    border-bottom: 2px solid var(--clr-common-border-2);
    padding-bottom: 30px;
    margin-bottom: 30px
}

.comments-text p {
    margin-bottom: 20px
}

.avatar-name {
    margin-bottom: 10px;
    overflow: hidden;
    position: relative
}

.avatar-name h5 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600
}

.avatar-name span {
    font-size: 14px;
    font-weight: 500
}

.latest-comments li.children {
    margin-left: 105px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .latest-comments li.children {
        margin-left: 0
    }
}

.comment-reply {
    font-weight: 500;
    font-size: 14px;
    color: var(--clr-body-heading)
}

.latest-comments li:first-child .comments-box {
    border-top: 0;
    padding-top: 0
}

.sidebar__widget {
    padding: 45px 35px 50px;
    box-shadow: 0 12px 10px rgba(238, 239, 240, .25);
    border: 1px solid var(--clr-common-color-12);
    background: var(--clr-bg-gray-4)
}

.sidebar__widget.sidebar-contact {
    padding-top: 50px;
    padding-bottom: 45px
}

.sidebar__widget.sidebar-contact h2 {
    font-size: 30px;
    color: var(--clr-common-color-red);
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    margin-bottom: 0
}

.sidebar__widget.sidebar-contact p {
    color: var(--clr-common-heading)
}

.sidebar__widget img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .sidebar__widget {
        padding: 43px 15px 48px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .sidebar__widget {
        padding: 43px 30px 48px
    }
}

@media(max-width:575px) {
    .sidebar__widget {
        padding: 43px 15px 48px
    }
}

.sidebar__widget .single-input-field::before {
    background: var(--clr-common-white)
}

.sidebar__widget--title {
    font-size: 20px
}

.widget ul li {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    background: var(--clr-common-white);
    list-style: none
}

.widget ul li:last-child {
    margin-bottom: 0
}

.widget ul li a {
    font-weight: 400;
    color: #777;
    text-transform: capitalize;
    padding-left: 20px;
    position: relative;
    font-size: 16px
}

.widget ul li a:hover {
    color: var(--clr-common-color-red)
}

.widget ul li ul.sub-menu li,
.widget ul li ul.children li {
    padding: 0;
    padding-left: 10px;
    transform: none
}

.widget p strong {
    font-weight: 500
}

.widget ul li a::before {
    position: absolute;
    content: "\f054";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "font awesome 5 pro";
    font-size: 14px;
    color: #ea1b29;
    transition: all .3s ease-out 0s
}

.widget ul li a:hover::before {
    left: 5px
}

.rc__post-thumb {
    width: 100px;
    margin-right: 10px;
    overflow: hidden;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.rc__post-thumb img {
    max-width: 100%
}

.rc__post-thumb:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.rc__post-title {
    font-size: 16px
}

.rc__meta {
    margin-top: -7px
}

.rc__meta span {
    font-size: 14px
}

.tagcloud>h3 {
    font-size: 30px;
    margin-bottom: 25px
}

.tagcloud a {
    font-weight: 400;
    font-size: 12px !important;
    border: 2px solid var(--clr-common-border-2);
    border-radius: 6px;
    color: #777;
    padding: 0 15px;
    display: inline-grid;
    line-height: 34px;
    margin: 7px 10px 7px 0;
    position: relative;
    background: 0 0;
    z-index: 2;
    transition: .3s;
    text-transform: capitalize
}

@media(max-width:575px) {
    .tagcloud a {
        margin: 7px 7px 7px 0
    }
}

.tagcloud a:hover {
    background: var(--clr-theme-1);
    border-color: var(--clr-theme-1);
    color: var(--clr-common-white)
}

.tagcloud.details a::before {
    background: var(--clr-common-border-2)
}

.tagcloud.details a:hover {
    color: var(--clr-common-white)
}

.tagcloud.details a:hover::before {
    background: var(--clr-theme-1)
}

.bd-blog-title {
    font-size: 30px
}

.bd-blog .bd-blog-img .play-btn.popup-video {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff
}

.bd-blog .bd-blog-img .play-btn.popup-video:hover {
    background: var(--clr-common-heading);
    color: var(--clr-common-white)
}

.bd-blog-meta ul li {
    display: inline-block;
    margin-right: 20px;
    padding-top: 0
}

@media(max-width:575px),
only screen and (min-width:576px) and (max-width:767px) {
    .bd-blog-meta ul li {
        display: block;
        margin-bottom: 12px
    }
}

.bd-blog-meta ul li a {
    text-transform: capitalize
}

.bd-blog-meta ul li i,
.bd-blog-meta ul li a i {
    margin-right: 8px;
    color: var(--clr-common-color-red)
}

.bd-blog-meta ul li:hover a,
.bd-blog-meta ul li:hover a i {
    color: var(--clr-common-heading)
}

.ablog__img a,
.bd-blog-img a {
    display: inline-block
}

.ablog__img a img,
.bd-blog-img a img {
    max-width: 100%;
    transition: all .3s ease-out 0s
}

.postbox__audio {
    margin-bottom: 25px
}

.ablog .bd-blog-img .play-btn.popup-video {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff
}

.ablog .bd-blog-img .play-btn.popup-video:hover {
    background: var(--clr-theme-1);
    color: var(--clr-common-white)
}

.ablog .bd-blog-img .play-btn.popup-video-white {
    background: var(--clr-common-white)
}

.sidebar-search-form input {
    width: 100%;
    height: 64px;
    padding: 0 50px 0 27px;
    border: 2px solid var(--clr-common-border-2);
    outline: 0;
    background: 0 0;
    color: var(--clr-common-heading);
    border-radius: 6px
}

.ablog__text4 blockquote {
    padding: 30px 40px 5px;
    border-radius: 10px;
    background: var(--clr-bg-gray);
    box-shadow: 0 1px 2px 0 rgba(10, 0, 58, .14);
    border: 1px solid var(--clr-common-color-12)
}

.ablog__text4 blockquote::before {
    color: var(--clr-theme-1)
}

.ablog__text4 blockquote p {
    font-family: roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--clr-common-text);
    margin-bottom: 15px !important
}

.ablog__text4 blockquote p cite {
    color: inherit;
    font: inherit;
    font-style: italic;
    color: var(--clr-common-heading);
    font-weight: 500
}

.ablog__text4 blockquote p cite::before {
    background: var(--clr-theme-1)
}

.blog__details__tag.tagcloud a:hover {
    color: var(--clr-common-white)
}

.blog__details__tag.tagcloud a::before {
    background: var(--clr-common-border-2)
}

.blog__details__tag.tagcloud a:hover::before {
    background: var(--clr-theme-1)
}

.post-text img {
    max-width: 100%;
    margin: 25px 0
}

@media(max-width:575px) {
    .blog__author-content h5 {
        margin-top: 17px
    }
}

.bd-blog-title {
    font-family: oswald, sans-serif;
    color: var(--clr-common-heading);
    margin-top: 0;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.3px;
    text-transform: uppercase;
    transition: all .3s ease-out 0s
}

.bd-blog-title:hover {
    color: var(--clr-common-color-red)
}

.bd-blog-meta .fas {
    font-family: "font awesome 5 pro"
}

.basic-pagination .fas {
    font-family: "font awesome 5 pro"
}

.blog__more-btn .fas {
    font-family: "font awesome 5 pro"
}

.sidebar__widget--title {
    font-size: 20px;
    position: relative;
    padding-bottom: 12px;
    color: var(--clr-common-heading)
}

.sidebar__widget--title::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--clr-common-color-red)
}

.post_gallery.blog_gallery_active img {
    position: relative
}

.swiper-blog-button {
    height: 60px;
    width: 60px;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    line-height: 60px;
    color: var(--clr-common-heading);
    position: absolute;
    z-index: 999;
    transition: .3s
}

.swiper-blog-button:hover {
    background: var(--clr-theme-1);
    color: #fff
}

.swiper-blog-button.slide-prev {
    top: 50%;
    left: 2%;
    transform: translateY(-50%)
}

.swiper-blog-button.slide-next {
    top: 50%;
    right: 2%;
    transform: translateY(-50%)
}

.bd-blog,
.ablog {
    border-radius: 6px;
    box-shadow: 0 30px 40px 0 rgba(0, 6, 69, .08);
    overflow: hidden
}

.ablog__text {
    background: #fff;
    padding: 35px 40px
}

.ablog__sidebar .widget_tag_cloud a {
    display: inline-block;
    line-height: 34px;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 400;
    color: #777;
    background: #fff;
    border-radius: 6px;
    margin-right: 8px;
    margin-bottom: 10px;
    border: 0;
    border: 2px solid var(--clr-common-border-2);
    transition: .3s;
    text-transform: capitalize
}

.ablog__sidebar .widget_tag_cloud a:hover {
    color: #fff;
    background: var(--clr-theme-1);
    border-color: var(--clr-theme-1)
}

.blog__meta.dp-blog-meta1 {
    padding: 10px 20px
}

.blog__meta.dp-blog-meta1 a {
    font-size: 14px;
    line-height: 1
}

.blog__meta.dp-blog-meta1 span:hover a,
.blog__meta.dp-blog-meta1 span:hover i {
    color: #fff;
    opacity: .8
}

.sidebar__widget-categories ul li {
    list-style: none;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    background: 0 0
}

.sidebar__widget-categories ul li a {
    padding: 17px 30px;
    font-weight: 500;
    display: block;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    color: var(--clr-common-heading);
    background: var(--clr-common-white);
    text-transform: uppercase
}

.sidebar__widget-categories ul li span {
    float: right
}

.sidebar__widget-categories ul li:hover a {
    color: var(--clr-common-white);
    background: var(--clr-theme-1)
}

.team__item {
    overflow: hidden
}

.team__item-text {
    opacity: 0;
    visibility: hidden;
    bottom: 0;
    z-index: 1;
    left: 50px;
    bottom: -100px;
    margin-top: 100px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.team__item-text span {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    color: var(--clr-common-white);
    opacity: .5
}

.team__item-text h3 {
    font-size: 24px;
    color: var(--clr-common-white);
    margin-bottom: 30px
}

.team__item-text h3:hover {
    color: var(--clr-common-color-red)
}

@media(max-width:450px) {
    .team__item-auth h4 {
        font-size: 18px
    }
}

.team__item-img img {
    -webkit-transition: all 1s ease-out 0s;
    -moz-transition: all 1s ease-out 0s;
    -ms-transition: all 1s ease-out 0s;
    -o-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s
}

.team__overlay {
    z-index: 1;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.team__overlay::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--clr-theme-1);
    z-index: 1;
    opacity: 0;
    mix-blend-mode: multiply
}

.team__overlay:hover .team__item-text {
    opacity: 1;
    visibility: visible;
    bottom: 40px
}

.team__overlay:hover .team__item-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.team__overlay:hover::before {
    opacity: .9;
    height: 100%
}

.team__social a {
    color: var(--clr-common-color-11);
    margin-right: 10px;
    text-transform: uppercase;
    font-family: oswald, sans-serif
}

.team__social a:hover {
    color: var(--clr-common-white)
}

.team__3-item {
    margin-left: 35px;
    margin-right: 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),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .team__3-item {
        margin-left: 5px;
        margin-right: 5px
    }
}

.team__3-item-img {
    position: relative
}

.team__3-item-img img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.team__3-item-content {
    background: var(--clr-theme-1);
    padding: 19px 30px;
    clip-path: polygon(1.2% 0, 100% 0, 98.8% 100%, 0 100%);
    margin-left: -5px;
    margin-right: 16px;
    margin-top: -2px
}

.team__3-item-title {
    font-size: 24px;
    color: var(--clr-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .team__3-item-title {
        font-size: 20px
    }
}

.team__3-item-subtitle {
    font-size: 14px;
    color: var(--clr-common-white);
    text-transform: uppercase;
    font-family: oswald, sans-serif;
    font-weight: 400
}

.team__3-item-social {
    position: absolute;
    width: 106%;
    padding: 87px 50px;
    bottom: -30px;
    left: -35px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.team__3-item-social:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(0px 0px, 100% 30%, 96% 80%, 0 60%);
    background: var(--clr-common-color-red);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.team__3-item-social ul {
    margin-top: -50px;
    position: relative
}

.team__3-item-social ul li {
    display: inline-block;
    margin-right: 10px
}

.team__3-item-social ul li a {
    display: block;
    color: var(--clr-common-white);
    font-size: 14px
}

.team__3-item-social ul li:hover a {
    color: var(--clr-common-heading)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .team__3-item-social {
        padding: 65px 50px;
        left: -29px
    }
    .team__3-item-social ul {
        margin-top: -38px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .team__3-item-social {
        padding: 65px 50px;
        left: 0;
        width: 95%
    }
    .team__3-item-social ul {
        margin-top: -38px
    }
}

.team__3-item:hover .team__3-item-social {
    bottom: 0;
    visibility: visible;
    opacity: 1
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .team__3-item:hover .team__3-item-social {
        bottom: 25px
    }
}

.team-img img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%)
}

.tmd__content {
    padding: 0 30px 0 50px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tmd__content {
        padding: 0
    }
}

.tmd__content ul li {
    margin-bottom: 8px;
    list-style: none
}

.tmd__content ul li span {
    color: var(--clr-common-black)
}

.tmd__qualification .progress {
    height: 10px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .tmd__qualification {
        padding-left: 0 !important
    }
}

.tmd__skill-wrapper {
    margin-bottom: 30px
}

.tmd__skill .progress-bar {
    background-color: var(--clr-theme-1)
}

.tmd__education ul li {
    margin-bottom: 25px;
    list-style: none
}

.tmd img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%)
}

.skill-title {
    display: flex;
    justify-content: space-between
}

.skill-title span {
    float: right;
    color: var(--clr-common-black)
}

.edu-icon {
    float: left;
    margin-right: 20px
}

.edu-icon i {
    font-size: 30px;
    color: var(--clr-common-heading)
}

.edu-text {
    overflow: hidden
}

.edu-text h5 {
    margin-bottom: 2px;
    color: var(--clr-common-heading)
}

.edu-text p {
    margin-bottom: 0
}

.edu__education li {
    margin-bottom: 15px
}

.skill-category {
    color: var(--clr-common-heading)
}

.team__founder-item {
    display: flex;
    gap: 25px;
    align-items: center
}

.team__founder-item-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    color: #fff;
    background-color: rgba(213, 27, 40, .1)
}

.team__founder-item-icon i {
    font-size: 16px;
    color: var(--clr-common-color-red)
}

.team__founder-text .contact {
    color: var(--clr-common-heading)
}

.team__founder-text .contact:hover {
    color: var(--clr-common-color-red)
}

.team__founder-item:not(:last-child) {
    margin-bottom: 15px
}

.td-section-title .title {
    margin-bottom: 15px
}

.td-section-title p {
    margin-bottom: 32px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .acc-testi {
        padding-bottom: 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) {
    .accordion__wrapper-1 {
        margin-right: 20px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .accordion__wrapper-1 {
        margin-right: 0
    }
}

.accordion__wrapper-1 .accordion-header {
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.1))
}

.accordion__wrapper-1 .accordion-body {
    padding: 25px 25px 7px
}

.accordion__wrapper-1 .accordion-body p {
    margin-bottom: 0
}

.accordion__wrapper-1 .accordion-item {
    margin-bottom: 20px;
    border: 0;
    background: 0 0
}

.accordion__wrapper-1 .accordion-button {
    background: var(--clr-common-white);
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-common-heading);
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
    box-shadow: none;
    padding: 19px 29px;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    text-transform: uppercase
}

@media(max-width:450px) {
    .accordion__wrapper-1 .accordion-button {
        font-size: 16px
    }
}

.accordion__wrapper-1 .accordion-button:focus {
    box-shadow: none
}

.accordion__wrapper-1 .accordion-button:not(.collapsed) {
    color: var(--clr-common-white);
    background-color: var(--clr-common-color-red)
}

.accordion__wrapper-1 .accordion-button.collapsed::after {
    font-family: "font awesome 5 pro";
    content: "\f067";
    background-image: none;
    font-weight: 400
}

.accordion__wrapper-1 .accordion-button::after {
    font-family: "font awesome 5 pro";
    content: "\f068";
    background-image: none
}

.accordion__wrapper-1 .accordion-button:not(.collapsed)::after {
    background-image: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    font-weight: 400
}

@media(max-width:450px) {
    .accordion__wrapper-1 .accordion-button {
        padding: 16px
    }
}

.accordion__wrapper-1 .accordion-collapse {
    border: none
}

.contact__shadow {
    filter: drop-shadow(-1px 6px 3px rgba(0, 0, 0, 0.04))
}

.contact__info-item {
    display: flex;
    justify-content: space-between;
    background: var(--clr-common-white);
    padding: 30px 35px;
    align-items: center;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
    position: relative;
    overflow: hidden
}

.contact__info-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--clr-common-heading);
    z-index: 1;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
    z-index: -1;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    -webkit-transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66)
}

.contact__info-item:hover::before {
    width: 100%
}

.contact__info-item:hover .contact__info-text h3,
.contact__info-item:hover .contact__info-text span {
    color: var(--clr-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
    .contact__info-item {
        padding: 25px
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .contact__info-item {
        padding: 25px 45px
    }
}

@media(max-width:575px) {
    .contact__info-item {
        padding: 20px 50px
    }
}

@media(max-width:575px) {
    .contact__info-item {
        padding: 20px 40px
    }
}

@media(max-width:450px) {
    .contact__info-item {
        padding: 20px
    }
}

.contact__info-text span {
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .contact__info-text h3 {
        font-size: 24px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .contact__info-text h3 {
        font-size: 22px
    }
}

.contact__info-img {
    margin-top: 140px
}

.contact__info-icon {
    font-size: 56px;
    color: var(--clr-common-color-red)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .contact__info-icon {
        font-size: 45px
    }
}

.contact__content {
    padding-right: 40px
}

.contact__content .section__title h2 {
    margin-bottom: 26px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .contact__content .section__title h2 {
        font-size: 40px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .contact__content .section__title h2 {
        font-size: 30px
    }
}

.contact__content-btn .fill-btn {
    clip-path: polygon(11% 0%, 100% 0, 89% 100%, 0% 100%);
    padding: 0 42px
}

.contact__bg {
    background-position: center right;
    background-repeat: no-repeat
}

@media(max-width:575px) {
    .coverage__area {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

.coverage__division {
    padding: 0 62px;
    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:575px) {
    .coverage__division {
        padding: 0
    }
}

.coverage__division>div {
    width: 50%;
    float: left
}

.coverage__division>div ul {
    padding-top: 25px
}

.coverage__division>div ul li {
    line-height: 1;
    margin-bottom: 33px
}

.coverage__division>div ul li a {
    position: relative;
    padding-left: 26px
}

.coverage__division>div ul li a:before {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--clr-common-color-red);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.coverage__division>div ul li a.cont-1:before,
.coverage__division>div ul li a.cont-5:before {
    background: var(--clr-common-color-red)
}

.coverage__division>div ul li a.cont-2:before,
.coverage__division>div ul li a.cont-6:before {
    background: var(--clr-common-color-red)
}

.coverage__division>div ul li a.cont-3:before,
.coverage__division>div ul li a.cont-7:before {
    background: var(--clr-common-color-red)
}

.coverage__division>div ul li a.cont-4:before {
    background: var(--clr-common-color-red)
}

.coverage__text p {
    padding-right: 140px;
    margin-bottom: 0
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .coverage__text p {
        padding-right: 70px
    }
}

@media(max-width:575px) {
    .coverage__text p {
        padding-right: 0
    }
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--clr-common-color-red);
    box-shadow: 0 4px 8px 0 rgba(219, 28, 41, .3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: .3s;
    -moz-transform: .3s;
    -ms-transform: .3s;
    transform: .3s;
    cursor: pointer;
    animation: mappulse 2s infinite
}

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

@media only screen and (min-width:576px) and (max-width:767px) {
    .dot {
        display: none
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
(max-width:575px) {
    .dot {
        display: none
    }
}

.dot:hover .dot-inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px)
}

.dot.active .dot-inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px)
}

.dot-1 {
    top: -127px;
    left: 17%
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .dot-1 {
        left: 35.9%
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .dot-1 {
        left: 36%
    }
}

@media(max-width:575px) {
    .dot-1 {
        display: none
    }
}

.dot-2 {
    top: 130px;
    left: 44%
}

.dot-3 {
    top: -155px;
    right: 2%
}

.dot-4 {
    top: -194px;
    right: -74%
}

@media only screen and (min-width:1600px) and (max-width:1799px) {
    .dot-4 {
        right: -40%
    }
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
    .dot-4 {
        right: -20%
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .dot-4 {
        display: none
    }
}

.dot-5 {
    top: 130px;
    right: -26%
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .dot-5 {
        right: -20%
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .dot-5 {
        right: -10%
    }
}

.dot-inner {
    position: absolute;
    bottom: 10px;
    left: -105px;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .04);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    z-index: 3;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.dot-inner.dot-inner-team {
    visibility: visible;
    opacity: 1;
    bottom: 10px
}

.single-contact-info {
    padding-bottom: 30px
}

.single-contact-info .contact-info-icon {
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.single-contact-info .contact-info-icon:hover i {
    color: var(--clr-common-white)
}

.single-contact-info .contact-info-icon:hover a {
    background: var(--clr-common-color-red);
    color: var(--clr-common-white)
}

.contact-info-icon {
    margin-right: 20px
}

.contact-info-icon a {
    height: 65px;
    width: 65px;
    background: var(--clr-common-color-17);
    display: inline-block;
    line-height: 70px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 20px;
    color: var(--clr-common-color-red);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.contact-info-text span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block
}

.contact-info-text h5 {
    font-size: 20px;
    color: var(--clr-common-heading)
}

.contact-info-text h5:hover {
    color: var(--clr-common-color-red)
}

.single-input-field {
    margin-bottom: 20px;
    position: relative;
    background: 0 0;
    z-index: 2
}

.single-input-field input,
.single-input-field textarea {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 50px 0 27px;
    border: 2px solid transparent;
    outline: 0;
    background: 0 0;
    color: var(--clr-common-heading)
}

.single-input-field textarea {
    height: 100px;
    padding: 20px 50px 20px 28px;
    resize: none
}

.single-input-field i {
    position: absolute;
    top: 50%;
    right: 26px;
    color: var(--clr-common-heading);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.single-input-field::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid var(--clr-common-border-2);
    z-index: -1
}

.single-input-field .nice-select {
    width: 100%;
    height: 64px;
    line-height: 64px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    float: none;
    border: none;
    padding: 0
}

.single-input-field .nice-select::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid var(--clr-common-border-2);
    -webkit-transform: skew(-4deg);
    -moz-transform: skew(-4deg);
    -ms-transform: skew(-4deg);
    transform: skew(-4deg);
    z-index: 1
}

.single-input-field .nice-select span {
    color: var(--clr-common-heading);
    font-family: oswald, sans-serif !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    margin-left: 29px
}

.single-input-field .nice-select::after {
    border-bottom: 2px solid var(--clr-common-heading);
    border-right: 2px solid var(--clr-common-heading);
    height: 10px;
    right: 30px;
    width: 10px;
    top: 0;
    bottom: 0;
    margin: auto
}

.single-input-field .nice-select .list {
    width: 100%;
    z-index: 100
}

.single-input-field.select {
    z-index: 3
}

.single-input-field.select.select-first {
    z-index: 4
}

.single-input-field.textarea i {
    top: 25px;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px)
}

.contac-dp-map-area {
    margin-bottom: -10px
}

.contact-dp-map-wrapper iframe {
    width: 100%;
    height: 600px
}

.coverage__map .dot-inner img {
    height: 100px;
    width: auto;
    border: 3px solid var(--clr-common-white)
}

.portfolio-menu {
    text-align: center
}

.portfolio-menu button {
    font-size: 16px;
    font-weight: 700;
    padding: 0 35px;
    height: 60px;
    color: var(--clr-common-heading);
    border: none;
    background: 0 0;
    margin: 6px 2px;
    font-family: oswald, sans-serif;
    text-transform: uppercase;
    position: relative
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .portfolio-menu button {
        font-size: 14px;
        padding: 0 20px;
        height: 50px;
        margin: 5px auto
    }
}

.portfolio-menu button::before {
    position: absolute;
    content: "";
    width: calc(100% - 20px);
    height: 100%;
    border: 2px solid var(--clr-common-border-2);
    transform: skew(-18deg);
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    margin: auto
}

.portfolio-menu button.active::before {
    background: var(--clr-common-heading);
    border-color: var(--clr-common-heading)
}

.portfolio-menu button.active {
    color: var(--clr-common-white)
}

.portfolio__item {
    position: relative;
    overflow: hidden
}

.portfolio__content {
    background: var(--clr-common-white);
    position: absolute;
    left: -100px;
    bottom: 0;
    padding: 43px 45px;
    width: calc(100% - 15px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    clip-path: polygon(0% 0, 100% 0, 97% 100%, 0 100%)
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .portfolio__content {
        padding: 20px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .portfolio__content {
        clip-path: polygon(0% 0, 100% 0, 96% 100%, 0 100%)
    }
}

@media(max-width:450px) {
    .portfolio__content {
        padding: 20px 13px 20px 19px
    }
}

.portfolio__content-thumb {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: -1;
    width: 125px
}

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

.portfolio__content-title h5 {
    font-size: 16px;
    color: var(--clr-common-color-red);
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px
}

.portfolio__content-title h2 {
    font-size: 24px;
    line-height: 34px;
    color: var(--clr-common-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 14px
}

@media(max-width:450px) {
    .portfolio__content-title h2 {
        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),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .portfolio__content-title h2 {
        font-size: 20px
    }
}

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

.portfolio__content-data span a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-common-heading)
}

.portfolio__content-data span i {
    color: var(--clr-common-color-red);
    font-size: 14px;
    margin-right: 5px
}

.portfolio__content-data span:first-child {
    margin-right: 10px
}

.portfolio__content-data span:hover a {
    color: var(--clr-common-color-red)
}

.portfolio__img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%)
}

.portfolio__img img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    width: 100%
}

.portfolio__item:hover .portfolio__content {
    opacity: 1;
    visibility: visible;
    left: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.portfolio__details-img img,
.service-details-content img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.overview-list ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    list-style: none
}

.overview-list ul li::before {
    position: absolute;
    content: "\f00c";
    font-size: 16px;
    color: var(--clr-common-heading);
    font-family: "font awesome 5 pro";
    left: 0;
    top: 0
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .row.portfolio__sd-box {
        --bs-gutter-x: 18px
    }
}

.portfolio__sd-box-content {
    padding: 25px 20px;
    position: relative;
    display: inline-grid;
    width: 100%
}

.portfolio__sd-box-content::before {
    content: "";
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid var(--clr-common-border-2);
    transform: skew(-4deg);
    z-index: -1
}

.portfolio__sd-box-content i {
    margin-bottom: 25px;
    display: block;
    color: var(--clr-common-color-red);
    font-size: 45px
}

.portfolio__sd-box-content p {
    margin-bottom: 0;
    line-height: 20px
}

.portfolio__sd-box-content h6 {
    font-size: 22px;
    color: var(--clr-common-heading)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .portfolio__sd-box-content h6 {
        font-size: 18px
    }
}

.portfolio-slider img {
    width: 100%
}

.portfolio-slider-pagination {
    text-align: center
}

.portfolio-slider-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    display: inline-block;
    background: var(--clr-common-color-3);
    margin: 0 3px;
    opacity: 1;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.portfolio-slider-pagination .swiper-pagination-bullet-active {
    background: var(--clr-theme-1)
}

.portfolio-form h4 {
    margin-bottom: 25px
}

.dp-portfolio-menu {
    text-align: end
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px),
(max-width:450px) {
    .dp-portfolio-menu {
        text-align: start
    }
}

.dp-portfolio-menu button {
    margin-left: 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    font-family: oswald, sans-serif;
    color: var(--clr-common-heading)
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .dp-portfolio-menu button {
        margin-left: 15px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px),
(max-width:450px) {
    .dp-portfolio-menu button {
        margin-left: 0;
        margin-right: 20px
    }
}

.dp-portfolio-menu button.active {
    color: var(--clr-common-color-red-3)
}

.dp-single-gallery-03 {
    position: relative;
    z-index: 1;
    min-height: 550px;
    overflow: hidden;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.dp-single-gallery-thumb-03 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.dp-gallery-content-03 {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    z-index: 1;
    padding-left: 43px;
    padding-right: 43px;
    padding-bottom: 30px;
    transition: all .3s ease-out 0s
}

.dp-gallery-title-03 {
    font-size: 20px;
    margin-bottom: 8px;
    transform: translateY(40px);
    visibility: hidden;
    opacity: 0;
    color: var(--clr-common-white)
}

.dp-gallery-tag-03 {
    visibility: hidden;
    opacity: 0;
    transition-delay: 0s;
    transform: translateY(40px);
    transition: all .3s ease-out 0s;
    color: var(--clr-common-white)
}

.dp-gallery-tag-03 span {
    font-size: 14px;
    line-height: 1;
    color: var(--clr-common-white);
    text-transform: uppercase;
    display: block;
    font-weight: 400;
    font-family: oswald, sans-serif
}

.dp-gallery-view-03 {
    position: absolute;
    top: 45px;
    right: 45px;
    z-index: 1;
    transform: scale(0);
    transition: all .3s ease-out 0s
}

.dp-gallery-view-03 .dp-gallery-plus-btn {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 46px;
    text-align: center;
    border: 2px solid var(--clr-common-white);
    color: var(--clr-common-white);
    border-radius: 50%;
    font-size: 16px;
    transition: all .3s ease-out 0s
}

.dp-gallery-view-03 .dp-gallery-plus-btn:hover {
    background-color: var(--clr-common-white);
    border-color: var(--clr-common-white);
    color: var(--clr-common-heading)
}

.dp-single-gallery-03::after {
    position: absolute;
    content: "";
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 15px;
    background-color: var(--clr-common-heading);
    opacity: 0;
    transform: perspective(600px) rotateY(20deg);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.dp-single-gallery-03:hover .dp-gallery-view-03 {
    transform: scale(1);
    visibility: visible;
    opacity: 1
}

.dp-single-gallery-03:hover::after {
    visibility: visible;
    opacity: .95;
    transform: perspective(600px) rotateY(0deg)
}

.dp-single-gallery-03:hover .dp-gallery-title-03 {
    transition-delay: .2s;
    transform: translateY(0);
    visibility: visible;
    opacity: 1
}

.dp-single-gallery-03:hover .dp-gallery-tag-03 {
    bottom: 15px;
    visibility: visible;
    opacity: 1;
    transition-delay: .3s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1
}

.dp-gallery-nav-03 button {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 1;
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    color: #000;
    background-color: var(--clr-common-white);
    font-size: 16px;
    box-shadow: 0 30px 50px rgba(3, 4, 28, .2);
    transition: all .3s ease-out 0s;
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%)
}

.dp-gallery-nav-03 button.dp-gallery-button-next-03 {
    left: auto;
    right: 15%
}

.dp-gallery-nav-03 button:hover {
    color: var(--clr-common-white);
    background-color: var(--clr-common-heading)
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px),
(max-width:450px) {
    .section__title.gallery-section-title {
        margin-bottom: 20px
    }
}

@media(max-width:450px) {
    .portfolio__content p {
        margin-bottom: 5px
    }
}

.approach__area {
    position: relative
}

.approach__img {
    width: 50%;
    float: left;
    height: 100%;
    position: absolute
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .approach__img {
        width: 100%;
        float: none;
        position: static
    }
}

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

.approach__content {
    padding-top: 120px;
    padding-left: 120px;
    padding-bottom: 90px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .approach__content {
        padding-left: 50px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .approach__content .section__title {
        margin-bottom: 25px
    }
    .approach__content .section__title .title {
        font-size: 34px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .approach__content {
        padding-left: 25px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .approach__content .section__title .title {
        margin-bottom: 17px;
        font-size: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .approach__content {
        padding-left: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .approach__content {
        padding-left: 0
    }
}

.approach__text p {
    padding-right: 35px;
    margin-bottom: 35px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .approach__text p {
        margin-bottom: 15px
    }
}

.approach__text ul {
    padding-right: 60px;
    display: inline-block
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .approach__text ul {
        padding-right: 0
    }
}

.approach__text ul li {
    width: 50%;
    float: left;
    margin-bottom: 16px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .approach__text ul li {
        margin-bottom: 8px
    }
}

@media(max-width:450px) {
    .approach__text ul li {
        width: 100%;
        float: none
    }
}

.approach__text ul li i {
    color: var(--clr-common-heading);
    font-size: 16px;
    margin-right: 14px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.approach__text ul li:hover i {
    color: var(--clr-common-color-red)
}

.mission__img {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .mission__img {
        width: 100%;
        float: none;
        position: static
    }
}

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

.mission__content {
    padding-top: 120px;
    padding-right: 90px;
    padding-bottom: 120px
}

@media only screen and (min-width:1400px) and (max-width:1599px),
only screen and (min-width:1200px) and (max-width:1399px) {
    .mission__content {
        padding-right: 65px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .mission__content {
        padding-right: 30px
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .mission__content .section__title {
        margin-bottom: 25px
    }
    .mission__content .section__title .title {
        font-size: 34px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .mission__content {
        padding-right: 0
    }
}

.mission__text p {
    padding-right: 60px;
    margin-bottom: 45px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .mission__text p {
        margin-bottom: 20px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .mission__text p {
        padding-right: 10px;
        margin-bottom: 20px
    }
}

@media(max-width:450px) {
    .mission__text p {
        padding-right: 0;
        margin-bottom: 15px
    }
}

@media(max-width:450px) {
    .mission__text-icon {
        display: none
    }
}

.mission__text-inner {
    display: flex;
    align-items: center;
    row-gap: 40px
}

.mission__text-inner img {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    margin-right: 35px
}

@media(max-width:450px) {
    .mission__text-inner img {
        margin-right: 15px
    }
}

@media(max-width:450px) {
    .mission__text-inner {
        flex-wrap: wrap;
        margin-top: 40px
    }
}

.mission__text-inner .single-contact-info {
    padding-bottom: 0
}

.mission__text-contact li i {
    color: var(--clr-common-color-red);
    margin-right: 9px
}

.pricing__box {
    background: var(--clr-common-white);
    padding: 80px 20px;
    text-align: center;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .pricing__box {
        padding: 60px 20px
    }
}

.pricing__box.active {
    border-color: var(--clr-common-heading);
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04)
}

.pricing__badge {
    font-size: 13px;
    font-weight: 700;
    background: var(--clr-common-heading);
    color: var(--clr-common-white);
    text-transform: uppercase;
    width: 200px;
    height: 185px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 5px;
    position: absolute;
    top: -106px;
    right: -116px;
    transform: rotate(46deg)
}

.pricing__package-price {
    font-size: 70px;
    font-weight: 700;
    color: var(--clr-common-heading);
    line-height: .7;
    display: flex;
    justify-content: center
}

.pricing__package-name {
    color: var(--clr-common-black);
    margin-bottom: 30px
}

.pricing__package-currency {
    font-size: 20px;
    font-weight: 500;
    color: var(--clr-common-black)
}

.pricing__package-period {
    font-size: 20px;
    font-weight: 500;
    color: var(--clr-common-black);
    margin-top: auto;
    margin-left: -10px
}

.pricing__features-list {
    border-top: 2px solid var(--clr-common-border-2);
    padding-top: 40px;
    margin-top: 45px;
    margin-bottom: 42px
}

.pricing__features-list ul li {
    margin-bottom: 8px;
    display: block
}

.pricing__features-list ul li:last-child {
    margin-bottom: 0
}

.pricing-tab .nav-tabs {
    border: none
}

.pricing-tab .nav-tabs .nav-link {
    margin-bottom: 0;
    border: 0
}

.pricing-tab .nav .nav-item {
    padding-left: 0
}

.pricing-tab .nav .nav-item .nav-link {
    padding: 7px 60px;
    background: 0 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--clr-common-black);
    position: relative;
    outline: none;
    font-size: 16px;
    border: none;
    z-index: 2
}

.pricing-tab .nav .nav-item .nav-link::before {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(50%);
    -moz-transform: translateY(-50%) translateX(50%);
    -ms-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
    background: var(--clr-common-color-21);
    width: 80px;
    height: 40px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    border: 1px solid var(--clr-common-heading)
}

.pricing-tab .nav .nav-item .nav-link::after {
    position: absolute;
    content: "";
    right: -32px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--clr-common-heading);
    z-index: 1
}

.pricing-tab .nav .nav-item .nav-link.active {
    color: var(--clr-common-heading)
}

.pricing-tab .nav .nav-item .nav-link.active::after {
    right: 10px
}

.pricing-tab .nav .nav-item:last-child .nav-link {
    padding-right: 0
}

.pricing-tab .nav .nav-item:last-child .nav-link::after {
    display: none
}

.pricing-tab .nav .nav-item:last-child .nav-link::before {
    display: none
}

.pricing-tab .nav .nav-item:first-child .nav-link {
    padding-left: 0
}

.dp-funfact-wrapper {
    display: flex;
    align-items: center
}

@media(max-width:575px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:992px) and (max-width:1199px) {
    .dp-funfact-wrapper {
        justify-content: flex-start
    }
}

.dp-funfact-wrapper .dp-funfact-icon {
    margin-right: 20px
}

.dp-funfact-wrapper .dp-funfact-icon i {
    font-size: 60px;
    color: var(--clr-common-color-red)
}

@media(max-width:450px),
(max-width:575px) {
    .dp-funfact-wrapper .dp-funfact-icon i {
        font-size: 50px
    }
}

.dp-funfact-wrapper .dp-funfact-content h3 {
    font-size: 50px;
    color: var(--clr-common-heading);
    font-weight: 600
}

@media(max-width:575px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:992px) and (max-width:1199px) {
    .dp-funfact-wrapper .dp-funfact-content h3 {
        font-size: 34px
    }
}

.dp-funfact-wrapper .dp-funfact-content p {
    margin-bottom: 0
}

.dp-funfactor-grid {
    display: flex;
    justify-content: space-between
}

@media only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:992px) and (max-width:1199px) {
    .dp-funfactor-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center
    }
}

@media(max-width:575px) {
    .dp-funfactor-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-items: center
    }
}

@media(max-width:450px) {
    .dp-funfactor-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-items: center
    }
}

.dp-funfact-content {
    min-width: 140px
}

.dp-funfact-wrapper-02 {
    padding: 30px;
    position: relative;
    justify-content: center
}

@media(max-width:450px),
(max-width:575px),
only screen and (min-width:576px) and (max-width:767px) {
    .dp-funfact-wrapper-02 {
        justify-content: center
    }
}

.dp-funfact-wrapper-02::before {
    position: absolute;
    content: "";
    height: 100%;
    border: 2px solid var(--clr-common-border-2);
    transform: skew(-12deg);
    z-index: -1;
    left: 10px;
    width: 100%
}

@media(max-width:450px),
(max-width:575px),
only screen and (min-width:576px) and (max-width:767px) {
    .dp-funfact-wrapper-02::before {
        width: calc(100% - 30px);
        transform: skew(-10deg)
    }
}

.dp-funfact-area.dp-funfact-area-03 {
    background-repeat: no-repeat;
    background: fixed;
    background-size: cover
}

.dp-funfact-wrapper-03 {
    display: block;
    background-color: transparent;
    text-align: center;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.dp-funfact-wrapper-03 .dp-funfact-icon {
    margin-right: 0;
    margin-bottom: 15px
}

.dp-funfact-area.dp-funfact-area-03::before {
    position: absolute;
    content: "";
    background: #3e4344;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .8
}

.dp-funfact-wrapper-03 .dp-funfact-content h3 {
    color: #fff
}

.dp-funfact-wrapper-03 .dp-funfact-icon i {
    color: #fff
}

.dp-funfact-wrapper-03 .dp-funfact-content p {
    color: #fff;
	text-align:center;
}

.dp-single-gallery {
    position: relative;
    overflow: hidden;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%)
}

.dp-single-gallery img {
    max-width: 100%;
    transition: all 1.5s cubic-bezier(0, 0, .2, 1)
}

.dp-single-gallery:hover img {
    transform: scale3d(1.1, 1.1, 1.1)
}

.dp-single-gallery .dp-gallery-content {
    position: absolute;
    left: 0;
    bottom: -150px;
    background: var(--clr-common-white);
    display: inline-block;
    padding: 30px 35px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    right: 0;
    margin-right: 33px;
    margin-left: 20px;
    display: flex;
    justify-content: space-between
}

@media(max-width:575px),
(max-width:450px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px) {
    .dp-single-gallery .dp-gallery-content {
        padding: 20px 25px
    }
}

.dp-single-gallery:hover .dp-gallery-content {
    opacity: 1;
    visibility: visible;
    bottom: 20px
}

.dp-gallery-content {
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0% 100%)
}

.dp-gallery-content .dp-gallery-title {
    color: var(--clr-common-heading);
    margin-bottom: 8px;
    font-size: 18px
}

.dp-gallery-content .dp-gallery-title:hover a {
    color: var(--clr-common-color-red) !important
}

.dp-gallery-content span {
    font-size: 14px;
    line-height: 1;
    color: var(--clr-common-heading);
    text-transform: uppercase;
    display: block;
    font-weight: 400;
    font-family: oswald, sans-serif
}

.dp-gallery-nav {
    justify-content: end
}

@media(max-width:575px),
(max-width:450px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px) {
    .dp-gallery-nav {
        justify-content: flex-start;
        margin-bottom: 60px !important
    }
}

@media(max-width:575px),
(max-width:450px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px) {
    .gallery-section-title {
        margin-bottom: 40px
    }
}

.dp-gallery-link {
    margin-left: 15px
}

.dp-gallery-link a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    border: 1px solid #ddd;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    color: var(--clr-common-heading);
    transition: .3s
}

.dp-gallery-link a:hover {
    background-color: var(--clr-common-heading);
    border-color: var(--clr-common-heading);
    color: var(--clr-common-white)
}

.product-thumb {
    background: var(--clr-bg-2);
    border-radius: 10px;
    position: relative
}

.product-thumb img {
    width: 100%
}

.product-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    row-gap: 0
}

.product-wrapper>div {
    width: calc((100% - 60px)/3);
    text-align: center
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .product-wrapper>div {
        width: calc((100% - 30px)/2)
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-wrapper>div {
        width: calc((100% - 30px)/2)
    }
}

@media(max-width:450px) {
    .product-wrapper>div {
        width: calc((100% - 0px)/1)
    }
}

.rating {
    display: flex;
    gap: 5px
}

.rating a {
    font-size: 14px;
    color: var(--clr-common-color-red)
}

.product-name {
    font-size: 20px;
    text-transform: uppercase
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .product-name {
        font-size: 22px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-name {
        font-size: 20px
    }
}

.product-name a:hover {
    color: var(--clr-theme-2)
}

.product-price .price-old {
    color: #cfcfcf;
    text-decoration: line-through;
    font-size: 15px;
    margin-top: 2px
}

.product-description {
    padding: 30px 0
}

.product-description .rating {
    margin-bottom: 5px;
    justify-content: center
}

.product-description .product-name {
    margin-bottom: 18px
}

.product-description .product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-common-color-red);
    display: flex;
    gap: 5px;
    line-height: 1;
    justify-content: center
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-description .product-price {
        font-size: 18px
    }
}

.product-single {
    margin-bottom: 30px
}

.product-item-action {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    display: flex;
    gap: 12px;
    justify-content: center
}

.product-item-action a {
    display: inline-block;
    height: 45px;
    width: 45px;
    background: var(--clr-common-white);
    border-radius: 50%;
    color: #1c1d1b;
    line-height: 47px;
    transition: .3s;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, .08);
    transform: scaleX(0);
    text-align: center
}

.product-item-action a:hover {
    background: var(--clr-common-color-red);
    color: var(--clr-common-white)
}

.product-single:hover .product-item-action a {
    transform: scaleX(1)
}

.product-d-img-nav {
    width: 70px
}

.product-d-img-nav .nav-link {
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: #eaeaea;
    margin-bottom: 0
}

.product-d-img-nav .nav-link img {
    width: 100%
}

.product-d-img-nav .nav-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 0
}

.product-d-img-nav .nav-link.active {
    background-color: #eaeaea
}

.product-d-img-tab-wrapper {
    display: flex;
    gap: 20px;
    margin-inline-end: 20px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-d-img-tab-wrapper {
        margin-inline-end: 0
    }
}

.product-d-img-tab {
    flex-grow: 1
}

.product-d-img-tab .tab-pane {
    background: var(--clr-bg-2)
}

.product-d-img-tab .tab-pane img {
    width: 100%
}

.product-d-category {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    background: #ffe400;
    display: inline-block;
    height: 20px;
    line-height: 22px;
    border-radius: 4px;
    padding: 0 10px
}

.product-d-review {
    display: flex;
    gap: 5px
}

.product-d-review .rating a {
    color: #ffbf14
}

.product-d-review span {
    font-size: 14px
}

.product-category-review {
    display: flex;
    gap: 10px;
    margin-bottom: 3px;
    flex-wrap: wrap
}

.product-side-info .product-name {
    font-size: 26px;
    margin-bottom: 25px
}

.product-side-info .product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-theme-2);
    display: flex;
    gap: 5px;
    line-height: 1;
    align-items: end;
    margin-bottom: 20px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-side-info .product-price {
        font-size: 18px
    }
}

.product-side-info .product-price .price-old {
    font-size: 20px
}

.product-side-info .price-now {
    font-size: 30px;
    color: var(--clr-theme-2)
}


.product-d-meta {
    display: flex;
    gap: 10px
}

.product-d-meta span {
    font-size: 16px;
    text-transform: uppercase
}

.product-d-meta span:first-child {
    color: var(--clr-theme-1);
    font-weight: 700
}

.product-d-meta .social-links ul li a {
    color: #999
}

.product-d-meta .social-links ul li a:hover {
    color: var(--clr-theme-2)
}

.product-quantity-cart {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.product-quantity-cart .border-btn {
    height: 60px;
    border-width: 2px;
    padding: 0;
    width: 60px;
    line-height: 56px;
    border-radius: 10px;
    background: var(--clr-common-color-red)
}

.product-quantity-cart .border-btn:before,
.product-quantity-cart .border-btn:after {
    display: none
}

.product-quantity-cart .border-btn:hover {
    background: var(--clr-theme-1)
}

.product-quantity-cart .fill-btn {
    border-radius: 6px;
    height: 55px;
    line-height: 55px
}

.product-quantity-form .cart-minus,
.product-quantity-form .cart-plus {
    display: inline-block;
    height: 60px;
    width: 60px;
    background: #eaeaea;
    line-height: 58px;
    font-size: 18px;
    text-align: center;
    color: #222;
    cursor: pointer
}

.product-details-tab-wrapper {
    display: flex;
    gap: 40px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-details-tab-wrapper {
        flex-direction: column;
        gap: 0
    }
}

.product-details-content {
    flex-grow: 1
}

.product-details-nav .nav-tabs {
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-details-nav .nav-tabs {
        flex-direction: row;
        flex-wrap: wrap
    }
}

.product-details-nav .nav-link {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--clr-theme-1);
    padding: 0 28px;
    height: 60px;
    line-height: 60px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid #ebebeb;
    border-radius: 6px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-details-nav .nav-link {
        width: auto
    }
}

.product-details-nav .nav-link::hover {
    background: var(--clr-common-color-red);
    color: var(--clr-common-white);
    border-color: var(--clr-common-color-red)
}

.product-details-nav .nav-link.active {
    color: var(--clr-common-white);
    background: var(--clr-common-color-red);
    border-color: var(--clr-common-color-red)
}

.product-details-nav .nav-link .product__details-info ul li {
    display: flex;
    align-items: center;
    padding: 15px 30px
}

@media(max-width:575px) {
    .product-details-nav .nav-link .product__details-info ul li {
        padding: 15px
    }
}

.product__details-info ul li:nth-child(2n+1) {
    background: #f7f7f7
}

.product__details-info ul li h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    display: inline-block;
    width: 25%;
    text-transform: uppercase;
    min-width: 100px
}

.product__details-info ul li span {
    font-size: 16px
}

.course-review-item {
    display: flex;
    align-items: normal
}

.course-review-list {
    margin-inline-start: 20px
}

.course-review-list span {
    color: var(--clr-common-heading);
    margin-inline-start: 10px;
    font-size: 14px;
    font-weight: 400
}

.course-review-list h5 {
    text-transform: uppercase
}

.course-start-icon i {
    color: var(--clr-theme-1);
    font-size: 13px
}

.course-start-icon {
    margin-bottom: 10px
}

.comment-title h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase
}

.comment-title p {
    color: var(--clr-common-color-23)
}

.comment-rating span {
    font-size: 15px;
    color: var(--clr-common-color-23);
    margin-inline-end: 5px
}

.comment-rating ul li {
    display: inline-block
}

.comment-rating ul li a {
    font-size: 14px;
    color: var(--clr-theme-1)
}

.comment-rating ul {
    display: inline-block
}

.comment-agree input {
    margin: 0;
    appearance: none;
    display: inline-block;
    width: 18px;
    height: 18px;
    background: 0 0;
    border: 2px solid var(--clr-common-border);
    border-radius: 2px;
    outline: none
}

.comment-agree label {
    margin-inline-start: 5px;
    font-size: 15px;
    color: var(--clr-common-color-23)
}

.comment-agree input::placeholder {
    color: var(--clr-common-text);
    font-size: 14px;
    opacity: 1
}

.comment-input input {
    height: 60px;
    width: 100%;
    background: var(--clr-bg-3);
    border: none;
    padding: 15px 20px;
    border-radius: 4px;
    outline: 0
}

.comment-input input::placeholder {
    color: var(--clr-common-text);
    font-size: 14px;
    opacity: 1
}

.comment-textarea {
    height: 170px;
    width: 100%;
    background: var(--clr-bg-3);
    border: none;
    padding: 15px 20px;
    border-radius: 4px;
    resize: none;
    outline: 0
}

.comment-textarea::placeholder {
    color: var(--clr-common-text);
    font-size: 14px;
    opacity: 1
}

.product-available-sizes span {
    border: 1px solid var(--clr-common-border);
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 3px
}

.product-slider-area-btn {
    margin-bottom: 60px;
    text-align: right
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-slider-area-btn {
        text-align: left
    }
}

.style-5.product-slider-area-btn .border-btn {
    border-color: var(--clr-common-border-11);
    border-width: 2px;
    height: 60px;
    line-height: 56px;
    color: var(--clr-theme-2)
}

.style-5.product-slider-area-btn .border-btn:hover {
    border-color: var(--clr-theme-2);
    background: var(--clr-theme-2);
    color: var(--clr-common-white)
}

.style-2.product-single {
    border-radius: 10px;
    overflow: hidden
}

.style-2.product-single:hover .product-item-action {
    margin-bottom: 0;
    opacity: 1;
    visibility: visible
}

.style-2.product-single:hover .product-thumb img {
    transform: scale(1.05)
}

.style-2 .product-description {
    padding: 33px 0 37px;
    background: var(--clr-common-white);
    text-align: center
}

.style-2 .product-price {
    justify-content: center
}

.style-2 .product-name {
    font-size: 20px;
    margin-bottom: 13px
}

.style-2 .product-price {
    font-size: 18px;
    font-weight: 400
}

.style-2 .product-item-action a {
    font-size: 18px;
    color: var(--clr-common-white);
    width: auto;
    height: auto;
    line-height: inherit;
    background: 0 0;
    position: relative;
    transform: scaleX(1)
}

.style-2 .product-item-action a:hover {
    color: var(--clr-theme-2)
}

.style-2 .product-item-action a:not(:first-child)::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 18px;
    background: #254;
    left: -20px;
    top: 50%;
    transform: translateY(-50%)
}

.style-2 .product-thumb {
    overflow: hidden
}

.style-2 .product-item-action {
    display: inline-flex;
    background: var(--clr-bg-1);
    padding: 17px 23px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    gap: 40px;
    margin-inline-end: -23%;
    margin-bottom: -60px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    opacity: 0;
    visibility: hidden
}

.style-2 .product-batches {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    gap: 10px
}

.style-2 .batch-trending {
    width: 30px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--clr-theme-2);
    text-align: center;
    color: var(--clr-common-white);
    line-height: 45px;
    padding-top: 5px;
    border-radius: 0 0 15px 15px
}

.style-2 .product-batch {
    width: 60px;
    height: 60px;
    background: var(--clr-common-white);
    text-align: center;
    font-size: 14px;
    line-height: 60px;
    color: var(--clr-theme-1);
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50%
}

.style-2.featured-product-area {
    background: #f8f5f0;
    padding-top: 445px;
    margin-top: -325px;
    overflow: hidden
}

.style-2 .featured-product-active {
    overflow: visible
}

.style-2 .featured-product-active .swiper-slide {
    opacity: 0;
    visibility: hidden
}

.style-2 .featured-product-active .swiper-slide-active,
.style-2 .featured-product-active .swiper-slide-active~.swiper-slide {
    opacity: 1;
    visibility: visible
}

.featured-porduct-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .featured-porduct-nav {
        justify-content: flex-start
    }
}

.featured-nav-button {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 20px;
    color: var(--clr-theme-2);
    background: var(--clr-common-white);
    line-height: 60px;
    border-radius: 6px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.featured-nav-button:hover {
    background: var(--clr-bg-1);
    color: var(--clr-common-white)
}

.items-showing-text {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-theme-1)
}

.filter-buttons {
    display: flex;
    gap: 25px;
    justify-content: flex-end
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px) {
    .filter-buttons .nice-select .list {
        left: auto;
        right: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .filter-buttons {
        justify-content: start
    }
}

.filter-buttons .v-line {
    color: #dcdcdc
}

.filter-category-btn .btn {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--clr-theme-1);
    border: 0;
    padding: 0
}

.filter-category-btn .btn:focus {
    box-shadow: none
}

.filter-category-btn .btn i {
    color: var(--clr-theme-2);
    margin-inline-end: 10px
}

.filter-category-btn .dropdown-menu {
    border-color: var(--clr-theme-1)
}

.filter-item-btn .btn {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--clr-theme-1);
    border: 0;
    padding: 0
}

.filter-item-btn .btn:focus {
    box-shadow: none
}

.filter-item-btn .btn i {
    color: var(--clr-theme-2);
    margin-inline-start: 3px
}

.filter-item-btn .dropdown-menu {
    border-color: var(--clr-theme-1)
}

.filter-tab-btn {
    margin-inline-start: 5px
}

.filter-tab-btn .nav-tabs .nav-link {
    padding: 0;
    border-radius: 0;
    border: 0
}

.filter-tab-btn .nav-tabs {
    border: 0;
    display: flex;
    gap: 16px
}

.cart-area .table-content table {
    background: var(--clr-common-white) fff;
    border-color: #edeef2;
    border-radius: 0;
    border-style: solid;
    border-width: 1px 0 0 1px;
    text-align: center;
    width: 100%;
    margin-bottom: 0
}

.cart-area .table-content .product-quantity {
    float: none
}

.cart-area .table-content table td.product-name {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize
}

.cart-area .table>:not(:last-child)>:last-child>* {
    border-bottom-color: #edeef2
}

.cart-area .table-content table td.product-name a:hover {
    color: var(--clr-common-heading)
}

.cart-area .table-content table td {
    border-top: medium;
    padding: 20px 10px;
    vertical-align: middle;
    font-size: 16px
}

.cart-area .table-content table th,
.cart-area .table-content table td {
    border-bottom: 1px solid #edeef2;
    border-right: 1px solid #edeef2
}

.cart-area .table td,
.cart-area .table th {
    border-top: 1px solid #edeef2;
    white-space: nowrap
}

.cart-area .table-content table td.product-subtotal {
    font-size: 16px
}

.cart-area .table-content table td .cart-plus-minus {
    float: none;
    margin: 0 auto
}

.cart-area .coupon-all {
    margin-top: 50px
}

.cart-area .coupon {
    float: left;
    gap: 15px;
    flex-wrap: wrap
}

@media(max-width:767px) {
    .cart-area .coupon {
        float: none
    }
}

.cart-area #coupon_code {
    height: 50px;
    border: 1px solid #edeef2;
    padding: 0 15px;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.cart-area #coupon_code:focus {
    border-color: var(--clr-common-heading)
}

.cart-area .coupon2 {
    float: right
}

@media(max-width:767px) {
    .cart-area .coupon2 {
        float: none;
        margin-top: 15px
    }
}

.cart-area .cart-page-total {
    padding-top: 50px
}

.cart-area .cart-page-total .fill-btn {
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%)
}

.cart-area .cart-page-total>h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: capitalize
}

.cart-area .cart-page-total>ul {
    border: 1px solid #edeef2
}

.cart-area .cart-page-total>ul>li {
    list-style: none;
    font-size: 15px;
    color: var(--clr-common-border-6);
    padding: 14px 30px;
    border-bottom: 1px solid #edeef2;
    font-weight: 400
}

.cart-area .cart-page-total ul>li>span {
    float: right
}

.cart-area .cart-page-total li:last-child {
    border-bottom: 0
}

.cart-area td.product-thumbnail img {
    width: 125px
}

.cart-area .cart-plus {
    left: auto;
    right: 0
}

.cart-area .cart-input {
    height: 58px;
    width: 32px;
    text-align: center;
    font-size: 14px;
    border: none;
    display: inline-block;
    vertical-align: middle;
    margin: 0 -3px;
    padding-bottom: 4px;
    background: 0 0
}

.cart-area .cart-input:focus {
    outline: none
}

.cart-area .coupon .fill-btn {
    height: 50px;
    line-height: 48px;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%)
}

.cart-area .coupon2 .fill-btn {
    height: 50px;
    line-height: 48px;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%)
}

.product-quantity a {
    white-space: nowrap
}

.product-quantity .fill-btn {
    white-space: nowrap;
    clip-path: polygon(6% 0, 100% 0, 96% 100%, 0 100%);
    height: 53px;
    line-height: 53px;
    padding: 0 32px
}

.coupon-accordion h3 {
    border-top: 3px solid var(--clr-common-heading);
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 25px;
    padding: 1em 2em 1em 3.5em;
    position: relative;
    width: auto;
    background: var(--clr-bg-2)
}

.coupon-accordion h3::before {
    content: "\f07b";
    left: 15px;
    top: 13px;
    position: absolute;
    color: var(--clr-common-border-6);
    font-family: "font awesome 5 pro";
    font-weight: 700
}

.coupon-accordion span {
    color: var(--clr-common-border-6);
    cursor: pointer;
    transition: .3s;
    font-weight: 500
}

.coupon-accordion span:hover,
p.lost-password a:hover {
    color: var(--clr-common-heading)
}

.coupon-content {
    border: 1px solid var(--clr-common-border);
    display: none;
    margin-bottom: 20px;
    padding: 30px
}

.coupon-info p.coupon-text {
    margin-bottom: 15px
}

.coupon-info p {
    margin-bottom: 0
}

.coupon-info p.form-row-first label,
.coupon-info p.form-row-last label {
    display: block;
    color: var(--clr-common-heading)
}

.coupon-info p.form-row-first label span.required,
.coupon-info p.form-row-last label span.required {
    color: var(--clr-common-heading);
    font-weight: 700
}

.coupon-info p.form-row-first input,
.coupon-info p.form-row-last input {
    border: 1px solid var(--clr-common-border);
    height: 60px;
    line-height: 60px;
    margin: 0 0 14px;
    max-width: 100%;
    padding: 0 0 0 10px;
    width: 100%;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.coupon-info p.form-row-first input:focus,
.coupon-info p.form-row-last input:focus {
    border-color: var(--clr-common-heading)
}

.coupon-info p.form-row input[type=submit]:hover,
p.checkout-coupon input[type=submit]:hover {
    background: var(--clr-bg-1) none repeat scroll 0 0
}

.coupon-info p.form-row input[type=checkbox] {
    position: relative;
    top: 0
}

.form-row>label {
    margin-top: 15px;
    margin-inline-start: 15px;
    color: var(--clr-common-border-6)
}

.buttons-cart input,
.coupon input[type=submit],
.buttons-cart a,
.coupon-info p.form-row input[type=submit] {
    background: #252525 none repeat scroll 0 0;
    border: medium;
    color: var(--clr-common-white);
    display: inline-block;
    float: left;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    margin-inline-end: 15px;
    padding: 0 15px;
    text-transform: uppercase;
    transition: all .3s ease 0s
}

p.lost-password {
    margin-top: 15px
}

p.lost-password a {
    color: #6f6f6f
}

p.checkout-coupon input[type=text] {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    width: 100%;
    border: 1px solid var(--clr-common-border);
    margin-bottom: 15px;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

p.checkout-coupon input[type=text]:focus {
    border-color: var(--clr-common-border)
}

.coupon-checkout-content {
    display: none
}

.checkbox-form .ship-different-title {
    border-bottom: 1px solid var(--clr-common-border);
    margin: 0 0 20px;
    padding-bottom: 10px;
    width: 100%
}

.checkbox-form h3 {
    text-transform: uppercase
}

.country-select {
    margin-bottom: 30px;
    position: relative
}

.country-select select {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--clr-common-border);
    padding: 0 10px;
    height: 50px
}

.country-select label,
.checkout-form-list label {
    color: var(--clr-common-heading);
    display: block;
    margin-bottom: 10px
}

.country-select label span.required,
.checkout-form-list label span.required {
    color: var(--clr-common-heading)
}

.country-select .nice-select {
    border: 1px solid var(--clr-common-border);
    height: 60px;
    line-height: 60px;
    padding-left: 20px;
    width: 100%;
    color: var(--clr-common-border-6);
    margin-bottom: 20px;
    border-radius: 0
}

.country-select .nice-select .list {
    width: 100%
}

.checkout-form-list {
    margin-bottom: 30px
}

.checkout-form-list label {
    color: var(--clr-common-heading)
}

.checkout-form-list input[type=text],
.checkout-form-list input[type=password],
.checkout-form-list input[type=email] {
    background: var(--clr-common-white) fff;
    border: 1px solid var(--clr-common-border);
    border-radius: 0;
    height: 60px;
    line-height: 60px;
    padding: 0 0 0 20px;
    width: 100%;
    outline: none;
    -webkit-box-shadow: none;
    -moz-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(--clr-common-border)
}

.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: var(--clr-common-border-6);
    opacity: 1
}

.checkout-form-list input[type=text]::placeholder,
.checkout-form-list input[type=password]::placeholder,
.checkout-form-list input[type=email]::placeholder {
    color: var(--clr-common-border-6);
    opacity: 1
}

.checkout-form-list input[type=checkbox] {
    display: inline-block;
    margin-inline-end: 10px;
    position: relative;
    top: 1px
}

.create-acc label {
    color: var(--clr-common-border-6);
    display: inline-block
}

.create-account {
    display: none
}

.ship-different-title label {
    display: inline-block;
    margin-inline-end: 10px
}

.order-notes textarea {
    border: 1px solid var(--clr-common-border);
    height: 90px;
    padding: 15px;
    width: 100%;
    resize: none;
    padding-left: 20px;
    outline: none
}

.order-notes textarea::-moz-placeholder {
    color: var(--clr-common-border-6);
    opacity: 1
}

.order-notes textarea::placeholder {
    color: var(--clr-common-border-6);
    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: 2px solid var(--clr-common-border)
}

@media(max-width:767px) {
    .your-order {
        padding: 15px
    }
}

.your-order h3 {
    border-bottom: 1px solid var(--clr-common-border);
    font-size: 24px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    width: 100%;
    text-transform: uppercase
}

.your-order-table table {
    background: 0 0;
    border: 0;
    width: 100%
}

.your-order-table table th,
.your-order-table table td {
    border-bottom: 1px solid var(--clr-common-border);
    border-right: medium;
    color: var(--clr-common-border-6);
    font-size: 16px;
    padding: 15px 0;
    text-align: left
}

@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;
    color: var(--clr-common-heading);
    font-weight: 400;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    width: 250px
}

.panel-body>p {
    color: #222
}

.your-order-table table .shipping ul li input {
    position: relative;
    top: 0
}

.your-order-table table .shipping ul li label {
    color: var(--clr-common-border-6)
}

.your-order-table table .shipping th {
    vertical-align: top
}

.your-order-table table .order-total th {
    border-bottom: 0
}

.your-order-table table .order-total td {
    border-bottom: medium
}

.your-order-table table tr.cart_item:hover {
    background: #f9f9f9
}

.your-order-table table tr.order-total td span {
    color: var(--clr-common-heading);
    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: var(--clr-common-white);
    border: 0;
    border-bottom: 1px solid var(--clr-common-border)
}

.payment-method .accordion-button {
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-common-heading);
    padding: 23px 0;
    border: none
}

.payment-method .accordion-button:focus {
    -webkit-box-shadow: none;
    -moz-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%);
    transform: translateY(-50%);
    font-family: "font awesome 5 pro";
    font-size: 16px;
    font-weight: 400;
    margin-inline-start: 0;
    background-image: none
}

.payment-method .accordion-button:not(.collapsed) {
    color: var(--clr-common-heading);
    background-color: var(--clr-common-white);
    box-shadow: none
}

.payment-method .accordion-button:not(.collapsed)::after {
    content: "\f068"
}

.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;
    color: var(--clr-common-white);
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    margin: 0 0 0;
    padding: 0;
    text-transform: uppercase;
    transition: all .3s ease 0s;
    width: 100%
}

.order-button-payment input:hover {
    background: var(--clr-bg-1) none repeat scroll 0 0
}

.payment-method .btn-link {
    user-select: none;
    -moz-user-select: none;
    background: no-repeat;
    border: medium;
    border-radius: 0;
    color: #444;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0;
    padding: 3px 10px;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    text-decoration: none
}

.payment-method .card {
    background-color: var(--clr-common-white) fff;
    border: 1px solid var(--clr-common-border);
    border-radius: 0;
    margin-bottom: 10px
}

.payment-method .accordion .card:first-of-type {
    border: 1px solid var(--clr-common-border)
}

.card-header:first-child {
    border-radius: 0
}

.payment-method .card-header {
    background-color: var(--clr-common-white) fff;
    border-bottom: 1px solid var(--clr-common-border)
}

.order-button-payment button {
    width: 100%
}

.product-details-img {
    margin-inline-end: 50px
}

@media(max-width:575px) {
    .product-details-img {
        margin-inline-end: 0
    }
}

.product-details-img img {
    width: 100%
}

.product-side-info .product-name {
    font-size: 26px
}

.product-side-info .product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-theme-1)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product-side-info .product-price {
        font-size: 18px
    }
}

.product-side-info p {
    margin-bottom: 40px
}

.product-quantity-cart {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.product-quantity-form .cart-input {
    height: 55px;
    width: 70px;
    padding: 0 14px;
    border: 1px solid #ebebeb;
    text-align: center
}

.product-quantity-form .cart-plus {
    height: 55px;
    width: 55px;
    border: none
}

.product-quantity-form .cart-minus {
    height: 55px;
    width: 55px;
    border: none
}

.product-quantity-form form {
    display: flex;
    gap: 3px;
    align-items: center;
    justify-content: center
}

.sidebar-action {
    background: var(--clr-common-white);
    height: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    width: 390px;
    padding: 30px;
    transition: .6s;
    overflow-y: scroll
}

@media(max-width:575px) {
    .sidebar-action {
        width: 320px
    }
}

.close-sidebar {
    background: var(--clr-bg-1);
    display: flex;
    align-items: center;
    gap: 10px;
    height: 30px;
    padding: 0 10px;
    border-radius: 4px;
    color: var(--clr-common-white);
    position: absolute;
    right: 30px;
    top: 30px
}

.sidebar-cart {
    right: -100%
}

.sidebar-cart.cart-open {
    right: 0
}

.sidebar-wishlist {
    right: -100%
}

.sidebar-wishlist.wishlist-open {
    right: 0
}

.sidebar-filter {
    right: -100%
}

.sidebar-filter.filter-open {
    right: 0
}

.sidebar-filter .product-filters {
    padding: 0
}

.sidebar-filter .filter-widget-title {
    font-size: 18px
}

.sidebar-action-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.sidebar-list-item {
    display: flex;
    gap: 20px
}

.sidebar-action-btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.sidebar-action-btn a {
    width: 100%;
    flex-wrap: wrap;
    white-space: nowrap
}

.sidebar-action-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.product-pricing span {
    font-size: 15px;
    font-weight: 500;
    color: var(--clr-common-heading);
    line-height: 1
}

.sidebar-list-item {
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--clr-common-border);
    padding-top: 20px;
    position: relative;
    padding-right: 20px
}

.sidebar-list-item .product-image {
    min-width: 90px;
    height: 80px
}

.sidebar-list-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sidebar-list-item .product-desc {
    padding: 0 0
}

.sidebar-list-item .product-name {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--clr-theme-1);
    font-weight: 600
}

.sidebar-list-item .remove-item {
    position: absolute;
    right: 0;
    top: 20px;
    color: var(--clr-common-heading)
}

.product-price-total {
    padding-top: 20px;
    border-top: 1px solid var(--clr-common-border);
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px
}

.product-price-total span {
    color: var(--clr-common-heading);
    font-weight: 500
}

.sidebar-action-btn a {
    flex-grow: 1;
    height: 60px;
    line-height: 58px;
    border-radius: 10px
}

.sidebar-action-btn .border-btn:before,
.sidebar-action-btn .border-btn:after {
    background: var(--clr-bg-1)
}

.shop-social-link ul {
    display: flex;
    gap: 16px
}

.comment-submit .fill-btn {
    height: 55px;
    line-height: 55px;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%)
}

h6.product-widget-title {
    font-size: 20px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #012863
}

h6.product-widget-title::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #db1c29
}

.product-categories li:not(:last-child) {
    margin-bottom: 15px
}

.product-categories li a {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--clr-common-color-25);
    transition: .3s;
    padding-left: 20px
}

.product-categories li a::before {
    position: absolute;
    content: "\f054";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "font awesome 5 pro";
    font-size: 14px;
    color: var(--clr-common-color-red-2);
    transition: all .3s ease-out 0s
}

.product-categories li a:hover {
    color: var(--clr-common-color-red-2)
}

.product-categories li a:hover::before {
    left: 5px
}

.ui-widget.ui-widget-content {
    border: none
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%
}

.ui-slider .ui-slider-handle {
    height: 15px;
    width: 15px;
    transition: all 0s linear 0s
}

.ui-slider-horizontal .ui-slider-handle {
    top: -5px
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    background: var(--clr-common-color-red);
    border-radius: 50%;
    border: none;
    outline: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .004)
}

.ui-slider .ui-slider-handle::before {
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    background: var(--clr-common-color-red);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.slider-range p {
    font-size: 15px;
    color: var(--clr-common-border-6);
    font-weight: 500;
    margin-top: 10px
}

.slider-range p label {
    margin-top: 7px;
    font-size: 15px;
    color: var(--clr-common-border-6);
    font-weight: 500
}

.slider-range input {
    font-size: 14px;
    font-weight: 600;
    color: #1c1d1b;
    border: none;
    outline: none;
    background: 0 0;
    margin-left: 10px;
    width: 100px
}

.ui-widget-content {
    background: var(--clr-common-border-11);
    color: var(--clr-common-color-24)
}

.ui-slider-horizontal {
    height: 6px
}

.ui-widget-header {
    background: var(--clr-common-color-red)
}

.ui-slider-horizontal .ui-slider-handle {
    margin-left: 0
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-radius: 0
}

.product-widgets ul.product_list_widget li:not(:last-child) {
    margin-bottom: 15px
}

.product_list_widget li a {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: var(--clr-common-color-25);
    transition: .3s
}

ul.product_list_widget img {
    width: 75px;
    height: 75px;
    margin-right: 15px;
    background: var(--clr-bg-2);
    overflow: hidden;
    float: left;
    border-radius: 5px
}

.product-widget-title {
    font-size: 17px;
    margin-bottom: 3px;
    margin-top: 1px;
    color: #012863
}

.product_list_widget .woocommerce-Price-amount.amount {
    color: var(--clr-common-color-red-2);
    font-weight: 700
}

.product-single span.onsale {
    background: var(--clr-common-color-red-2);
    color: var(--clr-common-white);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    text-align: center;
    z-index: 9;
    display: block;
    padding: 7px 12px;
    border-radius: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    top: 15px;
    left: 15px;
    line-height: 1
}

.dp-related-product-active .product-description .product-name {
    text-align: center
}

.product__modal {
    max-width: 600px;
    padding: 20px;
    padding-top: 27px
}

.product__modal-close {
    top: 15px;
    right: 15px;
    z-index: 1
}

.product__modal-close button {
    color: var(--clr-theme-1);
    display: block;
    line-height: 36px;
    text-align: center;
    width: 38px;
    height: 38px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid #ebebeb;
    outline: none
}

.product__modal-close button:hover {
    color: var(--clr-common-white);
    background: var(--clr-theme-1);
    border-color: var(--clr-theme-1)
}

.product__modal-wrapper {
    padding: 20px
}

.product__modal-content h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: none;
    padding: 0;
    padding-right: 0;
    margin: 0;
    margin-bottom: 0;
    padding-right: 65px;
    margin-bottom: 15px;
    text-transform: uppercase
}

.product__modal-des p {
    font-size: 14px;
    line-height: 26px
}

.product__modal-box .nav-tabs {
    border-bottom: 0
}

.product__modal-box .nav-link {
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none
}

.product__modal-links ul li {
    display: inline-block;
    margin-inline-end: 4px
}

.product__modal-links ul li a {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 48px;
    background: var(--clr-common-white);
    border: 1px solid #ebebeb;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    color: var(--clr-theme-1)
}

.product__modal-links ul li a:hover {
    color: var(--clr-common-white);
    background: var(--clr-theme-1);
    border-color: var(--clr-theme-1)
}

.product__modal .nav-tabs {

    border: none;
    justify-content: space-between
}

.product__modal .nav-link {
    border: 1px solid #f0f0f0;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 5px
}

.product__modal .nav-link::before {
    display: none
}

.product__modal .nav-link.active {
    border-color: var(--clr-theme-1) !important
}

.product__modal .nav-link.active::after {
    position: absolute;
    content: "";
    top: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: transparent;
    border-bottom-color: var(--clr-theme-1)
}

.product__modal-form .product-quantity .cart-plus-minus input {
    height: 60px;
    line-height: 60px;
    border-radius: 0
}

.product__modal-box .tab-content {
    margin-bottom: 20px
}

.product__stock span {
    font-size: 14px;
    color: #777;
    text-transform: uppercase
}

.product__stock span:first-child {
    color: var(--clr-theme-1);
    padding-right: 5px;
    font-weight: 700
}

.product__price span {
    color: var(--clr-theme-1);
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 22px
}

.product__add-review span a {
    position: relative;
    padding-right: 10px;
    margin-inline-end: 10px;
    color: var(--clr-theme-1)
}

.product__add-review span a::after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: var(--clr-bg-1)
}

.product__add-review span a:hover {
    color: var(--clr-theme-1)
}

.product__add-review span:last-child a::after {
    display: none
}

.rating__shop ul {
    display: flex;
    gap: 4px
}

.product__modal-box .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.product__modal-box .nav-tabs .nav-item {
    width: calc((100% - 60px)/4)
}

.product__modal .nav-link img {
    width: 100%
}

.product__modal-img {
    background: var(--clr-bg-2)
}

.product__modal-des.mb-40 {
    margin-bottom: 20px
}

.product__stock.sku.mb-30 {
    margin-bottom: 20px
}

.dp-awards-wrapper {
    position: relative
}

.dp-awards-wrapper:hover .dp-award-thumb:before {
    opacity: 1;
    transform: perspective(600px) rotateY(0deg)
}

.dp-awards-wrapper:hover .dp-awards-content {
    opacity: 1;
    visibility: visible
}

.dp-award-thumb {
    background: #ddd;
    padding: 15px
}

.dp-award-thumb img {
    width: 100%
}

.dp-award-thumb:before {
    position: absolute;
    content: "";
    height: calc(100% - 30px);
    background: #012863;
    opacity: 0;
    transform: perspective(600px) rotateY(20deg);
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 6px
}

.dp-awards-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    text-align: center
}

@media(max-width:575px),
only screen and (min-width:1200px) and (max-width:1399px) {
    .dp-awards-content {
        padding: 25px
    }
}

.dp-awards-content h3 {
    color: var(--clr-common-white);
    margin-bottom: 20px;
    font-size: 24px
}

@media(max-width:575px),
only screen and (min-width:1200px) and (max-width:1399px) {
    .dp-awards-content h3 {
        font-size: 20px
    }
}

@media(max-width:450px) {
    .dp-awards-content h3 {
        margin-bottom: 10px
    }
}

.dp-awards-content p {
    color: var(--clr-common-white);
    margin-bottom: 0
}

.career-area {
    display: none
}

.career-bg {
    background-color: transparent;
    background-image: linear-gradient(180deg, #F7F7F7 0%, #F7F7F7 100%)
}

.career-single-item {
    background: var(--clr-common-white);
    padding: 50px 50px 46px;
    clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%)
}

.career-single-item span>a {
    background-color: var(--clr-common-color-red);
    color: #fbfdff;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 11px;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block
}

.career-content h3 a {
    font-size: 24px;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--clr-common-heading)
}

@media(max-width:575px) {
    .career-content h3 a {
        font-size: 20px
    }
}

.career-content h3 a:hover {
    color: var(--clr-common-color-red)
}

.career-content p {
    margin-bottom: 30px
}

.career-cta-area {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.career-cta-wrapper {
    max-width: 470px;
    background: var(--clr-common-color-red);
    padding: 70px 60px 75px;
    margin-right: 20px;
    margin-left: 80px
}

@media(max-width:575px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:992px) and (max-width:1199px) {
    .career-cta-wrapper {
        margin-right: 0;
        margin-left: 0
    }
}

@media(max-width:575px) {
    .career-cta-wrapper {
        padding: 50px 30px 55px
    }
}

.career-cta-content h3 {
    font-size: 30px;
    color: var(--clr-common-white);
    margin-bottom: 25px
}

@media(max-width:575px) {
    .career-cta-content h3 {
        font-size: 26px
    }
}

.career-cta-content p {
    margin-bottom: 25px;
    color: var(--clr-common-white)
}

.job-wrapper {
    border: 1px solid #ebebeb;
    padding: 45px 50px;
    background: #fff;
    position: relative;
    border-radius: 6px
}

@media(max-width:575px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:992px) and (max-width:1199px) {
    .job-wrapper {
        padding: 45px 30px
    }
}

.job-instructor-profile {
    display: flex;
    gap: 20px
}

@media(max-width:450px) {
    .job-instructor-profile {
        flex-wrap: wrap;
        flex-direction: column
    }
}

div.job-tag span {
    background: #f5f7fc;
    margin-right: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--clr-common-heading);
    line-height: 1;
    min-height: 25px
}

.job-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.job-meta span i {
    color: var(--clr-common-color-red)
}

.job-meta a:hover span {
    color: var(--clr-common-color-red)
}

.job-instructor-title span {
    color: #667488;
    font-size: 14px
}

.job-btn {
    height: 50px;
    display: inline-flex;
    background-color: var(--clr-common-heading);
    padding: 0 30px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-common-white);
    text-transform: capitalize;
    border-radius: 6px
}

.job-btn:hover {
    background: var(--clr-common-color-red);
    color: var(--clr-common-white)
}

.job-instructor-title h3 a {
    display: inline-block;
    font-size: 24px;
    color: var(--clr-common-heading)
}

@media(max-width:575px) {
    .job-instructor-title h3 a {
        font-size: 20px
    }
}

.job-instructor-title h3 a:hover {
    color: var(--clr-common-color-red)
}

.job-instructor-title span i {
    color: var(--clr-common-color-red);
    margin-right: 5px;
    font-size: 18px
}

.career-cta-content .job-btn {
    background: var(--clr-common-white);
    color: var(--clr-common-heading)
}

.career-cta-content .job-btn:hover {
    background: var(--clr-common-heading);
    color: var(--clr-common-white)
}

.location-1 {
    top: 25%;
    left: 9%
}

@media(max-width:450px) {
    .location-1 {
        left: 33%
    }
}

.location-2 {
    left: 35%;
    top: 0
}

.location-3 {
    top: 60px;
    right: 20%
}

@media(max-width:450px) {
    .location-3 {
        right: 30%
    }
}

.location-4 {
    left: 20%;
    bottom: 110px
}

@media(max-width:450px) {
    .location-4 {
        left: 33%
    }
}

.location-5 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.location-6 {
    right: 30%;
    bottom: 80px
}

.location-7 {
    right: 90px;
    bottom: 130px
}

.location-text span {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500
}

.location-map-bg {
    min-height: 520px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative
}

.location-item {
    position: absolute;
    align-items: center;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.location-icon {
    display: inline-block;
    cursor: pointer
}

.location-item.active .location-content {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0px)
}

.location-counrty {
    width: 58px;
    height: 58px;
    min-width: 58px
}

.location-counrty img {
    width: 100%;
    border-radius: 50%;
    height: 100%
}

.location-content {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 4px 74px rgba(0, 0, 0, .08);
    border-radius: 100px;
    min-width: 200px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    visibility: hidden;
    z-index: 55
}

.loaction-box {
    padding: 40px 35px;
    border: 1px solid var(--clr-common-border-2)
}

@media(max-width:575px),
only screen and (min-width:1200px) and (max-width:1399px) {
    .loaction-box {
        padding: 40px 30px
    }
}

.country-tab .nav-tabs {
    border-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.country-tab .nav-tabs .nav-link {
    border: 0;
    border: 2px solid var(--clr-common-border-2);
    padding: 0 30px;
    height: 60px;
    border-radius: 0
}

.country-tab .nav-tabs .nav-link:hover {
    border: 2px solid var(--clr-common-border-2);
    color: var(--clr-common-heading)
}

.country-tab .nav-tabs .nav-link.active {
    background-color: var(--clr-common-color-red);
    color: var(--clr-common-white);
    border-color: var(--clr-common-color-red)
}

.country-tab .nav-link {
    font-family: oswald, sans-serif !important;
    font-weight: 600;
    padding: 0;
    padding: 0;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--clr-common-heading);
    font-weight: 700
}

.country-tab .nav-link:hover {
    color: var(--clr-common-red)
}

.laction-county ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.laction-county ul li {
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    gap: 10px
}

.laction-county ul li span:hover {
    color: var(--clr-common-color-red)
}

.office-wrapper {
    display: flex;
    gap: 35px;
    padding: 50px 45px;
    background: var(--clr-common-white)
}

@media(max-width:575px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:768px) and (max-width:991px) {
    .office-wrapper {
        margin-left: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .office-wrapper {
        flex-wrap: wrap;
        flex-direction: column
    }
}

.office-map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10px;
    z-index: -1
}

.office-item {
    position: relative;
    padding-right: 37px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .office-item {
        padding-right: 0
    }
}

.office-item:after {
    position: absolute;
    content: "";
    height: 85%;
    width: 1px;
    border: 1px solid var(--clr-common-border-2);
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .office-item:after {
        display: none
    }
}

.office-item:last-child {
    padding-right: 0
}

.office-item:last-child::after {
    display: none
}

.office-item h4 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--clr-common-heading)
}

@media(max-width:575px) {
    .office-item h4 {
        font-size: 20px
    }
}

.office-content .singel-addresss {
    margin-bottom: 10px
}

.office-content .singel-addresss:last-child {
    margin-bottom: 0
}

.office-content a {
    display: block
}

.office-content a:last-child {
    margin-bottom: 0
}

.office-content a i {
    margin-right: 10px
}

.singel-addresss {
    display: flex;
    gap: 15px
}

.partner-thumb {
    margin-bottom: 30px
}

.partner-thumb img {
    max-width: 130px
}

.partner-item {
    text-align: center;
    border: 1px solid var(--clr-common-border-4);
    padding: 40px 35px
}

@media(max-width:575px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:1200px) and (max-width:1399px) {
    .partner-item {
        padding: 35px 25px 30px
    }
}

.partner-content h3 a {
    font-size: 24px;
    display: block;
    margin-bottom: 20px;
    color: var(--clr-common-heading)
}

.partner-content h3 a:hover {
    color: var(--clr-common-color-red)
}

@media(max-width:575px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:1200px) and (max-width:1399px) {
    .partner-content h3 {
        font-size: 20px
    }
}

.partner-content p {
    margin-bottom: 0
}

.order__form-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.order__form-button span {
    font-family: oswald, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--clr-common-heading)
}

.order__form-button i {
    font-size: 20px;
    color: var(--clr-common-heading);
    margin-right: 8px
}

.product__data label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    color: var(--clr-common-heading)
}

.product__data input {
    width: 100%;
    padding: 0 18px;
    height: 51px;
    border: 2px solid var(--clr-common-border-2);
    margin-bottom: 20px
}

.pr-select {
    width: 100%;
    height: 51px;
    margin-bottom: 20px
}

.pr-select .current {
    color: var(--clr-common-placeholder);
    font-size: 16px !important;
    opacity: 1;
    text-transform: uppercase;
    font-family: oswald, sans-serif
}

.pr-select .nice-select {
    height: 51px;
    line-height: 49px;
    width: 100%;
    border: 2px solid var(--clr-common-border-2);
    border-radius: 0
}

.pr-select .nice-select .list {
    width: 100%
}

.product__check {
    display: flex;
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 20px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .product__check {
        column-gap: 30px;
        row-gap: 8px
    }
}

.quote-tab .nav {
    flex-direction: column;
    display: flex;
    gap: 20px
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .quote-tab .nav {
        flex-direction: row
    }
}

.quote-tab .nav-tabs {
    border-bottom: 0
}

.quote-tab .nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 2px solid var(--clr-common-border-2);
    border-radius: 0;
    border-color: var(--clr-common-border-2)
}

.quote-tab .nav-tabs .nav-link.active {
    background: var(--clr-common-heading);
    color: var(--clr-common-white)
}

.quote-tab .nav-tabs .nav-link.active i {
    color: var(--clr-common-white)
}

.quote-tab .nav-tabs .nav-link.active .order__form-button span {
    color: var(--clr-common-white)
}

.quote-tab .nav-link {
    padding: 20px 30px;
    width: 100%
}

.check-item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--clr-common-color-2)
}

.check-item label span {
    font-weight: 500;
    line-height: 1;
    color: var(--clr-common-heading);
    text-transform: capitalize
}

input.e-check-input {
    margin: 0;
    appearance: none;
    -moz-appearance: none;
    display: block;
    width: 15px;
    min-width: 15px;
    height: 15px;
    background: var(--clr-common-white);
    border: 1px solid #b9bac1;
    outline: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer
}

input.e-check-input:checked {
    position: relative;
    background-color: var(--clr-theme-1);
    border-color: transparent
}

input.e-check-input:checked::after {
    box-sizing: border-box;
    content: "\f00c";
    position: absolute;
    font-family: "font awesome 5 pro";
    font-size: 10px;
    color: var(--clr-common-white);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: 500
}

.product__data textarea {
    width: 100%;
    padding: 10px 18px;
    height: 150px;
    border: 2px solid #eaeaea;
    margin-bottom: 20px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer__padd-1 {
        padding-top: 280px
    }
}

@media(max-width:575px) {
    .footer__padd-1 {
        padding-top: 265px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer__padd-2 {
        padding-bottom: 50px
    }
}

.footer-area1-bg {
    background: #3e4344
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .footer-area1 {
        padding-bottom: 80px
    }
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-area--86 {
        margin-top: -86px
    }
}

.footer-widget-title {
    margin-bottom: 30px
}

.footer-widget-title h4 {
    color: var(--clr-common-white);
    font-size: 20px
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-widget-title {
        margin-bottom: 30px
    }
}

.footer-photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    max-width: 400px
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .footer-photo-gallery {
        grid-gap: 10px
    }
}

@media(max-width:575px) {
    .footer-photo-gallery {
        grid-gap: 15px
    }
}

@media(max-width:450px) {
    .footer-photo-gallery {
        grid-gap: 10px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .footer-photo-gallery {
        grid-template-columns: repeat(2, 1fr)
    }
}

.footer-widget {
    margin-top: -5px
}

.footer-widget a:hover{
color:#fff;
}

.footer-widget p {
    color: #fff
}

.footer-widget .footer-widget-link {
    display: grid;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .footer-widget .footer-widget-link {
        grid-template-columns: 140px 1fr
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .footer-widget .footer-widget-link {
        grid-template-columns: 100px 1fr
    }
}

@media(max-width:575px) {
    .footer-widget .footer-widget-link {
    }
}

@media(max-width:450px) {
    .footer-widget .footer-widget-link {
    }
}

.footer-widget .footer-widget-link li {
    margin-bottom: 22px;
    line-height: 1
}

.footer-widget .footer-widget-link li:last-child {
    margin-bottom: 0
}

.footer-widget .footer-widget-link li a {
    font-size: 16px;
    color: #fff;
    position: relative
}

.footer-widget .footer-widget-link li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-common-border-3)
}

.footer-widget .footer-widget-link li:hover {
    color: var(--clr-common-white)
}

.footer-widget .footer-widget-link li:hover a {
    color: var(--clr-common-white)
}

.footer-widget .footer-widget-link li:hover a::before {
    width: 100%
}

.footer-widget .footer-widget-link-2 {
    display: block;
    line-height: 1
}

.footer-widget .footer-widget-link-2 li {
    margin-bottom: 20px
}

.footer-widget .footer-widget-link-2 li:last-child {
    margin-bottom: 0
}

.footer-widget .footer-widget-link-2 li a {
    color: var(--clr-common-white);
    position: relative
}

.footer-widget .footer-widget-link-2 li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-common-border-3)
}

.footer-widget .footer-widget-link-2 li i {
    color: var(--clr-common-white);
    opacity: .2;
    margin-right: 20px
}

.footer-widget .footer-widget-link-2 li:hover i {
    opacity: 1
}

.footer-widget .footer-widget-link-2 li:hover a::before {
    width: 100%
}

.footer-widget .footer-photo-item img {
    width: 100%
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-widget {
        padding: 0
    }
}

@media(max-width:575px) {
    .footer1-widget1,
    .footer2-widget1,
    .footer3-widget1,
    .footer1-widget3,
    .footer2-widget3,
    .footer3-widget3 {
        margin-bottom: 20px
    }
}

.subscribe-form {
    position: relative
}

.subscribe-form .s-clip {
    background: var(--clr-common-white);
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%)
}

.subscribe-form .s-input i {
    color: var(--clr-common-heading);
    position: absolute;
    top: 22px;
    left: 24px;
    bottom: 0
}

@media(max-width:575px) {
    .subscribe-form .s-input i {
        left: 40px
    }
}

@media(max-width:450px) {
    .subscribe-form .s-input i {
        left: 20px
    }
}

.subscribe-form input {
    width: 100%;
    height: 50px;
    background: var(--clr-common-white);
    border: 1px solid var(--clr-common-white);
    height: 60px;
    padding-left: 50px;
    padding-right: 20px
}

@media(max-width:575px) {
    .subscribe-form input {
        padding-left: 70px;
        padding-right: 40px
    }
}

@media(max-width:450px) {
    .subscribe-form input {
        padding-left: 50px;
        padding-right: 20px
    }
}

.subscribe-form button {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-common-white);
    background: var(--clr-common-color-red);
    height: 60px;
    line-height: 60px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
    text-transform: uppercase;
    padding: 0 36px
}

.subscribe-form button:hover {
    color: var(--clr-common-heading);
    border-color: var(--clr-common-heading);
    background: var(--clr-common-white)
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-social-link {
        margin-top: 25px
    }
}

.footer-social-link ul {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    row-gap: 7px
}

.footer-social-link li a {
    display: block;
    background: var(--clr-common-color-5);
    width: 60px;
    height: 50px;
    line-height: 52px;
    text-align: center;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    color: var(--clr-common-color-6);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.footer-social-link li a:hover {
    background: var(--clr-common-color-red);
    color: var(--clr-common-white)
}

@media only screen and (min-width:1200px) and (max-width:1399px),
only screen and (min-width:992px) and (max-width:1199px) {
    .footer-social-link li a {
        width: 55px;
        height: 50px;
        line-height: 50px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px),
only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-social-link li a {
        width: 45px;
        height: 45px;
        line-height: 46px
    }
}

.footer-menu-area.position {
    width: 100%;
    left: 0;
    left: 0;
    right: 0;
    top: -40px
}

.footer-menu-box {
    padding: 27px 50px 13px
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-menu-box {
        text-align: center
    }
}

@media(max-width:575px) {
    .footer-menu-box {
        padding: 20px 15px 13px
    }
}

.footer-menu-box.two {
    padding: 26px 0 12px
}

.footer-menu-bg {
    background: var(--clr-common-color-red)
}

.footer-menu li {
    display: inline-block;
    margin-right: 42px
}

.footer-menu li:last-child {
    margin-right: 0
}

@media only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .footer-menu li {
        margin-right: 25px
    }
}

.footer-menu li a {
    text-transform: uppercase;
    color: var(--clr-common-white);
    font-weight: 600;
    font-family: oswald, sans-serif
}

@media(max-width:450px) {
    .footer-menu li a {
        font-size: 14px
    }
}

.footer-menu li:hover a {
    opacity: .8
}

.footer-brand-item {
    display: inline-block;
    width: 20%
}

.footer-brand-item img {
    width: 100%
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px) {
    .copy-right-area {
        padding-top: 109px
    }
}

@media(max-width:575px) {
    .copy-right-area {
        padding-top: 10px
    }
}

.copy-right-text {
    padding: 10px 0;
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .copy-right-text {
        padding-top: 0
    }
}

.copy-right-text p {
    line-height: 1;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
    font-family: oswald, sans-serif;
	text-align:center;
}

.copy-right-text p a {
    color: var(--clr-common-white)
}

.copy-right-text-2 p {
    color: var(--clr-common-color-14);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0
}

.copy-right-text-2 a {
    color: var(--clr-common-white)
}

.copy-right-text-3 p {
    color: var(--clr-common-heading)
}

.copy-right-text-3 p a {
    color: var(--clr-common-color-red)
}

.copy-right-text-2 {
    text-align: right
}

@media only screen and (min-width:768px) and (max-width:991px),
only screen and (min-width:576px) and (max-width:767px),
(max-width:575px) {
    .copy-right-text-2 {
        text-align: center
    }
}

.copy-bg-1 {
    background: #000;
}

.footer3-widget .footer-widget-title h4 {
    color: var(--clr-common-heading)
}

.footer3-widget .footer-widget-link a {
    color: var(--clr-common-text) !important
}

.footer3-widget p {
    color: var(--clr-common-text) !important
}

.footer3-widget .subscribe-form input {
    background: var(--clr-bg-gray-4)
}

.footer3-widget .subscribe-form button:hover {
    color: var(--clr-common-white);
    background: var(--clr-theme-1)
}

.footer3-widget .footer-social-link ul li a {
    background: var(--clr-common-color-12);
    color: var(--clr-common-heading)
}

.footer3-widget1 ul li:hover a {
    background: var(--clr-theme-1);
    color: var(--clr-common-white)
}