:root {
    /* --dark-blue: #263f93;
    --dark-red: #94142b;
    --green: #5b9a49; */
    --dark-blue: #008afa;
    --light-blue: #e4f3ff;
    --dark-red: #ee0f39;
}

body {
    font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 600;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    box-shadow: none !important;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    outline: 0;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

ul, ol {
    padding: 0;
    list-style: none;
    margin: 0;
}


.red-link,
.red-link:hover {
    color: var(--dark-red);
}

.btn {
    color: #fff !important;
    padding: 6px 24px;
    border-radius: 10px;
    font-family: 'Saira Condensed', sans-serif;
    font-size: 20px;
    font-weight: 600;
}
.btn-blue,
.btn-red:hover {
    background-color: var(--dark-blue);
    border-bottom: 3px solid var(--dark-red);
}
.btn-blue:hover,
.btn-red {
    background-color: var(--dark-red);
    border-bottom: 3px solid var(--dark-blue);
}
.btn-hover-white {
    background-color: var(--dark-red);
    border-bottom: 3px solid #fff;
}
.btn-hover-white:hover {
    background-color: #fff;
    color: #333 !important;
    border-bottom-color: var(--dark-red);
}



/*** HEADER SECTION ***/
header {
    background-color: #d5e8f8;
}
header .address {
    font-weight: 500;
    font-size: 14px;
}
.navbar {
    border-radius: 10px;
    background-color: var(--dark-blue);
}
.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    z-index: 1;
    box-shadow: 2px 4px 8px rgb(33 40 50 / 15%);
}
.navbar-nav {
    height: 100px;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 600;
    font-size: 19px;
}
.nav-item {
    position: relative;
    margin: 0 20px;
}
.nav-item .nav-link {
    color: #fff !important;
    padding: 0 !important;
    margin: 36px 0;
}
.nav-item .nav-link::after,
.nav-item .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 65px;
    width: 0;
    height: 1px;
    z-index: 2;
    transition: 300ms ease-in-out;
    background-color: #fff;
}
.nav-item:hover > .nav-link::after,
.nav-item .nav-link.active::after {
    width: 100%;
}
.nav-item.dropdown .dropdown-menu {
    top: 100px;
    left: -20px;
    border-radius: 0;
    border: 0;
    border-top: 2px solid var(--dark-red);
    box-shadow: 2px 2px 20px rgb(52 58 64 / 10%)
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu .dropdown-item {
    font-weight: 600;
    font-size: 19px;
    transition: 0.5s;
}
.dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: var(--dark-blue);
}

.search-bar {
    position: relative;
}
.search-bar input {
    width: 150px;
    font-size: 14px;
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
}
.search-bar input::placeholder {
    color: #fff;
    opacity: 0.7;
}
.search-bar button {
    color: #fff !important;
    position: absolute;
    right: 5px;
    top: 0;
    line-height: 100%;
    padding: 6px 10px;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    color: #fff !important;
}
.navbar-toggler i {
    font-size: 30px;
}

.modal-content {
    width: 280px;
    border-radius: 0;
}
.modal-header {
    border: none;
}
.modal-body .search-bar input {
    color: #000 !important;
    border-color: var(--dark-blue) !important;
}
.modal-body .search-bar input::placeholder {
    color: #000;
}
.modal-body .search-bar button {
    color: var(--dark-blue) !important;
}
.modal-body ul {
    padding: 0;
}
.modal-body .navbar-nav {
    font-weight: 500;
    font-size: 18px;
}
.modal-body .navbar-nav li {
    border-top: 1px solid #ccc;
}
.modal-body .navbar-nav li span {
    display: inline-block;
    float: right;
    width: 50%;
    padding: 10px 20px;
    color: #000;
}
.modal-body .navbar-nav li a {
    display: inline-block;
    padding: 10px 20px;
    color: #000;
}
.modal-body .navbar-nav ul li a {
    padding: 10px 35px;
    font-size: 18px;
}
.modal-body .dropdown-menu {
    border: none;
}
.modal-body .dropdown-menu.show {
    position: relative !important;
    transform: unset !important;
}
#dropdown1::after,
#dropdown2::after {
    content: "";
    height: 27px;
    width: 27px;
    background: url('../images/icons/plus_icon.svg') no-repeat;
    float: right;
}
#dropdown1.show::after,
#dropdown2.show::after {
    background: url('../images/icons/minus_icon.svg') no-repeat;
}



