/* ============================================================
   cistronics.in – site styles
   ============================================================ */

/* Import fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Didact+Gothic&family=Crimson+Text:wght@400;700&display=swap');

/* ---- Base ---- */

.cistro-grey {
    color: #6d737e;
}

.cistro-green {
    font-family: 'Didact Gothic' !important;
    color: #14a957;
}

.cistro-red {
    font-family: 'Crimson Text' !important;
    font-weight: 400;
    font-style: normal;
    color: #FF073a;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #31353d;
    /* font-family: 'Roboto', 'Open Sans', Arial, sans-serif; */
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 400;
    color: #6d737e;
    line-height: 1.6;
}

a {
    color: #0089b0;
    text-decoration: none;
    transition: color .3s, background .3s;
}

a:hover {
    color: #0089b0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 10px;
    line-height: 1.2;
}

h2 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 28px;
    color: #31353d;
}

h2 strong {
    display: block;
    font-weight: 300;
    color: #0089b0;
}

h3 {
    font-size: 20px;
    font-weight: 300;
    color: #31353d;
}

h5 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
    color: #31353d;
    margin: 0 0 10px;
}

h6 {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #0089b0;
    margin: 0 0 6px;
}

p {
    margin: 0 0 15px;
}

ul,
ol {
    margin: 0 0 15px;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Bootstrap 5 overrides – match original Bootstrap 2 / CherryFramework widths ---- */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    padding-right: 20px;
    padding-left: 20px;
}

@media (max-width: 767px) {
    .container {
        max-width: 100% !important;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
    .container {
        max-width: 724px !important;
    }
}

@media (min-width: 980px) and (max-width: 1199px) {
    .container {
        max-width: 940px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px !important;
    }
}

/* tighter horizontal gutter matching original layout */
.row {
    --bs-gutter-x: 20px;
}

/* ---- Main wrapper ---- */
.main-holder {
    position: relative;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: url(../images/header.jpg) no-repeat 50% 0%;
    background-size: cover;
    padding: 0 0 49px;
    position: relative;
}

body.home .header {
    background: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 100;
}

body.page-about .header {
    background-image: url(../images/abouth.jpg);
}

body.page-seed-coating-polymers .header {
    background-image: url(../images/scph.jpg);
}

body.page-molecular-sized-products .header {
    background-image: url(../images/nnh.jpg);
}

body.page-contact .header {
    background-image: url(../images/contacth.jpg);
}

body.page-privacy-policy .header {
    background-image: url(../images/pph.jpg);
}

body.page-dvc-thp .header {
    background-image: url(../images/header.jpg);
}

.header .container {
    background-color: rgba(49, 53, 61, .9);
    padding: 25px 0;
    height: 100px;
    overflow: visible;
}

@media (max-width: 767px) {
    .header .container {
        padding: 30px 20px;
        text-align: center;
        height: auto;
        overflow: visible;
    }
}

/* Logo */
.logo {
    float: left;
    display: block;
    margin: 0 0 0 45px;
}

.logo img {
    display: block;
    max-height: 60px;
    width: auto;
}

/* Primary Nav */
.nav__primary {
    float: right;
    margin: 19px 69px 0 0;
}

@media (min-width: 768px) and (max-width: 979px) {
    .logo {
        margin: 0 0 0 30px;
    }

    .nav__primary {
        margin: 19px 30px 0 0;
    }
}

.sf-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.sf-menu>li {
    position: relative;
    margin: 0 0 0 28px;
}

.sf-menu>li>a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    display: block;
    padding: 4px 0;
    letter-spacing: .5px;
}

.sf-menu>li>a:hover,
.sf-menu>li.active>a {
    color: #0089b0;
}

/* Dropdown */
.sf-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #31353d;
    width: 234px;
    padding: 20px 0;
    list-style: none;
    margin: 0;
    margin-top: 0;
    z-index: 999;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}

/* Mouse devices only — hover opens dropdown */
@media (hover: hover) {
    .sf-menu>li:hover>.sub-menu {
        display: block;
    }
}

