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

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

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-ThinItalic.woff2') format('woff2'),
      url('../fonts/Gotham-ThinItalic.woff') format('woff');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Book';
  src: url('../fonts/GothamBook-Italic.woff2') format('woff2'),
      url('../fonts/GothamBook-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

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

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

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

:root{
    --primary-color: #ee3a43;
    --button-color: #ee3a43;
    --button-border-color: #ee3a43;
    --button-text-color: #ffffff;
    --button-text-hover-color: #ee3a43;
    --footer-bg-color: #000000;
    --footer-text-color: #ffffff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    font-family: 'Gotham Book';
    -webkit-text-size-adjust: 100%;
}
ul, ul li{
    padding: 0;
    margin: 0;
}
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}
.fw-bold{
    font-weight: 900;
}
.fw-800{
    font-weight: 800;
}
.fw-700{
   font-weight: 700;
}
.fw-600{
  font-weight: 600;
}
.fw-500{
  font-weight: 500;
}
.fw-400{
  font-weight: 400;
}
.fw-300{
  font-weight: 300;
}
.fs-large{
  font-size: 30px;
}
.fs-extra-large{
    font-size: 28px;
}
.fs-20{
  font-size: 20px;
}
.mt-0{
  margin-top: 0 !important;
}
.mb-0{
  margin-bottom: 0 !important;
}
.mb-40{
    margin-bottom: 40px;
}
.btn-pos-bottom{
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.btn-pos-top{
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 2;
}
/*.btn-style.btn-pos-bottom:hover, .btn-style.btn-pos-top:hover{
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
}*/
.btn-style, .action.primary {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    border: 2px solid #ffffff;
/*    background-color: var(--button-color);*/
    background-color: #cdcccc;
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 30px;
    font-family: 'Gotham Book';
}
.btn-style:hover, .action.primary:hover{
  background-color: #ffffff;
  border: 2px solid #000000;
  color: #000000;
}
.btn-style:visited{
   color: #00000;
}
.action.primary:focus{
    border: 1px solid var(--button-border-color);
    background-color: var(--button-color);
}
.action.primary:focus:hover{
  color: var(--button-text-color);
}
.btn-style.shop-now{
    background-color: transparent;
    border: none;
    padding: 0;
    max-width: 190px;
}
.text-center{
  text-align: center;
}
.text-left{
  text-align: left !important;
}
.text-white{
  color: #ffffff;
}
.text-gray{
  color: #848589;
}
.bg-dark{
    background-color: #000000;
}
.bg-dark-opactiy08{
    position: relative;
    z-index: 1;
}
.bg-dark-opactiy08:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}
.list-style li{
  margin-bottom: 10px;
  list-style-type: none;
}
.list-style li:last-of-type{
    margin-bottom: 0;
}
.list-style li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 2px;
    vertical-align: middle;
}
.order-style li{
    list-style-type: none;
    margin-bottom: 8px;
}
.order-style li:last-of-type{
    margin-bottom: 0;
}
h1{
    font-size: 32px;
    margin-bottom: 32px;
}
.container{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-left: auto;
    margin-right: auto; 
}
@media (min-width:768px){
    .container{
        max-width: 720px;
    }
    .list-style li{
        margin-bottom: 25px;
    }
}
@media (min-width:992px){
    .container{
        max-width: 960px;
    }
}
@media (min-width:1200px){
    .container{
        max-width: 1140px;
    }
}
@media (min-width:1400px){
    .container{
        max-width: 1320px;
    }
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.justify-center{
  justify-content: center;
}
.align-center{
    align-items: center;
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  
  .col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  
  .col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  
  .col-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  
  .col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  
  .col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  
  .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }
@media (min-width: 768px) {
    .col-md-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-md-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-md-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-md-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-md-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-md-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-md-6 {
      flex: 0 0 auto;
      width: 50%;
    }
}
@media (min-width: 992px) {
    .fs-extra-large{
      font-size: 40px !important;
    }
    .col-lg-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-lg-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-lg-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-lg-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-lg-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-lg-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
    }
}
@media (min-width: 1200px) {
    .col-xl-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-xl-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-xl-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-xl-3 {
      flex: 0 0 auto;
      width: 25%;
    }
  
    .col-xl-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-xl-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-xl-6 {
      flex: 0 0 auto;
      width: 50%;
    }
}
@media (min-width: 1400px) {
    .col-xxl-auto {
      flex: 0 0 auto;
      width: auto;
    }
  
    .col-xxl-1 {
      flex: 0 0 auto;
      width: 8.33333333%;
    }
  
    .col-xxl-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
    }
  
    .col-xxl-3 {
      flex: 0 0 auto;
      width: 25%;fbtn-style
    }
  
    .col-xxl-4 {
      flex: 0 0 auto;
      width: 33.33333333%;
    }
  
    .col-xxl-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
    }
  
    .col-xxl-6 {
      flex: 0 0 auto;
      width: 50%;
    }
}  
section{
    position: relative;
    padding: 60px 0;
}
.page-main{
    max-width: 1320px;
}
/* popup css start */
.quote-popup .modal-inner-wrap {
    width: 100%;
    max-width: 750px;
}
.quote-popup .modal-header{
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
.quote-popup .modal-header .modal-title{
   font-weight: 600;
   font-size: 18px;
}
.quote-popup .form .fieldset .field{
  margin-bottom: 10px;
}
.quote-popup .form .fieldset .field .label{
   width: 100%;
   text-align: left;
   font-weight: 400;
   display: block;
   margin-bottom: 5px;
}
.quote-popup .form .fieldset .field .label:after {
    content: '*';
    color: #e02b27;
    font-size: 16px;
    margin: 0 0 0 5px;
}
.quote-popup .form .fieldset .field > .control{
   width: 100%;
}
.quote-popup .modal-footer, .modal-popup.confirm .modal-footer{
   background-color: #f2f2f2;
}
.quote-popup .actions .button.action, .modal-popup.confirm .modal-footer button{
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    border: 2px solid #ffffff;
    background-color: #cdcccc;
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 0;
}
.quote-popup .modal-content {
    padding-left: 2rem;
    padding-right: 2rem;
}
.modal-popup.quote-popup .modal-footer{
    padding-bottom: 1rem;
    padding-top: 1rem;
    border-top: none !important; 
}
.modal-popup.confirm .modal-footer{
    margin-top: 20px;
}
.quote-popup .modal-footer .action.secondary, .sample-order-btn .action.primary{
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    border: 2px solid #ffffff;
    background-color: #cdcccc;
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
}
.modal-content #inquiry-sent a.dp_btn{
    color: var(--primary-color);
}
.modal-popup:has(#canva-etsy-popup-modal) .modal-footer button{
    font-size: 16px;
    font-weight: 400;
    color: var(--button-text-color);
    border: 1px solid var(--button-border-color);
    background-color: var(--button-color);
    border-radius: 0;
    padding: 10px 20px;
    display: inline-block;
}
.modal-popup:has(#canva-etsy-popup-modal) .messages ul li{
    position: relative;
    list-style-type: none;
    margin-bottom: 8px;
    padding-left: 20px;
}
.modal-popup:has(#canva-etsy-popup-modal) .messages ul li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}
.swatch-option{
  min-width: 20px;
}
.quote_sample_form .form-top-center{
    text-align: center;
    color: #59595a;
}
.quote_sample_form .quote-form-title {
    font-size: 54px;
    font-weight: 700;
    text-align: center;
    color: #595959;
    font-family: 'Gotham';
}
.quote_sample_form .ordered-list{
   text-align: center;
}
.quote_sample_form .ordered-list ol{
    display: inline-block;
    padding: 0;
    margin: 0;
}
.schedule-button {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  border: 2px solid #ffffff;
  background-color: #cdcccc;
  border-radius: 5px;
  padding: 10px 20px;
  display: block;
  margin-top: 25px;
  text-align: center;
  margin-bottom: 40px;
}
.field.enquiry-details label{
    font-weight: 600;
}
.field.enquiry-details .form-note{
    color: #696a69;
    font-size: 15px;
    font-weight: 300;
    font-family: 'Gotham';
}
.quote_sample_form .ordered-list ol li{
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    font-family: 'Gotham Medium';
    margin-bottom: 0;
    color: #59595a;

}
.quote_sample_form .subtitle{
    line-height: 20px;
    text-align: center;
    font-weight: 300;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: #696a69;
    font-size: 15px;
    font-family: 'Gotham';
}

.quote_sample_form .fieldset .field .label{
   color: #898889;
}
.quote_sample_form .field .input-box input, .quote_sample_form .field .input-box textarea{
    border: 2px solid #dddddd;
    border-radius: 4px;
    height: 40px;
    background-color: #f9f7f7;
}
.quote_sample_form .actions{
    text-align: center;
    margin-top: 40px;
}
.quote_sample_form .bottom{
    text-align: center;
    font-size: 10px;
    font-family: 'Gotham';
    font-weight: 100;
}
.quote_sample_form .form-list.fieldset{
    margin-bottom: 0;
}
.quote_sample_form .form-top-left {
  /* font-size: 12px; */
  font-family: 'Gotham';
  font-weight: 400;
  color: #898889;
}
.quote_sample_form .form-top-left>*{
  font-size: 18px;
}

/* .quote_sample_form .bottom{
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    border: 2px solid #ffffff;
    background-color: #cdcccc;
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
}
.quote_sample_form .bottom>*{
   margin-bottom: 40px;
} */

/* custom banner */
.custom-banner{
    position: relative;
}
.custom-banner img{
    min-height: 280px;
    object-fit: cover;
    display: block;
}
.custom-banner .page-title-wrapper-banner .page-title{
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}
.sample-order-btn{
    text-align: right;
}
.custom-banner .page-title-wrapper-banner.product {
    position: absolute;
    top: 60px;
    left: 0;
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 45px 15px 45px 15px;
}
.custom-banner .page-title-wrapper-banner.product .page-title{
    font-size: 36px;
    font-family: 'Gotham Medium';
    font-weight: 500; 
    text-transform: uppercase;
}

/* My account css start */
.block-dashboard-info, .block-dashboard-addresses {
    border-bottom: 1px solid #dddddd;
}
.box-actions a.action {
    color: #000000;
    text-decoration: underline;   
    margin-right: 10px;
}
.box-actions a.action:hover, 
.box-content address a:hover, 
.block-content .table-wrapper table td.actions a:hover, 
.orders-history.table-wrapper table td.actions a:hover{
   color: var(--primary-color);
}
.block-dashboard-addresses.block .block-title, .block-dashboard-orders.block .block-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.block-dashboard-addresses.block .block-title .action, 
.block-dashboard-orders.block .block-title .action{
    color: #000000;
    text-decoration: underline;
}
.box-content address a, .block-content .table-wrapper table td.actions a, 
.orders-history.table-wrapper table td.actions a {
    color: #000000;
    text-decoration: underline;
}
.form-address-edit .fieldset > .field:not(.choice) > .label, 
.form-edit-account .fieldset > .field:not(.choice) > .label{
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
  font-weight: 400;
}
.form-address-edit .fieldset > .field{
  margin-bottom: 15px;
}
.form-address-edit .fieldset > .field.choice:before, 
.form-edit-account .fieldset > .field.choice:before, 
.form-newsletter-manage .fieldset > .field.choice:before{
  display: none;
}
.products-grid.wishlist .product-item-actions a.action{
  color: #000000;
  text-decoration: underline;
}
.products-grid.wishlist .product-item-name > a{
    font-size: 16px;
    text-transform: capitalize;
}
.products-grid.wishlist .product-item-photo {
    border: 1px solid #dddddd;
    border-radius: 4px;
}
.products-grid.wishlist .action.primary {
    margin-top: 0;
}
/* My account css end */
.cart-container .form.form-cart .cart.table-wrapper a.action, 
.cart-container .form.form-cart .cart.actions .action, 
.block-authentication .actions-toolbar>.primary .action, 
.fieldset.coupon .apply.primary, .form-discount .actions-toolbar .action-apply, .action-edit-address, 
.checkout-billing-address .action-update{
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    border: 1px solid #ffffff;
    background-color: #cdcccc;
    border-radius: 0;
    padding: 10px 20px;
    display: inline-block;
    font-family: 'Gotham Book';
}
.action-edit-address:hover{
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.action.multicheckout, 
.block-customer-login .block-content .action-remind, 
.cart.item dl.item-options a, .actions-toolbar .action-cancel, 
.shipping-information-content a, 
.checkout-payment-method .payment-option-title .action-toggle, 
.billing-address-details a {
    color: var(--primary-color);
}
.authentication-wrapper .action-auth-toggle{
    color: var(--primary-color);
}
.action-edit-address{
    margin-top: 20px;
}
.order-actions-toolbar .actions a.action, .cart-empty p a {
    color: #000000;
    text-decoration: underline;
}
.order-actions-toolbar .actions a.action:hover, .cart-empty p a:hover{
    color: var(--primary-color);
}
.block-reorder .actions-toolbar{
    max-width: 100%;
}
.btn-style.contact-link {
    min-width: 180px;
    padding: 6px 20px;
}
.btn-style.contact-link:hover{
   text-decoration: none;
}
.business-package ul {
    font-size: 18px;
    padding-left: 20px;
    margin-bottom: 15px;
}
.business-package ul li {
    font-size: 14px;
    line-height: 24px;
}
.cms-page-view .page-title {
    font-weight: 600;
}

.cms-page-view .business-package {
    font-size: 20px;
}
.cms-page-title{
  font-size: 36px;
  font-weight: 700;
  color: #595959;
  font-family: 'Gotham';
}
.cms-title-medium{
  font-size: 28px;
  font-weight: 400;
}
.cms-title-small{
  font-size: 24px;
  font-weight: 400;
}
.cms-title-small-bold{
  font-size: 18px;
  font-weight: 700;
  font-family: 'Gotham';
}
.h-list{
  display: flex;
  flex-wrap: wrap;
}
.margin-0{
  margin: 0;
}
.red{
  color: #ef3e42;
}



.absolute-disable{
    position: relative !important;
    left: 0 !important;
    transform: initial !important;
}

.cms-mail-strategy .p-0{
    padding:0 !important;
}
.cms-mail-strategy .large-title{
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    color: #898889;
    font-family: 'Gotham Medium';
    text-transform: uppercase;
    margin-top: 0;
}
.cms-button-style {
    width: 100%;
    text-align: center;
}
.cms-button-style .pagebuilder-button-primary {
    background-color: #cdcccc;
    color: #000000;
    border: 2px solid #ffffff;
    font-weight: 500;
    font-size: 22px;
    padding: 15px 30px;
    cursor: pointer;
}
.cms-button-style .pagebuilder-button-primary:hover{
    background-color: #ffffff;
    border: 2px solid #000000;
    color: #000000;
}
.small-bold-heading {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #696a69;
    font-family: 'Gotham';
}
.cms-mail-strategy .cms-subheading{
     font-size: 40px;
    text-align: center;
    font-weight: 700;
    color: #595959;
    font-family: 'Gotham';
}
.cms-large-light-title {
    font-size: 26px;
    font-weight: 300;
    font-family: "Gotham";
}
.cms-mail-strategy .extra-light-paragraph{
     line-height: 24px;
    font-weight: 300;
    max-width: 100%;
    color: #696a69;
    font-size: 15px;
    font-family: 'Gotham';
}
.left-prod-block, .right-form-block{
    padding-left: 15px;
    padding-right: 15px;
}
.bulkmail_top_section .heading .title {
    font-family: 'Gotham';
    font-weight: 600;
    color: #898889;
    font-size: 36px;
    text-transform: uppercase;
    max-width: 650px;
    text-align: center;
    margin: 50px auto;
    line-height: 45px;
}
.bulkmail_top_section {
    padding: 0 15px;
    margin-bottom: 50px;
}
.bulkmail_section .steps{
    margin-top: 30px;
}
.bulkmail_section .steps.row>*{
    padding-left: 15px;
    padding-right: 15px;
}
.process-col {
    padding-left: 15px;
    padding-right: 15px;
}
.process-col .title{
    font-size: 32px;
    margin-top: 0;
    color: #898889;
    text-transform: uppercase;
    text-align: center;
    padding: 0 15px;
    font-weight: 600;
    line-height: 40px;
}
.process-col p{
    font-size: 22px;
    font-weight: 400;
    font-family: 'Gotham';
}
.left-prod-block .prod-media{
    text-align: center;
    margin-bottom: 20px;
}
.left-prod-block .prod-title {
    font-size: 30px;
    margin-top: 0;
    color: #898889;
    text-align: center;
    padding: 0 15px;
    font-weight: 600;
    line-height: 40px;
}
.left-prod-block .disc p{
    font-size: 22px;
    font-weight: 400;
    font-family: 'Gotham';
}
.left-prod-block .pro-media{
    text-align: center;
}
.left-prod-block .pro-media img{
    display: inline-block;
}
.page-title.banner-title{
    display: inline-block;
}
.page-title.banner-title .small-base{
    font-size: 28px;
    text-align: right;
    display: block;
}
.eddm_top_section .heading .title{
    max-width: 100%;
}
.address-details .control textarea {
    overflow: hidden;
}
.mailing-option .title {
    line-height: 28px;
    font-size: 20px;
    color: #6a6969;
    text-align: center;
    font-weight: 600;
    padding: 0 60px;
}
.mailing-option p{
    font-family: "Gotham";
}
.mailing-option p strong{
    color: #6a6969;
}
.mailing-option ul li {
    font-family: "Gotham";
    font-weight: 300;
    list-style-type: none;
}
.eddm-index-eddm .page-title.banner-title{
    color: #000000;
    text-align: center;
}
	
.mail-content-block .pagebuilder-column-line {
  margin-left: -15px;
  margin-right: -15px;
}
.mail-content-block .mail-content-column {
  padding: 0 15px;
}
.cms-bottom-btn-style {
  margin-top: auto;
  padding-top: 30px;
}
@media (min-width: 576px){
    .custom-banner img{
        min-height: 380px;
    }
    .custom-banner .page-title-wrapper-banner.product{
        padding: 60px 15px 45px 15px;
    }    
}
@media (min-width: 769px){
   .custom-banner img{
        min-height: 250px;
        width: 100%;
   }
   .form-rounded-style .actions {
        text-align: center;
   }
   .form-rounded-style .actions .button{
        width: 50%;
        height: 60px;
        margin-top: 5px;
   }
   .contact-index-index .column:not(.sidebar-additional) .form.contact {
        min-width: 670px;
    }
   .custom-banner .page-title-wrapper-banner.product {
        position: absolute;
        top: 50%;
        left: 50%;
        max-width: 1320px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        transform: translate(-50%, -50%);
        padding: 60px 15px 45px 15px;
    }
    .enquiry-name-wrapper{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .enquiry-name-wrapper .field{
        max-width: calc(50% - 30px);
        width: 100%;
    }
}

@media (max-width: 767px){
    .modal-popup.mobile-quote-popup{
        padding: 20px;
        left: 0;
    }
    .bulkmail_top_section .heading .title{
        font-size: 30px;
        line-height: 40px;
    }
    .left-prod-block .prod-title{
        font-size: 26px;
        line-height: 36px;
    }
    .quote_sample_form .quote-form-title{
        font-size: 30px;
    }
    .modal-popup.mobile-quote-popup .modal-inner-wrap {
        margin: 15px;
        transform: translateX(0);
    }
    .modal-popup.mobile-quote-popup .modal-inner-wrap .modal-footer{
       padding: 2rem 3rem;
       background-color: #edebeb;
    }
}