/*** CAROUSEL ***/
.carousel-inner {
    height: 465px;
    border-radius: 10px;
}
.carousel-caption {
    margin-bottom: 10px;
}
.carousel-caption h5 {
    font-size: 70px;
    text-shadow: 3px 4px 7px rgba(0, 0, 0, 0.9);
}
.carousel-caption p {
    text-align: justify;
    font-size: 18px;
    text-shadow: 3px 4px 7px rgba(0, 0, 0, 1);
}

@media (max-width: 1200px) {
    .carousel-inner {
        height: 390px;
    }
}
@media (max-width: 992px) {
    .carousel-inner {
        height: 290px;
    }
    .carousel-caption p {
        display: none;
    }
}
@media (max-width: 768px) {
    .carousel-inner {
        height: auto;
    }
}



/*** BACK TO TOP ICON ***/
#back-to-top {
    position: fixed;
    right: 20px;
    bottom: -70px;
    z-index: 2;
    transition: bottom 0.3s;
}
#back-to-top a {
    display: inline-block;
    color: #fff;
    background-color: var(--dark-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    transition: 0.3s;
}
#back-to-top a:hover {
    background-color: var(--dark-red);
}



/*** MAIN SECTION ***/
.section-title {
    padding-top: 20px;
}
.section-title .sub-title {
    text-transform: uppercase;
    color: #222;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}
.section-title .sub-title::before {
    position: absolute;
    content: '';
    width: 2px;
    height: 15px;
    background-color: var(--dark-red);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}
.section-title .sub-title strong {
    color: var(--dark-red);
}
.section-title .main-title {
    font-size: 52px;
    letter-spacing: 0.6px;
    color: var(--dark-blue);
    line-height: 1.1;
    margin: 20px 0 0;
}
.section-title p {
    margin-top: 20px;
}

@media (max-width: 576px) {
    .section-title .sub-title {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .section-title .main-title {
        font-size: 34px;
    }
}



/*** ABOUT SECTION ***/
.about .col-lg-7 {
    position: relative;
}
.about .exprience {
    height: 140px;
    width: 140px;
    background-color: var(--light-blue);
    color: var(--dark-blue);
    border-bottom: 3px solid var(--dark-red);
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    position: absolute;
    top: 20px;
    right: 40px;
    line-height: 35px;
}
.about .exprience p {
    margin: 30px 0;
}
.about .exprience strong {
    color: var(--dark-red);
}

.about-count {
    padding-top: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.about-count .single-count {
    padding-left: 18px;
    position: relative;
}
.about-count .single-count::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--dark-red);
}
.about-count .single-count .count {
    display: block;
    font-size: 40px;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 100%;
    white-space: nowrap;
}
.about-count .single-count p {
    font-size: 24px;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 400;
    color: var(--dark-blue);
    line-height: 100%;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .about .exprience {
        position: relative;
        top: -20px;
        right: 0;
        margin-left: auto;
        margin-right: 0;
    }
}
@media (max-width: 992px) {
    .about .col-lg-7 {
        text-align: center;
    }
    .about .exprience {
        position: absolute;
        top: 30px;
    }
}
@media (max-width: 768px) {
    .about .exprience {
        display: none;
    }
}
@media (max-width: 576px) {
    .about-count .single-count {
        width: 50%;
        margin-bottom: 10px;
    }
}



/*** SERVICE SECTION ***/
.service,
.service > .row {
    padding: 0 48px;
}
.service-box {
    background-color: var(--light-blue);
    border-radius: 10px;
    height: 260px;
    margin-bottom: 25px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 35px;
    transition: 0.5s;
    position: relative;
}
.service-box:hover {
    box-shadow: 0px 11px 18px 0px rgb(0 0 0 / 29%);
}
.service-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    background-color: var(--dark-red);
    border-radius: 0 0 10px 10px;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
.service-box:hover::before {
    bottom: 6px;
    height: 6px;
}
.service-box .title {
    position: relative;
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 0;
}
.service-box .title::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--dark-red);
    bottom: 0;
    left: 0;
}
.service-box .title a {
    font-size: 28px;
    font-weight: 600;
    color: #222222;
    line-height: 1.1;
}
.service-box .more {
    display: inline-block;
    font-size: 16px;
    color: var(--dark-blue);
    margin-top: 14px;
    transition: 0.5s;
}
.service-box:hover .more {
    color: var(--dark-red);
}
.service-box .service-icon {
    max-width: 95px;
    margin-left: auto;
    margin-top: -30px;
    position: relative;
}
.service-box .service-icon .icon-path {
    transition: 0.5s;
    fill: var(--dark-blue);
}
.service-box:hover .service-icon .icon-path {
    fill: var(--dark-red);
}

