
/* 
.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.overlay.visible {
    opacity: 1;
    visibility: visible;
}

.main-popup {
    position: fixed;
    left: 0;
    top: 120px;
    margin: 0;
    width: 100%;
    height: 550px;
    background-color: #e7e7f6;
    border-radius: 5px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all .5s ease;
}

.main-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
    transition: all .5s ease;
}

@media (min-width: 500px) {
    .main-popup {
        width: 500px;
        left: 50%;
        margin: 0 0 0 -250px;
    }
}

.popup-header {
    position: relative;
    padding: 0;
    margin: 0;
    height: 62px;
    width: 100%;
}

#popup-close-button a {
    position: absolute;
    right: 10px;
    top: -30px;
    width: 22px;
    height: 22px;
}

#popup-close-button a::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    width: 3px;
    height: 25px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#popup-close-button a::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    width: 3px;
    height: 25px;
    background-color: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.popup-header ul {
    margin: 0;
    padding: 0;
}

.popup-header ul li {
    text-align: center;
    list-style: none;
    width: 50%;
    float: left;
}

.popup-header ul li a {
    display: block;
    padding: 20px 0;
    margin: 0;
    text-decoration: none;
    font-size: 1.2em;
}

#sign-in {
    background-color: #145995;
    color: #fff;
    border-radius: 5px 0 0 0;
}

#sign-in.active {
    color: #145995;
    background-color: transparent;
}

#register {
    background-color: #145995;
    color: #fff;
    border-radius: 0 5px 0 0;
}

#register.active {
    color: #145995;
    background-color: transparent;
}

.popup-content {
    height: auto;
    overflow: hidden;
    position: absolute;
}

form.sign-in {
    position: relative;
    top: 40px;
    left: 0;
    font-size: 1em;
    opacity: 1;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

form.sign-in.move-left {
    opacity: 0;
    transform: translateX(-450px);
}

form label {
    font-size: 1.1em;
    color: #145995;
    margin-left: 23px;
}

form.sign-in input {
    border-radius: 5px;
    width: 90%;
    height: 40px;
    margin: 5px 5% 30px 5%;
    padding: 10px;
    font-size: 1em;
    color: #145995;
    outline: none;
    border: none;
}

input#submit {
    background-color: #145995;
    color: #fff;
    height: 50px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 25px;
    padding: 0;
    cursor: pointer;
    outline: none;
    border-radius: 5px;
    font-size: 1em;
    border: none;
}

form.register {
    position: relative;
    top: -280px;
    left: 0;
    font-size: 1em;
    opacity: 0;
    transform: translateX(450px);
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

form.register.move-left {
    opacity: 1;
    transform: translateX(0);
}

form.register input {
    border-radius: 5px;
    width: 90%;
    height: 40px;
    margin: 5px 5% 15px 5%;
    padding: 10px;
    font-size: 1em;
    color: #145995;
    outline: none;
    border: none;
}

p.check-mark {
    position: relative;
    left: 50%;
    width: 200px;
    margin: 0 0 0 -100px;
    padding: 0;
    text-align: center;
    color: #145995;
    font-size: .8em;
}

p.check-mark a {
    color: #145995;
}

p.check-mark input {
    border-radius: 0;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 2em;
    color: #145995;
    outline: none;
    border: none;
}

p.check-mark label {
    margin-left: 5px;
} */



/* -------------------------------- 

xcody-info 

-------------------------------- */
#cody-info {
    position: relative;
    background: #FFF;
    height: 44px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

#cody-info .cody-info-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -13px;
}

#cody-info .cody-info-logo svg {
    display: block;
    -webkit-transition: opacity, 0.2s;
    -moz-transition: opacity, 0.2s;
    transition: opacity, 0.2s;
}

#cody-info .cody-info-logo svg:hover {
    opacity: .9;
}

#cody-info .cody-info-logo .cody-info-logo-svg {
    fill: #343642;
}

#cody-info li {
    position: absolute;
    top: 0;
}

#cody-info li:first-child {
    left: 0;
}

#cody-info li:last-child {
    right: 0;
}

#cody-info li a {
    display: block;
    width: 44px;
    height: 44px;
    position: relative;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}

#cody-info li a:hover {
    background-color: #29889b;
}

#cody-info li a:hover .cody-info-buttons-svg {
    fill: #FFF;
}

#cody-info li svg {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
}

#cody-info li .cody-info-buttons-svg {
    fill: #29889b;
}

#cody-info.cody-info-bottom {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.1);
}

