
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #2e3647;
    text-decoration: none;
}

a:hover {
    color: #2e3647;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #2e3647;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
    right: -8px;
    position: relative;
}

.back-to-top:hover {
    background: #6bc1e9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgb(255 255 255 / 90%);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 100px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #31a9e1;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #47b2e4;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(40, 58, 90, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #37517e;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    background: #37517e;
}

#hero .container {
    padding-top: 72px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #47b2e4;
}

#hero .btn-get-started:hover {
    background: #209dd8;
}

#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}

#hero .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#hero .btn-watch-video:hover i {
    color: #47b2e4;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

    #hero .animated {
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
    
.bi-list::before {
    content: "\f479";
    background: #000;
}

section#home-sec-one img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

div#top-header .col-md-8 {
    display: none !important;
}

div#top-header .col-md-4 {
    width: 100%;
    text-align: center;
}

div#top-header p {
    text-align: center;
}

body div#pickup-calendar button{width:110px !Important;}

.view-review div#avatar-sec img{height:auto !important;}

.details.shadow {}

.details.shadow table.table.table-bordered {
    table-layout: fixed;
}

.details.shadow table.table.table-bordered th {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
}

.details.shadow table.table.table-bordered td {
    font-size: 12px;
    justify-content: center;
    align-items: center;
}


#header .logo img {
    height: 100px;
    width: 100px;
}

section#check-out-page11 button.btn.action__submit.custom-button {
    width: 100% !important;
        padding: 0 !important;
}

body .container.main-faq-sec{
        padding: 30px 0px !important;
    }
    
body .container.main-faq-sec a.toggle-heading{font-size:12px;}
}



@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
    margin-top: 43px;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 25px;
    text-transform: capitalize;
    padding-bottom: 20px;
    position: relative;
    color: #000000;
    font-weight: 600;
    font-family: 'Jost';
}

.section-title h2::before {
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
    font-family: 'Poppins';
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
    text-align: center;
}

.clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}

.clients img:hover {
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #47b2e4;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #47b2e4;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
    background: #47b2e4;
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #37517e;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: #47b2e4;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #37517e;
    font-family: "Poppins", sans-serif;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #47b2e4;
}

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #37517e;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e8edf5;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
}

.services .icon-box .icon {
    margin-bottom: 10px;
}

.services .icon-box .icon i {
    color: #47b2e4;
    font-size: 36px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #37517e;
    transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
    color: #47b2e4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #47b2e4;
    border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #47b2e4;
    color: #fff;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 3;
    right: 15px;
    transition: all 0.3s;
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #f9fcfe;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
    height: 100%;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover {
    transform: translateY(-10px);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #37517e;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

.team .member .social a i {
    color: #37517e;
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #47b2e4;
}

.team .member .social a:hover i {
    color: #fff;
}

.team .member .social a+a {
    margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #37517e;
}

.pricing h4 {
    font-size: 48px;
    color: #37517e;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: #47b2e4;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #47b2e4;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
    background: #47b2e4;
    color: #fff;
}

.pricing .featured {
    border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
    background: #47b2e4;
    color: #fff;
}

.pricing .featured .buy-btn:hover {
    background: #23a3df;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #37517e;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

/*.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}*/

.faq .faq-list p {
    margin-bottom: 0 !important;
    padding: 10px 0 0 0 !important;
    font-size: 14px !important;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0;
    outline: none;
    cursor: pointer;
}


.faq .faq-list a.collapsed {
    color: #37517e;
    transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
    color: #37517e;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #47b2e4;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37517e;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #47b2e4;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #47b2e4;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

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

.contact .php-email-form label {
    padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #47b2e4;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #47b2e4;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #209dd8;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f3f5fa;
    min-height: 40px;
    margin-top: 72px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #37517e;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4668a2;
    content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: #000000 !important;
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #f3f5fa;
    text-align: center;
    font-size: 15px;
    color: #444444;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #37517e;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #47b2e4;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #209dd8;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #000;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {font-size: 20px;font-weight: bold;color: #ffffff;position: relative;padding-bottom: 12px;}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: #5e5e5e;
}

#footer .footer-top h4 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #47b2e4;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #47b2e4;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #47b2e4;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #209dd8;
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

#footer .copyright {
    float: left;
}

#footer .credits {
    float: right;
    font-size: 13px;
}

#footer .credits a {
    transition: 0.3s;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

header#header {
    position: relative;
    background: white;
}

div#top-header {
    background: #2E3647;
    padding: 16px 0 !important;
}