/* Touch devices — JS adds .focus on first tap to open dropdown */
.sf-menu>li.focus>.sub-menu {
    display: block;
}

.sf-menu .sub-menu li a {
    display: block;
    padding: 7px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sf-menu .sub-menu li a:hover {
    color: #0089b0;
}

.sf-menu>li.menu-item-has-children>a::after {
    content: ' ▾';
    font-size: 10px;
}

.nav-toggle {
    display: none;
}

/* ============================================================
   SLIDER (Camera.js compatible)
   ============================================================ */
#slider-wrapper {
    position: relative;
    overflow: hidden;
}

.camera_wrap {
    position: relative;
    overflow: hidden;
    background: #000;
    width: 100%;
    height: 758px;
}

.camera_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}

.camera_slide.active {
    opacity: 1;
    z-index: 2;
}

.camera_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Caption */
.camera_caption {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.camera_caption>div {
    background: none;
    padding: 0 50px;
    font-family: 'Roboto';
    font-size: 50px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

.camera_caption>div p {
    margin: 0 0 30px;
    font-size: inherit;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
}

.camera_caption>div h2 {
    font-size: 70%;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 30px;
    line-height: 1.1;
}

.camera_caption>div a {
    background: #31353d;
    display: inline-block;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: background .3s;
    pointer-events: auto;
}

.camera_caption>div a:hover {
    background: #0089b0;
    color: #fff;
}

/* Prev / Next arrows (use downloaded theme images) */
.camera_prev,
.camera_next {
    background: none;
    width: 27px;
    height: 42px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 20;
}

.camera_prev {
    left: 20px;
}

.camera_next {
    right: 20px;
}

.camera_prev::before,
.camera_prev::after,
.camera_next::before,
.camera_next::after {
    display: block;
    width: 27px;
    height: 42px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    transition: opacity .3s;
    background-repeat: no-repeat;
    background-position: 0% 0%;
}

.camera_prev::before {
    background-image: url(../images/prev.png);
    opacity: 1;
}

.camera_prev::after {
    background-image: url(../images/prev_act.png);
    opacity: 0;
}

.camera_next::before {
    background-image: url(../images/next.png);
    opacity: 1;
}

.camera_next::after {
    background-image: url(../images/next_act.png);
    opacity: 0;
}

.camera_prev:hover::before,
.camera_next:hover::before {
    opacity: 0;
}

.camera_prev:hover::after,
.camera_next:hover::after {
    opacity: 1;
}

.camera_prev span,
.camera_next span {
    display: none;
}

/* pagination: false – no dots rendered */

/* Responsive */
@media (max-width: 767px) {
    .camera_caption {
        bottom: 25%;
    }

    .camera_caption>div {
        font-size: 22px;
        padding: 0 15px;
    }

    .camera_caption>div p {
        margin: 0 0 10px;
    }

    .camera_caption>div h2 {
        margin: 0 0 10px;
    }

    .camera_caption>div a {
        padding: 9px 14px;
        font-size: 12px;
    }

    .camera_prev {
        left: 4px;
    }

    .camera_next {
        right: 4px;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
    .camera_caption {
        bottom: 25%;
    }

    .camera_caption>div {
        font-size: 35px;
    }
}

/* ============================================================
   CONTENT HOLDER
   ============================================================ */
.content-holder {
    background: #fff;
    padding: 39px 0 100px;
}

body.home .content-holder {
    padding: 61px 0 0;
}

/* ============================================================
   TITLE BOX
   ============================================================ */
.title-box {
    margin: 0 0 68px;
    text-align: center;
    padding: 70px 20px 0;
}

.title-box h2 {
    color: #14a957;
    font-family: 'Roboto';
    text-transform: lowercase;
    font-weight: 300;
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.title-box h3 {
    font-size: 20px;
    color: #31353d;
    font-weight: 300;
    text-transform: none;
    margin: 0;
}

/* ============================================================
   CONTENT BOX (grey products section)
   ============================================================ */
.content_box {
    background: #f4f5f5;
    margin: 0 0 88px;
    padding: 98px 0 86px;
    text-align: center;
}

.content_box h2 {
    font-size: 45px;
    line-height: 45px;
    margin: 0 0 60px;
}

/* ============================================================
   BANNER WRAP
   ============================================================ */
.banner-wrap {
    background: #fff;
    position: relative;
    padding: 20px;
    transition: box-shadow .3s;
    margin-bottom: 0;
}

.banner-wrap:hover {
    box-shadow: 0 0 11px rgba(0, 0, 0, .30);
}

.banner-wrap .featured-thumbnail {
    margin: -20px -20px 5px -20px;
    overflow: hidden;
}

.banner-wrap .featured-thumbnail img {
    width: 100%;
    transition: transform .3s;
}

.banner-wrap:hover .featured-thumbnail img {
    transform: scale(1.08);
}

.banner-wrap h5 {
    font-size: 25px;
    line-height: 38px;
    font-weight: 300;
    color: #0089b0;
    text-transform: uppercase;
    margin: 10px 0 6px;
}

.banner-wrap p {
    font-size: 13px;
    color: #6d737e;
    margin: 0;
}

.banner-wrap .banner-btn {
    position: absolute;
    right: 0;
    bottom: 0;
}

.banner-wrap .banner-btn a {
    background: none;
    display: block;
    width: 53px;
    height: 53px;
    overflow: hidden;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    line-height: 0;
    font-size: 0;
    text-indent: -9999px;
    position: relative;
    text-decoration: none;
}

.banner-wrap .banner-btn a:hover::before {
    top: 53px;
    left: 53px;
}

.banner-wrap .banner-btn a:hover::after {
    top: 0;
    left: 0;
}

.banner-wrap .banner-btn a::before {
    background: url(../images/button.png) no-repeat 0% 0%;
    display: block;
    width: 53px;
    height: 53px;
    overflow: hidden;
    transition: .3s;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.banner-wrap .banner-btn a::after {
    background: url(../images/button_act.png) no-repeat 0% 0%;
    display: block;
    width: 53px;
    height: 53px;
    overflow: hidden;
    transition: .3s;
    position: absolute;
    top: 53px;
    left: 53px;
    content: '';
}

/* ============================================================
   SERVICE BOX
   ============================================================ */
.service-box {
    margin: 0 0 36px;
}

.service-box h5 {
    font-size: 20px;
    line-height: 25px;
    color: #0089b0;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.service-box .service-box_txt {
    margin: 0 0 20px;
    font-size: 13px;
    color: #6d737e;
}

.service-box .service-box_txt p {
    margin: 0 0 10px;
}

/* ============================================================
   CUSTOM LIST  (styled list matching original .list.styled.custom-list)
   ============================================================ */
.list.styled.custom-list {
    padding: 1px 0 0;
}

.list.styled.custom-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list.styled.custom-list ul li {
    margin-bottom: 18px;
    line-height: 24px;
    font-size: 14px;
    color: #6d737e;
    list-style: none;
}

.list.styled.custom-list ul li::before {
    display: none;
}

.list.styled.custom-list ul li strong {
    display: block;
    line-height: 25px;
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    color: #31353d;
}

.list.styled.custom-list ul li strong img {
    display: inline;
    vertical-align: middle;
    margin-right: 10px;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion {
    margin: 0;
}

.accordion .accordion-group {
    margin: 0 0 4px;
}

.accordion .accordion-heading a {
    display: block;
    background: #31353d;
    padding: 19px 58px 20px 24px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .3px;
    position: relative;
    cursor: pointer;
    transition: background .2s;
}

/* CSS-drawn down-arrow */
.accordion .accordion-heading a::after {
    content: '';
    display: block;
    position: absolute;
    right: 22px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-70%) rotate(45deg);
    transition: transform .25s;
}

.accordion .accordion-heading a:hover,
.accordion .accordion-heading a.active {
    background: #0089b0;
}

.accordion .accordion-heading a.active::after {
    transform: translateY(-30%) rotate(225deg);
}

/* Accordion body: hidden by default; JS animates height on open/close */
.accordion .accordion-body {
    display: none;
    padding: 0;
}

.accordion .accordion-body.in {
    display: block;
}

.accordion .accordion-body .accordion-inner {
    padding: 15px 0 31px 24px;
    overflow: hidden;
}

.accordion .accordion-body .accordion-inner img {
    float: left;
    margin: 1px 24px 0 0;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.accordion .accordion-body .accordion-inner strong {
    display: block;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    color: #31353d;
    margin-bottom: 8px;
}

.accordion .accordion-body .accordion-inner p {
    font-size: 13px;
    color: #6d737e;
}

/* ============================================================
   BUTTON PRIMARY
   ============================================================ */
a.btn-primary,
button.btn-primary {
    display: inline-block;
    background: #0089b0;
    padding: 14px 24px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
    transition: background .2s;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 0;
}

a.btn-primary:hover,
button.btn-primary:hover {
    background: #31353d;
    color: #fff;
}

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.page-content {
    padding: 50px 0 80px;
}

.page-content h2 {
    margin-bottom: 20px;
}

.page-content .row {
    margin-bottom: 40px;
}

.spacer-img {
    width: 100%;
    margin: 20px 0;
    display: block;
}

.spacer {
    height: 20px;
    display: block;
}

/* ============================================================
   TITLE SECTION (inner page header)
   ============================================================ */
.title-section {
    background: #31353d;
    margin: 0 0 31px 0;
    padding: 20px 62px 24px 62px;
}

@media (max-width: 767px) {
    .title-section {
        padding: 17px 20px 20px 20px;
    }
}

.title-header {
    margin: 0 0 3px 0;
    line-height: 34px;
    font-size: 34px;
    color: #0089b0;
    font-weight: 300;
    text-transform: uppercase;
}

.breadcrumb.breadcrumb__t {
    list-style: none;
    background: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.breadcrumb.breadcrumb__t li {
    display: inline;
    line-height: 20px;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
    text-shadow: none;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumb.breadcrumb__t li a {
    text-decoration: none;
    color: #fff;
}

.breadcrumb.breadcrumb__t li a:hover {
    color: #0089b0;
}

.breadcrumb.breadcrumb__t li.divider {
    margin: 0 20px;
}

@media (max-width: 767px) {
    .breadcrumb.breadcrumb__t li.divider {
        margin: 0 6px;
    }
}

.breadcrumb.breadcrumb__t li.divider::after {
    line-height: 20px;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
    text-shadow: none;
    text-transform: uppercase;
    color: #fff;
    content: '|';
}

.breadcrumb.breadcrumb__t li.active {
    color: #0089b0;
}

/* service-box_body variant used on inner pages */
.service-box_body h5.sub-title {
    font-size: 20px;
    line-height: 25px;
    color: #0089b0;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.service-box_body .service-box_txt {
    margin: 0 0 20px;
    font-size: 13px;
    color: #6d737e;
}

/* google-map embed */
.google-map iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #31353d;
    padding: 30px 0 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #747b8a;
}

.footer h4,
.footer h5 {
    color: #aab0bb;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer p,
.footer address {
    font-size: 12px;
    color: #747b8a;
    font-style: normal;
    line-height: 1.8;
    text-transform: none;
    margin: 0;
}

.footer a {
    color: #747b8a;
}

.footer a:hover {
    color: #0089b0;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul li {
    margin-bottom: 6px;
}

.footer ul li a {
    color: #747b8a;
    font-size: 12px;
    text-transform: none;
}

.footer ul li a:hover {
    color: #0089b0;
}

.footer .copyright {
    padding: 15px 0;
}

.footer .copyright .footer-text {
    font-family: 'Roboto';
    font-weight: 300;
    text-transform: none;
    font-size: 12px;
    color: #747b8a;
}

.footer .copyright .footer-text strong {
    font-weight: 600;
    text-transform: uppercase;
    color: #0089b0;
}

.footer .copyright .footer-text a.site-name {
    font-weight: 600;
    color: #0089b0;
    text-transform: uppercase;
}

.footer-nav {
    text-align: right;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-nav ul li a {
    font-size: 12px;
    color: #747b8a;
    text-transform: none;
}

.footer-nav ul li a:hover {
    color: #0089b0;
}

/* ---- Back to top ---- */
#back-top-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    overflow: hidden;
}

#back-top {
    margin: 0;
}

#back-top a {
    display: block;
    width: 50px;
    color: #bbb;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font: 11px/1 Arial, Helvetica, sans-serif;
    transition: color 1s;
}

#back-top a:hover {
    color: #000;
}

#back-top a:hover span {
    background-color: #0089b0;
}

#back-top a span {
    display: block;
    margin-bottom: 7px;
    width: 50px;
    height: 50px;
    background: #747b8a url(../images/up-arrow.png) no-repeat center center;
    transition: background-color 1s;
}

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.page-intro-text {
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #6d737e;
}

.map-embed {
    margin-bottom: 40px;
}

.map-embed iframe {
    display: block;
    width: 100%;
    border: 0;
}

.contact-info h5 {
    text-transform: uppercase;
    font-weight: 300;
    color: #31353d;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info address {
    font-size: 14px;
    color: #6d737e;
    font-style: normal;
    line-height: 1.8;
    text-transform: none;
}

.contact-info address a {
    color: #0089b0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {

    /* Ensure home header doesn't fully cover the slider on small screens */
    body.home .header {
        position: relative;
    }

    body.home #slider-wrapper {
        margin-top: 0;
    }

    .sf-menu {
        display: none;
        flex-direction: column;
        position: static;
        width: calc(100% + 40px);
        /* extend edge-to-edge past container padding */
        background: #31353d;
        padding: 10px 0;
        z-index: 200;
        margin: 10px -20px 0;
    }

    .sf-menu.open {
        display: flex;
    }

    .sf-menu>li {
        margin: 0;
    }

    .sf-menu>li>a {
        padding: 10px 20px;
    }

    .sf-menu .sub-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0 0 0 20px;
        display: block !important;
        /* !important beats desktop :hover specificity on touch */
    }

    .sf-menu .sub-menu li a {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Arrow indicator: hide on mobile (submenu always open) */
    .sf-menu>li.menu-item-has-children>a::after {
        display: none;
    }

    .logo {
        display: inline-block;
        float: none;
        margin: 0;
    }

    .nav__primary {
        float: none;
        margin: 20px 0 0 0;
    }

    .nav-toggle {
        display: block;
        float: right;
        margin: 18px 0 0;
        background: none;
        border: 1px solid #fff;
        color: #fff;
        padding: 6px 10px;
        cursor: pointer;
        font-size: 16px;
    }

    .title-box {
        padding: 40px 20px 0;
    }

    .title-box h2 {
        font-size: 26px;
    }

    .content_box h2 {
        font-size: 30px;
    }

    .content_box {
        padding: 50px 20px 40px;
    }

    .banner-wrap {
        margin-bottom: 20px;
    }

    .footer-nav {
        text-align: left;
        margin-top: 10px;
    }

    .footer-nav ul {
        justify-content: flex-start;
    }

    .accordion .accordion-body .accordion-inner img {
        float: none;
        margin: 0 0 10px;
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    /* Restore absolute header for desktop/tablet on home page */
    body.home .header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
    }
}

/* ============================================================
   UTILITY
   ============================================================ */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb40 {
    margin-bottom: 40px;
}

/* ============================================================
   FONT UTILITIES
   Use these classes on any element to apply a specific font.
   Examples:
     <p class="font-times">Text in Times New Roman</p>
     <h2 class="font-gothic">Heading in Century Gothic</h2>
     <span class="font-tahoma">Label in Tahoma</span>
   ============================================================ */

/* Primary (default) */
.font-roboto {
    font-family: 'Roboto';
}

/* All fonts use Roboto since it's the only imported font */
.font-opensans {
    font-family: 'Roboto';
}

.font-times {
    font-family: 'Roboto';
}

.font-gothic {
    font-family: 'Roboto';
}

.font-tahoma {
    font-family: 'Roboto';
}

.font-georgia {
    font-family: 'Roboto';
}

.font-arial {
    font-family: 'Roboto';
}