#cody-info::after {
    content: '';
    display: table;
    clear: both;
}

@media only screen and (min-width: 600px) {
    #cody-info {
        height: 60px;
    }
    
    #cody-info li a {
        height: 60px;
        width: 60px;
    }
}

/* -------------------------------- 

Main components 

-------------------------------- */
header[role=banner] {
    position: relative;
    height: 50px;
    background: #343642;
}

header[role=banner] #cd-logo {
    float: left;
    margin: 4px 0 0 5%;
    /* reduce logo size on mobile and make sure it is left aligned with the transform-origin property */
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

header[role=banner] #cd-logo img {
    display: block;
}

header[role=banner]::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}

@media only screen and (min-width: 768px) {
    header[role=banner] {
        height: 80px;
    }
    
    header[role=banner] #cd-logo {
        margin: 20px 0 0 5%;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.main-nav {
    float: right;
    margin-right: 5%;
    width: 44px;
    height: 100%;
    background: url("../img/cd-icon-menu.svg") no-repeat center center;
    cursor: pointer;
}

.main-nav ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.main-nav ul.is-visible {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.main-nav a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding-left: 5%;
    background: #292a34;
    border-top: 1px solid #3b3d4b;
    color: #FFF;
}

@media only screen and (min-width: 768px) {
    .main-nav {
        width: auto;
        height: auto;
        background: none;
        cursor: auto;
    }
    
    .main-nav ul {
        position: static;
        width: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        line-height: 80px;
    }
    
    .main-nav ul.is-visible {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    .main-nav li {
        display: inline-block;
        margin-left: 1em;
    }
    
    .main-nav li:nth-last-child(2) {
        margin-left: 2em;
    }
    
    .main-nav a {
        display: inline-block;
        height: auto;
        line-height: normal;
        background: transparent;
    }
    
    .main-nav a.cd-signin,
    .main-nav a.cd-signup {
        padding: .6em 1em;
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 50em;
    }
    
    .main-nav a.cd-signup {
        background: #2f889a;
        border: none;
    }
}

/* -------------------------------- 

xsigin/signup popup 

-------------------------------- */
.cd-user-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 54, 66, 0.9);
    z-index: 9999;
    overflow-y: auto;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s 0, visibility 0 0.3s;
    -moz-transition: opacity 0.3s 0, visibility 0 0.3s;
    transition: opacity 0.3s 0, visibility 0 0.3s;
}

.cd-user-modal.is-visible {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s 0, visibility 0 0;
    -moz-transition: opacity 0.3s 0, visibility 0 0;
    transition: opacity 0.3s 0, visibility 0 0;
}

.cd-user-modal.is-visible .cd-user-modal-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.cd-user-modal-container {
    position: relative;
    width: 90%;
    max-width: 525px;
    background: #FFF;
    margin: 3em auto 4em;
    cursor: auto;
    border-radius: 0.25em;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.cd-user-modal-container .cd-switcher:after {
    content: "";
    display: table;
    clear: both;
}
.cd-user-modal-container .cd-switcher {
    padding-left: 0;
}

.cd-user-modal-container .cd-switcher li {
    width: 50%;
    float: left;
    text-align: center;
    list-style-type: none;
}

.cd-user-modal-container .cd-switcher li:first-child a {
    border-radius: .25em 0 0 0;
}

.cd-user-modal-container .cd-switcher li:last-child a {
    border-radius: 0 .25em 0 0;
}

.cd-user-modal-container .cd-switcher a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #1C3C74;
    color: #fff;
    
}

.cd-user-modal-container .cd-switcher a.selected {
    background: #FFF;
    color: #1C3C74;
    font-weight: 700;
    font-size: 16px;
}


@media only screen and (min-width: 600px) {
    .cd-user-modal-container {
        margin: 4em auto;
    }
    
    .cd-user-modal-container .cd-switcher a {
        height: 70px;
        line-height: 70px;
    }
}

.cd-form {
    padding: 1.4em;
}

.cd-form .fieldset {
    position: relative;
    margin: 1.4em 0;
}

.cd-form .fieldset:first-child {
    margin-top: 0;
}

.cd-form .fieldset:last-child {
    /* margin-bottom: 0; */
    margin-top: 0;
}

.cd-form label {
    font-size: 14px;
    font-size: 0.875rem;
}

.cd-form label.image-replace {
    /* replace text with an icon */
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
    text-shadow: none;
    background-repeat: no-repeat;
    background-position: 50% 0;
}


.cd-form input {
    margin: 0;
    padding: 0;
    border-radius: 0.25em;
}

