@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Colors Used in Website */
:root
{
    --primary1: #ff9f2b;
    --primary2: #fe4545;
    --secondary: #232b38;
    --ternary: #6c6c6c;
    --grey: #ababab;
    --valid: #0aad12;
    --pure: #fefefe;
    --light1: #f0f0f0;
    --light2: #cacaca;
    --heaven: #ffffff;
    --footer: #2d333f;
}

*
{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
html
{
    scroll-behavior: smooth;
    background-color: var(--pure);
}
body
{
    outline: none;
    font-size: 14px;
}
body::-webkit-scrollbar
{
    width: 9px;
}
body::-webkit-scrollbar-track
{
    background: var(--light);
    border-left: 1px solid var(--light1);
}
body::-webkit-scrollbar-thumb
{
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
    background: linear-gradient(60deg, var(--footer), var(--ternary), var(--footer));
    opacity: 0.1;
}
img
{
    user-select: none;
}
::selection
{
    color: #ff9f2b;
    background-color: transparent;
}

/* Reuseable & Utility Classes */
.container
{
    width: 100%;
    max-width: 1280px;
    padding: 0 15px;
    margin: 0 auto;
} 
.flex
{
    display: flex;
}
.flex-1
{
    flex: 1;
}
.flex-v
{
    flex-direction: column;
}
.justify-between
{
    justify-content: space-between;
}
.justify-center
{
    justify-content: center;
}
.items-center
{
    align-items: center;
}
section
{
    padding: 3rem 0;
}
button
{
    user-select: none;
    padding: 7px 12px 8px 12px;
}
a
{
    text-decoration: none;
    font-size: 1em;
}
button a
{
    font-weight: 500;
    font-size: 1em;
    text-decoration: none;
}
.btn
{
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 3px;
    font-weight: 500;
    border: 1px solid transparent;
    font-size: 1em;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.btn-primary2
{
    background: var(--primary1);
}
.btn-primary2 a
{
    color: whitesmoke;
}
.btn-primary2:hover
{
    background: var(--heaven);
    border: 1px solid var(--primary1);
    color: var(--primary);
}
.btn-primary2:hover a
{
    color: var(--primary1);
}
.btn-secondary
{
    background: var(--light1);
    border: 1px solid var(--secondary);
}
.btn-secondary a
{
    color: var(--secondary);
}
.btn-secondary:hover
{
    background: var(--ternary);
    border: 1px solid var(--light2);
    color: var(--light1);
}
.btn-secondary:hover a
{
    color: var(--light1);
}

/* Header */
header.topbar
{
    background: var(--footer);
    padding: 0.6rem 0;
    font-weight: 500;
    z-index: 10;
}
header.topbar .icons a
{
    margin-right: 1rem;
    transition: linear 0.2s;
}
header.topbar .icons a i
{
    font-size: 1.2em;
    opacity: 0.6;
    width: 20px;
    color: var(--heaven);
    transition: linear 0.2s;
}
header.topbar .icons a:hover
{
    opacity: 1;
    transform: scale(1.15);
}
header.topbar .icons a:hover i
{
    opacity: 1;
}
header.topbar .contact a
{
    font-size: 1em;
    color: #bbb;
    font-weight: 500;
    transition: 0.5s linear;
    margin-left: 18px;
}
header.topbar .contact a i
{
    font-size: 0.9em;
    margin-right: 2px;
}
header.topbar .contact a:hover
{
    color: var(--heaven);
}

/* Navigation */
nav.navigation
{
    background: var(--pure);
    padding: 15px 0;
    color: var(--pure);
    position: sticky;
    top: 0;
    font-weight: 500;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
nav.navigation .header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
nav.navigation .logo 
{
    display: flex;
    align-items: center;
    max-width: max-content;
}
nav.navigation .logo:hover a
{
    color: var(--primary1);
}
nav.navigation .logo img
{
    width: 70px;
    /*border-radius: 10%;*/
    margin-right: 12px;

}
nav.navigation .logo a
{
    display: flex;
    align-items: center;
    max-width: max-content;
    font-size: 1.75em;
    color: ORANGE;
    font-weight: 700;
    transition: 0.4s all;
}
nav.navigation .menu ul
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
nav.navigation .menu ul li
{
    margin-right: 10px;
    text-decoration: none;
    list-style: none;
}
nav.navigation .menu ul li a
{
    color: var(--secondary);
    font-size: 1.15em;
    font-weight: 700;
    padding: 2px 4px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: 0.5s linear;
}
nav.navigation .menu ul li a i
{
    margin-left: 5px;
}
nav.navigation .menu ul li a.active,
nav.navigation .menu ul li a:hover
{
    border-bottom: 2px solid var(--primary1);
    color: var(--primary1);
}
nav.navigation .other
{
    display: flex;
    justify-content: center;
    align-items: center;
}
nav.navigation .other .location
{
    position: absolute;
    top: calc(100% + 45px);
    background: #eee;
    opacity: 0;
    right: 0px;
    width: 265px;
    height: auto;
    visibility: hidden;
    padding: 15px;
    border-radius: 3px;
    z-index: -100;
    z-index: 15;
    box-shadow: 0 0 15px rgb(0,0,0,0.3);
    transition: 0.5s all;
}
nav.navigation .other a.locate:hover ~ .location
{
    top: calc(100% + 33px);
    opacity: 1;
    visibility: visible;
}
nav.navigation .other .location p:first-child
{
    color: #444;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary1);
}
nav.navigation .other .location p:last-child
{
    text-align: left;
    font-size: 0.95em;
    line-height: 1rem;
    color: #555;
    font-weight: 500;
    margin-top: 5px;
}
nav.navigation .other button,
nav.navigation .menu button
{
    background-color: var(--ternary);
    outline: none;
    border: none;
    border-radius: 3px;
    transition: 0.5s linear;
    cursor: pointer;
}
nav.navigation .menu button
{
    display: none;
}
nav.navigation .other button a,
nav.navigation .menu button a
{
    color: var(--pure);
    width: 100%;
    padding-bottom: 5px;
}
nav.navigation .other button:hover,
nav.navigation .menu button:hover
{
    background-color: var(--primary1);
}
nav.navigation .other a.locate
{
    font-size: 1.25rem;
    margin-right: 20px;
    color: var(--ternary);
    transition: 0.5s linear;
    cursor: pointer;
}
nav.navigation .other a.locate:hover
{
    color: var(--primary1);
}
nav.navigation .other button.login a i
{
    font-size: 0.9em;
    margin-right: 5px;
}
nav.navigation .other a.hamburger,
nav.navigation .other a.close
{
    display: none;
}

/* Hero Section */
header.hero
{
    height: 460px;
    background: #eaf3fa;
    box-shadow: 0 0 5px #bbb;
    position: relative;
}
header.hero .container
{
    position: relative;
}
header.hero .welcome
{
    margin-bottom: 1rem;
}
header.hero .welcome h2
{
    color: ORANGE;
    font-size: 2em;
    font-weight: 700;
}
header.hero .welcome h2 span
{
    color: var(--secondary);
}
    header.hero h1 {
        font-weight: 800;
        color: ORANGE;
        font-size: 2.4rem;
    }
header.hero h1 span
{
    font-weight: 800;
    color: blue;
}
header.hero p
{
    font-weight: 500;
    width: 63%;
    color: var(--ternary);
    line-height: 1.5rem;
    margin: 1.25rem 0;
    text-align: justify;
    font-size: 1.1em;
}
header.hero button:first-child
{
    margin-right: 0.5rem;
}
header.hero .hero-image
{
    position: absolute;
    top: 0;
    right: 0px;
}
header.hero .hero-image img
{
    width: 385px;
}

/* Services Section */
section .heading-div
{
    display: flex;
    align-items: center;
    width: 100%;
}
section .heading-div h2
{
    width: 100%;
    text-align: center;
    font-size: 2.75em;
    color: ORANGE;
    font-weight: 700;
    margin-bottom: 2rem;
}
.serviceBox
{
    padding: 1rem 0;
    margin: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.serviceBox .box
{
    position: relative;
    background: var(--heaven);
    border-radius: 5px;
    padding: 25px 20px;
    border: 1px solid var(--grey);
    transition: 0.5s;
    text-align: center;
}
.serviceBox .box h3
{
    font-size: 1.3em;
    font-weight: 700;
    color: ORANGE;
    margin-bottom: 0.75rem;
    color: forestORANGE;
    transition: 0.5s;
}
.serviceBox .box:hover
{
    border: 1px solid var(--primary1);
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    transform: translateY(-8px);
}
.serviceBox .box p
{
    font-size: 0.95em;
    font-weight: 500;
    color: var(--ternary);
    margin-bottom: 1.25rem;
    transition: 0.5s;
}

/* Page Content styling for All RequiORANGE Pages */
section.page-content
{
    padding: 3.5rem 0;
    background-color: var(--light1);
}
section.page-content .text-content.homepage
{
    display: flex;
    justify-content: space-between;
}
section.page-content .text-content.homepage a
{
    font-size: 1em;
    width: fit-content;
    margin-top: 20px;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    font-weight: 500;
    transition: all 0.5s linear;
    background-color: transparent;
    border: 1px solid var(--primary1);
    color: var(--primary1);
}
section.page-content .text-content.homepage a.readmore:hover
{
    border: 1px solid var(--primary1);
    color: var(--heaven);
    background-color: var(--primary1);
    cursor: pointer;
}
section.page-content .text-content h2
{
    font-size: 2em;
    text-transform: capitalize;
    font-weight: 700;
    color: ORANGE;
    margin-bottom: 1.5rem;
}
section.page-content .text-content h2 span
{
    font-weight: 600;
    color: var(--ternary);
}
section.page-content .text-content p
{
    font-size: 1.1em;
    font-weight: 500;
    color: var(--ternary);
    margin-bottom: 1rem;
    line-height: 1.75rem;
    word-spacing: 2px;
}
section.page-content .text-content p span
{
    font-weight: 700;
    color: var(--footer);
    font-size: 1.2em;
}
section.page-content .text-content p a
{
    font-weight: 600;
    color: var(--ternary);
}
section.page-content .text-content p:nth-child(3)
{
    margin-bottom: 3rem;
}
.page-content .serviceDetails
{
    display: flex;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
}
.page-content .serviceDetails .imagePart
{
    display: flex;
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    max-width: 50%;
    align-items: center;
    justify-content: center;
}
.page-content .serviceDetails .imagePart img
{
    width: 200px;
    mix-blend-mode: multiply;
}
.page-content .serviceDetails .textPart
{
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    max-width: 50%;
    padding-left: 30px;
}
.page-content .serviceDetails .textPart ul
{
    list-style: square;
    padding-left: 18px;
}
.page-content .serviceDetails .textPart ul li
{
    padding: 0.5rem 0;
    font-size: 1.1em;
    color: var(--ternary);
    font-weight: 600;
}

/* Number & App Download Styling */
section.tollfree
{
    background-color: var(--primary1);
}
section.tollfree .secondDiv
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section.tollfree .secondDiv .freeNum,
section.tollfree .secondDiv .appDownload
{
    text-align: center;
    padding: 0 3rem;
    flex: 1;
}
section.tollfree .secondDiv .freeNum h1
{
    font-size: 3em;
    color: var(--pure);
    font-weight: 800;
    margin-bottom: 1.75rem;
}
section.tollfree .secondDiv .freeNum h2,
section.tollfree .secondDiv .appDownload h2
{
    font-size: 1.75em;
    color: var(--light2);
    font-weight: 700;
}
section.tollfree .secondDiv .freeNum a
{
    font-size: 1em;
    border-radius: 4px;
    padding: 0.5rem 1.1rem;
    user-select: none;
    border: 1px solid var(--primary1);
    background-color: var(--primary2);
    color: var(--heaven);
    font-weight: 500;
    transition: 0.5s;
}
section.tollfree .secondDiv .freeNum a:hover
{
    background-color: var(--light1);
    color: var(--primary1);
    font-weight: 500;
}
section.tollfree .secondDiv .appDownload .appBadge
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 1.2rem;
}
section.tollfree .secondDiv .appDownload .appBadge img
{
    max-height: 65px;
}

/* Accounts Page Styling */
section.accountsDiv
{
    padding: 0;
}
section.accountsDiv .accounts .heading
{
    width: 100%;
    text-align: center;
}
section.accountsDiv .accounts .heading h2
{
    color: var(--primary1);
    font-size: 2.75em;
    user-select: none;
    font-weight: 700;
    position: relative;
    margin-top: 2.5rem;
}
.accounts .account-content
{
    margin-bottom: 0rem;
    border: none;
    border-radius: 5px;
    padding-top: 7rem;
}
.accounts .account-content .text
{
    padding-bottom: 0rem;
}
.accounts .account-content:last-child
{
    margin-bottom: 0;
}
.accounts .account-content .accountType h2 
{
    color:ORANGE;
    font-size: 1.5em;
    margin-bottom: 1rem;
}
.accounts .account-content h5
{
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary2);
}
.accounts .account-content .text p
{
    color: var(--secondary);
    font-weight: 500;
    padding: 0px;
}
.accounts .account-content .text p.terms
{
    color: var(--secondary);
    margin-top: 0.75rem;
    letter-spacing: 1px;
    font-size: 0.85em;
    font-weight: 600;
}
.accounts #recurrenceDeposits .text .terms
{
    margin-bottom: 3rem;
}
.accounts .account-content .text table
{
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    padding: 0;
    border: 1px solid var(--ternary);
    margin-bottom: 0.5rem;
}
.accounts .account-content .text table thead tr th,
.accounts .account-content .text table tbody tr td
{
    padding: 13px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--ternary);
    border: 1px solid var(--ternary);
}
.accounts .account-content .text table thead tr th
{
    color: var(--footer) !important;
    font-size: 1.25em;
    border: 1px solid var(--ternary);
}
.accounts .account-content .text table thead tr th:last-child,
.accounts .account-content .text table tbody tr td:last-child
{
    border-right: none;
}
.accounts .account-content .text table thead
{
    background-color: var(--grey);
    color: var(--footer) !important;
}
.accounts .account-content .text table tbody tr:nth-child(even)
{
    background-color: var(--light1);
}

/*Contact Page Styling */
#headingSection
{
    padding-top: 0;
    background-color: var(--light1);
}
.contact .row
{
    width: 100%;
    margin: 20px auto;
    text-align: center;
}
#headingSection .heading
{
    padding: 0;
    position: relative;
    background-image: url("../images/map.png");
    width: 100%;
    height: 275px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#headingSection .heading::before
{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
#headingSection .heading h2
{
    color: var(--pure);
    font-size: 3em;
    user-select: none;
    font-weight: 700;
    position: relative;
    margin-bottom: 1rem;
    text-align: center;
}
#headingSection .heading p
{
    color: var(--light2);
    position: relative;
    font-size: 1.2em;
    margin-top: 10px;
    line-height: 1.5rem;
    text-align: center;
    font-weight: 600;
    padding: 0 15px;
}
.contact .contact-box
{
    display: flex;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    margin-top: 50px;
    padding: 0;
    margin-bottom: 10px;
}
.contact .contact-box .left
{
    float: left;
    background-color: var(--heaven);
    flex: 0 0 65%;
    -ms-flex: 0 0 65%;
    max-width: 65%;
    padding: 30px;
    padding-bottom: 50px;
    border: 1px solid var(--light2);
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.contact-box .left .row
{
    display: flex;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
}
.contact-box .left .col-6
{
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    max-width: 50%;
}
.contact-box .left .col-12
{
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
}
.contact-box .left .form-item
{
    padding: 0px 10px;
}
.contact-box .left .form-item .form-control
{
    width: 100%;
    height: 45px;
    font-size: 15px;
    color: #504e70;
    padding: 10px 15px;
    outline: none;
    border: 1px solid #d4d4e3;
    font-weight: 500;
    border-radius: 5px;
    background-color: var(--heaven);
    -webkit-transition: all linear 0.4s;
    transition: all linear 0.4s;
}
.contact-box .left .form-item textarea.form-control
{
    height: 170px;
    resize: none;
}
.contact-box .left .form-item .form-control:focus,
.contact-box .left .form-item textarea.form-control:focus
{
    box-shadow: 0px 0px 10px rgba(19, 18, 26, 0.4);
    -webkit-box-shadow: 0px 0px 10px rgba(48,46,77,0.4);
}
.contact-box .left .form-item textarea.form-control::-webkit-scrollbar
{
    width: 0;
}
.contact-box .left .form-group
{
    text-align: left;
    width: 100%;
}
.contact-box .left .form-group > span
{
    width: 100%;
    color: var(--primary2);
    font-weight: 500;
    font-size: 0.9em;
    user-select: none;
    display: none;
    letter-spacing: 1px;
    line-height: 1;
}
.contact-box .left button
{
    font-size: 1em;
    width: fit-content;
    outline: none;
    border: none;
    background-color: transparent;
    margin-top: 20px;
    margin-left: 10px;
    padding: 0 !important;
    font-weight: 500;
}
.contact-box .left button a
{
    background-color: transparent;
    width: 100%;
    border-radius: 3px;
    border: 1px solid var(--primary1);
    padding: 0.6rem 0.95rem;
    color: var(--primary1);
    transition: all 0.5s linear;
}
.contact-box .left button a:hover
{
    border: 1px solid var(--primary1);
    color: var(--heaven);
    background-color: var(--primary1);
    cursor: pointer;
}
.contact-box .left .contactForm > span
{
    margin: 0 10px;
    font-size: 1.1em;
    font-weight: 600;
    user-select: none;
    color: var(--secondary);
}
.contact-box .left .contactForm > span i
{
    margin-right: 10px;
    animation: rotate 0.75s infinite linear;
    font-size: 1.25em;
}
@keyframes rotate
{
    from
    {
        transform: rotate(0deg);
    }
    to
    {
        transform: rotate(180deg);
    }
}
.contact-box .right
{
    float: right;
    background-color: #011f5f;
    flex: 0 0 35%;
    -ms-flex: 0 0 35%;
    max-width: 35%;
    padding: 40px 35px;
    font-weight: 500;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.contact-box .right h2
{
    font-size: 1.5em;
    margin-bottom: 3.5rem;
    color: var(--heaven);
    padding-bottom: 0.75rem;
    font-weight: 700;
    width: max-content;
    border-bottom: 2px solid var(--light1);
}
.contact-box .right .contact-info-item
{
    display: flex;
    align-items: center;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    font-weight: 500;
    max-width: 100%;
    text-align: left;
    margin-bottom: 20px;
}
.contact-box .right .contact-info-item .icon
{
    display: inline-block;
    margin-right: 25px;
}
.contact-box .right .contact-info-item .icon i
{
    font-size: 1.25em;
    color: var(--pure);
}
.contact-box .right .contact-info-item p,
.contact-box .right .contact-info-item p a
{
    font-size: 1.05em;
    line-height: 20px;
    color: #eee;
    margin: 0;
    text-align: left;
    font-weight: 500;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

/* Footer Styling */
footer
{
    width:100%;
    background-color: var(--footer);
    padding-top: 35px;
    font-weight: 500;
}
footer .column
{
    display:inline-block;
    vertical-align:top;
    padding-bottom: 30px;
}
footer .column:last-child
{
    padding-right: 0;
}
footer .column:nth-child(1)
{
    width: 40%;
    padding-right: 60px;
}
footer .column:nth-child(2)
{
    width: 15%;
    padding-right: 0;
}
footer .column:nth-child(3)
{
    width: 43%;
}
footer .column .footer_title
{
    color: var(--light1);
    font-size:1.5em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
footer .column:nth-child(3) a
{
    margin: 8px 0;
}
footer .column:nth-child(3) a i
{
    margin-right: 5px;
}
footer .column a.readmore
{
    font-size: 1em;
    width: fit-content;
    margin-top: 20px;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    border: 1px solid var(--light1);
    color: var(--light1);
    font-weight: 500;
    background-color: var(--footer);
    transition: all 0.5s linear;
}
footer .column a, footer .column p
{
    text-decoration:none;
    display:flex;
    align-items: center;
    color: var(--grey);
    font-size:1.1em;
    padding:5px 0;
    line-height: 1.5rem;
    width: fit-content;
    font-weight:500;
    transition:0.5s;
}
footer .column button
{
    background-color: var(--footer);
    outline: none;
    border: none;
    margin-top: 15px;
    border-radius: 3px;
    transition: 0.5s linear;
    cursor: pointer;
    width: max-content;
    padding-bottom: 5px;
    border: 1px solid var(--light1);
}
footer .column button > a
{
    margin: 0 !important;
    color: var(--light2);
    padding: 0;
}
footer .column button > a > i
{
    font-size: 1.25em;
    margin-right: 7px !important;
}
footer .column button:hover
{
    background-color: var(--primary1);
}
footer .column:first-child p
{
    display: inline-block;
}
footer .column a:hover
{
    color: var(--heaven);
}
.sub-footer
{
    background: var(--secondary);
    width:100%;
    padding: 8px 15px;
    text-align:center;
    color: var(--light1);
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 0.95em;
}
.sub-footer a
{
    font-size: 0.99em;
    color: var(--primary2);
    font-weight: 600;
}

/* Scroll to Top Button */
.scrolltop
{
    display: none;
    position: fixed;
    padding: 0;
    bottom: 25px;
    right: 25px;
    height: 30px;
    width: 30px;
    border: 1px solid var(--heaven) !important;
    z-index: 99;
    border:none;
    overflow: hidden;
    background: var(--primary1);
    border-radius: 3px;
    color: var(--heaven);
    cursor: pointer;
    transition: 0.3s linear;
}
.scrolltop span i
{
    font-size: 13px;
}
.scrolltop:hover
{
    background: var(--primary1);
}

/* Media Queries */
@media only screen and (max-width: 1200px)
{
    header.hero
    {
        height: auto;
        padding:  4rem 1rem 2.5rem 1rem;
    }
    header.hero .welcome h2,
    header.hero h1,
    header.hero p
    {
        width: 100%;
        text-align: center;
    }
    header.hero .action-buttons
    {
    text-align: center;
    margin: 2rem 0 1rem 0;
    }
    header.hero .hero-image
    {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header.hero .hero-image img
    {
        width: 60%;
    }
}
@media only screen and (max-width: 991px)
{
    body
    {
        font-size: 12px;
    }
    .header .menu > ul > li a
    {
        font-size: 0.85rem;
        line-height: 0.9rem;
    }
    section.page-content .text-content.homepage
    {
        align-items: center;
    }
    section.tollfree .secondDiv .freeNum h1
    {
        font-size: 2rem;
    }
    section.tollfree .secondDiv .freeNum h2, section.tollfree .secondDiv .appDownload h2
    {
        font-size: 1.25rem;
    }
    section.tollfree .secondDiv .appDownload .appBadge img
    {
        max-height: 50px;
    }
    footer .column:nth-child(1), footer .column:nth-child(3)
    {
        width: 65%;
    }
    footer .column:nth-child(2)
    {
        width: 30%;
    }
    .page-content .serviceDetails .imagePart
    {
        flex: 0 0 40%;
        -ms-flex: 0 0 40%;
        max-width: 40%;
    }
    .page-content .serviceDetails .textPart
    {
        flex: 0 0 60%;
        -ms-flex: 0 0 60%;
        max-width: 60%;
    }
    .contact-box
    {
        flex-direction: column;
    }
    .contact .contact-box .left, .contact .contact-box .right
    {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        max-width: 100%;
    }
    .contact-box .left
    {
        border-radius: 0;
        border-top-right-radius: 5px;
        border-top-left-radius: 5px;
    }
    .contact-box .right
    {
        border-radius: 0;
        order: 2;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    .contact-box .left button
    {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 720px)
{
    header.hero .hero-image img
    {
        width: 90%;
    }
    nav.navigation .other a.hamburger,
    nav.navigation .other a.close
    {
        width: 30px;
        font-size: 1.75rem;
        margin-left: 1rem;
        color: var(--secondary);
        cursor: pointer;
    }
    nav.navigation .other a.hamburger.show
    {
        display: block;
    }
    nav.navigation .other a.close
    {
        font-size: 1.82rem;
        display: none;
    }
    nav.navigation .other a.close.show
    {
        display: block;
    }
    nav.navigation .other button
    {
        display: none;
    }
    nav.navigation .other a.locate
    {
        font-size: 1.35rem;
        margin-right: 10px;
    }
    nav.navigation .menu button
    {
        display: block;
        margin-top: 10px;
    }
    nav.navigation .menu ul li
    {
        margin: 0;
        text-align: center;
        width: max-content;
    }
    nav.navigation .menu ul li a
    {
        justify-content: center;
        font-weight: 600;
    }
    nav.navigation .menu ul li a.active,
    nav.navigation .menu ul li a:hover
    {
        border-color: transparent;
    }
    nav.fullnav .top .container .hamburger-menu
    {
        display: block;
        cursor: pointer;
    }
    .header .menu
    {
        position: absolute;
        width: 200px;
        background-color: var(--light1);
        box-shadow: 0 0 15px rgba(0,0,0,0.4);
        right: 0;
        top: calc(100% + 45px);
        opacity: 0;
        visibility: hidden;
        display: block;
        height: max-content;
        z-index: -100;
        border-radius: 4px;
        transition: 0.4s linear;
    }
    .header .menu.active
    {
        top: calc(100% + 33px);
        opacity: 1;
        z-index: 10;
        visibility: visible;
    }
    .header .menu ul
    {
        flex-direction: column;
        padding: 10px 0 25px 0;
    }
    .header .menu > ul > li > a
    {
        line-height: 50px;
        height: 50px;
        padding: 0 10px;
        border-bottom: 1px solid var(--light2);
        width: 100%;
    }
    section.tollfree .secondDiv .freeNum h1
    {
        font-size: 1.5rem;
    }
    section.tollfree .secondDiv .freeNum h2, section.tollfree .secondDiv .appDownload h2
    {
        font-size: 1rem;
    }
    section.page-content .text-content.homepage
    {
        flex-direction: column;
        align-items: center;
    }
    .contact .contact-box .left .row
    {
        flex-direction: column;
        margin: 0;
    }
    .contact-box .left .col-6, .contact-box .left .col-12
    {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    .contact-box .left button
    {
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .contact-box .left .form-item
    {
        padding: 0;
    }
    .contact-box .left button
    {
        margin-left: 0;
    }
    .accounts .account-content .tableDiv 
    {
        overflow-x: overlay;
    }
    .about .heading h2
    {
        font-size: 2.5em;
    }
    .contact-box .right .contact-info-item p, .contact-box .right .contact-info-item p a
    {
        font-size: 1.1em;
    }
    #headingSection .heading h2
    {
        font-size: 2.75em;
    }
}

@media only screen and (max-width: 620px)
{
    header.hero .welcome h2
    {
        font-size: 1.5em;
    }
    header.hero h1
    {
        font-size: 2.3em;
    }
    .contact .contact-box .left,
    .contact .contact-box .right
    {
        padding: 30px 20px;
    }
    header.topbar .contact a
    {
        font-size: 13px;
    }
    .about .heading h2
    {
        font-size: 2.25em;
    }
    section.tollfree .secondDiv
    {
        flex-direction: column;
        padding-bottom: 0;
    }
    section.last .serviceBox
    {
        margin-top: 0;
    }
    section.tollfree .secondDiv .freeNum
    {
        margin-bottom: 3rem;
    }
    footer .column
    {
        width: 100% !important;
    }
    footer .column:first-child
    {
        padding-right: 0 !important;
    }
    #headingSection .heading h2
    {
        font-size: 2.5em;
        padding: 0 15px;
    }
    #headingSection .heading p
    {
        font-size: 1em;
    }
}

@media only screen and (max-width: 550px)
{
    .header .menu.active
    {
        top: calc(100% + 30px);
    }
    .header .menu
    {
        top: calc(100% + 42px);
    }
    header.hero .hero-image img
    {
        width: 100%;
    }
    nav.navigation .other a.locate,
    nav.navigation .other .location
    {
        display: none;
    }
    header.topbar .container
    {
        flex-direction: column;
    }
    nav.navigation .logo img
    {
        width: 45px;
    }
    header.topbar .contact
    {
        margin-top: 10px;
    }
    header.topbar .contact a:first-child
    {
        margin-left: 0;
    }
    header.topbar .icons a:last-child
    {
        margin-right: 0;
    }
    .page-content .serviceDetails
    {
        flex-direction: column;
    }
    .page-content .serviceDetails .imagePart
    {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        max-width: 100%;
    }
    .page-content .serviceDetails .textPart
    {
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        max-width: 100%;
        margin-top: 2rem;
    }
    #headingSection .heading h2
    {
        font-size: 2.25em;
    }
    .accounts .account-content
    {
        padding-top: 6rem;
    }
}

@media only screen and (max-width: 380px)
{
    .about .heading h2 
    {
        font-size: 1.85em;
    }
    .page-content .serviceDetails .textPart
    {
        padding-left: 10px;
    }
    #headingSection .heading h2
    {
        font-size: 2.1em;
    }
}