div#top-header p {
    margin: 0 0 !important;
    text-align: end;
    font-family: 'poppins';
    color: white !important;
}



div#top-header p span i.bi.bi-telephone {
    color: white;
}


nav#navbar a.nav-link.scrollto.active {
    color: black !important;
}

nav#navbar li a {
    color: black !important;
    font-family: 'Poppins';
    font-size: 16px !important;
}

nav#navbar a.getstarted.scrollto {
    background: #2e3647;
    color: white !important;
    padding: 17px 17px !important;
    left: 0 !important;
    text-align: center !important;
    border: 1px solid;
}

nav#navbar i.bi.bi-shop-window {
    margin: 0 0 !important;
}


section#home-sec-one {
    padding: 0 0 !important;
}
section#home-sec-one .container-fluid {
    padding: 0 0 !important;
}

section#home-sec-one img {
    width: 100% !important;
    height: 600px;
    object-fit: cover;
}

/* slider */

.slider{
    position: relative;
    max-width: 40rem;
    height: 16.625rem;
    margin: 0 auto;
    overflow: hidden;
}
.slide{
    position: absolute;
    top:0;
    width: 100%;
    height: 26.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s;
}
.slide > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
button{
    background: none;
    border: none;
}
button .fas{
    color: rgba(255, 255, 255, .5);
}
.btn-slide{
    position:absolute;
    top:50%;
    z-index: 10;

    height: 5.5rem;
    width: 5.5rem;
    cursor: pointer;
}
.prev{
    left:3rem;
    transform: translate(-50%, -50%);
}
.next{
    right: 3rem;
    transform: translate(50%, -50%);
}
.dots-container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.dot{
    width: 25px;
    height: 5px;
    margin: 15px 5px;
    border-radius: .5rem;
    background: rgba(39,39,39, .5);
    cursor: pointer;
}
.dot.active{
    background:#272727;
}

.new-slider {
    position: relative;
    max-width: 40rem;
    height: 26.625rem;
    margin: 0 auto;
    overflow: hidden;
}

.new-slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 26.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s;
}

.new-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-btn-slide {
    background: none;
    border: none;
}

.new-btn-slide .fas {
    color: rgba(255, 255, 255, .5);
}

.new-btn-slide {
    position: absolute;
    top: 50%;
    z-index: 10;
    height: 5.5rem;
    width: 5.5rem;
    cursor: pointer;
}

.new-prev {
    left: 3rem;
    transform: translate(-50%, -50%);
}

.new-next {
    right: 3rem;
    transform: translate(50%, -50%);
}

.new-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.new-dot {
    width: 25px;
    height: 5px;
    margin: 15px 5px;
    border-radius: .5rem;
    background: rgba(39, 39, 39, .5);
    cursor: pointer;
}

.new-dot.active {
    background: #272727;
}


.my-slider {
    position: relative;
    max-width: 40rem;
    height: 26.625rem;
    margin: 0 auto;
    overflow: hidden;
}

.my-slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 26.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1s;
}

.my-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-btn-slide {
    background: none;
    border: none;
}

.my-btn-slide .fas {
    color: rgba(255, 255, 255, .5);
}

.my-btn-slide {
    position: absolute;
    top: 50%;
    z-index: 10;
    height: 5.5rem;
    width: 5.5rem;
    cursor: pointer;
}

.my-prev {
    left: 3rem;
    transform: translate(-50%, -50%);
}

.my-next {
    right: 3rem;
    transform: translate(50%, -50%);
}

.my-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.my-dot {
    width: 25px;
    height: 5px;
    margin: 15px 5px;
    border-radius: .5rem;
    background: rgba(39, 39, 39, .5);
    cursor: pointer;
}

.my-dot.active {
    background: #272727;
}


div#flex-dev {
    padding: 8px 12px !important;
    border: 1px solid #eee;
    border-radius: 20px !important;

    box-shadow: 0 0 20px 0 #eee;
    text-align: center;
}

div#flex-item {
    padding: 8px 12px !important;
    border: 1px solid #eee;
    border-radius: 20px !important;

    box-shadow: 0 0 20px 0 #eee;
    text-align: center;
}

.new-card-content-sec {
    font-family: 'Jost';
}