.cd-form input.full-width {
    width: 100%;
}

.cd-form input.has-padding {
    padding: 12px 20px 12px 50px;
}

.cd-form input.has-border {
    border: 1px solid #d2d8d8;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.cd-form input.has-border:focus {
    border-color: #343642;
    box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
    outline: none;
}

.cd-form input.has-error {
    border: 1px solid #d76666;
}

.cd-form input[type=password] {
    /* space left for the HIDE button */
    padding-right: 65px;
}

.cd-form input[type=submit] {
    padding: 16px 0;
    cursor: pointer;
    background: #2f889a;
    color: #FFF;
    font-weight: bold;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.no-touch .cd-form input[type=submit]:hover,
.no-touch .cd-form input[type=submit]:focus {
    background: #3599ae;
    outline: none;
}

.cd-form .hide-password {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 0;
    padding: 6px 15px;
    border-left: 1px solid #d2d8d8;
    top: 69%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
    font-size: 0.875rem;
    color: #343642;
}

.cd-form .cd-error-message {
    display: inline-block;
    position: absolute;
    left: -5px;
    bottom: -35px;
    background: rgba(215, 102, 102, 0.9);
    padding: .8em;
    z-index: 2;
    color: #FFF;
    font-size: 13px;
    font-size: 0.8125rem;
    border-radius: 0.25em;
    /* prevent click and touch events */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
    -moz-transition: opacity 0.2s 0, visibility 0 0.2s;
    transition: opacity 0.2s 0, visibility 0 0.2s;
}

.cd-form .cd-error-message::after {
    /* triangle */
    content: '';
    position: absolute;
    left: 22px;
    bottom: 100%;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(215, 102, 102, 0.9);
}

.cd-form .cd-error-message.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.2s 0, visibility 0 0;
    -moz-transition: opacity 0.2s 0, visibility 0 0;
    transition: opacity 0.2s 0, visibility 0 0;
}
.cd-form h5{
    font-size:15px;
    font-weight:600;
    font-family:"Poppins", sans-serif;
}
@media only screen and (min-width: 600px) {
    .cd-form {
        padding: 15px 27px;
    }
    
    .cd-form .fieldset {
        margin: 1.25em 0;
    }
    
    .cd-form .fieldset:first-child {
        margin-top: 0;
    }
    
    /* .cd-form .fieldset:last-child {
        margin-bottom: 0;
    } */
    
    .cd-form input.has-padding {
        padding: 8px 20px 8px 20px;
    }
    
    .cd-form input[type=submit] {
        padding: 16px 0;
    }
}

.cd-form-message {
    padding: 1.4em 1.4em 0;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .cd-form-message {
        padding: 2em 2em 0;
    }
}

.cd-form-bottom-message {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    
}

.cd-form-bottom-message a {
    color: #1C3C74;
    /* text-decoration: underline; */
}

.cd-close-form {
    /* form X button on top right */
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: -30px;
    white-space: nowrap;
    text-align: center;
    /* overflow: hidden; */
    color: #fff !important;
}
/* 
@media only screen and (min-width: 1170px) {
    .cd-close-form {
        display: none;
    }
} */

#cd-login,
#cd-signup,
#cd-reset-password {
    display: none;
}

#cd-login.is-selected,
#cd-signup.is-selected,
#cd-reset-password.is-selected {
    display: block;
}

.form .label-name .password-icon {
    float: right;
}
.cd-form .form input {
    padding-top: 15px;
}
.cd-form .cd-close-form .close-mark {
    position: relative;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}
.cd-form label {
    font-size: 13px;
    font-weight: 400;
    color: #1C3C74;
}
.fieldset.terms-agree {
    margin: 0;
    margin-bottom: 20px;
}


