/*
font-family: 'Lato', sans-serif;
*/

:root {
    --primary-color: #e74032;
    --secondary-color: #572c8b;
    --white: #FFFFFF
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5
}

::-webkit-scrollbar-button:end:increment,
::-webkit-scrollbar-button:start:decrement {
    display: none
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #dedede
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #050607
}

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}
/* Custom Radio Button */

.customradio {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    font-weight: 400;
    color: var(--white);
}

.customradio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 11px;
    width: 11px;
    border-radius: 3px;
    background-color: #e0e0e0;
}

.customradio input:checked~.checkmark {
    background: #ff6101;
}
/* Custom Slick Css */

.slick-list {
    margin: 0 -15px;
}

.slick-slide {
    margin: 0 15px;
}

ul.slick-dots {
    padding: 20px 0 0;
    text-align: center;
}

ul.slick-dots li {
    margin: 0 8px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
    color: var(--white);
    opacity: 1;
    font-size: 20px;
}

.slick-dots li button {
    height: 11px;
    width: 11px;
    border-radius: 50%;
    padding: 0px;
    background: #d6d6d6;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background: #c9022c;
}

span.arrows {
    width: 36px;
    height: 36px;
    border: none;
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    z-index: 2;
    cursor: pointer;
    line-height: 39px;
    font-size: 12px;
    text-align: center;
    font-weight: 300;
    top: 0;
    border-radius: 0;
    background: #dde2e6;
    color: #222
}

span.arrows.next {
    right: 1%;
}

.slick-initialized .slick-slide {
    outline: none !important;
}

