/* Layout: One Column
Theme: Graphite v.2

The following styles control the general layout of your store

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #939393;
  font-size: 17px;
  line-height: 1.8em;
}

img, img a {
    border: 0 none;
}

#wrapper {
    /* Wraps around everything and sets the total width of the storefront */
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

#wrapperCheckout {
    /* Wrapper with 25px top margin to compensate for missing topNav on checkout pages */
    position: relative;
    max-width: 960px;
    margin: 30px auto 0 auto;
    padding: 10px 10px 0 10px;
}

/* TOP NAVIGATION AND HEADER
===============================================================*/

#topNav {
    /* Contains View Cart link and search field */
    max-width: 100%;
    padding:10px 20px;
    margin:0 auto;
    font-size: 17px;
    line-height: 1.2;
    background-color: #efefef;
}
#topNav a{
    color: #3da8ea;
    font-weight: 500;
    text-decoration: none;
    padding: 0px !important;
    padding-left: 10px !important;
}
#topNav a:hover{
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

#topNav ul {
    list-style: none;
    margin: 0;
    float: none;
    text-align: right;
}

#topNav li {
    padding-left: 30px;
    list-style-image: none;
    display: inline;
}
#NAVIGATION{
    display: none;
}
#header {
    /* The main header that contains your banner or logo */
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-bottom:1px solid #f2f2f2;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1) !important;
}
#companyLogoTopBanner{
      text-align: center;
}

#nav {
    width: 960px;
    overflow: hidden;
    margin-top: 10px;
}

#nav ul {
    list-style: none;
    margin: 7px 0 7px 0;
}

#nav li {
    list-style-image: none;
    display: inline;
}

#nav li a {
    padding: 9px 40px 7px 40px;
    margin-right: 5px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

#nav li a:hover {
    padding: 9px 40px 7px 40px;
}

.navHeader {
    margin: 30px 0 0 10px;
}

#topNav a {
    padding: 30px 15px 10px 15px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

/* CONTENT / PRODUCT
===============================================================*/

h1,h2,h3,h4,h5,h6{
  color:#000;
}

#productGrid {
    overflow: hidden;
}

#content {
    /* Content wrapper used on browsing pages */
    position: relative;
    max-width: 1160px;
    padding: 0 20px;
    margin: 0 auto;
}

#contentWide {
    /* Content wrapper used on checkout pages */
    position: relative;
    max-width: 1160px;
    padding: 40px 20px;
    margin: 0 auto;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: hidden;
}
#CHECKOUT_LINKS{
    max-width: 1160px;
    padding: 0px 20px;
    margin: 0 auto;
}

#contentProductDetail {
    /* Content wrapper used on product details page */
    position: relative;
    max-width: 1160px;
    padding: 0 20px;
    margin: 0 auto;
    min-height: 420px;
    display:block;
    
}
#PRODUCT_DETAIL{
margin-top:40px;
}
.price{
    color: #3da8ea;
    font-weight: 700;
}

#promoBanner {
    /* Large banner on home page */
    margin-bottom: 20px;
}

#breadcrumbs {
    margin: 0 0 10px 0;
}
#breadcrumbs a{
    color: #3da8ea;
    font-weight: 500;
    text-decoration: none;
}
#breadcrumbs a:hover{
    color: #000;
    font-weight: 500;
    text-decoration: none;
}
  

#breadcrumbs ul {
    list-style: none;
}

#breadcrumbs li {
    padding-right: 10px;
    list-style-image: none;
    display: inline;
}

#breadcrumbs li:after {
    /* Symbol to be displayed between breadcrumbs */
    content: ">";
    margin-left: 10px;
}

#breadcrumbs li:last-child:after {
    /* Removes the > after last breadcrumb */
    content: "";
}

.productGridOneCol {
    /* Container for product image and description in product grid */
    position: relative;
    width: 460px;
    height: 250px;
    margin: 0 20px 20px 0;
    float: left;
}