.new-card-content-sec h6 {
    font-family: 'Poppins';
    font-size: 20px !important;
    color: black !important;
}

.new-card-content-sec a.new-card-ctn-btn {
    background: #2e3647 !important;
    width: 100% !important;
    position: relative;
    display: inline-block;
    color: white !important;
    padding: 12px 0 !IMPORTANT;
    border-radius: 9px;
}

a.my-card-ctn-btn {
    background: #2e3647 !important;
    width: 100% !important;
    position: relative;
    display: inline-block;
    color: white !important;
    padding: 12px 0 !IMPORTANT;
    border-radius: 9px;
    font-family: 'Jost';
}

.my-card-content-sec {
    font-family: 'Jost';
}

.my-card-content-sec h6 {
    font-family: 'Poppins';
    font-size: 20px !important;
    color: black !important;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    background: black !important;
    width: 77px !important;
    height: 50px;
    color: white !important;
}


section#home-sec2 h1 {
    text-align: center !important;
    font-size: 20px !important;
    color: black;
}

section#home-sec2 h2 {
    text-align: center !important;
    font-size: 25px;
    color: black;
    font-family: 'Poppins' !important;
    font-weight: 800;
    margin-bottom: 47px;
}

/* End */


section#home-sec3 {
    padding-top: 0px !important;
}

section#home-sec3 h6 {text-align: center !important;font-size: 20px !important;color: black;}

section#home-sec3 h5 {text-align: center !important;font-size: 25px;color: black;font-family: 'Poppins' !important;font-weight: 800;}

section#home-sec3  p#head {
    font-size: 16px !important;
    font-family: 'Poppins';
    text-align: center;
    margin-bottom: 53px;
}

/*.card-dev {
  text-align: center !important;
  border: 1px solid #eee;
  height: 291px;
  padding-top: 28px !important;
  margin-bottom: 29px;
  border-radius: 25px;
  box-shadow: 0 0 20px 0 #eee;
  padding: 0  18px;
}*/


.new-card-content-sec a.new-card-ctn-btn:hover {
    background: grey !important;
    transition: all 0.5s;
}

.card-dev {
    text-align: center !important;
    border: 1px solid #eee;
    height: 291px;
    padding-top: 28px !important;
    margin-bottom: 29px;
    border-radius: 5px;
    box-shadow: 2px 2px 8px 0 #1e1c1c14;
    padding: 0 18px;


}


.card-dev i.bi.bi-truck {
    background: black !important;
    width: 85px !important;
    display: inline-block;
    position: relative !important;
    text-align: center;
    height: 85px;
    line-height: 85px;
    font-size: 40px !important;
    color: white;
    border-radius: 46px;
    margin: 0 auto;
}

.card-dev .icons {
    text-align: center !important;
}

.card-dev h4 {
    color: black !important;
    margin-top: 21px;
}

.card-dev p {
    font-family: 'Poppins';
}


section#home-sec4 {
    padding: 0 0 !important;
    text-align: center !important;
}

section#home-sec4 h1 {
    font-size: 22px !important;
    color: black;
}

section#home-sec4 p {
    font-family: 'Poppins';
}

section#home-sec4 h3 {
    font-family: 'Jost';
    color: black;
    font-size: 22px;
}

section#home-sec4 h6 {
    font-family: 'Jost';
    color: black !important;
    font-size: 16px !important;
}

section#home-sec4 h4 {
    font-family: 'Jost';
    color: black !important;
    font-size: 22px;
    padding: 7px 0 !important;
}


#footer ul {
    padding: 0 0 !important;
}

#footer li {
    list-style: none !important;
    margin-bottom: 20px;
}

#footer a {
    font-family: 'Poppins';
    font-size: 15px !important;
    color: white !important;
}

i.bx.bx-chevron-right {
    color: white;
}

#footer p {
    color: white !important;
    font-family: 'Poppins';
    font-size: 15px !important;
}

#footer  img {
    width: 53% !important;
    margin: 0 auto;
    text-align: center !important;
}

.ftr-section {
    text-align: center !important;
}

.icon-socials {
    display: flex;
    justify-content: center !important;
    gap: 37px;
    margin-top: 27px;
}

.icon-socials i.bi {
    font-size: 20px !important;
    background: white !important;
    color: black;
    width: 60px;
    height: 60px;
    line-height: 57px;
    border-radius: 49px;
}




/* Card Images */