p {
    color: #666666;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}

p+p {
    margin-top: 15px;
}

ul {
    padding: 0;
    margin: 0;

}
li{
    list-style: none !important;
}
@media (min-width: 100px) {
    .padding-full {
        padding-right: 15px;
        padding-left: 15px;
    }
    .no-padding {
        padding-left: 0;
        padding-right: 0;
    }
    .no-padding-left {
        padding-left: 0;
    }
    .no-padding-right {
        padding-right: 0;
    }
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Black.woff2') format('woff2'), url('../fonts/Mont-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Heavy.woff2') format('woff2'), url('../fonts/Mont-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Regular.woff2') format('woff2'), url('../fonts/Mont-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-SemiBold.woff2') format('woff2'), url('../fonts/Mont-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Bold.woff2') format('woff2'), url('../fonts/Mont-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Mont';
    overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
/* style-marketing */

.head-logo img {
    max-width: 100%;
    height: auto;
}

.menu-list ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.menu-list ul li {
    position: relative;
    padding: 5px 0;
}

.menu-list ul li:before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: red;
    bottom: 0;
    transition: .3s;
}

.menu-list ul li:hover:before {
    width: 100%;
}

.menu-list ul li a {
    text-transform: uppercase;
    color: #003049;
    font-size: 14px;
    font-weight: 600;
}

.link-head a {
    font-size: 12px;
    color: #003049;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s;
}

.link-head a span {
    color: #d62828;
    font-size: 14px;
}

.header-main {
    padding: 16px 0;
}

.main-banner {
    background: url(../images/banner.jpg) center no-repeat;
    background-size: cover;
    padding: 138px 0 170px;
}

.banner-cont h1 {
    font-size: 58px;
    line-height: 70px;
    color: #ffffff;
    font-weight: 700;
}

.banner-cont h1 span,.banner-cont span.head {
    font-size: 32px;
    line-height: 46px;
    display: block;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}
.inner-banner-cont h1 span {font-weight: 400 !important;font-size: 24px;line-height: 40px;}
.globle-btn {
    /* background-color: rgb(234, 226, 183); */
    /* box-shadow: 0px 20px 28.5px 1.5px rgb(0 0 0 / 20%); */
    /* width: auto; */
    /* height: 68px; */
    /* border-radius: 50px; */
    /* text-align: center; */
    /* margin-top: 40px; */
    transition: .3s;
    display: flex;
    align-items: center;
}

.globle-btn a {
    line-height: 4;
    font-size: 18px;
    color: #003049;
    display: block;
}
.abt-btn {width: 390px !important;}
.about-author-top {
    margin-top: -100px;
}

.brands-img img {
    width: 100%;
    height: auto;
}

.about-author-cont {
    width: 1480px;
}

.about-author {
    background: url(../images/about-bg.jpg) center no-repeat;
    background-size: cover;
    padding-bottom: 465px;
}

.about-author .about-clr-cont {
    background: rgb(240, 220, 167);
    background: linear-gradient(142deg, rgba(240, 220, 167, 1) 0%, rgba(255, 255, 255, 1) 50%);
    margin-bottom: 170px;
}

.about-cont {
    padding: 90px 0 120px;
    text-align: center;
}

.about-cont h6,.about-cont h2 span {
    font-size: 14px;
    line-height: 24px;
    color: #17204c;
    font-weight: 700;
    display: block;
}

.about-cont h2 {
    font-size: 51px;
    color: #17204c;
    font-weight: 700;
    line-height: 61px;
}

.about-cont h5,.about-cont h4 {
    font-size: 28px;
    line-height: 38px;
    color: #e30033;
    font-style: italic;
    margin-bottom: 20px;
}

.about-cont p {
    font-size: 16px;
    line-height: 26px;
    color: #17204c;
}

.coma {
    margin: 20px 0;
    width: 19px;
    height: 16px;
}

.about-cont h3 {
    font-size: 36px;
    color: #8189b1;
    line-height: 46px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cont h3 img {
    max-width: 100%;
    height: auto;
    margin-left: 20px;
}

.work-cont h3 {
    font-size: 51px;
    line-height: 61px;
    font-weight: 700;
    color: #ffffff;
}

.work-cont p {
    font-size: 16px;
    line-height: 26px;
    margin: 30px 0 60px;
    color: #ffffff;
}

.work-cont h3 span {
    color: #e30033;
}

.purchase-link a {
    font-size: 21px;
    color: #eae2b7;
    font-weight: 700;
    display: flex;
    align-items: center;
    transition: .3s;
}

.purchase-link a img {
    margin-right: 10px;
}

.video-sec {
    margin-top: -310px;
    position: relative;
}

.video-sec:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 310px;
    bottom: 0;
    background-color: #e7e8ed;
    z-index: -1;
}

.services-sec {
    padding: 80px 0 100px;
    background-color: #e7e8ed;
}

.services-title {
    text-align: center;
    margin-bottom: 70px;
}

.services-title h6,.services-title h3 span {
    font-size: 14px;
    line-height: 24px;
    color: #17204c;
    font-weight: 700;
    display: block;
}

.services-title h3 {
    font-size: 51px;
    line-height: 61px;
    font-weight: 700;
    color: #17204c;
}

.service-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.service-item {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    transition: .3s;
}

.service-item h4 {
    margin-top: 60px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-item h4 a {
    color: #17204c;
}

.gallery-sec {
    padding: 80px 0;
}

.gallery-box {
    margin-bottom: 30px;
    position: relative;
}

.gallery-box img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: .3s;
}

.gallery-box img:hover {
    transform: scale(1.01);
}

.service-item:hover {
    transform: translate(0, -10px);
}

.purchase-link a:hover {
    letter-spacing: 3px;
}

.globle-btn a:hover {
    transform: translate(0, -5px);
}

.video-service {
    transition: .3s;
    position: relative;
}

.video-service:hover {
    transform: scale(1.04);
}

.link-head a:hover {
    padding-left: 5px;
}

.contact-title h3 {
    color: #17204c;
}

.contact-title p {
    color: #17204c;
    margin: 30px 0;
}

.contact-title h5,.contact-title h4 {
    color: #17204c;
    font-size: 21px;
    line-height: 31px;
}

.contact-sec .container {
    background: url(../images/contact.png) right center no-repeat;
    padding: 30px 0 50px;
    border-bottom: 1px solid #e30033;
}

.contact-sec {
    padding: 0 0 495px;
}

.test-item {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    padding: 30px;
    background-color: #ffffff;
    border: 4px solid transparent;
}

.test-cont p {
    padding: 20px 0;
    font-size: 14px;
    color: #17204c;
    line-height: 24px;
    border-bottom: 1px solid #eae2b7;
}

.test-cont {
    padding-left: 45px;
}

.test-cont h4 {
    font-size: 25px;
    font-weight: bold;
    background: #D90134;
    background: -webkit-linear-gradient(to right, #D90134 0%, #451946 100%);
    background: -moz-linear-gradient(to right, #D90134 0%, #451946 100%);
    background: linear-gradient(to right, #D90134 0%, #451946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 20px;
}

.testimonial-sec button.slick-prev.slick-arrow {
    position: absolute;
    bottom: -60px;
    left: -100px;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    font-size: 0;
    outline: none;
    border: 0;
    background: 0;
}

.testimonial-sec button.slick-next.slick-arrow {
    position: absolute;
    left: 50px;
    right: 0;
    margin: 0 auto;
    bottom: -60px;
    font-size: 0;
    background: 0;
    outline: 0;
    border: 0;
}

.testimonial-sec button.slick-prev.slick-arrow:after {
    position: absolute;
    content: url(../images/arow-pre.png);
    cursor: pointer;
}

.testimonial-sec button.slick-next.slick-arrow:after {
    content: url(../images/arow-next.png);
    position: absolute;
    cursor: pointer;
}

.testimonial-sec {
    margin-top: -373px;
    position: relative;
    padding-bottom: 140px;
}

.testimonial-sec .slick-slide.slick-current.slick-active .test-item {
    border: 4px solid #e30033;
}

.testimonial-sec:before {
    position: absolute;
    content: "";
    width: 100%;
    background-color: #17204c;
    height: 400px;
    bottom: 0;
}

.blog-sec {
    background-color: #e30033;
    padding: 80px 0;
}

.blog-sec .services-title h3 {
    color: #ffffff;
}

.blog-content img {
    max-width: 100%;
    height: auto;
}

.blog-content h4 {
    color: #ffffff;
    font-size: 20px;
    line-height: 31px;
    font-weight: 600;
    margin: 30px 0;
}

.blog-content p {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
}

.blog-btn {
    margin: 77px 0 0;
    text-align: center;
}

.blog-btn a {
    font-size: 21px;
    line-height: 31px;
    color: #eae2b7;
    font-weight: 700;
    transition: .3s;
}

.blog-btn a:hover {
    letter-spacing: 3px;
}

.footer-link ul li {
    display: flex;
    align-items: center;
}

.footer {
    background-color: #17204c;
    padding: 30px 0 0;
    position: relative;
}

.footer-link ul li+li {
    margin-top: 10px;
}

.footer-link ul li img {
    margin-right: 10px;
}

.footer-link ul li a {
    font-size: 18px;
    color: #ffffff;
}

.footer-form h4 {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 8px;
    color: #ffffff;
}

.inp-field input::placeholder {
    color: #000;
}

.inp-field input {
    height: 54px;
    width: 100%;
    padding: 0 20px;
    font-family: 'Mont';
    font-size: 14px;
    outline: none;
    color: #000;
    border-radius: 50px;
    border: 0;
    background: #fff;
}

.inp-field {
    position: relative;
}

.footer-menu ul li a:hover,
.footer-link ul li a:hover {
    text-decoration: underline;
    text-underline-position: under;
}

.inp-field button {
    position: absolute;
    right: 0;
    background-color: rgb(234, 226, 183) !important;
    width: 134px;
    height: 54px;
    border: 0;
    border-radius: 50px;
    outline: none;
    font-size: 16px;
    font-family: 'Mont';
    color: #003049;
    font-weight: 700;
    cursor: pointer;
}

.footer-menu ul li a {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff !important;
    text-transform: capitalize;
}

.botm-ctn span {
    font-size: 14px;
    color: #61647c;
}

.botm-ctn {
    text-align: center;
    padding: 30px 0;
    margin-top: 80px;
}

.botm-ctn span a {
    color: #61647c;
}

.footer:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #29315a;
    bottom: 90px;
}

.botm-ctn span a:hover {
    color: #e30033;
}

.about-banner {
    background: url(../images/about-pge-bg.jpg) center no-repeat;
    background-size: cover;
    padding: 114px 0;
}

.about-banner .banner-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-banner .globle-btn {
    margin: 0;
}

.about-video-sec {
    margin-top: 0;
    padding-bottom: 120px;
    background-color: #ebe9ed;
}

.about-video-sec:after {
    display: none;
}

.about-the-author .about-cont {
    padding: 100px 0 60px;
}

.about-video-sec .globle-btn {
    margin: 60px auto 0;
}

.about-the-author {
    background-color: #ebe9ed;
}

.blog-page-sec {
    background-color: #e7e8ed;
}

.blog-page-sec .services-title h3 {
    color: #17204c;
}

.blog-page-sec .blog-content h4 {
    color: #17204c;
    margin-bottom: 20px;
}

.blog-page-sec .blog-content p {
    color: #17204c;
}

.blog-page-sec .blog-content {
    margin-bottom: 60px;
}

.blog-page-sec .blog-btn a {
    color: #17204c;
}

.blog-page-sec .blog-btn {
    margin: 0;
}

.testimonial-page-sec {
    margin-top: 0;
    padding: 100px 0 70px;
    background-color: #e7e8ed;
}

.testimonial-page-sec:before {
    display: none;
}

.testimonial-page-sec .test-item:hover {
    border: 4px solid #e30033;
}

.testimonial-page-sec .test-img {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.testimonial-page-sec .test-item {
    transition: .3s;
    border: 4px solid transparent;
    margin-bottom: 30px;
}

.contact-page-sec {
    padding-top: 125px;
}

.play-btn-vdo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.link-anchor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}

.about-banner .banner-cont h1 {
    font-size: 50px;
    line-height: 70px;
}

.banner-img img {
    max-width: 100%;
    height: auto;
}

.banner-img {
    text-align: center;
}

.field-wrap input,
.full-field textarea {
    width: 100%;
    height: 64px;
    outline: 2px solid transparent;
    background-color: #ffffff;
    padding: 0 30px;
    font-size: 14px;
    color: #17204c;
    font-family: 'Mont';
    border: none;
    transition: .3s;
}

.field-wrap input::placeholder,
.full-field textarea::placeholder {
    color: #17204c;
}

.full-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.field-wrap {
    width: 49.5%;
}

.contact-main-sec {
    background-color: #e7e8ed;
    padding: 100px 0 120px;
}

.full-field textarea {
    height: 180px;
    resize: none;
    padding-top: 26px;
}

.contact-main-sec .services-title {
    margin-bottom: 40px;
}

.full-field button {
    background-color: rgb(234, 226, 183) !important;
    width: 270px;
    height: 68px;
    outline: none;
    border: none;
    margin: 0 auto;
    border-radius: 50px;
    cursor: pointer;
    color: #003049;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Mont';
    margin-top: 10px;
    position: relative;
    z-index: 9;
}

.gallery-box:after {
    width: 100%;
    height: 0;
    content: "";
    position: absolute;
    background-color: rgb(23 32 76 / 40%);
    left: 0;
    z-index: 9;
    transition: .3s;
}

.gallery-box:hover:after {
    height: 100%;
    top: auto;
    bottom: 0;
}

.gallery-box a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}

.field-wrap .iti.iti--allow-dropdown {
    width: 100%;
}

.iti__selected-dial-code {
    margin-left: 4px;
}

.field-wrap input:focus,
.full-field textarea:focus {
    outline: 2px solid #183362;
    transition: .3s;
}

.full-field button:after {
    position: absolute;
    width: 0;
    height: 100%;
    content: "";
    background-color: #17204c;
    left: auto;
    right: 0;
    top: 0;
    transition: .3s;
    border-radius: 50px;
    z-index: -1;
}

.full-field button:hover:after {
    left: 0;
    right: auto;
    width: 100%;
}

.full-field button:hover {
    color: #fff;
}
.sec3-r8 ul li {
    color: #fff;
    list-style: disc;
    margin-bottom: 20px;
}

.sec3-r8 ul {
    margin-top: 30px;
    margin-left: 20px;
}
.sec3-btm-content h5{
    font-size: 28px;
    line-height: 38px;
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
    padding: 50px 0;
    text-align: center;
}
.sec3-r8 h5,.sec3-r8 h4 {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    line-height: 40px;
}
.footer-form h4 span {
    display: block;
    font-size: 18px;
}
#header-space, #top{
    display: none;
}
body[data-header-resize="1"] .container-wrap{
    margin-top: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.inp-field button:hover{
    background-color: rgb(234, 226, 183) !important;
}
body.woocommerce{
    padding: 0 0 !important;
}
.woocommerce {
    width: 100% !important;

}
.woocommerce button.button, .woocommerce-page button.button{
    /* color: #003049 !important; */
    font-size: 16px !important;
    font-family: 'Mont' !important;
}
a,th,td,bdi,input,a,p,h1{
    font-family: 'Mont' !important;
}
.woocommerce .woocommerce-message, .woocommerce .woocommerce-error, .woocommerce .woocommerce-info,
.woocommerce-page .woocommerce-message,.woocommerce a.button, .woocommerce-page a.button, .woocommerce #respond input#submit,
.woocommerce-page #respond input#submit, .woocommerce-product-details__short-description, .woocommerce div.product .entry-summary .stock,
.woocommerce .woocommerce-info a, .woocommerce .woocommerce-error a, .woocommerce-billing-fields__field-wrapper p label,
.woocommerce-additional-fields__field-wrapper p label , label span,
.woocommerce-additional-fields h3, .woocommerce .material.product .product-wrap .product-add-to-cart a:hover,
.woocommerce .material.product .product-wrap .product-add-to-cart a:hover > span, body.woocommerce a{
    /* color: #003049 !important; */
}
div#tab-description p, .woocommerce-product-details__short-description p, .woocommerce-privacy-policy-text p{
    color: #000 !important;
}
#customer_details .col-1, #customer_details .col-2{
    max-width: 100%;
}
.nectar-shop-header {
    width: 100%;

}
.container.main-content{
    padding: 70px 15px;
}
nav.woocommerce-breadcrumb {
    width: 100%;
}