.productGridOneCol img {
    margin: 0 20px 0 0;
    float: left;
}

.productName {
    /* Product name in product grid */
    margin: 5px 0 5px 0;
    padding: 0;
      font-weight: 700;
}

.priceBold {
    /* Paragraph on home page that contains product price */
    margin: -5px 0 5px 0;
    padding: 0;
}

.price {
    /* Paragraph on product details page that contains product price */
    margin: 0 0 15px 0;
}

.productImage {
    /* Contains the image that appears in the product grid */
    width: 170px;
    height: 170px;
    margin-bottom: 5px;
}

.productImage img {
    float: left;
}

.productImgContainer {
    float: left;
    margin: 6px 20px 40px 0;
    position: relative;
    width: 360px;
    text-align: center;
}

.productOutOfStockBanner {
    bottom: 0;
    height: 42px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    top: 0;
}

.productQty {
    /* Product quantity field on product details page */
    padding: 0 10px;
    height: 45px;
    width: 55px;
    display: block;
    text-align: center;
    margin-bottom: 5px;
    font-size: 15px;
    outline: none;
    border: 1px solid #000;
    appearance: none;
}

#productDetails {
    /* Container on product details that wraps around everything from product name to add to cart button */
    padding: 0 20px 0 0;
    float: right;
    width: 700px;
}

#productDescription {
    /* Contains the long product description on product details page */
    width: 100%;
    clear: both;
    padding: 20px 0 0 0;
}

.productDescriptionShort {
    /* Paragraph for short product description on product details page */
    margin: 0;
}

.productDescriptionFront {
    /* Paragraph for product description in product grid */
    margin: 0 0 60px 0;
    width: 450px;
}

#productDetails ul {
    margin: 15px 0 25px 0;
    width: 960px;
}

#productDetails li {
    list-style-type: none;
    width: 400px;
}

.productDrop {
    /* Dropdown list for product options */
    margin: 0;
}

.optionName {
    /* Label for product option dropdown */
    width: 60px;
    height: 20px;
    float: left;
}

table.productTable {
    margin: 0 0 20px;
}

.productTable td {
    padding: 4px;
      color: #000;
}

td.bottom {
    vertical-align: bottom;
}

/* CART AND CHECKOUT
===============================================================*/

input {
    margin: 0 0 7px 0;
}

/* Cart contents
---------------------------------------------*/

.qtyField {
    /* Quantity field in cart */
    padding: 0 10px;
    height: 45px;
    width: 55px;
    display: block;
    text-align: center;
    margin-bottom: 5px;
    font-size: 15px;
    outline: none;
    border: 1px solid #000;
    appearance: none;
}

.cartThumb {
    /* Product thumbnail image in cart */
    float: left;
    margin: 4px 0 8px 0;
}

.cartProduct {
    margin: -2px 0 0 0;
    padding: 0;
}

.updateCart {
    font-size: 10px;
}

.updateCart a:link {
    text-decoration: none;
}

.paymentLabel {
    display: block;
}

.choosePlan {
    /* Class for radio buttons */
    margin-right: 5px;
}

.promoCode {
    /* Table that contains promo code field */
    width: 40%;
    border-collapse: collapse;
    margin-bottom: 10px;
    float: right
}
.promoCode .promoField,
.promoCode .codeButton{
  display:inline-block;
  margin-left:10px;
}

.promoCode td {
    height: 30px;
}

.promoCode td{
    text-align: right;
}

.shippingOptions {
    /* Radio buttons for shipping options */
    margin: 0 10px 3px 0;
}

.address, .editInfo, .shippingOptions, .cardInfo, .shipInfo {
    margin: 0 0 4px 0;
    display: block;
}

.billName, .billStreet, .billCity, .shipName, .shipStreet, .shipCity {
    margin: 0;
    display: block;
}

/* Form fields and labels
---------------------------------------------*/

.checkout {
    /* Form fields used in checkout forms */
    padding: 0 10px;
    height: 45px;
    width: 100%;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 15px;
    outline: none;
    border: 1px solid #000;
    appearance: none;
}