.faq-contact p.c-small-header {
    margin-bottom: 0px !important;
    font-size: 16px;
    font-weight: 700;
}
.contact.faq-contact {
    padding: 0 15px;
}   
.faq-contact p a {
    font-size: 18px;
    text-decoration: underline;
    font-weight: 600;
}
.accordion-button::after {
    background-image: url(../images/add.png);
    
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/add.png);
    transform: rotate(45deg);
}
.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.accordion-button:not(.collapsed) {
    background-color: #fff;
    /* border-bottom: 2px solid#efefef; */
    
}
/* .accordion-item {
    border: none;
    border-bottom: 2px solid #145995;
} */
.accordion-item .accordion-header button {
    font-size: 20px;
    font-weight: 800;
    color: #FFF;
    background-color: #145995;
}
#blog {
    padding: 60px 0;
}
#blog .menu-item {
    margin-bottom: 45px;
}
#blog .menu-item .menu-item-details {
    text-align: left;
}
#blog .menu-item .menu-item-details .menu-item-desc .item-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 7px;
}
.faq-title {
    font-size: 26px;
    font-weight: 700;
    color: #1C3C74;
}
.faq-list {
    list-style-type: none;
    padding-left: 0;
    columns: 2;
    position: relative;
    padding-bottom: 30px;
}
.faq-question {
    position: relative;
    padding-bottom: 25px;
}
.faq-question::after {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #145995;
    opacity: 0.5;
}
.faq-question::before {
    content: '';
    position: absolute;
    width: 96%;
    height: 2px;
    background-color: #145995;
    opacity: 0.5;
    bottom: 8px;
    left: auto;
    right: 0px;
}
.faq-answer {
    padding-top: 10px;
}
.faq-qna {
    text-align: justify;
}
.faq-qna .faq-option {
    padding-bottom: 25px;
}
.faq-qna .faq-option .faq-question {
    font-size: 20px;
    color: #1C3C74;
    font-weight: 700;
}
.faq-contact-link {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    padding: 35px 0;
    color: #fff;
    position: relative;
    z-index: 2;
}
.faq-contact-link a {
    text-decoration: underline;
    color: #fff;
    
}

#company {
    padding: 60px 0;
}
#company .sticky-why-tab {
    position: sticky;
    position: -webkit-sticky;
    top: 100px;
}
#company .why-points .points {
    position: relative;
    margin-bottom: 40px;
    
}
#company .why-points .icon-circle {
    content: '';
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #17528d;
    left: -85px;
    top: -15px;
    right: auto;
    text-align: center;
    line-height: 51px;
    padding: 5px 10px;
}
#company .why-points .icon-circle img {
    width: 35px;
    height: 35px;
}
#company .why-company .why-info {
    padding: 0 25px;
    text-align: justify;
    padding-right: 35px;
}
#company .why-company {
    padding-top: 65px;
}
#company .scrollable-points {
    padding-left: 55px;
    padding-right: 20px;
    text-align: justify;
}
#company .sec-title:before {
    display: none;
}
#company .sec-title {
    font-size: 26px;
    font-family: "Poppins", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #145995;
    position: relative;
    margin-bottom: 20px;
}
#company .company-about .company-desc {
    padding: 0 20px;
    padding-left: 30px;
}
#company .why-points .sec-title {
    margin-bottom: 10px;
}
#company .company-about p {
    text-align: justify;
}
#company .why-points {
    position: relative;
}
#company .company-about {
    padding-bottom: 55px;
}
#company .why-points::before {
    content: '';
    left: 0;
    right: auto;
    top: 0;
    height: 100%;
    position: absolute;
    width: 2px;
    background-color: #1C3C74;
}
#company .missandvis {
    position: relative;
    color: #fff;
    z-index: 2;
}
#company .missandvis .values-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 7px;
}

.company-values {
    background-image: url("../images/slider3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}
.call-to-order {
    background-image: url("../images/slider3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
    padding: 60px 0;
}
.company-values::before,
.call-to-order::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0d0d0d;
    opacity: 0.4;
    z-index: 0;
}
.call-to-order .about-call {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 35px 0;
    letter-spacing: 4px;
    
}
.call-to-order .about-call a {
    color: #fff;
    text-decoration: underline;
    transform: scale(1);
    transition: all ease-in-out 0.45s;
    display: inline-block;
    
}
.call-to-order .about-call a:hover,
.faq-contact-link a:hover {
    transform: scale(1.05);
    transition: all ease-in-out 0.45s;
}
.company-values .missandvis {
    padding: 60px 0;
}
#company .missandvis .our-vision {
    padding-left: 35px;
}
#blog-single {
    padding: 60px 0;
}
#blog-single .main-img {
    padding-bottom: 25px;
}
#blog-single .blog-single-title {
    font-size: 26px;
    font-weight: 800;
    color: #1C3C74;
}
#blog-single .blog-single-content p {
    text-align: justify;
}
#blog-single .blog-single-content {
    margin-bottom: 25px;
}
#blog-single .blog-single-share .social-share {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
}
#blog-single .blog-share {
    display: flex;
    flex-direction: row;
    align-items: center;
    
    /* justify-content: space-between; */
}
#blog-single .blog-single-share .social-share li {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    line-height: 38px;
    padding: 5px;
    margin-right: 10px;
}
#blog-single .blog-single-share .social-share li a {
    color: #fff;
    font-size: 22px;
}
#blog-single .blog-single-share .share-title {
    font-size: 20px;
    font-weight: 700;
}
#blog-single .blog-single-share .social-share li.facebook {
    background-color: #3b5998;
}
#blog-single .blog-single-share .social-share li.instagram {
    background-color: #cd486b;
}
#blog-single .blog-single-share .social-share li.twitter {
    background-color: #00acee;
}
#policy {
    padding: 60px 0;
}
#policy .faq-question::before,
#policy .faq-question::after {
    display: none;
}
#policy .faq-question {
    padding-bottom: 10px;
}
#policy .faq-answer {
    padding-top: 0;
}