.woocommerce-notices-wrapper {
    width: 100%;
}
body.woocommerce-cart .container-wrap, body.woocommerce-shop .container-wrap{
    min-height: auto !important;
}
.nectar-shop-header h1{
    font-size: 40px;
    line-height: 51px;
    color: #003049 !important;
    font-weight: 700;
}
nav.woocommerce-breadcrumb {
    display: none !important;
}
.woocommerce-cart .woocommerce-message a {
    display: none !important;
}
.globle-btn a {
    background-color: rgb(234, 226, 183);
    box-shadow: 0px 20px 28.5px 1.5px rgb(0 0 0 / 20%);
    width: auto;
    height: 68px;
    border-radius: 50px;
    text-align: center;
    margin-top: 40px;
    transition: .3s;
    padding: 0 30px;
}

.globle-btn a+a {
    margin-left: 20px;
}
.full-field textarea {
    width: 100%;
}

.full-field {
    display: flex;
    width: 100%;
}

.full-field span {
    width: 100%;
}
.subbmitbtn input {
    padding: 15px 40px;
}
.wpcf7-spinner {
    width: auto !important;
}
span.wpcf7-not-valid-tip {
    background: transparent;
    color: red;
    box-shadow: none !important;
    display: none;
}

.wpcf7-not-valid {
    border: 1px solid red !important;
}
.woocommerce-Address {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 48.333333%;
    max-width: 48.333333%;
}