.checkoutBottom {
    /* Provides bottom padding for last form field in a form */
    padding: 0 10px;
    height: 45px;
    width: 100%;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 15px;
    outline: none;
    border: 1px solid #000;
    appearance: none;
}

.checkoutTop {
    /* Provides top padding for first form field in a form */
    padding: 0 10px;
    height: 45px;
    width: 100%;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 15px;
    outline: none;
    border: 1px solid #000;
    appearance: none;
}

.checkoutTopShort {
    /* Provides top padding for first form field in a form */
    padding: 4px 4px 4px 6px;
    margin: 10px 0 0 0;
    width: 125px;
    height: 18px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.checkoutLabel {
    /* Checkout form label */
    padding: 0 0 -3px 0;
    margin: 0 0 -3px 0;
}

.checkoutShort, .search, .promoField {
    /* Smaller form field */
    margin: 0;
    width: 100%;
    padding: 0 10px;
    height: 45px;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 15px;
    outline: none;
    border: 1px solid #000;
    appearance: none;
}
.promoCode .promoField{
  width: 175px;
}

.checkoutShortest {
    /* Even smaller form field */
    margin: 0;
    width: 110px;
    padding: 0 10px;
    height: 45px;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 15px;
    outline: none;
    border: 1px solid #000;
    display: inline-block;
    margin-right: 10px;
}
select{
    appearance: auto !important;
}

.signinField {
    /* Shorter form field for sign in table */
    padding: 4px 4px 4px 6px;
    margin: 0 0 0 0;
    width: 160px;
    height: 18px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.signinTop {
    /* Provides top padding for first form field in sign in form */
    padding: 4px 4px 4px 6px;
    margin: 10px 0 0 0;
    width: 160px;
    height: 18px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

.signinLabel {
    /* Text label used in sign in table */
    text-align: right;
    width: 150px;
}

.paymentIcon {
    margin: 0 7px -5px 4px;
}

.addressTableInfo {
    /* Verbiage in Shipping and Billing table ('Shipping is the same as billing', etc.) */
    padding-bottom: 15px;
}

/* Tables
---------------------------------------------*/

.viewCart {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.viewCart th, .viewCartShort th, .payPlan th, .summaryCart th, .shippingInfo th, .billingInfo th, .billingTable th, .shippingTable th, .paymentInfo th, .signinTable th, .paymentMethodTable th {
    padding: 10px 10px 10px 15px;
    text-align: left;
    border: 1px solid #f2f2f2;
    color: #000;
}

.viewCart td, .viewCartShort td, .payPlan td, .summaryCart td, .billingTable, .shippingInfo td, .billingInfo td, .paymentInfo td, .paymentMethodTable td {
    padding: 10px 10px 10px 15px;
    vertical-align: top;
      border: 1px solid #f2f2f2;
}

.payPlan {
    /* Table on view cart page that contains available pay plans */
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    text-align: left;
}

.tableContainer {
    /* Wraps around cart table to make it stretch to 100% width when no payment plans are displayed */
    overflow: hidden;
    padding: 1px;
}

.tableContainer>table {
    /* Sets cart table to 100% width when no payment plans are displayed */
    width: 100%;
}

.billingTable {
    /* Table for entering billing address */
    width: 100%;
    border-collapse: collapse;
    margin: 0 20px 20px 0;
    text-align: left;
    float: left;
    clear: both;
}

.shippingTable {
    /* Table for entering shipping address */
    width: 440px;
    border-collapse: collapse;
    margin: 0 0 20px 0;
    text-align: left;
    float: left;
}

.paymentMethodTable {
    /* Table for entering payment method */
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 20px 0;
    text-align: left;
    float: right;
}

td.pay1 {
    /* First column in .paymentMethodTable */
    width: 250px;
    padding-bottom: 20px;
}

td.pay2 {
    /* First column in .paymentMethodTable */
    width: 300px;
    padding-bottom: 20px;
}

td.pay3 {
    /* First column in .paymentMethodTable */
    width: 300px;
    padding-bottom: 20px;
}

td.pay4 {
    /* First column in .paymentMethodTable */
    padding-bottom: 20px;
}

.signinTable {
    /* Table for signing in or registering new customer */
    width: 340px;
    border-collapse: collapse;
    margin: 0 0 120px 20px;
    text-align: left;
    float: left;
}

.signinTable td {
    padding: 5px 10px 3px 15px;
    vertical-align: top;
}

.shippingTable td, .billingTable td {
    border: none;
    padding: 5px 0 0 15px;
}

td.rightAlign, th.rightAlign {
    text-align: right;
    vertical-align: top;
    padding-top: 10px;
}

td.rightAlignTop, th.rightAlignTop {
    text-align: right;
    vertical-align: top;
    padding-top: 20px;
    width: 150px;
}

td.rightAlignBottom {
    text-align: right;
    vertical-align: top;
    padding: 10px 10px 20px 0;
    width: 150px;
}

td.leftAlign, th.leftAlign {
    text-align: left;
}

td.centerAlign, th.centerAlign {
    text-align: center;
}

td .rightCell {
    text-align: right;
}

.summaryCart {
    /* Table that contains content of shopping cart, displayed on summary page */
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    float: left;
}

.shippingInfo {
    /* Table on summary page that contains shipping info */
    width: 287px;
    border-collapse: collapse;
    text-align: left;
    margin: 0 0 20px 0;
    float: left;
}

.billingInfo {
    /* Table on summary page that contains billing info */
    width: 287px;
    border-collapse: collapse;
    margin: 0 20px 20px 0;
    text-align: left;
    float: left;
}

.paymentInfo {
    /* Table for pay plan info and scheduled payments on summary page */
    width: 287px;
    border-collapse: collapse;
    margin: 0;
    padding: 10px;
    text-align: left;
    float: right;
}

.checkoutLinksTop {
    /* Container for 'Checkout' and 'Continue Shopping' buttons */
    height: 20px;
    margin: 0;
    text-align: right;
    position: absolute;
    right: 30px;
    top: 20px;
}

.checkoutLinks {
    /* Container for 'Checkout' and 'Continue Shopping' buttons */
    width: 929px;
    height: 80px;
    margin: -25px 20px 40px 0;
    padding: 20px 31px 0 0;
    text-align: right;
}

.checkoutLinksBottom {
    /* Container for 'Checkout' and 'Continue Shopping' buttons */
    height: 80px;
    padding: 30px 0;
    text-align: right;
    margin-top: -10px;
}

#checkoutLinksSummary {
    /* Container for 'Checkout' and 'Continue Shopping' buttons on summary page */
    position: absolute;
    top: 570px;
    right: 0;
    width: 300px;
    height: 30px;
    margin: 17px 0 30px 0;
    text-align: right;
    float: right;
}

/* Forgot password
---------------------------------------------*/

#forgotPasswordWindow {
    /* Container for forgot password information */
    width: 400px;
    margin: 40px auto 0 auto;
    padding: 20px;
}

p.forgotPassword {
    /* Explanation in forgot password window */
    margin: 10px 0 0 0;
    padding: 0;
}

.forgotPasswordTable th {
    text-align: left;
    padding-left: 15px;
}

.forgotPasswordTable td {
    padding: 5px 10px 3px 15px;
}

.forgotPasswordTable input {
    /* Form fields in forgot password window */
    padding: 4px 4px 4px 6px;
    margin: 0 0 0 0;
    width: 160px;
    height: 28px;
}

/* UPSELLS
===============================================================*/

#upsellContainer {
    /* Contains all upsells */
    width: 940px;
    clear: both;
    padding-bottom: 20px;
}

#upsellContainer li {
    display: inline;
    margin-right: 20px;
}

