/* Purged style.css - unused rule sets removed based on cleanu template usage */

@keyframes zoomUpDown {
    0%,
    100% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(0.7);
    }
}

@-webkit-keyframes zoomUpDown {
    0%,
    100% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(0.8);
    }
}

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');


:root {
    --font-default: 'Yantramanav', sans-serif;
    --fontawesome: "Font Awesome 5 Pro";
    --black: #000000;
    --dark: #06278a;
    --dark-secondary: #06278a;
    --white: #ffffff;
    --color-primary: #1239ac;
    --color-secondary: #ffb400;
    --color-heading: #232323;
    --color-paragraph: #666666;
    --border-default: #e7e7e7;
    --box-shadow-primary: 0 0 25px rgb(0 0 0 / 8%);
    --box-shadow-secondary: 0 10px 30px 0 rgb(44 130 237 / 40%);
    --box-shadow-tertiary: 0px 2px 12px 0px #e7e7e7;
    --box-shadow-dark: 0px 0px 0px;
    --bg-gray: #eef0f6;
    --bg-gradient: linear-gradient(to right, #1239ac, #00f3dd, #1239ac);
}

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

body,
html {
    height: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

html, body, div, span, img,
ol, ul, li, a, p, h1, h2, h3,
h4, h5, h6, option, legend, label, article, aside,
caption, figure, footer, header, hgroup,
mark, nav, section, time, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 5px;
    max-width: 100%;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a img {
    border: none;
}

a:active {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
    opacity: 1;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a:hover {
    outline: none;
    text-decoration: none;
    color: var(--color-primary);
    opacity: 1;
}

button {
    outline: medium none;
}

iframe {
    border: none;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eeeeee;
}

pre {
    display: block;
    margin: 0 0 30px;
    padding: 9.5px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333333;
    border: 1px solid #ededed;
    border-radius: inherit;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143;
}

input {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    min-height: 50px;
}

input:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

textarea:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

select:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

ul {
    list-style-type: none;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

b {
    font-weight: 600;
}

strong {
    font-weight: 600;
}

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

body {
    font-family: var(--font-default);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--color-paragraph);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

a, .btn, button {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    outline: medium none;
    text-decoration: none;
    font-weight: 600;
}

p {
    color: var(--color-paragraph);
    margin: 0 0 25px;
    text-transform: none;
    font-weight: 400;
    font-family: var(--font-default);
}

.form-group {
    margin-bottom: 20px;
}

.container-fill {
    position: relative;
    padding: 0 15px;
    margin: auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.container-fill {
    padding: 0 15px;
}

@media (min-width: 576px) {
.container-fill {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
.container-fill {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
.container-fill {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
.container-fill {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 1199px) {
.container-fill {
        padding: 0 15px;
    }
}

.bg-theme {
    background-color: var(--color-primary);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light a {
    color: var(--white);
}

.shadow.theme::after {
    background-color: var(--color-primary);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
    position: relative;
}

.default-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.default-padding.bottom-less {
    padding-top: 120px;
    padding-bottom: 90px;
}

.align-center {
    align-items: center;
}

.btn {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 5px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sm {
    padding: 14px 40px;
    font-size: 14px;
}

.btn.circle {
    border-radius: 40px;
}

a:hover,
a:active {
    opacity: 1;
    text-decoration: none;
}

.btn-gradient.btn-sm {
    padding: 16px 40px;
}

.btn.btn-gradient {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.btn.btn-gradient::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-image: var(--bg-gradient);
    background-size: 200% auto;
    text-transform: uppercase;
    display: inline-block;
    color: var(--white) !important;
    background-color: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-gradient:hover::after,
.btn.btn-gradient:active {
    background-position: -100% 0;
    color: var(--white);
}

.btn.btn-light.effect {
    color: var(--color-heading);
    overflow: hidden;
    position: relative;
    border: none;
}

.btn.btn-light.effect::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--white);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-light.effect::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.text-light .btn.btn-light.effect::before {
    background: var(--color-secondary);
}

.btn.btn-light.effect:hover {
    color: var(--color-heading);
    background: transparent;
}

.btn.btn-light.effect:hover::after {
    width: 0;
}

.btn.btn-light.effect:hover::before {
    width: 100%;
}

.btn.btn-theme.effect {
    color: var(--white);
    border: 2px solid var(--color-primary);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn.btn-theme.effect.secondary {
    color: var(--color-heading);
    border: 2px solid var(--color-secondary);
}

.btn.btn-theme.effect::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-theme.effect.secondary::after {
    background: var(--color-secondary);
}

.btn.btn-theme.effect::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--dark);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-theme.secondary.effect::before {
    background: var(--dark-secondary);
}

.shadow .btn.btn-theme.effect::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--white);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-theme.effect:hover {
    border: 2px solid var(--dark);
    color: var(--white);
    background: transparent;
}

.btn.btn-theme.secondary.effect:hover {
    border: 2px solid var(--dark-secondary);
}

.shadow .btn.btn-theme.effect:hover {
    border: 2px solid var(--white);
    color: var(--color-heading);
    background: transparent;
}

.btn.btn-theme.effect:hover::after {
    width: 0;
}

.btn.btn-theme.effect:hover::before {
    width: 100%;
}

.btn.btn-dark.effect {
    color: var(--white);
    border: 2px solid var(--dark);
    box-shadow: 0 10px 30px 0 rgb(44 130 237 / 40%);
    overflow: hidden;
    position: relative;
    background: transparent;
    z-index: 1;
}

.btn.btn-dark.secondary.effect {
    border: 2px solid var(--dark-secondary);
}

.btn.btn-dark.effect::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--dark);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-dark.secondary.effect::after {
    background: var(--dark-secondary);
}

.btn.btn-dark.effect::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.btn.btn-dark.effect:hover {
    border: 2px solid var(--color-primary);
    color: var(--white);
}

.btn.btn-dark.effect:hover::after {
    width: 0;
}

.btn.btn-dark.effect:hover::before {
    width: 100%;
}

.btn-light.border {
    background: var(--white);
    border: 2px solid #e7e7e7 !important;
}

.btn-theme-border {
    border: 2px solid var(--color-primary);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-theme-border::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 0;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.25s ease-in-out;
}

.btn-theme-border.circle::after {
    border-radius: 30px;
}

.btn-theme-border:hover::after {
    width: 100%;
}

.btn-theme-border:hover {
    color: var(--white) !important;
}

.btn-dark-border.circle::after {
    border-radius: 30px;
}

.btn-light-border.circle::after {
    border-radius: 30px;
}

.btn-theme-effect.circle::after {
    border-radius: 30px;
}

button,
button:focus {
    border: none !important;
    box-shadow: inherit !important;
    outline: inherit !important;
}

.mb-0 {
    margin-bottom: 0;
}

.top-bar-area .container-full {
    padding: 0 30px;
}

.top-bar-area .container-fill {
    padding: 0 30px;
}

.top-bar-area {
    font-family: var(--font-default);
    font-weight: 400;
}

.top-bar-area.transparent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.top-bar-area .logo img {
    height: 50px;
}

@media (min-width: 1200px) {
.top-bar-area .logo img {
        height: 55px;
    }
}

.top-bar-area.transparent i {
    color: var(--white) !important;
}

.top-bar-area.inc-border {
    border-bottom: 1px solid #e7e7e7;
}

.top-bar-area li {
    display: inline-block;
    margin-left: 15px;
    padding-left: 18px;
    position: relative;
    z-index: 1;
}

.top-bar-area li:first-child {
    margin: 0;
    padding: 0;
    border: none;
}

.top-bar-area p {
    margin: 0;
    font-weight: 600;
}

.top-bar-area p a {
    text-decoration: underline;
    font-weight: 700;
}

.top-bar-area.inc-border {
    border-bottom: 1px solid #e7e7e7;
}

.top-bar-area .button a {
    display: inline-block;
    padding: 6px 25px;
    color: var(--white);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.top-bar-area .item-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar-area .item-flex.space-between {
    justify-content: space-between;
}

.top-bar-area .social ul {
    margin-left: 30px;
}

.top-bar-area .social ul li::after {
    display: none;
}

.top-bar-area .social li {
    margin-left: 10px;
}

.top-bar-area.inc-pad {
    padding: 15px 0;
}

.top-bar-area.inc-padding {
    padding: 10px 0;
}

.top-bar-area .button i {
    margin-right: 5px;
}

.top-bar-area .info li i {
    margin-right: 5px;
    color: var(--color-primary);
    font-weight: 100;
    font-size: 20px;
    position: relative;
    top: 2px;
}

.top-bar-area.fixed {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
}

.top-bar-area.fixe .row {
    align-items: center;
}

.top-bar-area.fixed {
    padding: 20px 0;
}

.top-bar-area .address-info li {
    text-align: left;
}

.top-bar-area .address-info li .icon,
.top-bar-area .address-info li .info {
    display: inline-block;
}

.top-bar-area .address-info li .icon i {
    margin-right: 10px;
}

.top-bar-area .info a {
    margin-left: 20px;
}

.top-bar-area.fixed .container {
    padding-right: 30px;
}

.top-bar-area.bg-dark .info li i,
.top-bar-area.bg-theme .info li i,
.top-bar-area.bg-gradient .info li i {
    color: var(--white);
}

.top-bar-area.inc-logo {
    padding: 15px 0;
}

.top-bar-area .info-colums ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar-area .info-colums ul .info span {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}

.top-bar-area .info-colums li i {
    font-size: 35px;
}

.top-bar-area .info-colums ul .info {
    font-size: 14px;
    text-align: left;
}

.top-bar-area .info-colums .info,
.top-bar-area .info-colums .icon {
    display: inline-block;
}

.top-bar-area .info-colums ul li {
    text-align: left;
}

.top-bar-area .info-colums ul li .info {
    line-height: 24px;
}

.top-bar-area .info-colums ul li .icon {
    margin-right: 15px;
}

.top-bar-area .info-colums ul li::after {
    height: 90%;
    top: 5%;
}

.top-bar-area.bg-theme .info-colums ul li::after {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-area .info-colums ul li .icon i {
    color: var(--color-primary);
}

.top-bar-area.bg-theme .info-colums ul li .icon i {
    color: var(--white);
}

.top-bar-area.bg-theme {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-area.multi-content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 20px 0;
    padding-bottom: 60px;
}

.top-bar-area.multi-content .fixed-content p {
    margin: 0;
    position: absolute;
    right: 0;
    z-index: 1;
    color: var(--color-heading);
    padding: 10px 20px;
    top: -20px;
    font-weight: 400;
    padding-left: 35px;
}

.top-bar-area.multi-content .fixed-content p::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 400%;
    background: linear-gradient(90deg, rgba(237, 245, 255, 1) 0%, rgba(204, 223, 247, 1) 100%);
    z-index: -1;
    border-radius: 0 0 0 10px;
}

.top-bar-area.multi-content .social li {
    padding: 0;
    border: none;
}

.top-bar-area.multi-content .social li a {
    height: 40px;
    width: 40px;
    line-height: 44px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    border-radius: 50%;
    margin: 0;
    color: var(--white);
    font-size: 13px;
}

.top-bar-area.multi-content .social li a i {
    margin: 0;
    color: var(--white);
    font-size: 14px;
    top: 0;
}

@media (min-width: 1024px) {
.top-bar-area.multi-content .logo a {
        position: relative;
        z-index: 1;
        padding-right: 40px;
    }
.top-bar-area.multi-content .logo a::after {
        position: absolute;
        right: 0;
        top: -60px;
        content: "";
        height: 200px;
        width: 4000%;
        background: var(--white);
        z-index: -1;
        transform: skewX(-15deg);
    }
}

.breadcrumb-area .row {
    position: relative;
    z-index: 1;
}

body,
.banner-area,
.banner-area div {
    height: 100%;
}

.banner-area.auto-height .content {
    padding: 150px 0;
}

.banner-area .content {
    position: relative;
    z-index: 9;
    overflow: hidden;
    padding-bottom: 30px;
    padding-top: 30px;
}

.carousel-fade .carousel-inner .carousel-item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.banner-area .carousel-control.left {
    left: -80px;
}

.banner-area .carousel-control.left::after {
    position: absolute;
    left: 25px;
    top: 50%;
    content: "";
    height: 1px;
    width: 80px;
    background: var(--white);
}

.banner-area .carousel-control.left::before {
    position: absolute;
    left: 20px;
    top: 22px;
    content: "";
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #ffffff;
}

.banner-area:hover .carousel-control.left {
    left: 50px;
    opacity: 1;
}

.banner-area:hover .carousel-control.shadow.left {
    left: 20px;
}

.banner-area:hover .carousel-control.position-right.left,
.banner-area:hover .carousel-control.position-right.right {
    right: 0;
    left: auto !important;
}

.banner-area .carousel-indicators.theme button {
    border: 2px solid #e7e7e7;
    opacity: 1;
}

.banner-area .carousel-indicators button.active {
    border: 6px solid var(--color-primary) !important;
}

.banner-area .carousel-indicators.theme button.active {
    border: 6px solid var(--color-primary);
}

.banner-area .carousel-indicators.theme button::after {
    background: var(--color-primary);
}

.double-items > .row div {
    height: auto;
}

.banner-area.text-center p,
.banner-area .text-center p {
    padding-right: 12%;
    padding-left: 12%;
}

.banner-area.text-regular .content h4 {
    font-weight: 400;
    text-transform: uppercase;
}

.banner-area.text-regular .content h2 {
    font-weight: 600;
    font-size: 90px;
    line-height: 1;
    margin-bottom: 30px;
}

.banner-area.content-less .content h2 {
    margin-bottom: 0;
}

.banner-area.text-regular .content a {
    margin-top: 20px;
}

.banner-area.content-less .content a {
    margin-top: 40px;
}

.banner-area.text-regular .content .video-play-button {
    margin-top: 0;
    margin-left: 30px;
}

.banner-area.text-multi-weight .content h2 {
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
}

.banner-area.text-multi-weight .content h2 span {
    display: block;
    font-weight: 200;
}

.banner-area.text-multi-weight .btn {
    box-shadow: inherit;
}

.banner-area.text-multi-weight .content a {
    margin-top: 20px;
}

.banner-area.text-multi-weight .content p {
    padding-right: 30%;
    color: var(--color-heading);
    font-size: 20px;
}

.banner-area.bg-theme.text-multi-weight .content p,
.banner-area.shadow.text-multi-weight .content p {
    color: var(--white);
    opacity: 0.9;
}

.banner-area.text-regular .content .video-play-button.video-text {
    margin: 0;
    left: 0;
    width: auto;
}

.video-play-button.theme:before,
.video-play-button.theme:after {
    background: var(--color-primary) repeat scroll 0 0;
}

.video-play-button.theme.secondary:before,
.video-play-button.theme.secondary:after {
    background: var(--color-secondary) repeat scroll 0 0;
}

.video-play-button.theme i {
    color: var(--white);
}

.video-play-button.theme.secondary i {
    color: var(--white);
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    height: 50px;
    line-height: 50px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 15px;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    overflow-y: auto !important;
    height: auto;
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #96aac1;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    -o-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.about-us-area .thumb {
    position: relative;
    z-index: 1;
    margin-bottom: 65px;
}

.about-us-area .thumb::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100px;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 130%) repeat scroll 0 0;
}

.about-us-area .thumb img {
    border-radius: 8px;
}

.about-us-area .thumb img:first-child {
    width: 85%;
}

.about-us-area .thumb img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: -65px;
    width: 50%;
    border-radius: 50%;
    border: 10px solid var(--color-secondary);
    box-shadow: none;
}

.about-us-area .thumb .experience {
    position: absolute;
    bottom: -70px;
    left: 30px;
}

.about-us-area .thumb h2 {
    font-size: 100px;
    font-weight: 900;
    margin: 0;
    line-height: 105px;
    text-shadow: -5px 5px 0px #eceefe;
    color: var(--color-primary)
}

.about-us-area .thumb h4 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.about-us-area .info {
    padding-left: 35px;
}

.about-us-area .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

@media (min-width: 1400px) {
.about-us-area .info h2 {
        font-size: 55px;
        line-height: 1.1;
    }
}

.about-us-area .info .bottom-info {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.about-us-area .info .bottom-info .button {
    margin-right: 30px;
}

.about-us-area .info .bottom-info .contact {
    display: flex;
    align-items: center;
}

.about-us-area .info .bottom-info .contact i {
    display: inline-block;
    font-size: 40px;
    margin-right: 15px;
    color: var(--color-primary);
}

.about-us-area .info .bottom-info .contact .content {
    border-left: 1px solid #dddddd;
    padding-left: 28px;
}

.about-us-area .info .bottom-info .contact .content span {
    display: block;
    margin-bottom: 3px;
}

.about-us-area .info .bottom-info .contact .content h5 {
    margin: 0;
    font-weight: 600;
}

.services-types-area .container > .row {
    position: relative;
}

.services-types-area .item img {
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
}

.services-types-area .item h2,
.services-types-area .item h3,
.services-types-area .item h4 {
    font-weight: 600;
}

.services-types-area .item h2 {
    margin-bottom: 25px;
}

.services-types-area .item h5 {
    text-transform: uppercase;
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.services-types-area .item p {
    opacity: 0.8;
}

.services-types-area .item ul {
    display: inline-block;
    text-align: left;
    margin-top: 10px;
}

.services-types-area .item ul li {
    float: left;
    width: 50%;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    padding-left: 26px;
    color: var(--white);
    font-weight: 600;
    line-height: 40px;
}

.services-types-area .item ul li::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-size: 13px;
    color: var(--color-heading);
    transform: translateY(-50%);
    font-weight: 400;
    height: 18px;
    width: 18px;
    text-align: center;
    line-height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.services-type-items .content {
    position: relative;
    z-index: 1;
}

.services-type-items .content i {
    display: inline-block;
    color: var(--color-primary);
}

.services-type-items.services-type-carousel .owl-dots .owl-dot.active span {
    opacity: 1;
}

.services-type-items .thumb {
    position: relative;
    z-index: 1;
    margin-left: 70px;
}

.services-type-items .thumb h4 {
    position: absolute;
    left: -70px;
    top: 80px;
    display: inline-block;
    padding: 20px 30px;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    z-index: 1;
    border-radius: 5px;
}

.services-type-items .thumb h4::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--dark);
    z-index: -1;
    transform: skewX(-10deg);
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    border-left: 3px solid var(--color-secondary);
    border-radius: 8px;
}

.services-type-items .thumb h4 strong {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 2px;
    text-align: center;
    position: relative;
    letter-spacing: -1px;
}

.services-type-items .thumb h4 strong span {
    color: var(--color-secondary);
}

.services-type-items .thumb h4::after {
    position: absolute;
    left: 20px;
    bottom: -17px;
    content: "";
    border-left: 27px solid transparent;
    border-right: 2px solid transparent;
    border-top: 20px solid var(--dark);
}

.services-types-area .item a {
    margin-top: 25px;
}

.services-details-items .services-sidebar .widget-title {
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: -5px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
    font-size: 22px;
    display: inline-block;
    padding-bottom: 15px;
}

.services-details-items .services-sidebar .widget-title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid var(--color-primary);
}

.services-details-items .services-sidebar .single-widget.quick-contact .content {
    padding: 50px 30px;
    position: relative;
    z-index: 1;
}

.services-details-items .services-sidebar .single-widget.quick-contact .content i {
    display: inline-block;
    font-size: 25px;
    color: var(--white);
    margin-bottom: 35px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: var(--color-secondary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 100;
}

.services-details-items .services-sidebar .single-widget.quick-contact .content i.fas.fa-phone {
    transform: rotate(90deg);
}

.services-details-items .services-sidebar .single-widget.quick-contact .content i::after {
    position: absolute;
    left: -10%;
    top: -10%;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-secondary);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.3;
}

.services-details-items .services-sidebar .single-widget.quick-contact .content p {
    color: var(--white) D1;
}

.services-details-items .services-sidebar .single-widget.quick-contact .content h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    margin-top: 25px;
}

.services-details-items .services-single-content > .row {
    margin-top: 35px;
    margin-bottom: 35px;
}

.services-details-area .thumb {
    margin-bottom: 30px;
}

.services-more .item {
    padding: 30px;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    background: var(--white);
    margin-top: 30px;
}

.services-more .item i {
    display: inline-block;
    font-size: 50px;
    color: var(--color-primary);
    margin-bottom: 30px;
    line-height: 1;
}

.services-more .item p {
    margin: 0;
}

.services-more .item h4 {
    font-size: 20px;
}

.services-more .item a {
    font-weight: 600;
}

.work-process-area .process-items .item span {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    background: var(--color-primary);
    color: var(--white);
    font-weight: 900;
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    z-index: 1;
    margin-bottom: 19px;
    transition: all 0.35s ease-in-out;
    bottom: 20px;
    right: -5px;
    -wekit-clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}

.work-process-area .process-items .single-item:nth-child(2) .item span {
    bottom: auto;
}

.work-process-area .process-items .item h5 {
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
}

.work-process-area .process-items .item .thumb {
    position: relative;
    display: inline-block;
}

.work-process-area .process-items .item img {
    height: 170px;
    width: 170px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    margin-bottom: 25px;
    transition: all 0.35s ease-in-out;
}

.work-process-area .process-items .item:hover span, .work-process-area .process-items .single-item:nth-child(2n) .item span {
    transform: scale(1.2);
    background: var(--color-secondary);
    color: var(--black);
    right: -45px;
}

.work-process-area .process-items .single-item:nth-child(2n) .item img,
.work-process-area .process-items .single-item .item:hover img {
    transform: scale(1.4);
    margin-bottom: 60px;
}

.appoinment-area .thumb {
    text-align: center;
    margin-top: 120px;
    position: relative;
    z-index: 1;
}

.appoinment-area .thumb::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 100%;
    width: 100%;
    background: url(assets/img/shape/16.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.appoinment-area .form-items form input,
.appoinment-area .form-items form textarea,
.appoinment-area .form-items .nice-select {
    background: rgba(237, 245, 255, 1);
    border: 1px dashed rgba(255, 255, 255, 0.7);
    font-size: 16px;
    padding: 0 25px;
    min-height: 55px;
}

.appoinment-area .form-items .nice-select {
    padding: 0 25px;
    padding-top: 4px;
}

.bg-theme.fun-factor-area .counter,
.bg-dark.fun-factor-area .counter {
    color: var(--white);
}

.fun-factor-area.bg-dark .counter .operator,
.fun-factor-area.bg-theme .counter .operator {
    color: var(--color-secondary);
}

.pricing-area .single-item {
    margin-bottom: 30px;
    margin-top: 15px;
}

.pricing-area .single-item .pricing-item::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 140px;
    width: 140px;
    background: url(assets/img/shape/bubble-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.pricing-area .btn {
    margin-top: 40px;
}

.pricing-item.active .pricing-header {
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-area .single-item ul {
    text-align: left;
}

.pricing-area .pricing-item li i.fa-times {
    color: red;
}

.pricing-item.active {
    background: var(--color-primary);
}

.pricing-item.active h4,
.pricing-item.active h2 {
    color: var(--white);
}

.pricing-item.active p {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-item.active li {
    color: var(--white);
    opacity: 0.8;
}

.pricing-item.active li:nth-child(odd) {
    background: rgba(255, 255, 255, 0.06);
}

.pricing-area .pricing-item.active li i {
    color: var(--white);
}

.pricing-area .pricing-item.active li i.fa-times-circle {
    color: var(--color-secondary);
}

@media only screen and (min-width: 1200px) {
.project-area .container-fill {
        padding: 0;
    }
}

.project-style-one .info {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    padding: 30px 60px;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    transform: translateX(-50%);
}

.project-style-one .info::after {
    position: absolute;
    left: 0;
    top: -5%;
    content: "";
    height: 110%;
    width: 100%;
    background: url(assets/img/shape/26.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.owl-item.center .project-style-one .info {
    bottom: 45px;
    opacity: 1;
}

.project-style-one .info h4,
.project-style-one .info a {
    color: var(--color-heading);
    font-weight: 600;
    margin-bottom: 0;
}

.project-style-one .info span {
    transition: all 0.35s ease-in-out;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    color: var(--color-heading);
}

.project-style-two .info {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
    text-align: center;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    transition-delay: 0.5s;
}

.project-style-two .info h4 {
    margin: 0;
    margin-bottom: 3px;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    transition-delay: 200ms;
    margin-left: -50px;
}

.project-style-two:hover .info h4 {
    margin-left: 0;
    opacity: 1;
}

.project-style-two .info span {
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    transition-delay: 300ms;
    margin-right: -50px;
}

.project-style-two:hover .info span {
    margin: 0;
    opacity: 1;
}

.project-style-two .info a {
    color: var(--white);
    position: relative;
}

.project-style-two .info span {
    color: var(--color-secondary);
    font-size: 16px;
}

.project-style-two .info a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 0;
    background: var(--white);
    transition: width .3s;
    transition-delay: 400ms;
}

.project-style-two:hover .info a::after {
    width: 100%;
}

.project-details-area .main-content .row img {
    margin-top: 30px;
}

@media (max-width: 1199px) {
.project-style-one .info {
        left: -50px;
        transform: inherit;
        padding: 0;
        bottom: 30px;
    }
.project-style-one .info h4 {
        background-color: var(--dark);
        padding: 10px 25px;
    }
.project-style-one .info h4 a {
        display: inline-block;
        color: var(--white);
    }
.project-style-one .info span {
        display: inline-block;
        padding: 6px 15px;
        background-color: var(--color-secondary);
        color: var(--black);
    }
.project-style-one .info::after {
        display: none;
    }
.project-style-one:hover .info {
        left: 30px;
        opacity: 1;
    }
}

.testimonial-carousel .item {
    display: flex;
    align-items: center;
}

.testimonial-carousel .item > i {
    display: inline-block;
    font-size: 80px;
    margin-right: 30px;
}

.testimonial-carousel .item .content img {
    height: 120px;
    width: auto;
    clip-path: inherit;
    border-radius: inherit;
    position: absolute;
    left: 30px;
    top: 70px;
    opacity: 0.05;
}

.testimonial-carousel .item img {
    height: 200px;
    width: 200px;
    z-index: 9;
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}

.testimonial-carousel .item .provider {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.testimonial-carousel .item .provider h5 {
    margin: 0;
    font-weight: 600;
    margin-left: 25px;
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.testimonial-carousel .item .provider h5::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 2px;
    width: 30px;
    background: #1d2746;
    margin-top: -1px;
}

.testimonial-carousel .item .provider .rating i {
    color: #ffc000;
}

.testimonial-carousel .item .content {
    padding: 120px 80px;
    padding-right: 130px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.testimonial-carousel .item .content p {
    font-size: 22px;
}

.testimonial-carousel .item .content::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 114%;
    background: var(--white);
    z-index: -1;
    border-radius: 10px;
    box-shadow: 0px 2px 12px 0px #e7e7e7;
}

.testimonial-carousel .item .content::before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -20px;
    width: calc(100% - 40px);
    height: 20px;
    -webkit-box-shadow: 0px 6px 12px 0px #00497628;
    box-shadow: 0px 6px 12px 0px #00497628;
    z-index: -1;
    border-radius: 0px 0px 15px 15px;
}

.testimonial-carousel .item .content > i {
    display: inline-block;
    font-size: 90px;
    margin-bottom: 30px;
    position: absolute;
    z-index: 1;
    opacity: 0.06;
    top: 70px;
    left: 50px;
}

.testimonials-area .testimonial-carousel.owl-carousel .owl-dots .owl-dot.active span {
    opacity: 1;
    transform: scale(1.5);
}

.estimate-area .estimate-form .shape {
    position: absolute;
    right: -80px;
    bottom: -90px;
    animation: rotate-animation 30s infinite linear;
    display: none;
}

@media (min-width: 1400px) {
.estimate-area .estimate-form .shape {
        display: inline-block;
    }
}

.estimate-area .estimate-form {
    position: relative;
    z-index: 1;
    top: -80px;
    margin-bottom: -80px
}

.estimate-form {
    padding-right: 10%;
}

.estimate-area .estimate-form::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 110%;
    background: var(--color-secondary);
    z-index: -1;
    padding-right: 5%;
}

.estimate-area .estimate-form h2 {
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
    font-size: 30px;
}

.estimate-area .estimate-form > .row {
    align-items: center;
}

.estimate-area .estimate-form input,
.estimate-area .estimate-form .nice-select {
    min-height: 60px;
    padding: 20px;
    background: var(--white);
    color: var(--color-heading);
    border-radius: 5px;
    font-size: 16px;
    margin: 0;
    border: none;
}

.estimate-area .estimate-form input::-webkit-input-placeholder {
    
    color: var(--color-heading);
}

.estimate-area .estimate-form input::-moz-placeholder {
    
    color: var(--color-heading);
}

.estimate-area .estimate-form input:-ms-input-placeholder {
    
    color: var(--color-heading);
}

.estimate-area .estimate-form input:-moz-placeholder {
    
    color: var(--color-heading);
}

.estimate-area .estimate-form .nice-select {
    padding: 0 20px;
    line-height: 60px;
}

.estimate-area .estimate-form button {
    display: inline-block;
    padding: 15px 30px;
    min-height: 60px;
    position: relative;
    z-index: 1;
    color: var(--white);
    border: none !important;
    font-weight: 600;
    text-transform: uppercase;
    background: transparent;
    border-radius: 5px;
}

.estimate-area .estimate-form button i {
    font-weight: 400;
    position: relative;
    top: 1px;
    margin-left: 3px;
}

.estimate-area .estimate-form button::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-size: 200% auto;
    text-transform: uppercase;
    display: inline-block;
    background-color: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
    border-radius: 5px;
}

.estimate-area .estimate-form .form-group {
    margin: 0;
}

.estimate-area .estimate-form .nice-select::after {
    border-color: var(--color-heading);
}

.estimate-area .estimate-form .fixed-shape-left {
    position: absolute;
    left: -200px;
    bottom: -80px;
}

.estimate-area .estimate-form .fixed-shape-left img {
    width: 180px;
}

.feature-style-three .item {
    margin-top: 30px;
    padding: 80px 45px;
    padding-bottom: 50px;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    border-radius: 8px;
}

.feature-style-three .item:first-child {
    margin-top: 0;
}

.features-style-two .thumb {
    position: relative;
    z-index: 1;
}

.features-style-two .thumb::after {
    position: absolute;
    right: -50px;
    bottom: -50px;
    content: "";
    height: 100%;
    width: 100%;
    background: url(assets/img/shape/17.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: right;
}

.features-style-two-box .item-carousel .item {
    display: flex;
}

.features-style-two-box .item-carousel .icon i {
    font-weight: 100;
    font-size: 100px;
    margin-right: 30px;
}

.item-carousel.feature-service-carousel.owl-carousel.owl-theme .owl-dots .owl-dot.active span {
    background: var(--color-secondary);
    height: 15px;
    width: 15px;
    position: relative;
    top: 2px;
}

.text-light ul.achivement li {
    border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.text-light ul.achivement li .counter {
    color: var(--white);
}

.text-light ul.achivement li .medium {
    color: var(--white);
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item.active {
    opacity: 1;
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item {
    padding: 67px 37px;
    box-sizing: border-box;
    border: 1px solid #e7e7e7;
    border-left: 1px solid transparent;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background-size: cover;
    background-position: center;
    transition: all 0.35s ease-in-out;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item .thumb::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--dark);
    z-index: -1;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item.center .single-item .thumb::after {
    opacity: 0.7;
    visibility: visible;
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item.center .single-item .thumb {
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item h4 {
    font-weight: 600;
    margin-bottom: 30px;
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item i {
    display: inline-block;
    font-size: 70px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item p {
    margin: 0;
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item h4 a {
    font-weight: 600;
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item h4,
.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item i,
.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item .single-item p {
    transition: all 0.35s ease-in-out;
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item.center .single-item h4,
.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item.center .single-item i,
.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item.center .single-item p,
.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item.center .single-item a {
    color: var(--white);
}

.services-style-two-area .services-4-col-carousel.owl-carousel .owl-item.center .single-item i {
    color: var(--color-secondary);
}

.team-style-one .item .thumb {
    z-index: 1;
    position: relative;
}

.team-style-one .item .thumb::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 60%;
    width: 100%;
    transition: all 0.35s ease-in-out;
    background: var(--color-primary);
    opacity: 0;
    visibility: hidden;
}

.team-style-one .item:hover .thumb::before {
    visibility: visible;
    opacity: 0.3;
    height: 100%;
}

.team-style-one .item {
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    border-radius: 8px;
}

.team-style-one .item .thumb::after {
    position: absolute;
    left: 50%;
    bottom: -1px;
    content: "";
    height: 500px;
    width: 1200px;
    background: url(assets/img/shape/22.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-top: -88px;
    transform: translateX(-50%);
}

.team-style-one .item .info {
    display: block;
    z-index: 1;
    position: relative;
    padding: 20px;
    overflow: hidden;
    padding-top: 0;
}

.team-style-one .item .info h4 {
    font-weight: 600;
    margin-bottom: 0;
}

.team-style-one .item .info p {
    margin: 0;
    font-size: 15px;
}

.team-style-one .social {
    position: absolute;
    right: 30px;
    bottom: -15px;
    z-index: 9;
    transition: all 0.35s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.team-style-one .item:hover .social,
.team-style-one:first-child .item .social {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.team-style-one .social label i {
    transform: rotate(45deg);
}

.team-style-one .social a {
    color: var(--white);
}

.team-style-one .social a.facebook {
    background: -webkit-linear-gradient(top, #3b5998, #2b4170);
}

.team-style-one .social a.twitter {
    background: #1DA1F2 none repeat scroll 0 0;
}

.team-style-one .social a.pinterest {
    background: #BD081C none repeat scroll 0 0;
}

.team-style-one .social a.g-plus {
    background: #DB4437 none repeat scroll 0 0;
}

.team-style-one .social a.linkedin {
    background: #0077B5 none repeat scroll 0 0;
}

.team-style-one .social a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.team-single-area .right-info .social {
    display: flex;
    margin-top: 25px;
    font-weight: 600;
    align-items: center;
}

.team-single-area .right-info .social h4 {
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 25px;
}

.team-single-area .right-info .social ul {
    margin: 0;
    padding: 0;
    border: none;
}

.team-single-area .right-info .social .share-link {
    position: relative;
    z-index: 1;
    margin-left: 15px;
    padding-right: 20px;
}

.team-single-area .right-info .social .share-link > i {
    display: inline-block;
    height: 45px;
    background: var(--white);
    box-shadow: 0 0 10px #cccccc;
    line-height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-primary);
}

.team-single-area .right-info .social ul {
    display: flex;
    list-style-type: none;
    grid-gap: 10px;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out 0s;
}

.team-single-area .right-info .social .share-link:hover ul {
    left: 58px;
    opacity: 1;
    pointer-events: auto;
}

.team-single-area .right-info .social ul li {
    display: inline-block;
    margin: 0;
}

.team-single-area .right-info .social ul li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 47px;
    background: #f1f1f1;
    text-align: center;
    border-radius: 50%;
}

.search-service-box .input-box .nice-select::after {
    border-color: var(--color-primary);
    height: 10px;
    width: 10px;
}

.search-service-box .input-box input,
.search-service-box .input-box .nice-select {
    background: transparent;
    border: none;
    min-height: 65px;
    margin: 0;
    padding: 20px;
    border-radius: inherit;
}

.search-service-box .input-box .form-group {
    margin: 0;
    float: left;
    width: 36%;
}

.search-service-box .input-box .nice-select span.current {
    position: relative;
    top: -11px;
    font-size: 16px;
}

.blog-area .single-item {
    margin-bottom: 30px;
}

.blog-area .info {
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.blog-area h1,
.blog-area h2,
.blog-area h3,
.blog-area h4,
.blog-area h5,
.blog-area h6 {
    font-weight: 600;
}

.blog-area h4 {
    font-size: 26px;
}

.blog-area.grid-colum .info p:last-child {
    margin: 0;
}

.blog-area .item {
    background: var(--white);
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
}

.blog-area .item .thumb {
    position: relative;
    z-index: 1;
}

.blog-area .item .thumb .date {
    position: absolute;
    left: 30px;
    bottom: 0;
    background: var(--color-secondary);
    color: var(--black);
    padding: 10px 24px;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-area .item .thumb .date {
    background: var(--color-primary);
    color: var(--white);
    font-weight: 600;
}

.blog-area .item .thumb .date strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
}

.blog-area .item .thumb .date::after {
    position: absolute;
    left: 0;
    bottom: -10px;
    content: "";
    border-left: 0 solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--color-secondary);
}

.blog-area .item .thumb .date::after {
    border-top: 15px solid var(--color-primary);
}

.blog-area .meta {
    display: block;
    margin-bottom: 15px;
}

.blog-area .meta ul li {
    position: relative;
    z-index: 1;
    font-size: 16px;
    text-transform: uppercase;
    padding-right: 60px;
    display: flex;
    align-items: center;
}

.blog-area .meta ul li img {
    height: 35px;
    width: 35px !important;
    border-radius: 50%;
    margin-right: 10px;
}

.blog-area .meta ul li:last-child {
    padding-right: 0;
}

.blog-area .meta ul {
    display: flex;
    align-items: center;
}

.blog-area .meta ul li::after {
    position: absolute;
    right: 15px;
    top: 50%;
    content: "";
    height: 1px;
    width: 30px;
    background: #cccccc;
    margin-top: -2px;
}

.blog-area .meta ul li:last-child::after {
    display: none;
}

.blog-area .meta ul li a {
    margin-left: 3px;
    display: inline-block;
    line-height: 1.4;
    letter-spacing: 0.4px;
}

.blog-area .meta ul li:first-child a {
    color: var(--color-secondary);
}

.blog-area .meta ul li a:hover {
    color: var(--color-primary);
}

.blog-area .info a:hover {
    color: var(--color-primary);
}

.blog-area.left-sidebar .blog-content {
    float: right;
}

.blog-area.left-sidebar .sidebar {
    padding-right: 35px;
}

.blog-area.right-sidebar .sidebar {
    padding-left: 35px;
}

.blog-area .sidebar .title {
    display: block;
}

.blog-area .sidebar .title h4 {
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: -5px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
    font-size: 22px;
    display: inline-block;
    padding-bottom: 15px;
}

.blog-area .sidebar .title h4::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid var(--color-primary);
}

.blog-area .sidebar input[type="text"] {
    border: 1px solid #dddddd;
    box-shadow: inherit;
    min-height: 60px;
    background: #f9f9f9;
    border-radius: 5px;
}

.blog-area .sidebar form {
    position: relative;
}

.blog-area .sidebar button[type="submit"] {
    background: transparent;
    border: medium none;
    color: var(--color-heading);
    font-weight: 600;
    letter-spacing: 1px;
    min-height: 50px;
    width: 50px;
    position: absolute;
    right: 5px;
    text-transform: uppercase;
    top: 5px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    border-radius: inherit;
    font-size: 18px;
    border-left: 1px solid #dddddd !important;
}

.blog-area .sidebar button[type="submit"] i {
    font-weight: 600;
    color: var(--color-heading);
}

.blog-area .sidebar input[type="submit"]:hover {
    background-color: var(--color-primary);
}

.blog-area .sidebar .sidebar-item {
    float: left;
    margin-bottom: 50px;
    width: 100%;
}

.blog-area .sidebar .sidebar-item:last-child {
    margin-bottom: 0;
}

.blog-area .sidebar .sidebar-item.category .sidebar-info,
.blog-area .sidebar .sidebar-item.archives .sidebar-info {
    margin-top: -5px;
}

.blog-area .sidebar .sidebar-item.category li {
    display: block;
    position: relative;
    margin-top: 13px;
}

.blog-area .sidebar .sidebar-item.category li a {
    display: flex;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--color-paragraph);
    align-items: center;
    justify-content: space-between;
}

.blog-area .sidebar .sidebar-item li a:hover {
    color: var(--color-primary);
}

.blog-area .sidebar .sidebar-item.category li a span {
    font-size: 13px;
    margin-left: 5px;
    background: #f1f1f1;
    min-width: 40px;
    padding: 3px;
    text-align: center;
    color: var(--color-heading);
    border-radius: 30px;
}

.blog-area .sidebar .sidebar-item.category li:first-child a span {
    top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child {
    margin-top: 0;
    padding-top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child a::after {
    top: 0;
}

.blog-area .sidebar .sidebar-item.category li:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item.recent-post li a {
    color: var(--color-heading);
    display: block;
    font-weight: 700;
}

.sidebar-item.recent-post li a:last-child {
    display: inline-block;
}

.sidebar-item.recent-post .meta-title {
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 13px;
}

.sidebar-item.recent-post .meta-title i {
    margin-right: 3px;
    font-weight: 600;
}

.sidebar-item.recent-post li a:hover {
    color: var(--color-primary);
}

.sidebar-item.recent-post li a span {
    display: inline-block;
    color: #002359;
}

.sidebar-item.recent-post li span {
    display: inline-block;
    font-size: 15px;
    color: #888888;
    font-weight: 400;
    text-transform: capitalize;
}

.sidebar-item.recent-post .meta-title a {
    color: #888888;
}

.sidebar-item.recent-post li {
    color: #cdd0d3;
}

.sidebar-item.recent-post li {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.sidebar-item.recent-post li:last-child {
    border: medium none;
    margin: 0;
    padding: 0;
}

.sidebar-item.recent-post li:last-child {
    margin: 0;
}

.sidebar-item.recent-post li .thumb {
    display: table-cell;
    padding: 0;
    padding-top: 5px;
    vertical-align: top;
    width: 80px;
}

.sidebar-item.recent-post .thumb img {
    width: 100%;
    border-radius: inherit;
}

.sidebar-item.recent-post li .info {
    box-shadow: inherit;
    color: #837f7e;
    display: table-cell;
    line-height: 26px;
    padding: 0;
    padding-left: 25px;
    vertical-align: top;
    padding-top: 0 !important;
}

.sidebar-item.recent-post li .info a {
    text-decoration: inherit;
    font-weight: 600;
    font-size: 22px;
    margin-top: 0;
}

.blog-area .sidebar-item.gallery ul {
    margin: -7px;
    overflow: hidden;
}

.sidebar-item.gallery ul li {
    box-sizing: border-box;
    float: left;
    padding: 7px;
    width: 33.333%;
}

.sidebar-item.gallery ul li img {
    min-height: 70px;
    width: 100%;
}

.sidebar-item.archives ul li {
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-item.archives ul li:last-child {
    margin-bottom: 0;
}

.sidebar-item.archives ul li a {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 1;
    padding-left: 25px;
    color: var(--color-paragraph);
}

.sidebar-item.archives ul li a::after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "\f07b";
    font-family: "Font Awesome 5 Pro";
    height: 8px;
    left: 0;
    position: absolute;
    width: 8px;
    font-weight: 300;
}

.sidebar-item.social-sidebar ul {
    margin-bottom: -10px;
    overflow: hidden;
}

.sidebar-item.social-sidebar li {
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebar-item.social-sidebar li a {
    background: #002359 none repeat scroll 0 0;
    border: medium none;
    color: var(--white);
    display: inline-block;
    height: 50px;
    line-height: 54px;
    margin-bottom: 5px;
    text-align: center;
    width: 50px;
    font-size: 14px;
}

.sidebar-item.social-sidebar li a:hover {
    color: var(--white) !important;
}

.sidebar-item.social-sidebar li.facebook a {
    background: #3B5998 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.twitter a {
    background: #1DA1F2 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.pinterest a {
    background: #BD081C none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.g-plus a {
    background: #DB4437 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.linkedin a {
    background: #0077B5 none repeat scroll 0 0;
}

.sidebar-item.tags ul {
    margin-top: -8px;
}

.sidebar-item.tags ul li {
    display: inline-block;
}

.sidebar-item.tags ul li a {
    border: 1px solid #e7e7e7;
    display: inline-block;
    font-weight: 600;
    margin-top: 8px;
    margin-right: 5px;
    padding: 6px 22px;
    text-transform: capitalize;
    font-size: 13px;
    border-radius: 30px;
    color: var(--color-paragraph);
    background: #fafafa;
}

.sidebar-item.tags ul li a:hover {
    color: var(--color-primary);
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    opacity: 0.7;
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info h4 {
    color: var(--white);
    font-weight: 700;
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info p {
    color: var(--white);
}

.blog-area .sidebar .sidebar-item.add-banner .sidebar-info a {
    display: inline-block;
    color: var(--white);
    border: 1px dashed rgba(255, 255, 255, 0.7);
    padding: 10px 25px;
    margin-top: 9px;
}

.blog-area .blog-items.content-less .item .info > a {
    margin-top: 10px;
}

.blog-area.single .item .content-box span {
    background-color: var(--color-primary);
    color: var(--white);
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 20px;
    text-transform: uppercase;
}

.blog-area.single .item .content-box h2,
.blog-area.single .item .content-box h3,
.blog-area.single .item .content-box h4 {
    font-weight: 600;
}

.blog-area.single .content-box .cats {
    float: left;
    margin-right: 5px;
}

.blog-area.single .content-box .meta .date {
    float: right;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-area.single .content-box .meta {
    overflow: hidden;
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
}

.blog-area .blog-items .info > ul li {
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.blog-area .blog-items .info > ul {
    margin-bottom: 25px;
    margin-top: 25px;
    list-style-type: disc;
    padding-left: 20px;
}

.blog-area.single ul li {
    list-style: disc;
}

.blog-area.single .item {
    margin-bottom: 0;
}

.blog-area .item blockquote {
    position: relative;
    z-index: 1;
    border: none;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: var(--color-heading);
    font-weight: 400;
    line-height: 32px;
    background: var(--bg-gray);
    padding: 50px;
    font-style: italic;
}

.blog-area .item blockquote cite {
    display: block;
    margin-top: 15px;
    color: #999999;
    font-weight: 600;
    font-style: normal;
}

.blog-area .item blockquote::before {
    position: absolute;
    left: 0;
    top: 5%;
    content: "";
    height: 90%;
    width: 3px;
    background: var(--color-primary);
}

.blog-area .item blockquote::after {
    position: absolute;
    right: 50px;
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    color: var(--color-paragraph);
    bottom: 50px;
    font-weight: 100;
    opacity: 0.1;
    font-size: 80px;
    font-style: normal;
}

.blog-area .item blockquote p {
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 34px;
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
}

.blog-area .blog-content .post-tags,
.blog-area .blog-content .share {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
    padding-bottom: 6px;
}

.blog-area .blog-content .share li {
    display: inline-block;
    margin-left: 15px;
}

.blog-area .blog-content .share li a {
    display: inline-block;
    color: var(--color-primary);
}

.blog-area .blog-content .share li.facebook a {
    color: #3B5998;
}

.blog-area .blog-content .share li.twitter a {
    color: #1DA1F2;
}

.blog-area .blog-content .share li.pinterest a {
    color: #BD081C;
}

.blog-area .blog-content .share li.g-plus a {
    color: #DB4437;
}

.blog-area .blog-content .share li.linkedin a {
    color: #0077B5;
}

.blog-area .blog-content .post-tags .tags a {
    background: var(--bg-gray);
    padding: 10px 15px;
    font-size: 14px;
    margin-right: 3px;
    margin-bottom: 5px;
    display: inline-block;
}

.blog-area .blog-content .post-tags .tags a:hover {
    color: var(--color-primary);
}

.blog-area.single .post-pagi-area {
    margin-top: 50px;
    overflow: hidden;
}

.blog-area.single .post-pagi-area a {
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-paragraph);
    border-radius: 30px;
    font-size: 15px;
}

.blog-area.single .post-pagi-area a i {
    font-weight: 600;
}

.blog-area.single .post-pagi-area h5 {
    margin: 0;
    margin-top: 5px;
    font-weight: 600;
    transition: all 0.35s ease-in-out;
    font-size: 20px;
    text-transform: none;
}

.blog-area.single .post-pagi-area h5:hover {
    color: var(--color-primary);
}

.blog-area.single.color-yellow .post-pagi-area a:hover {
    color: #ff9800;
}

.blog-area.single .post-pagi-area a:last-child {
    float: right;
}

.blog-area.single .post-pagi-area a:first-child i {
    margin-right: 3px;
}

.blog-area.single .post-pagi-area a:last-child i {
    margin-left: 3px;
}

.blog-area .contact-comments .submit {
    margin-bottom: 0;
}

.blog-area .comments-form {
    margin-top: 50px;
}

.blog-area .blog-comments .comments-list {
    margin-bottom: 50px;
    background: var(--bg-gray);
    padding: 50px;
}

.blog-area .blog-comments .comments-list:last-child {
    margin-bottom: 0;
}

.comments-list .commen-item .content {
    position: relative;
}

.comments-list .commen-item .content h3,
.comments-list .commen-item .content h4,
.comments-list .commen-item .content h5 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comments-list .commen-item .content .reply a {
    font-size: 14px;
    background: var(--dark);
    color: var(--white);
    display: inline-block;
    padding: 8px;
    font-weight: 600;
}

.comments-list .commen-item .content .reply a:hover {
    background: var(--color-primary);
}

.comments-list .commen-item .content .reply i {
    font-size: 12px;
}

.comments-list .commen-item .content p:last-child {
    margin-bottom: 0;
}

.comments-list .commen-item .content .title {
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.comments-list .commen-item .content .title span {
    font-weight: 400;
    color: var(--color-primary);
    display: block;
    margin-top: 0;
    font-size: 15px;
}

.comments-list .commen-item .content .title span i {
    font-weight: 600;
    margin-right: 5px;
}

.comments-list .commen-item .content .title span i.fa-reply {
    font-weight: 700;
    margin-right: 3px;
}

.comments-list .commen-item .content .title span a {
    margin-left: 10px;
}

.blog-area.full-blog.single-blog .form-group.submit {
    margin-bottom: 0;
}

.comments-form .title h2,
.comments-form .title h3,
.comments-form .title h4 {
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.blog-area .contact-comments .comments {
    margin-top: 20px;
}

.blog-area.single .blog-items .item .contact-comments .col-md-6 {
    float: left;
    padding: 0 15px;
}

.pagination li {
    display: inline-block;
    margin-top: 7px;
}

ul.pagination {
    display: block;
    margin-top: 30px;
}

.pagination li a {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 0 2px;
    color: var(--color-heading);
    font-weight: 800;
    line-height: 19px;
}

.pagination li.page-item.active a {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.pagination i {
    position: relative;
    top: 1px;
}

.error-box .search {
    text-align: center;
}

.error-box .search .input-group {
    display: block;
    width: auto;
    max-width: initial;
}

.error-box .search .input-group form {
    max-width: 70%;
    margin: 30px auto auto;
    position: relative;
}

.error-box .search .input-group form input {
    border: 1px solid #e7e7e7;
    background: transparent;
    box-shadow: inherit;
    padding: 20px;
}

.error-box .search .input-group form button {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    height: 65px;
    padding: 0 25px;
    border-left: 1px solid #e7e7e7 !important;
}

.error-box .search .input-group form button i {
    font-weight: 400;
}

.bg-theme .contact-content form input,
.bg-theme .contact-content form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.bg-theme .contact-content form input::-webkit-input-placeholder,
.bg-theme .contact-content form textarea::-webkit-input-placeholder { 
    color: #ffffff;
    opacity: 0.8;
}

.bg-theme .contact-content form input::-moz-placeholder,
.bg-theme .contact-content form textarea::-moz-placeholder { 
    color: #ffffff;
    opacity: 0.8;
}

.bg-theme .contact-content form input:-ms-input-placeholder,
.bg-theme .contact-content form textarea:-ms-input-placeholder { 
    color: #ffffff;
    opacity: 0.8;
}

.bg-theme .contact-content form input:-moz-placeholder,
.bg-theme .contact-content form textarea:-moz-placeholder { 
    color: #ffffff;
    opacity: 0.8;
}

.bg-theme .contact-content form button::after {
    background-color: var(--white);
}

.contact-content .content {
    position: relative;
    padding: 50px;
    border-radius: 10px;
    background: var(--color-primary);
}

.bg-theme .contact-content .content {
    padding: 0;
}

.contact-content .content img {
    padding: 0 30px;
    padding-top: 0;
    margin-bottom: 30px;
}

.contact-content .content i {
    display: inline-block;
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--color-secondary);
    font-weight: 600;
}

.bg-theme .contact-content .content i {
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: var(--dark);
    border-radius: 50%;
    font-size: 30px;
}

.contact-content .content li {
    margin-top: 30px;
}

.contact-content .content li:first-child {
    margin-top: 0;
}

@media (min-width: 1350px) {
.contact-area.bg-theme {
        width: 92%;
        margin: auto;
        border-radius: 30px;
    }
}

footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

footer .f-items {
    margin-top: -50px;
}

footer .f-items .item {
    margin-top: 50px;
}

footer .fixed-shape-left {
    position: absolute;
    left: 20px;
    top: 100px;
    opacity: 0.5;
    z-index: -1;
}

footer .fixed-shape-left img {
    animation: zoomUpDown 5s linear infinite;
}

footer .widget-title,
footer img {
    margin-bottom: 30px;
    font-weight: 700;
}

footer img {
    height: 60px;
}

footer .f-items .f-item.about {
    border-right: 1px solid #e7e7e7;
    padding-right: 40px;
    margin-right: 10px;
}

footer.bg-dark .f-items .f-item.about,
footer.bg-theme .f-items .f-item.about {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

footer .f-items .f-item form {
    position: relative;
    margin-top: 30px;
}

footer .f-items .f-item form input {
    background: #dae9fb;
    color: var(--color-heading);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 14px;
    border-radius: 6px;
}

footer.bg-dark .f-items .f-item form input,
footer.bg-theme .f-items .f-item form input {
    background: var(--white);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

footer .f-items .f-item form input::-webkit-input-placeholder {
    
    color: var(--color-heading);
}

footer .f-items .f-item form input::-moz-placeholder {
    
    color: var(--color-heading);
}

footer .f-items .f-item form input:-ms-input-placeholder {
    
    color: var(--color-heading);
}

footer .f-items .f-item form input:-moz-placeholder {
    
    color: var(--color-heading);
}

footer .f-items .f-item form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 25px;
    border-radius: 0 5px 5px 0;
}

footer .f-items .f-item form button::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 30px;
    width: 1px;
    margin-top: -15px;
    opacity: 0.1;
    border-left: 1px solid #ffffff;
}

footer .f-items .f-item form button i {
    position: relative;
    top: 4px;
    color: var(--white);
}

footer.bg-dark p,
footer.bg-theme p {
    color: #b1c2f5;
}

footer a {
    font-weight: 600;
}

footer .f-items .f-item.link li {
    margin-bottom: 12px;
}

footer .f-items .f-item.link li:last-child {
    margin-bottom: 0;
}

footer .f-items .f-item.link li a:hover {
    color: var(--color-primary);
    margin-left: 10px;
}

footer.bg-dark .f-items .f-item.link li a:hover,
footer.bg-theme .f-items .f-item.link li a:hover {
    color: var(--white);
}

footer .f-items .f-item.link li a {
    font-weight: 400;
    color: var(--color-paragraph);
}

footer.bg-dark .f-items .f-item.link li a,
footer.bg-theme .f-items .f-item.link li a {
    color: #b1c2f5;
}

footer .f-items .f-item.link li a i {
    font-size: 12px;
    margin-right: 3px;
}

footer .f-items .f-item .address li {
    display: flex;
    margin-bottom: 25px;
}

footer.bg-dark .f-items .f-item .address li,
footer.bg-theme .f-items .f-item .address li {
    color: #b1c2f5;
}

footer .f-items .f-item .address li .content,
footer .f-items .f-item .address li .content a {
    color: var(--color-paragraph);
    font-weight: 400;
}

footer.bg-dark .f-items .f-item .address li .content,
footer.bg-dark .f-items .f-item .address li .content a,
footer.bg-theme .f-items .f-item .address li .content,
footer.bg-theme .f-items .f-item .address li .content a {
    color: #b1c2f5;
}

footer .f-items .f-item .address li i {
    display: inline-block;
    margin-right: 20px;
    color: var(--color-secondary);
    font-size: 24px;
    position: relative;
    top: 5px;
}

footer.bg-dark .f-items .f-item .address li i,
footer.bg-theme .f-items .f-item .address li i {
    color: var(--white);
}

footer .f-items .f-item .address li:last-child {
    margin-bottom: -8px;
}

footer .f-items .f-item .address li strong {
    display: block;
    font-family: var(--font-default);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-heading);
}

footer.bg-dark .f-items .f-item .address li strong,
footer.bg-theme .f-items .f-item .address li strong {
    color: var(--white);
}

footer .footer-bottom {
    overflow: hidden;
    background: linear-gradient(90deg, rgba(237, 245, 255, 1) 0%, rgba(204, 223, 247, 1) 100%);
}

footer .footer-bottom p {
    margin-bottom: 0;
}

footer .footer-bottom li {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    z-index: 1;
    padding-left: 25px;
}

footer .footer-bottom li::before {
    position: absolute;
    left: -1px;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    background: #1d2746;
    border-radius: 50%;
    margin-top: -2px;
    opacity: 0.5;
}

footer.bg-dark .footer-bottom li::before,
footer.bg-theme .footer-bottom li::before {
    background: var(--white);
}

footer .footer-bottom li:first-child::before {
    display: none;
}

footer.bg-dark .footer-bottom,
footer.bg-theme .footer-bottom {
    background: var(--dark);
}

.appinment-forms input,
.appinment-forms .nice-select {
    border: none;
    background: #f9f9f9;
    color: #232323;
    border-radius: 5px;
}

.appinment-forms .nice-select .current {
    color: #666666;
}

.video-btn.theme i {
    color: var(--color-primary);
    background: var(--white);
}

.video-btn.theme i::after {
    background: var(--white);
}

.services-style-three .thumb {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 25px;
    display: inline-block;
    border-radius: 50%;
    transition: all 0.35s ease-in-out;
}

.services-style-three .item {
    padding: 60px 30px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.35s ease-in-out;
}

.services-style-three .item .shape {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 60%;
    width: 100%;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.services-style-three .item::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 0;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.55s ease-in-out;
    border-radius: 10px;
}

.services-style-three .item:hover::after,
.services-style-three .item.active::after {
    height: 100%;
}

.services-style-three .item p {
    transition: all 0.35s ease-in-out;
    margin: 0;
}

.services-style-three .item a {
    z-index: 1;
    position: relative;
}

.services-style-three .item:hover p,
.services-style-three .item:hover a,
.services-style-three .item.active p,
.services-style-three .item.active a {
    color: var(--white);
}

.services-style-three .item:hover p {
    opacity: 0.8;
}

.about-style-two .thumb {
    position: relative;
    padding: 0 50px;
    margin-right: 35px;
    max-width: 110%;
    margin-left: -10%;
}

.about-style-two .thumb img {
    border-radius: 50%;
}

.about-style-two .thumb img:nth-child(2) {
    position: absolute;
    height: 200px;
    right: 0;
    bottom: 30px;
    border: 5px solid var(--white);
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
}

.about-style-two .thumb .fun-fact {
    background: var(--color-secondary);
    display: inline-flex;
    color: var(--color-heading);
    position: absolute;
    left: 30px;
    top: 20px;
    height: 160px;
    width: 160px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-style-two .thumb .fun-fact .counter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
}

.about-style-two .thumb .fun-fact span.medium {
    font-size: 16px;
}

.faq-area .thumb img {
    margin-left: -20%;
    max-width: 120%;
}

.faq-area .faq-content .card {
    border: none;
    margin-bottom: 31px;
    overflow: inherit;
    background: transparent;
    border-radius: 5px;
    padding: 0;
}

.faq-area .faq-content .card:last-child {
    margin-bottom: 0;
}

.blue .faq-area .faq-content .card .card-header h4 {
    background: var(--color-primary);
}

.faq-area .faq-content .card .card-body {
    background: var(--white);
    margin-top: 15px;
    border-radius: 0 10px 0 0;
    padding: 30px;
}

.faq-area .faq-content .card .card-body p:last-child {
    margin-bottom: 0;
}

.faq-area.bg-gray .faq-content .card .card-header h4.collapsed {
    border: 1px solid #dddddd;
}

.pricing-style-two .pricing-item.active > i {
    background: var(--color-secondary);
    color: var(--white);
}

nav.navbar.bootsnav.navbar-transparent.white .attr-nav {
    border-left: none;
    min-height: auto;
    display: inline-block;
    float: right;
}

.banner-area.auto-height.banner-style-four .content {
    padding: 0;
    padding-bottom: 20px;
}

.banner-area.banner-style-four .banner-items .thumb img {
    border-radius: 50%;
    background: #ffffff;
    padding: 10px;
}

.banner-area.banner-style-four .banner-items .thumb {
    position: relative;
}

.banner-area.banner-style-four .banner-items .thumb i {
    display: inline-block;
    position: absolute;
    height: 100px;
    width: 100px;
    line-height: 120px;
    background: #ffffff;
    text-align: center;
    font-size: 50px;
    border-radius: 50%;
    color: #1239ac;
}

.banner-area.banner-style-four .banner-items .thumb i:nth-child(2) {
    left: 31px;
    top: 50px;
}

.banner-area.banner-style-four .banner-items .thumb i:nth-child(3) {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    height: 150px;
    width: 150px;
    line-height: 185px;
    font-size: 80px;
    margin-top: 38px;
    background: #ffb400;
    color: #000000;
}

.banner-area.banner-style-four .banner-items .thumb i:nth-child(4) {
    left: 73px;
    bottom: 0;
}

.banner-area.auto-height.banner-style-four .content li {
    font-size: 20px;
    line-height: 40px;
    padding-left: 35px;
    position: relative;
    z-index: 1;
}

.banner-area.auto-height.banner-style-four .content li::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    height: 26px;
    width: 26px;
    line-height: 26px;
    background: #ffb400;
    text-align: center;
    font-size: 14px;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #000000;
}

.award .item {
    padding: 140px 50px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-radius: 30px;
    padding-bottom: 50px;
}

.award .item h4 {
    font-weight: 600;
    color: var(--white);
    display: block;
    padding: 10px 30px;
    background: var(--color-primary);
    border: 2px solid var(--white);
    border-radius: 10px;
    position: relative;
}

.award .item h4::after {
    height: 150px;
    width: 150px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.award .item h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    margin-top: 80px;
}

.award .item h2 strong {
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-shadow: -1px 1px 0px #eceefe;
}

.award .item i {
    display: inline-block;
    font-size: 80px;
    margin-bottom: 25px;
    color: var(--white);
}

.award .item::before {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: url(assets/img/shape/bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.features-area .item .top h4 {
    font-weight: 600;
}

.features-area .item p {
    margin: 0;
}

.features-area .item .top i {
    display: inline-block;
    font-size: 60px;
    margin-bottom: 25px;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    line-height: 1;
}

.features-area .item .top i::after {
    position: absolute;
    left: -10px;
    top: -20px;
    content: "";
    height: 60px;
    width: 60px;
    background: linear-gradient(-62.5deg, transparent, rgba(237, 245, 255, 0.9));
    z-index: -1;
    border-radius: 50%;
}

.features-area .single-item:first-child {
    padding-right: 35px;
}

.features-area .single-item:last-child {
    padding-left: 35px;
}

.features-area .single-item .item {
    margin-top: 50px;
}

.features-area .single-item .item:first-child {
    margin-top: 0;
}

.features-area .single-item .item img {
    margin-bottom: 25px;
    height: 90px;
    width: 90px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 10px 30px 0 rgb(44 130 237 / 40%);
    border-radius: 5px;
}

.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active :hover.twentytwenty-overlay {
    background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
    opacity: 0;
}

.about-style-four .thumb {
    margin-right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-area.banner-style-four .banner-items .thumb {
        max-width: 80%;
        margin: auto;
        margin-top: 50px;
    }
.about-style-four .thumb {
        margin-right: 0;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
.banner-area.banner-style-four .banner-items .thumb i {
        display: none;
    }
.banner-area.banner-style-four .banner-items .thumb img {
        max-width: 80%;
        margin: auto;
    }
.banner-area.banner-style-four .banner-items .thumb {
        text-align: center;
        display: none;
    }
.about-style-four .thumb {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
nav.navbar.bootsnav.navbar-fixed.nav-box.navbar-default.bg-white ul.nav > li > a,
    nav.navbar.bootsnav.navbar-fixed.nav-box.navbar-default.bg-white .attr-nav > ul > li > a {
        color: var(--color-heading);
    }
nav.navbar.bootsnav.navbar-fixed.nav-box.navbar-default.bg-white.no-background {
        top: 80px
    }
}

@media (max-width: 1023px) {
nav.navbar.bootsnav.navbar-fixed.nav-box.navbar-default.bg-white .right-bar {
        position: absolute;
        right: 30px;
        top: 10px;
        left: auto;
        width: auto;
    }
nav.navbar.bootsnav.navbar-fixed.nav-box.navbar-default.bg-white .right-bar .search {
        display: none;
    }
.top-bar-area .logo {
        display: none;
    }
.top-bar-area.multi-content {
        padding-bottom: 20px;
    }
.top-bar-area .container-fill {
        text-align: center;
    }
}

.top-bar-area.fixed {
    position: absolute;
    width: 100%;
    z-index: 9;
}

.banner-style-five.auto-height .content {
    padding-top: 60px;
}

.banner-area.banner-style-five.text-multi-weight .content p {
    color: var(--white);
    opacity: 0.8;
    padding-right: 10%;
}

.top-bar-area.multi-content.fixed .social li a {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 44px;
}

.top-bar-area.fixed .info li i {
    color: var(--white);
}

.about-list-item .info {
    padding-left: 50px;
}

.process-style-four .content {
    position: relative;
    top: 60px;
}

.process-style-four-box .single-item:nth-child(2) {
    margin-top: 230px;
    position: relative;
    z-index: 1;
}

.process-style-four-box .single-item:nth-child(2) .process-style-four {
    background: var(--color-secondary);
}

.process-style-four-box .single-item:nth-child(3) .process-style-four {
    background: var(--color-primary);
}

.process-style-four-box .single-item:nth-child(3) .process-style-four i, .process-style-four-box .single-item:nth-child(3) .process-style-four h3 {
    color: var(--white);
}

.services-style-four .thumb {
    position: relative;
    z-index: 1;
    padding: 5px;
}

.services-style-four .thumb i {
    display: inline-block;
    position: absolute;
    left: 40px;
    bottom: -20px;
    height: 80px;
    width: 80px;
    background: var(--color-primary);
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    color: var(--white);
    font-size: 35px;
    z-index: 1;
    box-shadow: 0 5px 30px 0 rgb(214 215 216 / 57%);
    font-weight: 100;
}

.services-style-four .content {
    background: var(--white);
    padding: 40px;
    padding-top: 50px;
    border-radius: 0 0 10px 10px;
}

.services-style-four .thumb .shape {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.services-style-four .thumb img {
    border-radius: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.banner-style-five .thumb {
        display: none;
    }
.banner-style-five.auto-height .content {
        padding-bottom: 120px;
    }
.about-list-item .info {
        padding: 0;
        margin-top: 40px;
    }
.process-style-four-box .single-item:nth-child(2) {
        margin-top: 50px;
    }
.process-style-four-box .single-item {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
.banner-style-five.auto-height .content {
        padding-bottom: 50px;
    }
.about-list-item .info {
        padding: 0;
        margin-top: 40px;
    }
.process-style-four-box .single-item:nth-child(2) {
        margin-top: 30px;
    }
.process-style-four-box .single-item {
        margin-top: 30px;
    }
.process-style-four-box .single-item:first-child {
        margin-top: 0;
    }
}

@media (min-width: 1023px) {
.navbar-nav > li {
        float: none;
        display: inline-block;
    }
}

@media (min-width: 1024px) {
nav.navbar.bootsnav ul.nav > li > a {
        letter-spacing: 0;
        padding: 35px 11px;
    }
.navbar .align-center .navbar-collapse {
        text-align: center;
    }
.navbar.nav-full-width .align-center .navbar-collapse {
        text-align: left;
    }
.top-bar-area .col-lg-5.offset-lg-3.info {
        padding-left: 0;
    }
.navbar-standard .navbar-brand {
        position: relative;
        z-index: 1;
        padding: 20px !important;
        padding-right: 30px !important;
        display: block;
    }
.navbar-standard .navbar-brand::after {
        position: absolute;
        right: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 500%;
        background: var(--color-secondary);
        z-index: -1;
    }
}

@media (min-width: 1200px) {
.top-bar-area .col-lg-5.offset-lg-3.info {
        padding-left: 0;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
nav.navbar.bootsnav.navbar-fixed.nav-box.navbar-default.bg-white.no-background .col-lg-2.right-bar {
        display: none;
    }
nav.navbar.bootsnav.navbar-fixed.nav-box.navbar-default.bg-white.no-background .col-lg-7 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 768px) {
.navbar-nav {
        display: block;
        margin: 0;
        float: none;
    }
}

nav.navbar.navbar-standard .attr-nav {
    display: flex;
    align-items: center;
    justify-content: right;
}

nav.navbar.bootsnav.bg-dark ul.nav > li > a:hover {
    color: var(--white);
}

.top-bar-area .topbar-info-large li {
    display: flex;
    line-height: 1.3;
}

.top-bar-area .topbar-info-large {
    display: flex;
    align-items: center;
}

.top-bar-area .topbar-info-large span {
    text-transform: uppercase;
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.top-bar-area .topbar-info-large li i {
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    margin-right: 15px;
    font-size: 34px;
}

.top-bar-area .topbar-info-large li a {
    margin: 0;
    font-size: 20px;
}

.banner-area.banner-style-six.auto-height .content {
    margin-top: -80px;
}

.banner-style-six .thumb {
    position: relative;
}

.banner-style-six .thumb .sub-thumb {
    position: absolute;
    right: -120px;
    bottom: 0;
    z-index: -1;
    max-width: 250px;
}

.quote-request .title {
    font-weight: 600;
    margin-bottom: 30px;
}

.quote-request .nice-select {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 5px;
    min-height: 60px;
    height: 60px;
    line-height: 60px;
    padding-left: 20px;
}

.about-style-six .thumb {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-column-gap: 30px;
}

.about-style-six .thumb img:first-child {
    margin-top: 120px;
}

.about-style-six .thumb img:nth-child(2) {
    position: relative;
}

.about-style-six .btn {
    margin-top: 30px;
}

.testimonial-style-two-carousel .item .content {
    padding: 40px;
    background: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    border-radius: 5px;
}

.testimonial-style-two-carousel .item .privider {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.testimonial-style-two-carousel .item .privider img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    padding: 4px;
    background: var(--white);
    margin-right: 15px;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
}

.testimonial-style-two-carousel .item .privider h5 {
    margin: 0;
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-style-two-carousel .item .privider span {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 15px;
}

.testimonial-style-two-carousel .item .content img {
    height: 30px;
    width: auto;
    margin-bottom: 25px;
}

.testimonial-style-two-carousel .item p {
    margin: 0;
}

.bg-dark .testimonial-style-two-carousel .item p {
    color: var(--color-paragraph);
}

.testimonial-style-two-carousel .item .content::after {
    position: absolute;
    left: 30px;
    bottom: -14px;
    content: "";
    height: 15px;
    width: 20px;
    background: var(--white);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.bg-dark .testimonial-style-two-carousel .item .privider span {
    color: var(--white);
    opacity: 0.88;
}

.bg-dark .testimonial-style-two-carousel .item .privider img {
    background: rgba(255, 255, 255, 0.5);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.top-bar-area.top-bar-style-three .logo {
        display: none;
    }
.top-bar-area.top-bar-style-three .info.item-flex {
        width: 100%;
        justify-content: center;
    }
.top-bar-area .topbar-info-large li .info {
        text-align: left;
    }
.banner-style-six .thumb {
        display: none;
    }
.banner-area.banner-style-six.auto-height .content {
        margin: 0;
        padding: 0;
        padding-top: 50px;
        padding-bottom: 180px;
    }
.about-style-six .thumb {
        grid-template-columns: 1fr 1.2fr;
        margin-bottom: 30px;
    }
.about-style-six .thumb img:first-child {
        margin: 0;
    }
}

@media only screen and (max-width: 767px) {
.top-bar-area.top-bar-style-three .logo {
        display: none;
    }
.top-bar-area.top-bar-style-three .info.item-flex {
        width: 100%;
        justify-content: center;
    }
.banner-style-six .thumb {
        display: none;
    }
.banner-area.banner-style-six.auto-height .content {
        margin: 0;
        padding: 0;
        padding-top: 20px;
        padding-bottom: 120px;
    }
.about-style-six .thumb {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }
.about-style-six .thumb img:first-child {
        margin: 0;
    }
.about-style-six .thumb img:nth-child(2) {
        display: none;
    }
}
