/*  BASIC SETUP   ============================================================================= */

:root {
    --primary: #1a4594;
    --primary-lite: #345ea0;
    --secondary: #e85c20;
    --bg-gray: #dfdfdf;
    --text-black: #374151;
    --font-main: 'Karla', sans-serif;
    --font-secondary: 'Raleway', serif;
    --font-heading: 'Montserrat', sans-serif;
}

#temp-wrapper {
    width: 100%;
    margin: 20px 0 30px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-black);
    text-align: left;
}

#temp-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 28px rgba(0, 0, 0, 0.055), 0 10px 10px rgba(0, 0, 0, 0.055);
    box-shadow: 0 2px 28px rgba(0, 0, 0, 0.055), 0 10px 10px rgba(0, 0, 0, 0.055);
}

.section-heading {
    color: var(--text-black);
    font-size: 2.125rem;
    font-family: var(--font-heading);
    padding: 12px 0;
    position: relative;
    margin-bottom: 60px;
}

.section-heading::after {
    background: var(--primary);
    content: "";
    display: block;
    width: 45px;
    height: 5px;
    bottom: -10px;
    position: absolute;
    left: 0;
}

.section-subtitle {
    background: var(--primary);
    color: #fff;
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 20px;
    margin-bottom: 0;
    text-transform: uppercase;
    padding: 0 5px;
    border-radius: 3px;
}

.shadow-border {
    background-image: url(shadow1.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.temp-section {
    padding-left: 65px;
    padding-right: 65px;
}

p:last-of-type {
    margin-bottom: 0 !important;
}

img {
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important;
}

.text-center {
    text-align: center !important;
}

/*  HEADER & NAV   ============================================================================= */

#temp-header {
    position: relative;
}

.temp-logo {
    max-width: 75px;
    margin-left: 40px;
    margin-top: 12px;
}

.temp-hero-banner {
    height: 300px;
    background: url(header-bg.png) center no-repeat;
    background-size: cover;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*Navigation */

#main-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 0 #000 solid;
    border-bottom: 0 #000 solid;
    background-color: #fff;
    font-family: var(--font-secondary);
    height: 101px;
    width: 100%;
}

.nav-icon-container {
    margin: 0;
    margin-left: auto;
}

.hamburger-nav {
    margin: 0;
    padding: 20px 30px 15px 20px;
}

.dropdown-menu {
    cursor: pointer;
    position: relative !important;
}

.hamburger-nav a {
    color: #000;
    display: block;
    font-size: 12px;
    font-weight: 900;
    height: 100%;
    letter-spacing: 1px;
    padding: 20px;
    text-transform: uppercase;
}

.hamburger-nav .menu-item {
    display: inline-block;
    height: 65px;
    margin-right: 10px;
    list-style: none;
    position: relative;
    transition: color .3s, background-color .3s ease;
}

.hamburger-nav .menu-item::before {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    background-color: #dddddd;
    width: 20px;
    left: 50%;
    bottom: 20px;
    opacity: 0;
    -webkit-transform: translate3d(-50%,20px,0);
    transform: translate3d(-50%,20px,0);
    transition: opacity .2s cubic-bezier(0,0,.26,1),-webkit-transform .2s cubic-bezier(0,0,.26,1);
    transition: transform .2s cubic-bezier(0,0,.26,1),opacity .2s cubic-bezier(0,0,.26,1);
    transition: transform .2s cubic-bezier(0,0,.26,1),opacity .2s cubic-bezier(0,0,.26,1),-webkit-transform .2s cubic-bezier(0,0,.26,1);
}

.hamburger-nav .menu-item:hover::before {
    background-color: var(--primary);
    opacity: 1;
    -webkit-transform: translate3d(-50%,5px,0);
    transform: translate3d(-50%,5px,0);
}

.menu-item:hover i {
    transform: rotateX(180deg);
}

.hamburger-nav .menu-item:last-of-type {
    margin-right: 0;
}

.hamburger-nav .menu-item i {
    font-size: 16px;
    padding-left: 5px;
    transition: transform .2s ease;
}

#main-links input[type="checkbox"],
#main-links .hamburger-label {
    display: none;
}

.nav-icon-container > input[type='checkbox']:checked + .hamburger-label .icon-hamburger > * {
    top: 50%;
}

.icon-hamburger {
    width: 40px;
    height: 25px;
    display: block;
    position: relative;
    margin: 0 auto;
    cursor: pointer;
}

