@font-face {
    font-family: 'Paralucent';
    src: url('fonts/Paralucent-Light.woff2') format('woff2'),
        url('fonts/Paralucent-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paralucent';
    src: url('fonts/Paralucent-Medium.woff2') format('woff2'),
        url('fonts/Paralucent-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paralucent';
    src: url('fonts/Paralucent-Bold.woff2') format('woff2'),
        url('fonts/Paralucent-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Paralucent';
    src: url('fonts/Paralucent-heavy.woff2') format('woff2'),
        url('fonts/Paralucent-heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root{
    --Is-darkblue: #090e33;
    --Is-white: #ffffff;
    --Is-black: #000000;
    --Is-yellow: #FFBA00;
    --Is-orange: #eb8317;
    --Is-bg: #f5f5f5;
}

a {color: var(--Is-darkblue);}
body {
    font-family: 'Paralucent';
    font-size: 20px;
    line-height: 1.4;
    color: var(--Is-darkblue);
    font-weight: 300;
    display: contents;
    letter-spacing: .5px;
}
p{
    margin-bottom: 20px;
    letter-spacing: 0.85px;
}
input, textarea, button, a, select{
    outline: none;
    text-decoration: none;
    transition: all .3s;
    font-family: 'Paralucent';
}

a:hover { text-decoration: none; color: var(--Is-orange); }
.row{
    clear: both;
}
ul {
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}
img {
    display: block;
    max-width: 100%;
}
h1, h2, h3{
    font-weight: bold;
    line-height: 1.1;
}
h2{
    font-size: 50px;
    margin-bottom: 20px;
}
h3 {
    font-size: 38px;
}
h4{
    text-transform: uppercase;
    color: var(--Is-orange);
    font-size: 20px;
}
.gray-bg{
    background: var(--Is-bg);
}
/***************************************************CUSTOM CSS****************************************************/
header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 9;
    background: var(--Is-darkblue);
}
.navbar ul {
    display: flex;
}
.menu_icon {
    display: none;
}
.container-fluid, .service_sec .accordion-body .container-fluid{
    padding: 0 4vmax;
}
.col-12.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    position: relative;
    z-index: 2;
    font-size: 0;
    width: 220px;
}
.logo a {
    width: 100%;
    display: inline-block;
}
.logo img {
    max-width: 220px;
    width: 100%;
    max-height: 50px;
}
.logo img ~ img {
    position: absolute;
    top: 0;
    left: 0;
}
img.show-logo {
    opacity: 1;
    visibility: visible;
}

.navbar ul li{
    margin-left: 55px;
}
.navbar ul li a {
    font-size: 18px;
    padding: 8px 0;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.navbar ul li a:hover {
    color: var(--Is-yellow);
}
.navbar ul li.contact a {
    margin: 0;
}
.hero {
    background: var(--Is-darkblue);
    float: left;
    width: 100%;
    position: relative;
    padding: 80px 0 100px;
}

.hero_video:before {
    content: "";
    background: #212529;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .2;
}
.hero .container {
    max-width: 1600px;
    width: 90%;
}
.banner_content h1 {
    font-size: 76px;
    margin-bottom: 40px;
    color: var(--Is-white);
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
    position: relative;
    z-index: 1;
    font-weight: 900;
}
.banner_content h1 span {
    color: var(--Is-yellow);
}
.banner_content h1.watermark {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    left: 0;
    left: 50%;
    pointer-events: none;
}
.banner_content h1.watermark, .banner_content h1.watermark span {
    color: transparent !important;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(255 255 255 / 20%);
    font-size:  18vw;
    text-align: center;
    line-height: 0.8;
}
.banner_content p {
    font-size: 20px;
    color: var(--Is-white);

}
.hero-img img {
    width: 100%;
    animation: MoveUpDown 2s linear infinite;
    max-width: 500px;
    margin: 0 auto;
}
@keyframes MoveUpDown {
    0%,100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-30px)
    }
}

.btn-design {
    background: transparent linear-gradient(270deg,var(--Is-orange) 0%,var(--Is-yellow) 100%) 0% 0% no-repeat padding-box;
    color: var(--Is-darkblue);
    border-radius: 50px;
    border: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 2px 36px rgba(0,0,0,.06);
    font-size: 22px;
    font-weight: 300;
    position: relative;
    white-space: nowrap;
    height: 55px;
    padding: 5px 60px 5px 25px;
    width: fit-content;
    transition: .8s;
    cursor: pointer;
    margin-top: 30px;
}
.btn-border{
    border: 1px solid var(--Is-yellow);
}
.btn svg {
    background: var(--Is-white);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    right: 10px;
    animation: wobble 1.5s ease infinite;
}
.btn-design svg {
    transition: .5s;
}
@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-12%) rotate(-5deg);
    }
    30% {
        transform: translateX(10%) rotate(3deg);
    }
    45% {
        transform: translateX(-8%) rotate(-3deg);
    }
    60% {
        transform: translateX(6%) rotate(2deg);
    }
    75% {
        transform: translateX(-3%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}
.btn-design:hover {
      background: transparent linear-gradient(270deg, var(--Is-white) 0%, var(--Is-white) 100%) 0% 0% no-repeat padding-box;
    padding: 5px 25px 5px 60px;
}
.btn-design:hover svg {
    background: transparent linear-gradient(270deg, var(--Is-orange) 0%, var(--Is-yellow) 100%) 0% 0% no-repeat padding-box;
    right: calc(100% - 50px);
}

.btn-design:hover svg path {
    fill: var(--Is-white);
}
section {
    float: left;
    width: 100%;
    padding: 100px 0;
    position: relative;
}
.who_col {
    text-align: center;
    margin: 0 auto;
    padding: 40px 10px;
    background: transparent linear-gradient(270deg, var(--Is-orange) 0%, var(--Is-yellow) 100%) 0% 0% no-repeat padding-box;
    margin-bottom: 30px;
    border-radius: 10px;
    animation: MoveUpDown2 4s linear infinite;
}
@keyframes MoveUpDown2 {
    0% {
        transform: translateX(0%);
    }

    15% {
        transform: translateX(-5%) rotate(-5deg);
    }

    30% {
        transform: translateX(4%) rotate(3deg);
    }

    45% {
        transform: translateX(-3%) rotate(-3deg);
    }

    60% {
        transform: translateX(2%) rotate(2deg);
    }

    75% {
        transform: translateX(-1%) rotate(-1deg);
    }

    100% {
        transform: translateX(0%);
    }
}
.col-md-6.col-12:nth-child(2n) .who_col{
    animation-delay: 1s;
}
.who_col h3{
    font-size: 55px;
}
.who_col h5{
    margin-bottom: 0;
}
.case_study_sec {
    position: relative;
    padding: 250px 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.case_study_sec:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background: -moz-linear-gradient(left,  rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(left,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#00000000',GradientType=1 );
    z-index: 1;
}
.case_content {
    max-width: 700px;
    z-index: 1;
    position: relative;
    background: var(--Is-white);
    padding: 5% 3.5%;
}
img.case-study-logo {
    max-width: 150px;
    margin-bottom: 10px;
}
.accordion-flush .accordion-item .accordion-button {
    border-radius: 10px !important;
    background: var(--Is-yellow);
    font-size: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,.11);
    padding: 25px;
    color: var(--Is-darkblue);
}
.accordion-flush .accordion-item {
    border: none;
    margin-bottom: 10px;
    background: var(--Is-white);
    border-radius: 10px;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0);
}

.client-quote {
    width: calc(100% - 300px);
}
.client-thumb img {
    max-width: 300px;
}
.testimonials-items {
    display: flex !important;
    align-items: center;
    gap: 5%;
}
.client-quote p {
    font-size: 26px;
}
.client-quote h6 {
    font-size: 24px;
    padding-left: 100px;
    position: relative;
}
.client-quote h6:before {
    content: "";
    background: transparent linear-gradient(270deg, var(--Is-orange) 0%, var(--Is-yellow) 100%) 0% 0% no-repeat padding-box;
    width: 90px;
    height: 3px;
    position: absolute;
    left: 0;
    top: 50%;
}
button.slick-arrow {
    position: absolute;
    left: 0;
    top: 45%;
    border: none;
    background-image: url(../images/slide-arrow-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #e5e5e5;
    background-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0;
    background-position: center;
    z-index: 1;
    transition: all .3s;
    padding: 0;
}
button.slick-next.slick-arrow {
    left: inherit;
    right: 0;
    background-image: url(../images/slide-arrow-right.svg);
}
button.slick-arrow:hover {
    background-color: var(--Is-orange);
}
.testimonials-slide {
    padding: 0 60px;
}


.why-us{
    background: var(--Is-yellow);
}
.why-col {
    display: flex;
    background: var(--Is-white);
    margin-bottom: 24px;
    padding: 30px;
    border-radius: 10px;
}
.why-col-icon {
    width: 90px;
    padding-right: 15px;
    min-width: 90px;
    animation: MoveUpDown2 4s linear infinite;
}
.why-content{
    max-width: calc(100% - 90px);
}
.why-us .col-md-6.col-12 {
    display: flex;
}

.skill-inner {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
    display: block;
    width: 100%;
    float: left;
}
.skill-img {
    position: sticky;
    top: 115px;
    margin-top: -150px;
}
.skill-img img {
    max-width: 400px;
    margin-left: auto;
   
}
.heading-col p {
    max-width: 900px;
    margin: 0 auto;
}
.ratio>* {
    object-fit: cover;
}
.projects-img {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.projects-img img{
    animation: RadiusChange 5s linear infinite;
}
@keyframes RadiusChange{
    0%,100% {
         border-radius: 0 50px;
    }
    50% {
        border-radius: 50px 0;
    }
}
.projects-col {
    margin-bottom: 60px;
    padding: 0 10px;
}
.narwhal_logo_items {
    padding: 30px 15px;
    background: var(--Gradient-1,linear-gradient(90deg,var(--Is-orange),var(--Is-yellow) 39.06%,var(--Is-orange) 77.6%,var(--Is-yellow)));
    position: relative;
}
.narwhal_logo_items:before {
    top: 1px;
    left: 1px;
    margin: 0;
    content: "";
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: #090e32;
}
.narwhal_logo_items img {
    position: relative;
    margin: auto;
}


.industries-we-serve{
    background: var(--Is-darkblue);
    color: var(--Is-white);
}
.industries-we-serve .container-fluid.custom-full-ind-slider {
    width: calc(50vw + 650px);
    margin-left: auto;
    margin-right: 0;
    padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);
}
.industries-we-serve .industries-card-main {
    background-color: #090e32;
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #2e2e2e;
    height: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}
.industries-we-serve .industries-card-main:before {
    top: 1px;
    left: 1px;
    margin: 0;
    content: "";
    position: absolute;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: #090e32;
}
.industries-we-serve .industries-card-main .card-parent {
    z-index: 2;
    position: relative;
    height: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: block;
    padding: 40px 30px;
    height: 100%;
}
.industries-we-serve .industries-card-main .card-parent .more-services ul li {
    padding: 7px 0 7px 32px;
    font-size: 17px;
    line-height: 30px;
    color: #eee;
    background: url(../images/check-circle.svg) no-repeat;
    background-position: top 10px left 0;
}
.industries-we-serve .industries-card-main:hover, .industries-we-serve .industries-card-main:hover a .ind-name {
    background: -webkit-gradient(linear,left top,right top,from(var(--Is-orange)),color-stop(39.06%,var(--Is-yellow)),color-stop(77.6%,var(--Is-orange)),to(var(--Is-yellow)));
    background: linear-gradient(90deg,var(--Is-orange),var(--Is-yellow) 39.06%,var(--Is-orange) 77.6%,var(--Is-yellow));
    background: var(--Gradient-1,linear-gradient(90deg,var(--Is-orange),var(--Is-yellow) 39.06%,var(--Is-orange) 77.6%,var(--Is-yellow)));
}
.industries-we-serve .slick-slider .slick-slide {
    margin: 0 20px 0 0;
}

.industries-we-serve .slick-slider .slick-track {
    display: -ms-flexbox;
    display: flex;
}
.industries-we-serve .slick-list {
    padding-right: 11% !important;
}
.col-12.slider-col {
    padding-right: 0;
}
.industries-slider button.slick-prev.slick-arrow {
    top: calc(100% + 10px);
    left: inherit;
    right: 150px;
    background-color: transparent;
}
.industries-slider button.slick-next.slick-arrow {
    top: calc(100% + 10px);
    left: inherit;
    right: 100px;
    background-color: transparent;
}
.industries-slider button.slick-prev.slick-arrow:hover, .industries-slider button.slick-next.slick-arrow:hover{
    background-color: var(--Is-orange);
}
h3.sports, h3.ecommerce, h3.healthcare, h3.business, h3.realestate {
    padding: 15px 0 15px 75px;
    position: relative;
}
h3.sports:before, h3.ecommerce:before, h3.healthcare:before, h3.business:before, h3.realestate:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-image: url(../images/sports.svg);
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: left center;
    animation: MoveUpDown2 2s linear infinite;
}
h3.ecommerce:before {
    background-image: url(../images/ecommerce.svg);
    animation-delay: .5s;
}
h3.healthcare:before {
    background-image: url(../images/healthcare.svg);
}
h3.business:before {
    background-image: url(../images/business.svg);
    animation-delay: .5s;
}
h3.realestate:before {
    background-image: url(../images/realestate.svg);
    background-size: 70px;
}


.blog-box {
    position: relative;
    box-shadow: 0 0 14px #ddd;
    height: 100%;
    background-color: var(--Is-white);
    display: flex;
    flex-direction: column;
    margin: 12px 0;
}
.blog-box .blog-box-thumb {
    position: relative;
    padding-top: 65%;
}
.blog-box-thumb img {
    width: 100%;
    height: auto;
}
.blog-box .blog-box-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-box-content {
    padding: 25px 25px 5px;
}
.blog-box-content .post_date {
    font-size: 16px;
    color: var(--Is-orange);
    display: inline-block;
}
.blog-box-content h5 {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 0;
}
.blog-box-foot {
    padding: 0 35px 25px;
    margin-top: auto;
}
.blog-box-foot p {
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.blog-box-foot a {
    color: var(--Is-orange);
    font-size: 16px;
}
.cta-col {
    background: url(../images/cta-bg.png) no-repeat var(--Is-darkblue);
    background-position: 101% center;
    background-size: auto 100%;
    padding: 5%;
    border-radius: 40px;
    color: var(--Is-white);
}
.cta-content{
    max-width: 800px;
}

.footer{
    float: left;
    width: 100%;
    background: var(--Is-darkblue);
    padding: 70px 0 40px;
    color: var(--Is-white);
    font-size: 16px;
}
.follow-us ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.follow-us ul img{
    max-width: 35px;
}
.footer-logo{
    margin-bottom: 10px;
}
.clutch-review{
    margin-top: 5px;
}
.footer-logo img {
    max-width: 130px;
    width: 100%;
    margin-bottom: 30px;
}
footer.footer h4{
    color: var(--Is-yellow);
}
footer.footer ul li a {
    color: var(--Is-white);
    padding: 8px 0;
    display: inline-block;
}
footer.footer ul li a:hover{
    color: var(--Is-yellow);
}
footer.footer ul{
    margin-bottom: 30px;
}
footer.footer .follow-us ul{
    margin-bottom: 0;
}
.copyright_row {
    float: left;
    width: 100%;
    background: var(--Is-darkblue);
    padding: 20px;
    border-top: 1px solid rgb(255 255 255 / 15%);
    color: var(--Is-white);
    font-size: 16px;
}

/*************Services Page CSS***************/
.inner-hero{
    padding: 100px 0;
}
.inner-hero h1, .inner-hero p {
    color: var(--Is-darkblue);
}
.yellow-bg:before {
    position: absolute;
    content: "";
    width: 95%;
    background-color: var(--Is-yellow);
    height: 100%;
    right: 0;
    top: 0;
}
.yellow-bg:after {
    position: absolute;
    content: "";
    width: 95%;
    background: url(../images/line.svg) no-repeat;
    background-size: cover;
    opacity: .1;
    height: 100%;
    right: 0;
    top: 0;
}

.yellow-bg .container{
    position: relative;
    z-index: 1;
}
.inner-content{
    padding-left: 6%;
}
.flex-row-reverse .inner-content{
    padding-right: 6%;
    padding-left: 0;
}
.inner-img{
    position: relative;
}
.inner-img img{
    border-radius:  150px 0;
    animation: RadiusChange 5s linear infinite;
    width: 100%;
}
.inner-content h4 {
    margin: 20px 0;
}
.inner-img:before {
    content: "";
    border: 3px solid #fff;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    position: absolute;
    border-radius: 0 100px;
    animation: MoveUpDown2 4s linear infinite;
}

.inner-img.dark-pesudo:before{
    border-color: var(--Is-darkblue);
    animation: MoveUpDown2 7s linear infinite;
}
.service-full-sec {
    position: relative;
    padding: 250px 0 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--Is-white);
}
.web-dev-sec-box {
    background-color: rgb(13 19 62 / 80%);
    padding: 50px 60px;
    margin: 0 auto;
}
ul.list-style li {
    padding: 8px 0 8px 25px;
    position: relative;
}
ul.list-style li:before {
    content: "";
    border-left: 2px solid var(--Is-yellow);
    border-bottom: 2px solid var(--Is-yellow);
    width: 15px;
    position: absolute;
    left: 0;
    top: 17px;
    height: 8px;
    transform: rotate(-45deg);
}
.no-pesudo:before{
    display: none;
}



/****************************************Media Query***********************************************/
@media(max-width: 1199px){
    body{
        font-size: 18px;
    }
    header {
        padding: 15px 0;
    }
    .navbar {
        position: fixed;
        left: 0;
        height: 100%;
        top: 0;
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        overflow: auto;
        justify-content: center;
        align-content: center;
        width: 100%;
        max-width: 100%;
        background: #101b69;
        padding: 90px 20px;
        transition: opacity 0.5s 0.5s, visibility 0s 1s;
        opacity: 0;
        visibility: hidden;
    }
    .open .navbar {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s;
    }
    .menu_icon, .close_icon {
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 2;
    }
    .navbar ul {
        flex-wrap: wrap;
    }
    .navbar ul li {
        float: left;
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 5px 0;
        line-height: 1;
        opacity: 0;
        transform: translateY(-40px);
        animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
    }
    .open .navbar ul li{
        opacity: 1;
        transform: translateY(0px);
        transition: transform 0.2s, opacity 0.2s;
    }
    .menu_icon {
        width: 40px;
        height: 40px;
        background: var(--Is-yellow);
        display: flex;
        line-height: 40px;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        -moz-transition: all 0.5s ease-in-out 0s;
        -ms-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
    }
    .menu_icon span {
        width: 20px;
        height: 2px;
        background: var(--Is-darkblue);
        position: relative;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        transition-duration: 75ms;
    }

    .menu_icon span:before, .menu_icon span:after{
        transform-origin: 50% 50%;
        transition: top 0.3s 0.6s ease-in-out, transform 0.3s ease-in-out;
        content: "";
        width: 20px;
        height: 2px;
        background: var(--Is-darkblue);
        position: absolute;
        left: 0;
    }
    .menu_icon span:before {
        top: 6px;
    }
    .menu_icon span:after {
        top: -6px;
    }
    .open .menu_icon span {
        background: transparent;
    }
    .open .menu_icon span:before {
        transition: top 0.3s ease-in-out, transform 0.3s 0.5s ease-in-out;
        transform: rotate3d(0, 0, 1, 45deg);
        top: 0;
    }
    .open .menu_icon span:after {
        transition: top 0.3s ease-in-out, transform 0.3s 0.5s ease-in-out;
        transform: rotate3d(0, 0, 1, -45deg);
        top: 0;
    }
    
}
@media(max-width: 991px){
    body {
        font-size: 17px;
    }
    .container-fluid {
        padding: 0 2.5vmax;
    }
    .close_icon {
        position: absolute;
        top: 20px;
        cursor: pointer;
        right: 20px;
    }
    
  
}

@media(max-width: 767px){
    header {
        padding: 10px 0;
    }    
    h2 {
        font-size: 28px;
    }
    .banner_content h1 {
    font-size: 42px;
    }
    .banner_content h1.watermark {
    bottom: -70px;
    }
    .hero-img {
    margin-top: 16px;
    }
    .mobpad {
    margin-bottom: 45px;
    }
    
    
    
}