.card{
    width: 100%;
    border-radius: 10px !important;
}

.card-img-top{
    border-top-right-radius: 10px !important;
    border-top-left-radius: 10px !important;
}
span.text-muted{
    font-size: 12px !important;
}
small.text-muted{
    font-size: 8px !important;
}
h5.mb-0{
    font-size: 1rem !important;
}
small.ghj{
    font-size: 9px !important;
}
.mid{
    background: #ECEDF1 !important;
}
h6.ml-1{
    font-size: 13px !important;
}
small.key{
    text-decoration: underline !important;
    font-size: 9px !important;
    cursor: pointer !important;
}
.btn-danger{
    color: #FFCBD2 !important;
}
.btn-danger:focus{
    box-shadow: none !important;
}
small.justify-content-center{
    font-size: 9px !important;
    cursor: pointer !important;
    text-decoration: underline !important;
}

@media screen and (max-width:600px){
    .col-sm-4{
        margin-bottom: 50px !important;
    }
}


.add_to_cart_btn {
    text-align: center !important;
}

button#Booking__wrap {
    width: 77% !important;
    border-radius: 10px;
    background: #292929 !important;
    font-family: 'jost';
    margin-top: 15px !important;
}

section#shop_page_header {
    background: black !important;
    text-align: center !important;
    padding: 40px 0 !important;
}

section#shop_page_header h2 {
    font-family: 'Jost';
    font-weight: 800;
    font-size: 38px;
    color: white !important;
}


.quantity-btn {
    padding: 5px 10px;
    font-size: 16px;
}

#quantity-input {
    width: 50px;
    text-align: center;
}



div#Image___switcher__wrapper .image-Variant .preview-image img {
    width: 100% !important;
}

div#Image___switcher__wrapper .image-Variant .img_blk_switcher img {
    /* width: 100% !important;
     border: 1px solid #eee;
     border-radius: 20px;
     box-shadow: 0 0 20px 0 #eee;
     padding: 0 8px !important;*/
}

.Description_wrap h1.Commerce-heading {
    font-size: 35px;
    color: black;
    font-weight: 700;
    padding-top: 61px;
    text-align: left;
}



.Description_wrap p#bdi-price {
    font-family: 'poppins';
    font-size: 26px !important;
    color: black !important;
    font-weight: 600;
}

/*.Description_wrap p#des-detail {
    font-family: 'Poppins';
    font-size: 14px !important;
}*/

.Description_wrap p#des-detail {
    font-family: 'Poppins';
    font-size: 14px !important;
    line-height: 29px;
    color: #222;
}

.Description_wrap li {
    font-family: 'Poppins';
    font-size: 14px !important;
    line-height: 25px;
    list-style: none !important;
}

.Description_wrap li::before {
    content: "\F26F";
    font-family: 'bootstrap-icons';
    margin-right: 15px;
    position: relative;
    top: 2px;
}

.Description_wrap  ul {
    padding: 0 0 !important;
}



.Description_wrap .booking-form-detailed label {
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-size: 14px !important;
    line-height: 29px;
    width: 100% !important;
    color: black !important;
}

.Description_wrap .booking-form-detailed input#book {
    width: 100% !important;
    padding: 10px 34px !important;
    border-radius: 46px;
    border: 1px solid #eee;
    margin-top: 10px;
}

/* [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    width: 50px !important;
    height: 50px !important;
    border-radius: 47px;
    font-size: 23px;
    background: #2e3647 !important;
} */

#quantity-input {
    width: 50px !important;
    height: 50px !important;
    border-radius: 45px;
    border: 1px solid #eee;
    font-family: 'Open Sans';
}

div#quant-ti-ty {
    text-align: center;
    padding-top: 29px;
    display: flex;
    gap: 14px;
    justify-content: center !important;
}

div#add-to-cart button#submit-checkout {
    width: 100% !important;
    margin-top: 37px;
    font-size: 16px !important;
    font-family: 'Jost';
}


.view-review {
    display: flex;
    gap: 12px;
}

.view-review div#avatar-sec img {
    width: 100% !important;
    border-radius: 61px !important;
    border: 1px solid #eee;
    height: 77px;
    padding: 6px 6px !important;
    box-shadow: 0 0 0 0 #eee;
}

div#review-content {
    width: 87% !important;
}

.view-review div#avatar-sec {
    width: 13% !important;
}