.upsell {
    /* Box that contains single upsell */
    width: 244px;
    padding: 10px 20px 20px 20px;
    float: left;
    margin: 0 20px 10px 0;
}

.upsellImage {
    float: left;
    margin: 3px 15px 0 0;
}

.upsellItem {
    font-size: 15px;
    font-weight: bold;
    margin-right: 10px;
}

.subscriptionPrice {
    margin: 0;
}

.upsellAdd {
    /* Add to cart button for upsells */
    float: right;
    margin: 10px 15px 0 0;
}

/* TYPOGRAPHY
===============================================================*/

h1 {
    /* Used for product and page headers */
    margin: 0 0 18px 0;
}

h3 {
    /* Used for product grid headline */
    margin: 0 0 15px 0;
    padding-bottom: 3px;
}

h4 {
    margin: 20px 0 5px 0;
}

h5 {
    margin: 2px 0 5px 5px;
}

#upsellContainer h4 {
    margin: 0 0 5px 0;
}

.tableHeader {
    margin: 20px 0 5px 0;
    display: block;
}

p.homeLink {
    float: right;
    margin-bottom: 40px;
}

.shippingOptions {
    /* Radio buttons for shipping options */
    margin: 0 10px 3px 0;
}

.address, .editInfo, .shippingOptions, .cardInfo, .shipInfo {
    margin: 0 0 4px 0;
    display: block;
}