@media (max-width: 1200px) {
    .service {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .service > .row,
    .service > .row > div {
        padding: 0;
    }
}
@media (max-width: 576px) {
    .service > .row > div {
        padding: 0 35px;
    }
    .image2{
        display:none;
    }
}



/*** CALL TO ACTION SECTION***/
.call-to-action-wrapper {
    background-color: var(--dark-blue);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 30px;
}
.call-to-action-content {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 40px 70px;
    height: 385px;
}
.section-title.section-title-white .sub-title {
    color: #ffffff;
}
.section-title.section-title-white .sub-title::before {
    background-color: #ffffff;
}
.section-title.section-title-white .main-title {
    color: #ffffff;
}
.call-to-action-content .content-wrapper p {
    color: #d8d6d6;
    margin-top: 20px;
}
.call-to-action-content .shape {
    position: absolute;
    bottom: 15px;
    right: 15px;
    opacity: 0.15;
}
.call-to-action-images {
    background-image: url("../images/call-to-action-bg.jpg");
    width: 50%;
    height: 385px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .call-to-action-wrapper {
        display: block;
    }
    .call-to-action-content,
    .call-to-action-images {
        width: 100%;
        padding: 30px;
    }
}



/*** WHY CHOOSE SECTION ***/
.choose-content p {
    margin-top: 20px;
}
.single-choose-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
}
.single-choose-item .item-icon img {
    width: 60px;
}
.single-choose-item .item-content {
    padding-left: 20px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: -5px;
}

@media (max-width: 576px) {
    .choose-content > img {
        width: 100%;
    }
}