div#review-content h3 {
    font-family: 'Jost';
    font-size: 20px !important;
    color: black !important;
}

div#review-content p {
    font-family: 'Poppins';
    font-size: 14px !IMPORTANT;
    margin: 0 0 6px 0 !important;
}

.review-icon i {
    color: black;
    background: #ffca0b !important;
    width: 30px;
    display: inline-block;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 27px;
}



div#View__form__section h6 {
    font-family: 'Jost';
    color: black !important;
    padding-top: 25px;
}

div#View__form__section p {
    font-family: 'Poppins';
    font-size: 14px !important;
}

div#View__form__section div#Your_review {
    margin-bottom: 20px;
}



form#review_adding_form label {
    width: 100% !important;
    font-family: 'Poppins';
    color: black !important;
    font-size: 14px !important;
}

form#review_adding_form textarea {
    width: 100% !important;
    height: 115px;
    border-radius: 20px;
    border: 1px solid #eee;
    margin-top: 10px;
    padding: 14px 17px !important;
}

form#review_adding_form .flex-detailed-form-review {
    display: flex !important;
    gap: 10px !important;
    margin-top: 18px;
    margin-bottom: 22px;
}

form#review_adding_form input {
    width: 100% !important;
    padding: 13px 13px !important;
    border: 1px solid #eee;
    margin-top: 10px;
    border-radius: 9px;
}

form#review_adding_form button {
    width: 26% !important;
    background: black !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    font-family: 'Jost';
    border-radius: 5px !important;
}

p.additionalP {
    text-align: center;
    font-size: 38px;
    font-family: 'Jost';
    color: black !important;
    margin-bottom: 55px;
    border-bottom: 1px solid #eee;
    padding: 0 0 22px 0 !important;
}



section#review-section-E-commerce div#additional-tabs {
    border-top: 1px solid #eee;
    padding-top: 15px;
}


.view-review {
    margin: 20px 0 !important;
    border: 1px solid #eee;
    padding: 19px 24px !important;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 #eee;
    transition: all 0.5s;
}

.view-review:hover {
    transition: all 0.5s;
    transform: scale(1.02);
}


.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
    font-family: 'Jost';
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: 'Jost';
}
.form-group input[type="checkbox"] {
    margin-top: 5px;
}
.btn {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.btn:hover {
    background-color: #45a049;
}




div#billing-get button.btn {
    width: 20% !important;
    font-family: 'Jost';
    margin-bottom: 27px !important;
    border-radius: 0px !important;
    font-size: 16px !important;
    border-radius: 6px !important;
}




/* New */

.content {
    z-index: 9999;
}
.secure, .backBtn {
    display: flex;
}
.secure span, .backBtn span {
    margin-left: 5px;
}
.backBtn {
    margin-top: 20px;
    font-family: 'Jost';
}
.secure {
    color: #afb5c0;
    align-items: flex-end;
}
.secure .icon {
    font-size: 20px;
    line-height: 20px;
}

.logo .icon {
    font-size: 32px;
    line-height: 32px;
    margin-right: 5px;
}
img {
    width: 100%;
    border-radius: 8px 0 0 8px;
}
.details {
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 32px;
    border: 1px solid #eee;
}
.details__item {
    display: flex;
}
.details__user {
    background: #2e3647;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    color: white !important;
    font-family: 'Jost' !important;
    margin-top: 60px;
}
.item__quantity {
    position: absolute;
    right: 50px;
    top: 30px;
    font-size: 20px;
    display: none !important;
}
.item__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
}
.item__image .iphone {
    width: 100%;
}
.item__details {
    padding: 30px;
    width: 55% !important;
}
.item__title {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Jost';
}
.item__price {
    font-size: 22px;
    color: #000000;
    font-family: 'Jost';
}
.icon {
    font-size: 16px;
    vertical-align: middle;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 80px 0;
    color: #246eea;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.shadow {
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}

