@font-face {
    font-family: 'HelveticaLTStd-Roman';
    src: url('../fonts/HelveticaLTStd-Roman.otf');
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'HelveticaLTStd-Light';
    src: url('../fonts/HelveticaLTStd-Light.otf');
    font-weight: normal;
    font-style: normal
}

body {
    font-family: 'HelveticaLTStd-Roman', sans-serif;
    font-weight: 300;
    max-width: 100%;
    margin: auto;
    /* overflow-x: hidden; */
    color: #5B5C5E;
    letter-spacing: 1px;
}

* {
    box-sizing: border-box;
}

a {
    color: #3B3B3B;
    text-decoration: none;
}

p {
    color: #5B5C5E;
}

ul {
    list-style-type: none;
}

.row {
    margin-left: auto;
    margin-right: auto;
}

a:hover {
    color: #4E4E4E;
    text-decoration: none;
}

main {
    position: relative;
    max-width: 1366px;
    margin: auto;
}

.menu-container a:hover {
    /* color: #F99300; */
    text-decoration: none;
}

header {
    border-bottom: 1px solid #EBEBEB;
    width: 100%;
    position: relative;
}

.menu-container {
    margin: 0 auto;
    background: #fff;
    /* padding: 10px 0; */
}

.menu-container .active {
    /* color: #F99300; */
}

.horizontal-menu-first li:last-child,
.horizontal-menu li:last-child {
    padding-right: 10px;
}

.logo {}

.container-fluid {
    width: 100%;
}

.text-grey {
    color: #4E4E4E;
}

.text-lightBlack {
    color: #161615;
}

.text-darkblack {
    color: #303030;
}

.text-lightgrey {
    color: #161615;
}

.upper-nav li a {
    color: #3B3B3B;
    font-size: 14px;
    font-weight: 500;
}

.verticle-menu {
    list-style-type: none;
    font-size: 20px;
    color: #4E4E4E;
}

.updates-menu li a {
    font-weight: 500;
    font-size: 14px;
    color: #3B3B3B;
}

.org-price {
    font-weight: 300 !important;
}

.org-price span.line-cross {
    position: relative;
    color: #FF0000;
    font-weight: 400 !important;
}

.line-cross:after {
    width: 100%;
    top: 0;
    content: '';
    border-bottom: 2px solid #848484;
    transform: translateY(20px) translateX(5px) rotate(-26deg);
    -webkit-transform: translateY(20px) translateX(5px) rotate(-26deg);
    position: absolute;
    top: -10px;
    left: 0;
    display: none;
}

.verticle-menu-header {
    list-style-type: none;
    font-size: 18px;
    color: #4E4E4E;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 15px;
}

.horizontal-menu-first {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin-bottom: 0;
}

.horizontal-header-menu-list {
    display: flex;
    justify-content: space-between;
    padding-bottom: 3px;
}

.horizontal-menu-first li {
    padding: 0 10px;
    color: #5B5C5E;
    font-size: 14px;
    font-weight: 300;
}

.horizontal-menu {
    list-style-type: none;
    display: flex;
}

.horizontal-menu li {
    padding: 0 30px;
    color: #4E4E4E;
    font-size: 18px;
}

.carousel-control-next,
.carousel-control-prev {
    top: auto;
    bottom: 50px;
}

.carousel-control-prev {
    right: 50px;
    left: auto;
}

.carousel-control-next img,
.carousel-control-prev img {
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
}

.mx-auto {
    margin-left: 0;
    margin-right: 0;
}

.footer-container {
    justify-content: flex-start;
    padding: 50px 0;
    background: #EBEBEB;
}

.footer-container li a {
    color: #3B3B3B;
    font-size: 13px;
}

.footer-container-main .footer-search li a {
    color: #3B3B3B;
    font-size: 20px;
}

.footer-container .verticle-menu {
    /* border-right: 2px solid rgba(100, 100, 100, 0.20); */
    font-size: 18px;
}

.updates-menu {
    flex-direction: column;
}

.footer-container .verticle-menu-last-child {
    border-right: 0;
    text-align: left;
}

.footer-container .searchTerm {
    width: 100%;
    border: 1px solid #ffffff;
}

.horizontal-footer-menu-first {
    list-style-type: none;
    display: flex;
}

.horizontal-footer-menu-first li {
    padding-right: 10px;
}

.footer-end {
    border-top: 1px solid rgba(100, 100, 100, 0.20);
    padding-top: 10px;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}


/* mobile menu start */

.hamburger-icon,
.mobile-menu {
    display: none;
}

#nav-icon {
    width: 35px;
    height: 29px;
    right: 0;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #161615;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
}

#nav-icon span:nth-child(2) {
    top: 12px;
}

#nav-icon span:nth-child(3) {
    top: 24px;
}

#nav-icon.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}


/* mobile menu end  */

.search {
    /* width: 90%; */
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border-right: none;
    padding: 5px 15px;
    border-radius: 0;
    outline: none;
    color: #908F8F;
    width: 678px;
    height: 34px;
    background: #ffffff;
    box-shadow: 0px 3px 6px #67676730;
    border: 1px solid #C8C8C8;
    opacity: 1;
}

.searchTerm::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #3B3B3B;
    font-size: 12px;
    font-family: 'HelveticaLTStd-Light';
    opacity: 0.3;
}