/*** HOW WE WORK ***/
.how-we-work-wrapper {
    padding-top: 20px;
}
.single-work {
    position: relative;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    text-align: center;
    padding: 30px 30px 25px;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 240px;
    margin-top: 30px;
}
.single-work::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 8px;
    background-color: var(--dark-red);
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
.single-work .number {
    font-size: 40px;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 25px;
    opacity: 0.25;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.single-work .content-wrapper .title {
    margin-top: 10px;
    font-size: 22px;
}
.single-work .content-wrapper .title a {
    color: #333;
}
.single-work:hover {
    -webkit-box-shadow: 0px 11px 18px 0px rgb(0 0 0 / 29%);
    box-shadow: 0px 11px 18px 0px rgb(0 0 0 / 29%);
    background-color: var(--light-blue);
}
.single-work:hover::before {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.single-work:hover .number {
    opacity: 1;
}
.single-work .content-wrapper .title a:hover {
    color: var(--dark-blue);
}

@media (max-width: 1200px) {
    .single-work .number {
        top: 10px;
        left: 15px;
        font-size: 30px;
    }
}
@media (max-width: 992px) {
    .single-work .number {
        font-size: 40px;
        top: 20px;
        left: 25px;
    }
}



/*** BRAND SECTION ***/
.brand {
    background-color: var(--light-blue);
}
.brand .brand-wrapper {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.brand .single-brand {
    width: 180px;
}

@media (max-width: 768px) {
    .brand .single-brand {
        width: 130px;
    }
}



/*** FOOTER ***/
.footer-section {
    background-color: var(--dark-blue);
}
.footer-widget .title {
    font-size: 22px;
    color: #fff;
    margin-top: 20px;
    padding-bottom: 5px;
}
.footer-widget .widget-info p,
.footer-widget .widget-opening p {
    font-size: 14px;
}
.footer-widget p {
    color: #f2f2f2;
    font-weight: 300;
    margin: 5px 0 0;
}

.footer-link-wrapper {
    padding-left: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-link-wrapper .footer-widget {
    width: 50%;
}
.footer-widget-title {
    font-size: 32px;
    color: #fff;
    padding-top: 30px;
}
.footer-widget .widget-link {
    /* padding-top: 10px; */
}
.footer-widget .widget-link li {
    margin-top: 10px;
}
.footer-widget .widget-link li a {
    color: #fff;
    font-weight: 300;
}

.footer-widget .widget-subscribe .subscribe-form {
    position: relative;
    margin-top: 20px;
}
.footer-widget .widget-subscribe .subscribe-form input {
    width: 100%;
    border: 2px solid #006dc7;
    border-radius: 5px;
    padding-left: 20px;
    padding-right: 60px;
    height: 50px;
    background-color: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    outline: none;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.footer-widget .widget-subscribe .subscribe-form input::placeholder {
    color: #fff;
    opacity: 0.7;
}
.footer-widget .widget-subscribe .subscribe-form input:focus {
    border-color: #fff;
}
.footer-widget .widget-subscribe .subscribe-form button {
    position: absolute;
    top: 0;
    right: 0px;
    width: 50px;
    height: 50px;
    border: 0;
    background-color: #ffffff;
    font-size: 16px;
    color: var(--dark-blue);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0;
}

.footer-copyright-section {
    background-color: #006dc7;
}
.copyright-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.copyright-text {
    padding-top: 15px;
}
.copyright-text p {
    color: #b8b8b9;
    font-size: 15px;
}
.copyright-text p span {
    color: #ffffff;
}
.copyright-text p i {
    color: var(--dark-red);
}
.copyright-text p a {
    color: #ffffff;
}
.copyright-text p a:hover {
    text-decoration: underline;
}
.copyright-social {
    padding-top: 5px;
}
.copyright-social a {
    color: #ffffff;
    position: relative;
    font-size: 15px;
    margin-top: 10px;
    margin-right: 30px;
}
.copyright-social a:last-child {
    margin-right: 0;
}
.copyright-social a:hover {
    color: var(--dark-red);
}

@media (max-width: 992px) {
    .footer-link-wrapper {
        padding-left: 0;
    }
    .copyright-wrapper {
        display: block;
        text-align: center;
        padding-bottom: 15px;
    }
}



/*** ALL PAGES ***/
.page-banner {
    padding: 50px 0;
}
.page-banner-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.page-banner-content {
    /* max-width: 470px; */
    padding-right: 30px;
    width: 100%;
}
.page-banner-content .section-title .main-title {
    font-size: 80px;
    line-height: 1;
}

.page-banner-content .breadcrumb {
    margin-bottom: 0;
    margin-top: 10px;
}
.page-banner-content .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '//';
}
.page-banner-content .breadcrumb .breadcrumb-item {
    font-size: 16px;
    letter-spacing: 2px;
    color: #555;
}
.page-banner-content .breadcrumb .breadcrumb-item a {
    color: inherit;
}
.page-banner-content .breadcrumb .breadcrumb-item a:hover {
    color: var(--dark-blue);
}

.page-banner-images img {
    max-width: 100%;
}

@media (max-width: 992px) {
    .page-banner-content .section-title .main-title {
        font-size: 48px;
    }
}
@media (max-width: 768px) {
    .page-banner {
        padding: 0;
    }
}
@media (max-width: 576px) {
    .page-banner-wrapper {
        display: block;
    }
    .page-banner-content {
        padding-right: 10px;
        max-width: 280px;
    }
    .page-banner-images {
        text-align: center;
        padding: 0 15px;
        margin-top: 30px;
    }
    .page-banner-images img {
        width: 350px;
 
    }
}



/*** PRODUCTS PAGE ***/
.single-product {
    margin-top: 30px;
    overflow: hidden;
    border-radius: 15px;
    transition: 0.5s;
}
.single-product .product-image {
    position: relative;
    overflow: hidden;
}
.single-product .product-image a {
    display: block;
}
.single-product .product-image a img {
    width: 100%;
    max-height: max-content;
    object-fit: fill;
}
.single-product .product-content {
    text-align: center;
    background-color: var(--dark-blue);
    padding: 20px 30px;
}
.single-product .product-content a {
    color: #fff;
}
.single-product .product-content .name {
    line-height: 1;
}
.single-product:hover {
    -webkit-box-shadow: 0px 11px 18px 0px rgb(0 0 0 / 29%);
    box-shadow: 0px 11px 18px 0px rgb(0 0 0 / 29%);
}

.page-pagination {
    padding: 15px 0;
    text-align: center;
}
.page-pagination a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 2px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    border: 0;
}
.page-pagination a.active-page,
.page-pagination a:hover {
    background-color: var(--dark-blue);
    color: #ffffff;
}



/*** PRODUCT DETAILS PAGE ***/
.product-details-image img {
    width: 100%;
    border-radius: 15px;
}
.product-details-content {
    padding-left: 40px;
}
.product-details-content .title {
    font-size: 52px;
    color: var(--dark-blue);
    line-height: 1;
    margin-top: -3px;
}
.product-details-content .price .sale-price {
    font-size: 24px;
    font-weight: 500;
    color: #222222;
}
.product-details-content .price .regular-price {
    font-size: 24px;
    font-weight: 500;
    color: #a9a9a9;
    text-decoration: line-through;
    margin-left: 15px;
}
.product-details-content > p {
    margin: 15px 0 0;
    line-height: 1.75;
}
.product-details-content .product-label {
    padding-top: 10px;
}
.product-details-content .product-label .single-label {
    padding-top: 8px;
}
.product-details-content .product-label .single-label p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #222222;
}
.product-details-content .product-label .single-label p span {
    color: var(--dark-blue);
}

.product-details-tabs .nav li {
    position: relative;
    display: inherit;
    line-height: 1;
    margin-top: 10px;
}
.product-details-tabs .nav li button {
    padding: 0;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Saira Condensed', sans-serif;
    line-height: 1;
    background: none;
    color: #222222;
    border: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.product-details-tabs .nav li button.active,
.product-details-tabs .nav li button:hover {
    color: var(--dark-blue);
}
.product-details-tabs .nav li+li::before {
    content: '//';
    margin: 3px 10px;
    font-weight: 600;
    font-size: 24px;
    color: #222222;
}
.product-details-tabs .tab-content .description p {
    margin-top: 30px;
    line-height: 1.75;
}
.product-details-tabs .tab-content .information {
    padding-top: 25px;
}
@media (max-width: 768px) {
    .product-details-content {
        padding-left: 0;
        padding-top: 40px;
    }
	
}
@media (max-width: 991px) {
	.description{
		order:2;
	}
}




/*** SERCIVES DETAILS PAGE ***/
.service-details-content {
    margin-top: -150px;
}
.service-details-content .title {
    font-size: 52px;
    color: var(--dark-blue);
    margin-top: 40px;
    line-height: 1;
}
.service-details-content .details-description {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 200px;
    padding-bottom: 20px;
}
.service-details-content .details-description .description {
    width: 60%;
    padding: 0 30px;
}
.service-details-content .details-description .description p {
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.75;
}
.service-details-content .details-description .images {
    width: 40%;
    margin-top: 45px;
}
.service-details-content .details-description .images img {
    border-radius: 30px;
}

@media (max-width: 1200px) {
    .service-details-content .details-description .description,
    .service-details-content .details-description .images {
        width: 100%;
        padding: 0;
    }
}



/*** CONTACT PAGE ***/
.contact-image {
    padding-right: 40px;
    margin-top: 50px;
}
.contact-image img {
    width: 100%;
    border-radius: 30px;
    border-bottom: 3px solid var(--dark-red);
}
.contact-content {
    margin-top: 50px;
}
.contact-content .title {
    font-size: 52px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1;
    margin-top: -5px;
}
.contact-content .sub-title {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 5px;
}
.content-info .single-info {
    padding-top: 40px;
}
.content-info .single-info .info-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-blue);
}
.content-info .single-info p {
    margin-bottom: 0;
    font-size: 18px;
}
.content-info .single-info p a {
    color: #222;
}
.content-info .single-info p a:hover {
    color: var(--dark-blue);
}
.content-info .single-info .social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 15px;
}
.content-info .single-info .social li {
    margin-right: 15px;
}
.content-info .single-info .social li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #c9d9fc;
    border-radius: 50%;
    text-align: center;
    color: var(--dark-blue);
    font-size: 16px;
    border: 0;
}
.content-info .single-info .social li a:hover {
    background-color: var(--dark-blue);
    color: #ffffff;
}

.contact-form-wrapper {
    max-width: 770px;
    margin: 0 auto;
}
.contact-form-wrapper .single-form {
    margin-top: 30px;
}
.contact-form-wrapper .single-form input:not([type="submit"]),
.contact-form-wrapper .single-form textarea {
    border: 1px solid #cde9ff;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #222222;
    border-radius: 10px;
    background-color: transparent;
    margin-bottom: 0;
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
    height: 50px;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.contact-form-wrapper .single-form input:not([type="submit"]):focus,
.contact-form-wrapper .single-form textarea:focus {
    outline: none;
    border-color: #ee0f39;
}
.contact-form-wrapper .single-form textarea {
    height: 220px;
    padding-top: 15px;
    resize: none;
}
.form-message {
    margin-bottom: 0;
    display: inline-block;
}