.txt {
    border-color: #2e3647;
    width: 100%;
}
.input {
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
    height: 48px;
    padding-left: 15px;
    font-weight: 600;
    font-size: 14px;
    color: #5e6977;
}
input[type="text"] {
    display: initial;
    padding: 15px;
}
.text-validated {
    border-color: #7dc855;
    background-image: url("../images/icon-tick.png");
    background-repeat: no-repeat;
    background-position: right 18px center;
}
.ddl {
    border-color: #2e3647;
    background-color: #f0f4f7;
    width: 165px;
}
.title {
    font-size: 14px;
    padding-bottom: 8px;
    font-family: 'Jost';
}
.field {
    padding-top: 15px;
    padding-right: 30px;
    width: 100%;
}
.field.small {
    width: 100%;
}
.notification {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    display: flex;
    justify-content: center;
}
.notification .icon {
    font-size: 28px;
    color: #7dc855;
    line-height: 28px;
    margin-right: 10px;
}
.actions {
    display: flex;
    flex-direction: column;
    padding: 60px 0 40px 0;
}
.payment {
    padding: 20px 0 0 0;
}
.payment__title {
    margin: 40px 0 20px 0;
    font-size: 18px;
    display: flex;
    text-align: left;
    font-family: 'Jost';
}
.payment__title .icon {
    margin-right: 10px;
}
.btn {
    border-radius: 8px;
    border: 0;
    letter-spacing: 1px;
    color: #fff;
    background: #2e3647;
    padding: 20px 60px;
    white-space: nowrap;
    font-family: 'Jost';
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    transition: all 0.15s ease;
    text-decoration: none;
}
.btn .icon {
    margin-left: 10px;
    font-size: 20px;
}
.btn:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    color: white;
    background: #2e3647;
}
.btn.action__back {
    background: transparent;
    color: #a0a0a0;
}
.payment__types {
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment__info {
    display: flex;
}
.payment__cc {
    flex: 60%;
}
.payment__shipping {
    flex: 40%;
}
.shipping__info {
    background: #f6f9fc;
    padding: 10px;
    border-radius: 8px;
}
.payment__type {
    display: flex;
    border: 2px solid #d9d9d9;
    border-radius: 8px;
    padding: 12px 18px;
    width: 100%;
    justify-content: center;
    font-family: 'Jost';
    align-items: center;
    cursor: pointer;
    color: #d9d9d9;
    transition: all 0.15s ease;
}
.payment__type:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}
.payment__type.active {
    color: #0a0a0a;
    background: #2e364721;
    border-color: #2e3647;
}
.payment__type .icon {
    font-size: 32px;
    margin-right: 10px;
}
.payment__type + .payment__type {
    margin-left: 10px;
}
.icon-xl {
    font-size: 48px;
    line-height: 48px;
}
.content {
    display: block;
}
.thankyou {
    display: block;
}
.thankyou .details {
    opacity: 1;
    justify-content: center;
    align-items: center;
}
.thankyou .details h3 {
    font-weight: 600;
}
.thankyou .details__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.thankyou .details__item .icon-xl {
    font-size: 32px;
    color: #7dc855;
    line-height: 32px;
}
.loading {
    position: relative;
}
.loading:after {
    -webkit-animation: spinAround 0.5s infinite linear;
    animation: spinAround 0.5s infinite linear;
    border: 4px solid #7dc855;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    height: 5em;
    width: 5em;
    position: absolute;
}
.loading .details__item {
    opacity: 0;
}
@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}


div#billing-get {
    padding: 0 0 !important;
}

ul {
    padding: 0 0 !important;
}

.item__description li {
    padding: 9px 0 0 0;
    font-family: 'Jost';
    color: black;
}

section#check-out-page11 h3 {
    margin-bottom: 42px;
}

button#Booking__wrap a {
    color: white !important;
    font-size: 17px !important;
}

div#add-to-cart button#submit-checkout a {
    color: white !important;
}

header#header {
    text-align: center !important;
}

header#header h1.site-header__title {
    font-family: 'Jost';
    color: black;
    font-size: 54px;
}

.main-content i {
    color: green;
    font-size: 92px;
}

p.main-content__body {
    color: black;
    font-family: 'Poppins';
    font-size: 15px;
    width: 48%;
    margin: 26px auto;
}

.main-content {
    text-align: center !important;
}

.button-to-home-page a {
    background: #2e3647 !important;
    color: white !important;
    font-family: 'Jost';
    padding: 18px 35px !important;
    line-height: 112px;
}


/* faq */


.faq-page{
    width: 90%;
    max-width: 1240px;
    margin: 50px auto;
    padding: 20px;
}

.accordion {
    cursor: pointer;
    padding: 15px 20px 15px 0;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-size: 14px;
    /*   background-color: #ebf9fe;
      margin-bottom: 2px;*/
}