.billName, .billStreet, .billCity, .shipName, .shipStreet, .shipCity {
    margin: 0;
    display: block;
}

p.signupInfo {
    margin: 0 0 20px 0;
}

/* LINKS AND BUTTONS
===============================================================*/

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

a:hover {
    text-decoration: underline;
}

.continueButton, .formButton {
    padding: 4px 15px 6px 15px;
    margin: 10px 0 0 10px;
    cursor: pointer;
}

.cartButton, .continueButton, .formButton,.codeButton {
    padding:10px 15px;
    color: #fff;
    border: 2px solid #3da8ea;
    border-radius: 5px;
    font-size: 18px;
    line-height:1.4;
    font-weight: 700;
    text-transform: uppercase;
    background: #3da8ea;
    cursor: pointer;
      text-decoration: none;
}
.cartButton:hover, .continueButton:hover, .formButton:hover,.codeButton:hover {
  color: #3da8ea;
  background: transparent;
      text-decoration: none;
}

.newsButton {
    margin-left: 85px;
    padding: 4px 15px 6px 15px;
    cursor: pointer;
}

.searchButton {
    margin: 1px 0 0 5px;
    padding: 4px 9px 4px 9px;
    cursor: pointer;
}

.upsellButton {
    margin: 1px 0 0 5px;
    padding: 2px 7px 3px 7px;
    cursor: pointer;
}

.buttonRight a:hover, .buttonLeft a:hover {
    text-decoration: none;
}

/* FOOTER
===============================================================*/

#footer {
    position: relative;
    margin-top: 50px;
    padding: 30px 15px 30px 15px;
    width: 100%;
    height: auto;
    text-align: center;
    clear: both;
    background-color: #222;
    color: #fff;
}
#footer a{
  color: #fff;
}
#footer a:hover{
  color: #fff;
}

/* HTML AREAS
===============================================================*/

#customCheckoutBottom {
    clear: both;
}

#customHomeProductGridTop {
    width: 740px;
    margin-bottom: 20px;
}

/* MISC
===============================================================*/

.payPalImage {
    margin: 0 0 -5px 0;
}

p.successMessage {
    margin: 20px 0 20px 0;
}

.checkoutWithPayPalLink {
    cursor: pointer;
    display: inline-block;
}

.checkoutWithPayPalImg {
    display: block;
    margin: 0 0 -8px;
}

.payPalPayWithCardInstead, .creditCardPayWithPayPalInstead {
    cursor: pointer;
}

.payPalPaymentInfoImage {
    margin: 10px 0 0 0;
}

.payPalPaymentInfoMessage {
    width: 440px;
}