.icon-hamburger > * {
    display: block;
    width: 100%;
    height: 5px;
    background: #212529;
    position: absolute;
    left: 0;
    opacity: 1;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.icon-hamburger > *.bread-top,
.icon-hamburger > *.bread-bottom {
    background-color: #212529;
}

.icon-hamburger > *.bread-top {
    top: 0;
    height: 5px;
}

.icon-hamburger > *.hamburger {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #212529;
}

.icon-hamburger > *.bread-bottom {
    top: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

#nav-icon-4-state:checked + label .icon-hamburger .bread-top {
    -webkit-transform: translatey(-50%) rotate(45deg);
    transform: translatey(-50%) rotate(45deg);
}
#nav-icon-4-state:checked + .hamburger-label .icon-hamburger .hamburger {
    width: 0;
    opacity: 0;
    left: 50%;
}

#nav-icon-4-state:checked + .hamburger-label .icon-hamburger .bread-bottom {
    -webkit-transform: translatey(-50%) rotate(-45deg);
    transform: translatey(-50%) rotate(-45deg);
}

.dropdown-menu .category-btn-box {
    display: none;
    position: absolute;
    right: 0;
    top: 65px;
    z-index:6;
    list-style-type: none;
    background: #fff;
    font-family: var(--font-main);
    -webkit-box-shadow: 0 4px 7px rgba(0,0,0,.15);
    box-shadow: 0 4px 7px rgba(0,0,0,.15);
    padding: 20px 15px;
    width: 360px;
}

.dropdown-menu ul ul {
    display: block;
    list-style-type: none;
}

.category-label {
    cursor: pointer;
    margin-bottom: 0;
}

.category-btn-box a {
    font-weight: 700;
    line-height: 17px;
    margin: 2.5px;
    padding: 2.5px;
}

.category-btn-box a:hover {
    color: var(--primary);
}

.dropdown-menu:hover > ul {
    display: inherit;
}

.first-dd-col,
.second-dd-col {
    width: 50%;
    display: block;
    float: left;
}

.clear {
    display: none;
}

.bp-shape:nth-child(1) {
    --b: 1;
}

.bp-shape:nth-child(2) {
    --b: 2;
}

.bp-shape:nth-child(3) {
    --b: 3;
}

.bp-shape:nth-child(4) {
    --b: 4;
}

.bp-shape {
    display: inline-block;
    position: absolute;
    width: 25%;
    height: 100%;
    background: var(--text-black);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--b) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--b) - 1) * 0.1s);
    z-index: -1;
}

/*  PRODUCT TITLE AND TOP DESC   =============================================================== */

.product-description p {
    margin-bottom: 16px;
}

.product-desc {
    border-bottom: 1px solid var(--bottom-line);
    padding-top: 75px;
    padding-bottom: 75px;
}

/*  USP   ====================================================================================== */

.usp-icons {
    background: linear-gradient(135deg, #3F4045 0%, #1f2937 100%);
    color: #fff;
    padding-top: 22px;
    padding-bottom: 22px;
}

.usp-icons .col-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.usp-icons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.usp-icon-box {
    display: block;
    margin-left: 8px;
    margin-right: 8px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.middle-box {
    border-left: 1px solid rgba(255, 255, 255, .25);
    border-right: 1px solid rgba(255, 255, 255, .25);
}

.usp-icon-box i {
    display: block;
}

.usp-icon-box img {
        height: 40px;
    }

/*  POLICY   =====================================================================--============ */

.policy-section {
    background: #fff;
    padding-top: 75px;
    padding-bottom: 75px;
}

.service-section .section-heading {
    margin-bottom: 50px;
}

.service-section .sec-title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.service-section .sec-title-container .section-heading,
.service-section .sec-title-container .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.pc-tab > input,
.pc-tab .tab-body > div {
    display: none;
}

#tab1:checked ~ .tab-body .tab1,
#tab2:checked ~ .tab-body .tab2,
#tab3:checked ~ .tab-body .tab3,
#tab4:checked ~ .tab-body .tab4,
#tab5:checked ~ .tab-body .tab5,
#tab6:checked ~ .tab-body .tab6 {
    display: block;
}

.pc-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: 100%;
}

.tab-nav {
    width: 25%;
}

.pc-tab ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
.pc-tab ul li label {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    border-left: 1px solid rgba(0, 0, 0, .5);
    border-right: 1px solid rgba(0, 0, 0, .5);
    color: #444;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 0;
    padding-left: 30px;
}

.pc-tab ul li.tab1 {
    border-top: 1px solid rgba(0, 0, 0, .5);
}

.pc-tab ul li label:hover {
    background: #f3f3f3;
    color: var(--primary);
}

.pc-tab ul li i {
    padding-right: 15px;
}

.pc-tab .tab-body {
    width: 75%;
    padding-right: 60px;
}

#tab1:checked ~ .tab-nav .tab1 label,
#tab2:checked ~ .tab-nav .tab2 label,
#tab3:checked ~ .tab-nav .tab3 label,
#tab4:checked ~ .tab-nav .tab4 label,
#tab5:checked ~ .tab-nav .tab5 label,
#tab6:checked ~ .tab-nav .tab6 label {
    color: var(--primary);
    background: #f3f3f3;
    position: relative;
}