.searchTerm:focus {
    color: #908F8F;
}

.searchButton {
    width: 16px;
    height: 18px;
    position: absolute;
    border: 0;
    background: transparent;
    right: 12px;
    top: 6px;
    padding: 0;
}

.searchButton:focus {
    border: 0;
    background: transparent;
    outline: 0;
}

.login p {
    color: #454B56;
    font-size: 12px;
    margin-bottom: 0;
    padding-top: 5px;
    font-weight: 600;
}

.dropdown-toggle::after {
    display: none;
}

.upper-nav {
    padding: 10px 15px;
    background: #EFEFEF;
    /* border-bottom: 1px solid #CECFD1; */
}

.prod-header-bg {
    /* background: #EFEFEF; */
    border-bottom: 1px solid #EBEBEB;
}


/*Resize the wrap to see the search bar change!*/

.wrap {
    width: 100%;
    /* text-align: right; */
    display: flex;
    justify-content: flex-start;
    margin-top: 0;
}


/* search end*/

.header-prod {
    text-align: center;
    padding: 0 4px;
}

.header-prod-main {
    justify-content: space-around;
    padding-top: 3px;
    padding-bottom: 10px;
}

.header-prod p {
    padding-top: 1px;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 19px;
    font-weight: 500;
    color: #69717E;
    text-transform: uppercase;
}

.main-menu .footer-container {
    justify-content: flex-start;
    padding: 15px 0;
    background: transparent;
}

.main-menu .verticle-menu {
    padding-left: 0;
    text-align: center;
}

.main-menu .footer-container li a {
    color: #454B56;
    text-transform: uppercase;
    font-size: 12px;
    /* font-family: 'HelveticaLTStd-Light'; */
    font-weight: 500;
    letter-spacing: 2px;
}

.main-menu .footer-container li {
    line-height: 1;
}

.horizontal-header-menu i {
    padding-right: 8px;
}

.cartIcon {
    background: #908F8F;
    color: #fff;
    padding: 0 5px;
}

.cart span i {
    padding: 0;
}

.cartNum {
    background: #CECFD1;
    color: #5B5C5E;
    padding: 0 5px;
}

.slider-main .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
    z-index: 199;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.slider-main .slick-dots li {
    margin: 0 0.25rem;
}

.slider-main .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.25);
    ;
    text-indent: -9999px;
}

.slider-main .slick-dots li.slick-active button {
    background-color: #fff;
}

.slider .slick-dots {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
    margin-top: -50px;
    margin-right: 30px;
    z-index: 199;
    position: relative;
}

.slider .slick-dots li {
    margin: 0 0.25rem;
}

.slider-pots .fa-angle-left {
    position: absolute;
    top: 45%;
    left: 0;
    font-size: 40px;
}

.slider-pots .fa-angle-right {
    position: absolute;
    top: 45%;
    right: 0;
    font-size: 40px;
}

.slider .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.25);
    text-indent: -9999px;
}

.slider .slick-dots li.slick-active button {
    background-color: #fff;
}

.prod-slider-main {
    /* display: flex; */
}

.slider-nav-thumbnails .slick-list .slick-track {
    display: flex;
    flex-direction: column;
}