@media only screen and (max-width: 768px) {
    .faq-question::before {
        width: 95%;
    }
    #company .missandvis .our-vision {
        padding-left: 0;
    }
    
    
    
    
}
@media only screen and (max-width: 576px) {
    #address-profile .flex-title {
        justify-content: flex-start;
        align-items: flex-start;
    }
    #address-profile .flex-title .category-title {
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .faq-question::before {
        width: 87%;
    }
    .faq-contact-link {
        line-height: 1.7;
        font-size: 23px;
    }
    #company .why-company .why-info {
        padding: 0 10px;
    }
    #company .why-points {
        margin-top: 25px;
        margin-left: 20px;
    }
    #company .scrollable-points {
        padding-left: 35px;
    }
    #company .why-points .icon-circle {
        width: 55px;
        height: 55px;
        left: -63px;
        line-height: 41px;
    }
    .call-to-order .about-call {
        letter-spacing: 2px;
    }
    #company .company-about .company-desc {
        padding-top: 35px;
    }
    #company .missandvis .our-mission {
        padding-bottom: 25px;
    }
}
.cd-user-logout-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    width:50%;
    /*min-width: 550px;*/
    transform:translate(-50%, -50%);
    z-index: 99999;
}
.logout-btn {
    display: flex;
    justify-content: flex-end;
}
.logout-btn .logout-sure {
    margin-right: 25px;
}
.cd-user-logout-modal p {
    font-size: 22px;
}

/*Search CSS*/
.search-wrapper {
   position:relative;
}
#search_list{
    max-height:350px;
    overflow-y:scroll;
    position:absolute;
    top:55px;
    left:0;
    width:100%;
    z-index:9999;
    background-color:#fff;
    display:none;
}
#search_list.search-on{
    display:block;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
#search_list .list-group{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}
#search_list .list-group .list-group-item{
    width:calc(50% - 15px);
    margin-right:10px;
    display:inline-block;
    font-size:14px;
    font-weight:600;
    font-family:"Poppins", sans-serif;
    border:none;
    border-bottom:1px solid #eaeaea;
}
#search_list .list-group .list-group-item:hover{
    background-color:#fafafa;
}
.list-group-item a{
    display:block;
}
.search-on img{
    width:50px;
    margin-right:16px;
}
#search_list::-webkit-scrollbar {
  width: 6px;
}

#search_list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

#search_list::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

#editable-form {
            display: none;
        }

        .address-block {
            padding: 8px 12px;
            border: 1px solid #eaeaea;
            border-radius: 6px;
        }

        .address-block.selected {
            border-color: #1C3C74;
        }

        .address-block h6 {
            border-bottom: 1px solid #eaeaea;
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .address-block .badge {
            font-weight: 400;
        }


        .address-display {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        #loggedin-checkout .prompt-back {
            display: block;
        }

        .disabled-address {
            opacity: 0.25;
        }

        .main-button {
            padding: 6px 12px;
            overflow: hidden;
            border: 1px solid #1C3C74;
            background-color: transparent;
            background-image: none;
            color: #1C3C74;
            border-radius: 4px;
            font-size: 14px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: inline-flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            position: relative;
            transition: all 0.25s ease-in-out;
        }

        .main-button span {
            font-size: 12px;
            display: inline-block;
            -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
            opacity: 1;
        }


        .main-button>i {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -450%);
            transform: translate(-50%, -450%);
            z-index: 9;
            -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
            opacity: 0;
        }

        .main-button:hover {
            background-color: #21295A;
            color: #fff;
        }

        #select-available-address {
            display: none;
        }

        .prompt-back {
            overflow-y: auto;
        }

        .select-button {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 8px 12px;
            background-color: #fafafa;
        }

        #select-available-address {
            padding-bottom: 40px;
        }