#tab1:checked ~ .tab-nav .tab1 label::after,
#tab2:checked ~ .tab-nav .tab2 label::after,
#tab3:checked ~ .tab-nav .tab3 label::after {
    position:absolute;
    content: "";
    width: 3px;
    height: 100%;
    background: #1a4594;
    z-index: 1;
    left: 0;
    top: 0;
}

.desc-tab-container h3 {
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.service-section h5 {
    color: var(--text-black);
    font-size: 18px;
    margin-bottom: 15px;
}

.desc-tab-content em {
    color: var(--primary);
    font-weight: 700;
}

/*  CONTACT US SECTION   ========================================================================== */

.contact-us-section {
    padding-top: 75px;
    padding-bottom: 65px;
}

.contact-us-section .picture-box {
    padding-left: 35px;
}

.contact-us-section .button-container {
    padding-top: 35px;
}

.button-container {
    width: 100%;
    padding-top: 65px;
}

.call-to-action-btn {
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    width: auto;
    background: var(--primary);
    border-radius: 100px;
    padding: 12px 32px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    transition: .25s background ease !important;
}

.call-to-action-btn:hover .bp-shape {
    transform: translateY(0) scale(2);
    -moz-transform: translateY(0) scale(2);
    -moz-transform: translateY(0) scale(2);
}

.button-container i {
    margin-right: 10px;
}

/*  NUMBERS   ============================================================================ */

.numbers-section {
    padding-top: 40px;
    padding-bottom: 45px;
    background: url(stats-bg.jpg) no-repeat top center;
    background-size: cover;
}

.stat-box {
    padding: 0 15px;
    text-align: center;
}

.stat-1,
.stat-2,
.stat-3 {
    border-right: 1px solid rgba(255, 255, 255, .25);
}

.stat-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-txt {
    color: rgba(255, 255, 255, .45);
}

/*  CROSS SELLING SECTION   ======================================================================= */

.cross-sell {
    padding-top: 75px;
    padding-bottom: 75px;
}

.cross-sell-heading {
    text-align: center;
}

.cross-sell-heading .section-heading {
    margin-bottom: 20px;
}

.cross-sell-heading .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.cs-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
}

.cs-card-img img {
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem;
}

.cs-card a {
    color: var(--text-black);
    font-weight: 600;
    display: block;
    border-radius: .75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 250px;
}

.cs-card a:hover {
    color: var(--primary-lite);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cs-card-txt {
    border-top: 1px solid var(--bg-gray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
}

.brands-section {
    padding-top: 45px;
    padding-bottom: 75px;
}

.brand-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.brand-card img {
    height: 65px;
    object-fit: contain;
}

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

#temp-footer {
    background: var(--bg-gray);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    font-size: 0.875rem;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-top {
    padding-bottom: 20px;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 25px;
}

.footer-about-us p {
    max-width: 75%;
}

.useful-links ul {
    list-style: none;
}

.useful-links li {
    margin-bottom: 6px;
}

.useful-links a {
    color: var(--text-black);
    display: inline-block;
    font-weight: 600;
    padding: 4px 4px 4px 0;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.useful-links a:hover {
    color: var(--primary-lite);
    transform: translateX(5px) !important;
}

.useful-links i {
    font-size: 10px;
    margin-right: 10px;
    vertical-align: middle;
}

#temp-footer h6 {
    font-size: 1rem;
    margin-bottom: 40px;
    position: relative;
}

#temp-footer h6::after {
    background: var(--primary);
    content: "";
    display: block;
    width: 22.5px;
    height: 2.5px;
    bottom: -15px;
    position: absolute;
    left: 0;

}

.footer-bottom {
    border-top: 1px solid #c7c7c7;
    padding-top: 20px;
}

.footer-bottom span {
    display: block;
    text-align: right;
}

/*  MEDIA   =================================================================================== */

@media only screen and (max-width: 1300px) {
    #temp-container {
        max-width: calc(100% - 30px);
    }
}

@media only screen and (max-width: 1023px) {
    #temp-wrapper {
        margin-top: 0;
        margin-bottom: 0;
    }
    #temp-container {
        max-width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .temp-section {
        padding-left: 25px;
        padding-right: 25px;
    }
    .temp-logo {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .desc-container {
        padding-left: 0;
    }
    .section-heading {
        font-size: 1.75rem;
    }
}