.prod-info {
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.prod-info li,
.prod-details .horizontal-menu-first li:last-child {
    padding: 0;
}

.prod-details {
    background: #fff;
    /* padding-top: 15px; */
    padding-bottom: 15px;
    margin-bottom: 30px;
    width: 288px;
    height: 404px;
    border: 1px solid #E6E4E8;
}

.prod-details p {
    margin-bottom: 0;
}

.prod-list-main {
    margin-top: 50px;
    /* padding: 0 140px; */
    padding: 0 40px;
    margin-bottom: 15px;
}

.prod-list-main .main-heading {
    padding-right: 6px;
}

.main-heading h3 {
    letter-spacing: 2px;
    color: #454B56;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.main-heading a {
    width: 119px;
    height: 37px;
    background: #FFFFFF;
    border: 1px solid #707070;
    opacity: 1;
    display: flex;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: #3B3B3B;
    opacity: 1;
}

.container-fluid.pb-4 .main-heading h3 {
    padding-left: 30px;
}

.prod-details p,
.prod-details li {
    color: #434343;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.prod-info-two li:first-child {
    color: #FF0000;
    font-size: 15px;
    font-family: 'HelveticaLTStd-Light';
}

.prod-detail-no li {
    /* font-family: 'HelveticaLTStd-Roman', sans-serif; */
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 1.04px;
    color: #454B56;
    opacity: 1;
}

.prod-detail-no li:first-child {
    padding-right: 30px;
}


/* .prod-details .horizontal-menu-first li:last-child {
    color: #CB6F5A;
    font-size: 16px;
} */

.prod-detail-no {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
}

.prod-name-one {
    padding-top: 3.5px;
    border-top: 1px solid #E6E4E8;
    padding-left: 15px;
    padding-right: 15px;
    /* margin-top: 15px; */
}

.main-heading h3 {
    padding-left: 40px;
}

.prod-list-main .main-heading h3 {
    padding-left: 0;
}

.rating img {
    width: 19px;
}

.prod-info-one {
    padding-bottom: 16px;
    font-weight: 500;
}

.prod-info-one li {
    font-weight: 500;
    font-size: 20px;
    color: #5B5C5E;
}

.prod-info-two {
    /* padding-bottom: 15px; */
    justify-content: flex-start;
}

.prod-info-two li:last-child {
    padding-left: 20px !important;
}

.footer-container-main {
    padding: 15px 0 50px;
}

.prod-details img {
    height: 288px;
}

.prod-details-main h3 {
    color: #1A1818;
    font-size: 26px;
    font-weight: 300;
}

.footer-container-main .verticle-menu {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-container-main li a {
    font-size: 13px;
    font-weight: 300;
    color: #3B3B3B;
    font-family: 'HelveticaLTStd-Light';
}

.footer-search .col-md-6:first-child {
    padding-left: 40px;
}

.social-connect {
    padding-right: 55px;
}

.footer-container-main .search {
    width: 85%;
    display: block;
}

.social-connect div>li {
    justify-content: center;
    align-items: center;
    display: flex;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #3B3B3B;
}

.footer-container-main .wrap {
    justify-content: flex-start;
    margin-top: 20px;
    display: block;
}

.footer-container-main .searchTerm {
    background: transparent;
    border: 1px solid #3B3B3B;
    opacity: 1;
    height: 35px;
}

.footer-container-main .searchButton {
    height: auto;
    border-radius: 0;
    margin-top: 20px;
    color: #fff;
    background: #3B3B3B;
    padding: 4px 15px;
    width: 80px;
}

.prod-details-main p {
    margin-bottom: 0;
}

.prod-details-main .prod-name-one {
    border: 0;
    padding-left: 0;
}

.prod-details-main .prod-info-two {
    flex-direction: column-reverse;
    align-items: flex-start;
}

.prod-details-main .prod-info-two li:last-child {
    padding-left: 0 !important;
}

.breadcrumb-menu {
    margin: 28px 0 15px;
    padding-left: 12.5%;
}

.breadcrumb-menu a {
    padding-right: 10px;
}

.breadcrumb-menu li {
    padding-right: 10px;
    color: rgba(91, 92, 94, 0.692);
    font-size: 13px;
}

.breadcrumb-menu li a {
    color: rgba(91, 92, 94, 0.692);
    font-size: 13px;
    font-family: 'HelveticaLTStd-Light';
}

.breadcrumb-menu li:last-child a {
    color: #3B3B3B;
    font-family: 'HelveticaLTStd-Light';
}

.prod-categories {
    margin-top: 50px;
}

.prod-categories h3 {
    font-size: 24px;
    color: #5A5B5D;
    padding-left: 20px;
}

.prod-categories .prod-list-main {
    margin-top: 15px;
}

.footer-container-main button,
.footer-container-main input {
    font-size: 15px;
    font-weight: 300;
}

.footer-container-main .horizontal-footer-menu-first {
    margin-top: 18px;
    padding-left: 0;
}

.social-icon {
    -webkit-filter: grayscale(1) brightness(0.5);
    filter: grayscale(1) brightness(0.5);
}

.social-connect {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.social-connect>li {
    width: 100%;
    text-align: center;
    margin-right: 20px;
}

.prod-info h3 {
    color: #1A1818;
    font-size: 26px;
}

.prod-price {
    color: #5A5B5D;
    font-size: 47px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1;
    padding-top: 10px
}

.org-price {
    color: #505050 !important;
    font-size: 13px !important;
    font-family: 'HelveticaLTStd-Light';
}

.org-price span {
    color: #505050;
    position: relative;
    padding-left: 5px;
    font-weight: 400;
}

.clearfix {
    clear: both;
}

.org-price span:after {
    width: 85%;
    content: '';
    border-bottom: 2px solid #FF0000;
    position: absolute;
    top: -12px;
    left: 20px;
}

.prod-btn {
    margin-top: 13px;
}

.prod-btn a {
    color: #F7F8F8;
    font-size: 13px;
    font-weight: 400;
    width: 211px;
    height: 40px;
    background: #596270;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.prod-desc {
    padding-top: 6px;
}

.prod-desc h3 {
    font-weight: 300;
    color: #3B3B3B;
    font-size: 14px;
}

.prod-desc p {
    color: #3B3B3B;
    font-weight: 300;
    font-size: 13px;
    margin-bottom: 50px;
    font-family: 'HelveticaLTStd-Light';
}

.slider-nav-thumbnails {
    width: 400px;
    position: absolute;
    z-index: 10;
    top: 2px;
}

.prod-slider {
    margin-left: 150px;
}

.slider-nav-thumbnails .slick-track {
    margin: auto !important;
}

.prod-thumb.slick-slide img {
    display: block;
    border: 1px solid #EBEBEB;
    padding: 2.5px;
}

.prod-thumb.slick-slide.slick-current img {
    display: block;
    border: 1px solid rgb(255, 145, 0);
    padding: 2.5px;
}

.prod-thumb {
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-search {
    /* border-top: 1px solid #CFCFCF; */
    width: 100%;
    padding: 10px 0 20px;
    /* margin-top: 40px; */
    padding-left: 20px;
    display: flex;
    align-items: flex-end;
}

.footer-logo {
    padding: 40px 0 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.footer-menu {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 40px;
}

.footer-logo img {
    /* height: 35px; */
}

.footer-container-main li {
    line-height: 1;
}

.footer-container-main .col-md-2 {
    /* max-width: 15%; */
}

.footer-container-main .col-md-1 {
    /* max-width: 15%; */
}

.footer-container-main .offset-md-1 {
    margin-left: 5.333333%;
}

.footer-container-main .verticle-menu {
    border-right: 0;
}


/****** Style Star Rating Widget *****/

.rating {
    border: none;
    float: left;
}

.rating>input {
    display: none;
}

.rating>label:before {
    margin: 0 5px;
    font-size: 1em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating>.half:before {
    content: "\f089";
    position: absolute;
}

.rating>label {
    color: rgba(254, 171, 0, 0.25);
    float: right;
    margin-bottom: 0;
}


/***** CSS Magic to Highlight Stars on Hover *****/

.rating>input:checked~label,

/* show gold star when clicked */

.rating:not(:checked)>label:hover,

/* hover current star */

.rating:not(:checked)>label:hover~label {
    color: #feab00;
}


/* hover previous stars in list */

.rating>input:checked+label:hover,

/* hover current star when changing rating */

.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,

/* lighten current selection */

.rating>input:checked~label:hover~label {
    color: #feab00;
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
  Mobile style's
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

.shop-cart-table th {
    color: #5B5C5E;
    font-size: 15px;
    border-top: 0;
}

.shop-cart-table {
    border-bottom: 1px solid #dee2e6;
}

.shop-cart-list h4 {
    color: #1A1818;
    font-size: 26px;
    padding-top: 37px;
    margin-bottom: 37px;
}

.shopCartProdImg {
    padding-right: 18px;
    width: 80px;
}

.shopCartProdTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shopCartProdInfo {
    display: flex;
}

.shopCartProdTitle p {
    margin-bottom: 0;
    color: #5B5C5E;
    font-size: 14px;
}

.shopCartProdTitle h5 {
    color: #1A1818;
    font-size: 16px;
}

.cartQuantity {}

.cartQuantityCount {
    color: #1A1818;
    font-style: 18px;
    padding: 0 3px;
    font-weight: 600;
}

.table td,
.table th {
    padding: .75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

.prodPrice {
    color: #1A1818;
    font-size: 18px;
    padding: 0 3px;
    font-weight: 600;
}

.cartQuantityMinus {
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #B9B9B9;
    border-radius: 50px;
    color: #B9B9B9;
    cursor: pointer;
}

.cartQuantityPlus {
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #B9B9B9;
    border-radius: 50px;
    color: #B9B9B9;
    cursor: pointer;
}

.prodAction {
    display: flex;
    justify-content: space-evenly;
}

.prodAction span:first-child {
    color: #D27E00;
    background: #e5e5e5;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.prodAction span:last-child {
    color: #3A3A3A;
    background: #B9B9B9;
    height: 20px;
    width: 20px;
    display: flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.CouponInfo .couponTitle {
    margin-bottom: 0;
    color: #3A3A3A;
    font-size: 14px;
}

.couponTick {
    color: #fff;
    background: #B9B9B9;
    height: 30px;
    width: 30px;
    display: flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
}

.couponInput {
    padding: 0 10px;
}

.couponInput input {
    border-color: #B9B9B9;
    height: 32px;
}

.CouponInfo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gstPriceRow {
    background: #F8F8F8;
    padding: 30px 10px;
    align-items: center;
}

.gstTotalPrice p {
    margin-bottom: 0;
}

.gstTotalPrice {
    display: flex;
    justify-content: center;
}

.gstPrice {
    border-right: 1px solid #B9B9B9;
    padding-right: 30px;
    margin-right: 30px;
}

.gstPrice p {
    color: #5B5C5E;
    font-size: 14px;
}

.gstPrice span {
    color: #979797;
    padding-left: 10px;
    font-size: 16px;
}

.totalPrice p:first-child {
    color: #979797;
    font-size: 16px;
}

.totalPrice p:last-child {
    color: #1A1818;
    font-size: 20px;
    font-weight: 700;
}

.checkOutParent {
    display: flex;
    justify-content: flex-end;
}

.checkOutBtn:hover {
    color: #F7F8F8;
}

.checkOutBtn {
    color: #F7F8F8;
    font-size: 18px;
    font-weight: 400;
    width: 190px;
    height: 50px;
    background: #5A5B5D;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 3px #00000029;
    border-radius: 4px;
}


/* shipping page */

.myCardMain {
    border: 1px solid #E9E9E9;
    border-radius: 6px;
    margin-top: 100px;
}

.myCardMain h4 {
    padding: 0 12px;
    padding: 20px 12px 0;
    color: #1A1818;
    font-size: 18px;
}

.shippingTitle {
    color: #1A1818;
    font-size: 26px;
    padding-top: 37px;
    margin-bottom: 37px;
    padding-left: 15px;
}

.myCart {
    padding-left: 12px;
    padding-right: 12px;
}

.myCartProd {
    display: flex;
    position: relative;
    align-items: center;
    padding-right: 30px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #B9B9B9;
}

.myCartClose {
    position: absolute;
    right: 10px;
    top: 25%;
}

.myCartProd img {
    width: 50px;
}

.myCartInfo p {
    margin-bottom: 0;
}

.myCartInfo {
    padding-left: 10px;
}

.myCartInfo p:first-child {
    color: #1A1818;
    font-size: 14px;
    font-weight: 100;
}

.myCartInfo p:last-child {
    color: #1A1818;
    font-size: 14px;
    font-weight: 400;
}

.myCartClose {}

.myCardPrice {
    padding: 0 12px;
}

.myCardValue {
    display: flex;
    justify-content: space-between;
    padding-right: 30px;
    border-bottom: 1px solid #B9B9B9;
    padding-top: 12px;
    padding-bottom: 12px;
}

.myCardValue p {
    margin: 0;
}

.myCardValue p:first-child {
    font-size: 14px;
    color: #5B5C5E;
}

.myCardValue p:last-child {
    font-size: 14px;
    color: #1A1818;
    font-weight: 400;
}

.myCardTotalPrice {
    padding: 0 12px;
    background-color: #a4a4a4;
    border-radius: 0 0 6px 6px;
}

.myCardTotalValue {
    display: flex;
    justify-content: space-between;
    padding-right: 30px;
    border-bottom: 1px solid #B9B9B9;
}

.myCardTotalValue p:first-child {
    font-size: 14px;
    color: #5B5C5E;
    margin: 0;
    padding-top: 12px;
    padding-bottom: 12px;
}

.myCardTotalValue p:last-child {
    font-size: 16px;
    color: #1A1818;
    font-weight: 500;
    margin: 0;
    padding-top: 12px;
    padding-bottom: 12px;
}

.shippingForm label {
    color: #3A3A3A;
    font-size: 14px;
    font-weight: 400;
}

.shipCont {
    padding: 50px 15px;
    margin-bottom: 30px;
}

.summaryName {
    padding-left: 0;
}

.summaryDetails {
    padding-right: 0;
}

.orderMain .col-md-6:first-child {
    padding-left: 0;
    padding-right: 8px;
}

.orderMain .col-md-6:last-child {
    padding-right: 0;
    padding-left: 8px;
}

.orderInfo h5 {
    color: #3A3A3A;
    font-size: 14px;
    border-bottom: 1px solid #3A3A3A;
    display: inline;
}

.summaryName {
    margin-top: 20px;
}

.summaryName p {
    color: #B9B9B9;
    font-style: italic;
    margin-bottom: 6px;
    font-size: 14px;
}

.summaryDetails {
    margin-top: 20px;
}

.summaryDetails p {
    color: #3A3A3A;
    margin-bottom: 6px;
    font-size: 14px;
}

.orderInfo {
    background: #F8F8F8;
    padding: 20px;
    min-height: 350px;
}

.orderSummary {
    padding-bottom: 150px;
}

.login {
    display: flex;
    align-items: center;
}

.login>div {
    flex-direction: column;
}

.slider-pots {
    padding: 0 30px;
}


/* sign in page  start */

.login-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 23px;
}

.login-header div.active {
    background-color: #EBEBEB;
}

.login-header div {
    padding: 3px 15px;
    border: 1px solid #858585;
}

.login-header div a {
    color: #3B3B3B;
    font-size: 13px;
}

.login-input .group {
    position: relative;
    margin-bottom: 13px;
}

.login-input input {
    font-size: 13px;
    padding: 8px 20px;
    display: block;
    width: 100%;
    border: none;
    border: 1px solid #C8C8C8;
    color: #3B3B3B;
}

.login-input input:focus {
    outline: none;
}


/* LABEL ======================================= */

.login-input label {
    color: #999;
    font-size: 13px;
    font-weight: normal;
    font-family: 'HelveticaLTStd-Light';
    position: absolute;
    pointer-events: none;
    left: 22px;
    top: 9px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}


/* active state */

.login-input input:focus~label,
.login-input input:valid~label {
    top: -8px;
    font-size: 11px;
    color: #848484;
    left: 10px;
    background: #fff;
    font-family: 'HelveticaLTStd-Light';
}

.login-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
}

.login-submit p {
    font-size: 13px;
    color: #858585;
    font-family: 'HelveticaLTStd-Light';
    margin-bottom: 0;
}

.login-submit div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-btn {
    width: 121px;
    height: 35px;
    background: #3B3B3B;
}

.login-btn a {
    color: #fff;
    font-size: 13px;
    display: block;
    background: #3B3B3B;
    color: #fff;
}

.need-account {
    padding-top: 48px;
    padding-bottom: 148px;
}

.need-account p {
    font-size: 13px;
    color: #858585;
    font-family: 'HelveticaLTStd-Light';
    margin-bottom: 0;
}

.need-account p a {
    color: #3B3B3B;
    font-family: 'HelveticaLTStd-Roman', sans-serif;
    padding-left: 10px;
}

.sign-up .login-submit {
    justify-content: flex-end;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}


/* sign in page end */


/* profile page start  */

.profile-heading h3 {
    font-size: 20px;
    padding-top: 80px;
}

.pl-30 {
    padding-left: 15px;
}

.profileMain {
    margin-bottom: 264px;
}

.menu-profile {
    border: 1px solid #C8C8C8;
    width: 278px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-profile .icon {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-profile .icon i {
    font-size: 40px;
    color: #3B3B3B;
}

.menu-profile .icon-name {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.menu-profile .icon-name p {
    color: #848484;
    font-size: 15px;
    margin-bottom: 0;
}


/* my profile page */

.myProfileMain {
    position: relative;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
}

.myProfileMain p a i {
    font-size: 20px
}

.myProfileMain p a {
    color: #3B3B3B;
    font-size: 13px;
}

.myProfileMain h3 {
    color: #3B3B3B;
    font-size: 20px;
    margin: 0 0 20px;
    font-family: 'HelveticaLTStd-Light';
}

.myProfileInfo {
    padding: 22px 20px 29px 20px;
    border: 1px solid #C8C8C8;
    max-width: 373px;
    margin-bottom: 165px;
    position: relative;
}

.myProfileHeading p {
    color: #3B3B3B;
    font-size: 13px;
}

.myProfileDetails p {
    color: #3B3B3B;
    font-size: 13px;
    font-family: 'HelveticaLTStd-Light';
}

.myProfileDetails p:last-child a,
.myProfileDetails p:last-child {
    color: #08A46A;
}

.editBtn {
    position: absolute;
    top: 10px;
    right: 16px;
    display: block;
}

.editBtn i {
    display: block;
}

.updateForm .login-submit {
    justify-content: flex-end;
}

.addAddress {
    padding-bottom: 140px;
}

.addAddressDetails h4 {
    color: #3B3B3B;
    font-weight: 300;
    font-size: 16px;
    font-family: 'HelveticaLTStd-Light';
}

.addAddressDetails p {
    color: #3B3B3B;
    font-size: 14px;
    font-family: 'HelveticaLTStd-Light';
}

.addressBtns {
    display: flex;
    justify-content: space-between;
}

.addAddressDetails {
    max-width: 240px;
    max-height: 142px;
    height: 142px;
}

.addAddressDetailsBtn {
    max-width: 240px;
    max-height: 142px;
    height: 142px;
    border: 1px dashed #848484;
    display: flex;
    justify-content: center;
    align-items: center;
}

.addressPlusBtn {
    border: 2px solid #C8C8C8;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.addressPlusBtn {
    color: #C8C8C8;
}

.addressBtns a {
    width: 86px;
    height: 26px;
    background: #FFFFFF;
    border: 1px solid #3B3B3B;
    display: flex;
    font-size: 13px;
    font-family: 'HelveticaLTStd-Light';
    justify-content: center;
    align-items: center;
    color: #3B3B3B;
}

.addressBtns a:last-child {
    color: #FFFFFF;
    background: #3B3B3B;
}

.addressForm .login-submit {
    justify-content: flex-end;
}

.myProfileMain h4 {
    color: #3B3B3B;
    font-size: 16px;
    margin: 20px 0 12px;
    font-family: 'HelveticaLTStd-Light';
}

.addAddressInfo {
    max-width: 350px;
    margin-bottom: 90px;
}

.orderProd {}

.orderProdMain {
    padding-bottom: 60px;
}

.orderProd p {
    margin-bottom: 0;
}

.prodname {
    color: #3B3B3B;
    font-size: 16px;
    font-family: 'HelveticaLTStd-Light';
    padding-bottom: 10px;
}

.prodcode {
    color: #3B3B3B;
    font-size: 14px;
    font-family: 'HelveticaLTStd-Roman';
}

.prodprice {
    color: #FF0000;
    font-size: 21px;
    font-family: 'HelveticaLTStd-Roman';
    padding-top: 8px;
    padding-bottom: 12px;
}

.prodweight {
    color: #3B3B3B;
    font-size: 14px;
    font-family: 'HelveticaLTStd-Roman';
}

.prodshipinfo {
    color: #3B3B3B;
    font-size: 14px;
    font-family: 'HelveticaLTStd-Roman';
}

.orderBtn {}

.orderBtn a:first-child,
.buyAgain a {
    width: 150px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3B3B3B;
    color: #fff;
    font-size: 13px;
    font-family: 'HelveticaLTStd-Light';
    margin-bottom: 18px;
}

.orderBtn a:last-child {
    background: #fff;
    color: #3B3B3B;
    border: 1px solid #3B3B3B;
    width: 150px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-family: 'HelveticaLTStd-Light';
}

.trackOrder {
    padding-top: 90px;
    padding-bottom: 300px;
}

.trackInput {
    height: 36px;
    border: 0.75px solid #C8C8C8;
    padding: 9px 17px;
    width: 100%;
}

.trackInput::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #3B3B3B;
    font-size: 12px;
    font-family: 'HelveticaLTStd-Light';
    opacity: 0.3;
}

.trackBtn {
    width: 150px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3B3B3B;
    color: #fff;
    font-size: 13px;
    font-family: 'HelveticaLTStd-Light';
    margin-bottom: 18px;
}


/* order progress start */

.order-progress-bar li {
    border-left: 3px solid #ccc;
    height: 120px;
    list-style-type: none;
    display: table;
    padding: 0 15px;
    color: #aaa;
}

.order-progress-bar li.is-complete {
    border-left: 3px solid #049259;
    color: #049259;
}

.order-progress-bar li:first-child.is-partial span:first-child {
    color: #049259;
}

.order-progress-bar li span {
    height: 100%;
    display: table-cell;
    vertical-align: bottom;
    line-height: 10px;
    font-size: 14px;
    font-family: 'HelveticaLTStd-Light';
}

.order-progress-bar li:first-child::after {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    background-color: #ccc;
    border-radius: 50%;
    border: 7px solid #ccc;
    position: absolute;
    z-index: 3;
    transition: all .2s ease-in-out;
    margin-left: -287px;
    margin-top: -8px;
}

.order-progress-bar li:before {
    content: "!";
    padding-left: 7px;
    color: white;
    display: block;
    width: 22px;
    height: 22px;
    background-color: rgb(255, 0, 0);
    border-radius: 50%;
    border: 1px solid rgb(255, 0, 0);
    position: absolute;
    z-index: 3;
    transition: all .2s ease-in-out;
    margin: 103px 0 0 -28px;
}

.order-progress-bar li.is-complete:before,
.order-progress-bar li.is-partial:first-child::after {
    content: "✔";
    color: white;
    background-color: #049259;
    border: 1px solid #049259;
    padding-left: 3px;
}

.order-progress-bar li:first-child span:first-child {
    position: absolute;
}

.order-progress-bar li:first-child:before {}

.order-progress-bar li:last-child:before {}

.mainOrder {
    padding-bottom: 60px;
}


/* order progress end */


/* .dropdown:hover .dropdown-menu{
    display: block;
    left: -45px !important;
} */

.acc .dropdown-menu {
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: 1px 2px 6px #78787829;
    left: -45px !important;
    padding-top: 0;
}

.cart .dropdown-menu {
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: 1px 2px 6px #78787829;
    left: -170px !important;
    padding: 8px 12px 8px;
    width: 250px;
    margin-top: 15px;
    top: auto !important;
    transform: none !important;
}

.cart span.number {
    position: absolute;
    background: #FF0000;
    color: #fff;
    width: 17px;
    height: 17px;
    max-width: 17px;
    max-height: 17px;
    border: 1px solid #FF0000;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -10px;
    left: 28px;
}

.acc .dropdown-menu a:first-child {
    background: #3B3B3B;
    color: #fff;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.cart .dropdown-menu::after {
    background-color: #ffffff;
    box-shadow: -2px 2px 2px 0 rgb(243, 243, 243);
    content: "\00a0";
    display: block;
    height: 15px;
    left: -10px;
    position: absolute;
    left: 78%;
    top: -5px;
    transform: rotate( 135deg);
    -moz-transform: rotate( 135deg);
    -ms-transform: rotate( 135deg);
    -o-transform: rotate( 135deg);
    -webkit-transform: rotate( 135deg);
    width: 15px
}

.acc .dropdown-menu>a {
    color: #3B3B3B;
    font-family: 'HelveticaLTStd-Light';
    font-size: 12px;
    padding: 5px 10px;
}

.checkedIcon span {
    background-color: #049259;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    border-radius: 50%;
}

.checkedIcon {
    color: #049259 !important;
    font-size: 13px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homeCart {
    display: flex;
    padding-top: 15px;
}

.homeCart img {
    height: 64px;
    border: 1px solid #EBEBEB;
}

.homeCartInfo p {
    padding-top: 0 !important;
}

.homeCartInfo {
    padding-left: 14px;
}

.homeCartInfo p {
    color: #3B3B3B;
    font-size: 12px;
    font-family: 'HelveticaLTStd-Roman';
}

.homeCartInfo p:first-child {
    color: #3B3B3B;
    font-size: 12px;
    font-family: 'HelveticaLTStd-Light';
    padding-bottom: 6px;
}

.homeCartInfo p:last-child {
    color: #FF0000;
    font-size: 14px;
    font-family: 'HelveticaLTStd-Roman';
    padding-top: 6px;
}

@media only screen and (max-width: 992px) {
    .logo {
        max-width: 13%;
        flex: 0 0 13%;
    }
    .verticle-header-menu {
        margin-left: 0;
    }
    .horizontal-menu-first li {
        font-size: 15px;
    }
    .horizontal-menu li {
        padding: 0 8px;
        font-size: 16px;
    }
    .verticle-menu-header {
        font-size: 16px;
    }
    .footer-container .verticle-menu {
        padding-left: 0;
        font-size: 14px;
    }
    /* .footer-container .col-md-2 {
        flex: 0 0 20%;
        max-width: 20%;
    } */
    .horizontal-footer-menu-first {
        padding-left: 0;
    }
    .footer-container {
        justify-content: flex-start;
        padding: 50px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .verticle-header-menu,
    .horizontal-header-menu {
        display: none;
    }
    header {
        height: 60px;
    }
    .menu-container {
        padding-top: 1;
        height: 60px;
        display: flex;
        align-items: center !important;
        position: relative;
    }
    .logo {
        position: absolute;
        left: 5px;
        top: auto;
        max-width: 100px;
        z-index: 999;
    }
    .hamburger-icon {
        display: block;
        z-index: 999;
    }
    .mobile-menu {
        height: 100%;
        overflow: hidden;
        width: 0;
        background: white;
        position: relative;
        z-index: 100;
        transition: width .8s;
        display: block;
        position: fixed;
        left: 0;
        top: 0;
    }
    .mobile-menu.openMenu {
        width: 100%;
        transition: width .8s;
        position: fixed;
    }
    .mobile-menu .verticle-menu-header {
        height: 100%;
        overflow: hidden;
        justify-content: space-evenly;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: visibility .1s;
        padding-top: 60px;
    }
    .mobile-menu.openMenu .verticle-menu-header {
        visibility: visible;
        opacity: 1;
        transition: opacity 2s;
    }
    .carousel-control-next,
    .carousel-control-prev {
        top: auto;
        bottom: 10px;
    }
    .carousel-control-next img,
    .carousel-control-prev img {
        padding: 5px;
        background: rgba(0, 0, 0, 0.5);
        width: 20px;
    }
}

.magnifier {
    width: 300px !important;
    height: 300px !important;
}

header .menu-container {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

footer {
    background-color: #ebebeb;
}

footer .footer-container {
    max-width: 1366px;
    margin: 0 auto;
}

.cart a:first-child {
    display: flex;
    align-items: center;
}

.cart .fa-shopping-cart {
    font-size: 20px;
}

.header-prod img {
    height: 107px;
}

.genDrop li {
    width: 100%;
}

.genDrop li>a {
    text-align: left;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #C8C8C8;
    opacity: 1;
    position: relative;
    border: 0;
    border-radius: 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid #707070;
    padding: 10px 0 5px;
    cursor: pointer;
}

.genDrop .dropdown-toggle::after {
    color: black;
    content: "\f107";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    border: 0;
    position: absolute;
    right: 2px;
    top: auto;
    bottom: 8px;
}

.colorDrop .dropdown-toggle::after {
    display: none;
}

.genDrop .dropdown-menu {
    width: 100%;
}

.mainProdDrop {
    justify-content: space-between;
}

.sortByMain {
    display: flex;
    justify-content: flex-end;
    padding-right: 6px;
    margin-bottom: 30px;
}

.sortByMain .genDrop {
    width: 174px;
}

.genDrop {
    position: relative;
}

.genDrop .nav-tabs:before {
    content: 'Sort by:';
    position: absolute;
    left: -30%;
    top: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.0313rem;
    color: #707070;
}

.prodActualName {
    font-weight: 500;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: 0.3px;
    color: #454B56;
    text-transform: uppercase;
    opacity: 1;
    padding-top: 0;
    padding-bottom: 15px;
}

.addCartHomeMain {
    display: none;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 40px;
    align-items: center;
    padding-left: 17px;
    padding-right: 12px;
    background: #ffffff;
}

.addCartHomeMain span:first-child {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 1.12px;
    color: #454B56;
    text-transform: uppercase;
    opacity: 1;
}

.prodImgMain {
    position: relative;
}

.prodImgMain:hover .addCartHomeMain {
    display: flex;
}

.addCartHomeMain span:last-child {
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EBEBEB;
    border-radius: 999px;
}

.slider-pots .fa {
    cursor: pointer;
}

.footer-search .searchButton {
    margin-top: -6px;
    position: relative;
    height: 35px;
    margin-left: 20px;
}

.footer-search .search {
    display: flex;
}

.footer-container-main .col-md-1 {
    /* max-width: 15%; */
    padding-left: 0;
}

.firstFooterMenu {
    display: flex;
}

.firstFooterMenu>div {
    width: 15%;
}

.secFooterMenu {
    display: flex;
}

.secFooterMenu>div {
    width: 30%;
}

.secFooterMenu {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.prod-categories .sortByMain {
    width: 97%;
    margin-bottom: -28px;
}

.prod-categories h3 {
    font-size: 24px;
    color: #5A5B5D;
    padding-left: 55px;
}

.prod-details-main .prod-info-two {
    align-items: flex-start;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.prodDescName {
    text-align: left;
    font-size: 25px;
    line-height: 29px;
    letter-spacing: 2px;
    color: #3B3B3B;
    text-transform: uppercase;
}

.qualityMain {
    padding: 13px 0;
}

.qualityMain span {
    text-align: left;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 1.04px;
    color: #707070;
    opacity: 1;
}

.qualityMain select {
    padding: 0 5px;
}

/* new start  */
.aboutMain{
    padding: 20px 0 90px;
    
}
.aboutMain h4{
    text-align: left;
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
    letter-spacing: 0px;
    color: #454B56;
    width: 26.875rem;
    margin-bottom: 21px;
    font-family: 'Montserrat', sans-serif;
}

.aboutMain p{
    text-align: left;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #454B56;
    opacity: 1;
    width: 26.875rem;
    font-family: 'Montserrat', sans-serif;
}

.privacyMain{
    padding: 20px 0 90px;
}
.privacyMain h4{
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    font-weight: 300;
    font-size: 42px;
    line-height: 94px;
    letter-spacing: 0px;
letter-spacing: 3.36px;
color: #454B56;
opacity: 1;
/* margin-bottom: 21px; */
}
.privacyMain p{
    text-align: left;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #454B56;
    opacity: 1;
    /* width: 26.875rem; */
    font-family: 'Montserrat', sans-serif;
}
.conaddress{

}
.conaddress h5{
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    font-weight: 500;
    font-size: 22px;
    line-height: 18px;
letter-spacing: 0px;
color: #454B56;
opacity: 1;
padding-bottom: 10px;
}
.conaddress h6{
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
letter-spacing: 0px;
color: #454B56;
opacity: 1;
padding-bottom: 10px;
}
.conaddress p{
    text-align: left;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #454B56;
    opacity: 1;
    /* width: 26.875rem; */
    font-family: 'Montserrat', sans-serif;
}
.contactMain{
    padding: 20px 0 90px;
}