.accordion:after {
    content: '\2b'; /* Unicode character for "plus" sign (+) */
    font-size: 21px;
    color: #777;
    float: right;
    border: 2px solid;
    margin-left: 5px;
    border-radius: 40px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 27px;
}

.active:after {
    content: "\F2EA"; /* Unicode character for "minus" sign (-) */
    font-size: 16px;
    text-align: center;
}

.active, .accordion:hover {
    font-weight: 500;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p{
    padding: 20px;
    font-size: 14px;
}

.panel ul{
    margin: 40px 0;
}

.panel ul > li{
    font-size: 1.4rem;
}

.Privacy-page-main {
    background: black;
    padding: 2% 0%;
}

section.main-banner {
    padding: 0px !important;
    overflow: hidden;
}

.Privacy-page-main h2 {
    text-align: center;
    color: white;
    padding-bottom: 16px;
    font-size: 38px;
}

.Privacy-page-main p {
    text-align: center;
    color: white;
    font-size: 14px;
    width: 46%;
    margin: 0 auto;
    line-height: 24px;
}


.active:after {font-family: 'bootstrap-icons';}


.contect-mang p {
    padding: 11px 23px !important;
}

.panel.contect-mang {
    margin-top: 10px;
}

.container.main-faq-sec {
    margin-bottom: 5%;
}

.consent {
    margin-top: 4%;
}

.consent h3 {
    color: black;
    font-size: 18px;
    margin-bottom: 12px;
}

.consent strong {
    color: black;
    font-size: 14px;
}

.consent h3 p {
    color: black;
    font-size: 14px;
}

.consent p {
    color: black !important;
    margin-top: 2%;
    font-size: 14px;
}

section.main-banner {
    font-family: 'Poppins';
}

.container.main-faq-sec {
    font-family: 'Poppins';
}

.main-heading {
    background: black;
    padding: 2% 0%;
    text-align: center;
}

.container-fluid.main-heading h2 {
    color: white;
    font-size: 38px;
    font-family: 'Poppins';
}


.teram-main-sec {
    color: black;
}

.teram-main-sec li {
    list-style: none;
    line-height: 29px;
}

.teram-main-sec h3 {
    font-size: 30px;
    margin-bottom: 20px;
}


.data-page h2 {
    text-align: center;
    color: white;
    /* padding-bottom: 16px; */
    font-size: 38px;
}

.toolge-inner p {
    padding: 0px !important;
}

.toolge-inner {
    padding-top: 8px;
}



/* =============================================================== */

.right_conatct_social_icon{
    background: linear-gradient(to top right, #000000 -5%, #ffffff 100%);
}
.contact_us{
    padding: 60px 0px;
}

.contact_inner{
    background-color: #ffffff;
    position: relative;
    /* box-shadow: 20px 22px 0px #cccc; */
    /* border-radius: 9px; */
}

.contact_field{
    padding: 60px 340px 90px 100px;
}
.right_conatct_social_icon{
    height: 100%;
}

.contact_field h3{
    color: #000;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px
}
.contact_field p{
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 35px;
}
.contact_field .form-control{
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
}
.contact_field .form-control:focus{
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #1325e8;
}
.contact_field .form-control::placeholder{
    font-size: 13px;
    letter-spacing: 1px;
}

.contact_info_sec {
    position: absolute;
    background-color: #2d2d2d;
    right: 1px;
    top: 18%;
    height: 340px;
    width: 340px;
    padding: 40px;
    border-radius: 25px 0 0 25px;
}
.contact_info_sec h4{
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.info_single{
    margin: 30px 0px;
}
.info_single i{
    margin-right: 15px;
}
.info_single span{
    font-size: 14px;
    letter-spacing: 1px;
}

button.contact_form_submit {
    background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
    border: none;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    margin-top: 25px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
}
.socil_item_inner li{
    list-style: none;
}
.socil_item_inner li a{
    color: #fff;
    margin: 0px 15px;
    font-size: 14px;
}
.socil_item_inner{
    padding-bottom: 10px;
}

.map_sec{
    padding: 50px 0px;
}
.map_inner h4, .map_inner p{
    color: #000;
    text-align: center
}
.map_inner p{
    font-size: 13px;
}
.map_bind{
    margin-top: 50px;
    border-radius: 30px;
    overflow: hidden;
}

section.main-contact-sec {
    padding: 0px;
    overflow: hidden;
}

.contact_info_sec {
    color: white;
}