@media only screen and (max-width: 900px) {
    .temp-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 800px) {
    .temp-logo {
        position: absolute;
        z-index: 11;
    }
    #main-links {
        padding-left: 0;
        padding-right: 0;
        position: relative;
    }
    #main-links .hamburger-label {
        display: inline-block;
        width: 45px;
        margin: 0;
        cursor: pointer;
        padding: 20px 0;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    .dropdown-menu:hover > ul,
    ul.hamburger-nav,
    .hamburger-nav .menu-item::before {
        display: none;
    }
    #category-btn:checked + ul,
    ul.hamburger-nav a {
        display: block;
    }
    .hamburger-nav .menu-item:hover i {
        transform: rotateX(0deg);
    }
    .hamburger-nav .menu-item {
        height: 50px;
    }
    .hamburger-nav a {
        padding: 10px 20px;
    }
    .hamburger-nav .menu-item,
    .hamburger-nav li {
        display: block;
        margin-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eaeaea;
    }
    #main-links input[type="checkbox"]:checked ~ .hamburger-nav {
        background: #fff;
        -webkit-box-shadow: 0 4px 7px rgba(0,0,0,.25);
        box-shadow: 0 4px 7px rgba(0,0,0,.25);
        display: block !important;
        margin-top: 101px;
        padding: 5px 0 0 5px;
        position: relative;
        width: 100% !important;
        z-index: 10;
    }
    .nav-icon-container,
    .category-label {
        width: 100%;
    }
    .dropdown-menu .category-btn-box {
        background: #f5f5f5;
        -webkit-box-shadow: none;
        box-shadow: none;
        float: left;
        padding: 0 20px;
        position: relative;
        right: unset;
        top: unset;
        width: 100%
    }
    .first-dd-col,
    .second-dd-col {
        border-bottom: none !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .first-dd-col li,
    .second-dd-col li {
        padding-top: 0;
        padding-bottom: 0;
    }
    .first-dd-col li a,
    .second-dd-col li a {
        padding-left: 20px;
    }
    .clear {
        clear: both;
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .nav-icon-container {
        width: 100%;
    }
    .temp-hero-banner {
        height: 250px;
    }
    .pc-tab {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .pc-tab .tab-body {
        width: 100%;
        padding-right: 0;
        padding-top: 50px;
    }
    .tab-nav {
        border: 1px solid rgba(0, 0, 0, .5);
        width: 100%;
    }
    .pc-tab ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .pc-tab ul li {
        width: 33.33%;
    }
    .pc-tab ul li.tab1 {
        border-top: 0;
    }
    .pc-tab ul li.tab2 {
        border-left: 1px solid rgba(0, 0, 0, .5);
        border-right: 1px solid rgba(0, 0, 0, .5);
    }
    .pc-tab ul li label {
        border: 0;
    }
    .pc-tab ul li i {
        padding-right: 10px;
    }
    .about-container {
        padding-left: 0;
    }
    .display-none {
        display: none !important;
    }
    .right-box {
        border-left: 1px solid rgba(255, 255, 255, .25);
    }
    .mobile-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .picture-box {
        padding-top: 50px;
        padding-left: 0 !important;
    }
    .picture-box img {
        width: 100%;
        max-width: 450px;
    }
    .stat-heading {
        font-size: 2rem;
    }
    .footer-about-us {
        margin-top: 35px;
    }
    .footer-bottom, .footer-bottom span {
        text-align: left;
    }
}

@media only screen and (max-width: 575px) {
    .top-menu {
       -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; 
    }
     .temp-hero-banner {
        height: 215px;
    }
    .product-desc,
    .policy-section,
    .contact-us-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .pc-tab ul li label {
        font-size: 18px;
        padding-left: 15px;
    }
    .cross-sell-heading {
        text-align: left;
    }
    .cross-sell-heading .section-heading::after {
        left: 0;
        transform: translateX(0);
    }
    .stat-heading {
        font-size: 1.75rem;
    }
    .m-top {
        margin-top: 50px;
    }
    .open-times {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 500px) {
    .section-heading {
        font-size: 1.5rem;
    }
    .usp-icon-box {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .usp-icon-box img {
        height: 60px;
    }
    .pc-tab ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .pc-tab ul li {
        width: 100%;
    }
    .pc-tab ul li.tab2 {
        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(0, 0, 0, .5);
        border-bottom: 1px solid rgba(0, 0, 0, .5);
    }
}

@media only screen and (max-width: 439px) {
    .stat-1 {
        border-bottom: 1px solid rgba(255, 255, 255, .25);
        padding-bottom: 15px;
    }
    .stat-2 {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .25);
        padding-bottom: 15px;
    }
    .stat-3,
    .stat-4 {
        padding-top: 15px;
    }
    .stat-box {
        padding-left: 5px;
        padding-right: 5px;
    }
    .stat-txt {
        font-size: .875rem;
    }
    .sm-top {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 400px) {
    .section-heading {
        font-size: 26px;
    }
    .usp-icons-box {
        font-size: 10px;
    }
}