/* PAYPAL LIGHTBOX
===============================================================*/

.payPalLightboxIcon {
    float: right;
    padding: 20px;
}

.payPalMessage {
    padding: 55px 30px 0;
}

.closePayPalLightbox {
    margin-right: 30px;
    margin-top: 50px;
    float: right;
}

.payPalGo {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: url("https://www.paypalobjects.com/en_US/i/pui/core/btn_bg_sprite.gif") repeat-x scroll left 17.5% #FFA822;
    border-color: #D5BD98 #935E0D #935E0D #D5BD98;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 30px;
    margin-top: 10px;
    padding: 1px;
}


/* PAYPAL SMARTBUTTON
============================================================*/

.checkoutButtonList {
    /* Container for the checkout links and PayPal smart payment buttons, if the smart payment buttons are present */
    float: right;
    clear: both;
    margin-top: -10px;
    width: 960px;
}

.checkoutPaypalSmartPaymentButtons {
    /* Container for the PayPal smart payment buttons */
    margin-bottom: 20px;
    float: right;
    clear: both;
    padding-right:30px;
}

.payPalOption td {
    /* PayPal option in the Payment Information */
    width: 220px;
}

.payPalOption td div {
    /* Container for the PayPal smart payment buttons in the PayPal option in the Payment Information */
    clear: both;
    float: left;
}

/** Responsive **/
@media (max-width:1199px){
.productImgContainer {
    width: 270px;
}
#productDetails {
    width: 650px;
}
#contentProductDetail {
    min-height: 350px;
}
}
@media(max-width:575px){
.productImgContainer{
    width: 100%;
    float: none;
    margin: 0 auto;
    margin-bottom: 30px;
}
#productDetails {
  width: 100%;
  float: none;
}
}

/** extra section **/
#productDescription {
    padding: 50px 0 0 0;
}
.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.align-center{
    align-items: center;
}
.left-right-section{
    gap: 60px;
    padding: 30px 0;
}
.left-right-section h2{
    margin: 0 0 20px;
}
.flex-reverse{
    flex-direction: row-reverse;
}
.left-section{
    width: calc(50% - 30px);
}
.right-section{
    width: calc(50% - 30px);
}
.right-section img{
    width: 100%;
}
.left-right-section strong,
.left-right-section b{
    color: #000;
}
.right-section iframe{
    width: 100% !important;
    height: 400px !important;
}
.section-desc ul{
    padding-left: 20px;
}
.section-desc ul li{
    margin: 0 0 10px;
}
.section-desc p{
    margin: 0 0 15px;
}
.section-desc .learn-item{
    margin: 0 0 10px;
}
.col-grid-section{
    gap: 40px;
    text-align: center;
    justify-content: center;
    background-color: #efefef;
    padding: 40px 30px 40px 30px;
    border-radius: 15px;
}
.col-grid-section .col-grid-item{
    flex: 1;
}
.col-img{
    font-size: 50px;
    margin-bottom: 20px;
}
.grid-heading-title{
    margin: 15px 0 20px 0;
    text-align: center;
}
.col-grid-section .col-name{
    margin-bottom: 7px;
    padding: 0;
}
.full-width-section{
    padding: 40px 0 0;
    text-align: center;
}
.full-section-desc{
    margin: 0 0 30px;
}
@media (max-width:1199px){
    .left-right-section {
        gap: 30px;
        padding: 20px 0;
    }
    .left-section{
        width: calc(50% - 15px);
    }
    .right-section{
        width: calc(50% - 15px);
    }
    .right-section iframe {
        width: 100% !important;
        height: 300px !important;
    }
}
@media (max-width:991px){
/*.left-right-section {
    gap: 30px;
    padding: 20px 0;
    flex-direction: column;
}
.left-section,
.right-section{
    width: 100%;
}*/
.col-grid-section {
    gap: 20px;
    flex-direction: column;
}
.col-img {
    font-size: 40px;
    margin-bottom: 10px;
}
}
/** END extra section **/
