/*
Theme Name: Eyesdown
Version: 1.0
*/
:root {
    --pink: #F80089;
    --white: #ffffff;
    --black: #222;
    --trueblack: #222;
    --grey: #f4f4f4;
    --blue:#e5f7f9;
    --pinkbg:#f8eeed;
    --darkgrey: #555555;
    --bezier:cubic-bezier(0.3, -0.01, .49, 1);
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('assets/fonts/ProximaNova-Bold.woff2') format('woff2'),
        url('assets/fonts/ProximaNova-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('assets/fonts/ProximaNova-Regular.woff2') format('woff2'),
        url('assets/fonts/ProximaNova-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('assets/fonts/ProximaNova-BoldIt.woff2') format('woff2'),
        url('assets/fonts/ProximaNova-BoldIt.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('assets/fonts/ProximaNova-RegularIt.woff2') format('woff2'),
        url('assets/fonts/ProximaNova-RegularIt.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('assets/fonts/ProximaNova-SemiboldIt.woff2') format('woff2'),
        url('assets/fonts/ProximaNova-SemiboldIt.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('assets/fonts/ProximaNova-Semibold.woff2') format('woff2'),
        url('assets/fonts/ProximaNova-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: bold;
    font-display: swap;
}

/* @font-face {
    font-family: 'Lora',serif;
    src: url('assets/fonts/Lora-Regular.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
} */

body{
    color: #000;
    font-family: 'Proxima Nova', sans-serif;
    position: relative;
}

/****** Core styles ******/

p {
    font-size: 16px;
    line-height: 25px;
    color: var(--black);
    padding-bottom: 6px;

}
a,a:hover{
    text-decoration: none;
    color: var(--pink);
}
h2 a, h3 a, h4 a { 
    color: inherit;
}
h1, h2, h3, h4, h5 {
    font-weight: 600; 
}

h1, h2.h1 {
    font-size: 35px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 23px;
    font-weight: 600;
}

h4 {
    font-size: 21px;
}
h5 {
    font-size: 18px;
}
ul {
    margin-top: 1rem;
    margin-bottom: 2rem;
}
table{
    margin: 50px 0;
}

a.btn {
    border: 3px solid var(--pink);
    padding: 8px 20px;
    color: var(--pink);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius:0;
}
a.btn:hover {
    background-color: var(--pink);
    color: var(--white);
}

a.btn-primary {
    color: var(--white);
    background-color: var(--pink);
}
a.btn-primary:hover {
    background-color: var(--white);
    color: var(--pink);
    border: 3px solid var(--pink);
}

/* read more btn animation */
.c-btn {
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    text-decoration: none;
    transition: .2s;
    vertical-align: bottom;
}
.c-btn--color-green.c-btn--style-arrow {
color: var(--pink);
}
.c-btn--style-arrow, .c-btn--style-external, .c-btn--style-play {
align-items: center;
background: none;
border: none;
display: inline-flex;
font-weight: normal;
outline: none;
padding: 0 1rem 0 0;
position: relative;
text-transform: uppercase;
z-index: 1;
}
.c-btn--style-arrow:before, .c-btn--style-external:before, .c-btn--style-play:before {
background-position: 50%;
background-repeat: no-repeat;
background-size: 1.5rem;
content: "";
display: block;
height: 3rem;
margin-right: 1rem;
transition: .3s;
width: 3rem;
}
.c-btn--style-arrow:after, .c-btn--style-external:after, .c-btn--style-play:after {
bottom: 0;
content: "";
height: 100%;
position: absolute;
right: 0;
transition: right .5s,width .5s;
width: 0;
z-index: -1;
}
.c-btn--color-green.c-btn--style-arrow:hover {
color: #fff;
}
.c-btn--style-arrow:hover:before, .c-btn--style-external:hover:before, .c-btn--style-play:hover:before {
background-position: center right 5px;
}
.c-btn--style-arrow:hover:after, .c-btn--style-external:hover:after, .c-btn--style-play:hover:after {
left: 2.5rem;
transition: left .5s,width .5s;
width: calc(100% - 2.5rem);
}
.c-btn--color-green.c-btn--style-arrow {
color: var(--pink);
}
.c-btn--color-green.c-btn--style-arrow:after {
background-color: var(--pink);
}
.c-btn--color-green.c-btn--style-arrow:before {
background-color: var(--pink);
background: url("assets/images/btn-square.svg") no-repeat;
}
.c-btn--color-green.c-btn--style-arrow:after {
background-color: var(--pink);
}
/* end readmore button animation */
.mt-mb-100{
    margin-top: 100px;
    margin-bottom: 100px;
}
.mb-100{
    margin-bottom: 100px;
}
.mt-100{
    margin-top: 100px;
}
.mt-mb-50{
    margin-top: 50px;
    margin-bottom: 50px;
}
.pt-pb-15{
    padding-top: 15px;
    padding-bottom: 15px;
}
.pb-15{
    padding-bottom: 15px;
}
.pt-pb-100{
    padding: 100px 0;
}

/****** End core styles ******/

/****** Generic animations ******/

.fade-item {
    transition: 2s all ease-in-out;
    opacity: 0;
}

.fadeIn {
    animation: fadeIn 5s 1;
    animation-fill-mode: forwards;
}

@keyframes slideUp {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
}

/****** End generic animations ******/

/****** Header styles ******/

header .navbar .navbar-brand img {
    width: 260px;
}
header .navbar .navbar-brand-mobile{
    display: none;
}
header .navbar .navbar-expand-lg .navbar-nav {
    flex-direction: row;
}
header .navbar .navbar-nav .menu-item a {
    padding-top: 0;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 14px;
    color: var(--black);
}

header .navbar .navbar-nav .contact-us a{
    border: 3px solid var(--pink);
    padding: 5px 12px;
    color:var(--pink) ;
    text-decoration: none;
    margin-left: 25px;
    margin-top: 10px;
    font-weight: bold;
}
header .navbar .navbar-nav .contact-us a:hover{
    background-color: var(--pink);
    color: var(--white);
}
header .navbar .navbar-nav .contact-us a::after{
    background: unset;
    height: 0;
}
header .container-fluid {
    padding:0 !important;
}
.navbar{
    padding: 1.6rem 0;
}

.navbar-nav .menu-item > a {
    display: inline-block;
    position: relative;
    margin-top: 15px;
}
  
.navbar-nav .menu-item > a::after {
    content: "";
    display: block;
    /* margin: auto; */
    height: 3px;
    width: 0;
    top: 5px;
    background: transparent;
    transition: all 0.3s;
}
  
.navbar-nav .menu-item > a:hover::after {
    width: 30px;
    background: var(--pink);
}

.navbar-nav .current-menu-item>a::after {
    width: 30px;
    background: var(--pink);
}
.navbar-nav .contact-us > a:hover::after{
    width: 30px;
    background: unset;
}
.navbar-toggler {
    font-size: 36px;
    padding: 0;
}
#b1 { background: var(--white);margin-top: 20px; }
.icon { stroke:var(--pink); opacity: .95; }
header .navbar .navbar-toggler svg{
    fill:var(--pink);
    margin-top: -15px;
    margin-left: -13px;
}

header .navbar .navbar-toggler{
    display: none;
}

header input[type="checkbox"]{
    display: none; 
}
.hero-section-blog-archive{
    height: 420px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.hero-section-blog-archive .hero-text{
    max-width: 600px;
    padding-top: 110px;
    color: var(--white);
} 
.hero-section-blog-archive h1 {
    font-weight: 500;
    font-size: 42px;
}
.hero-section-blog-archive p{
    color: var(--white);
    padding-top: 26px;
    font-size: 21px;
    line-height: 33px
}
.hero-section-blog-archive h1 span, .hero-section-blog-archive h2.h1 span {
    font-weight: bold;
    color: var(--white);
}
.search-icon img {
    width: 18px;
    height: 18px;
    margin-top: -5px;
}
.search-icon a {
    width: 60px;
    /*padding-top: 30px !important;*/
}
.search-icon-mob img {
    width: 30px;
    height: 30px;
    margin-top: -10px;
}
/****** End Header styles ******/

/****** Footer styles ******/
footer{
    background-color:var(--pink) ;
    position: absolute;
    width: 100%;
    left: 0;
}
footer  #bottom-menu .menu-item a {
    padding-top: 0;
    font-size: 13px;
    padding: 0 16px;
    color: var(--white);
    border-right: 1px solid var(--white);
    margin-top: 0;
    line-height: 5px;
    
}
footer .footer_copyright{
    margin-bottom: 0;
    color: var(--white);
    font-size: 13px;
    padding-bottom: 0;
    line-height: 28px;
}
#bottom-menu{
    padding-top: 10px;
    padding-bottom: 6px;
}
#menu-footer-menu{
    padding-top: 0;
    margin-top: 0;
    float: right;
    flex-direction: row;
}
#menu-footer-menu li:last-child a{
    border-right: none;
}
/****** End footer styles ******/

/* Get in Touch styles */
section.get-in-touch{
    background-color: var(--grey);
    padding-bottom: 55px;
}
section.get-in-touch .eyesdown-logo{
    padding-top: 70px;
    padding-bottom: 30px;
}
section.get-in-touch img.ed-logo{
    width: 75px;
}
section.get-in-touch .contact-details{
    padding-top: 35px;
    padding-left: 3px;
}
section.get-in-touch .contact-details h5{
    font-size: 20px;
    color:var(--black);
    margin-bottom:20px;
}
section.get-in-touch .contact-details h5.tel{
    margin-top: 23px;
}
section.get-in-touch h3{
    padding-top: 18px;
    font-size: 29px;
}
section.get-in-touch .contact-details .col-lg-3{
    margin-bottom: 25px;
}
section.get-in-touch .contact-details p{
    padding-top: 5px;
    font-size: 16px;
    line-height: 22px;
}
section.get-in-touch .contact-details ul{
    margin-left: 0;
    padding-left: 0;
    line-height: 35px;
}
section.get-in-touch .contact-details ul li{
    list-style-type: none;
}
section.get-in-touch .contact-details a{
    font-size: 16px;
    line-height: 39px;
    text-decoration: none;
    color: var(--black);
}
section.get-in-touch ul li a:before{
    content: "";
    float: left;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 1.5rem;
    display: block;
    height: 22px;
    margin-right: 7px;
    margin-left: 0;
    transition: .3s;
    width: 1.5rem;
    margin-top: 6px;
}
section.get-in-touch ul li.twitter a:before{
    background: url("assets/images/social-twitter.svg") no-repeat;
}
section.get-in-touch ul li.linkedin a:before{
    background: url("assets/images/social-linkedin.svg") no-repeat;
}
section.get-in-touch ul li.facebook a:before{
    background: url("assets/images/social-facebook.svg") no-repeat;
}
section.get-in-touch ul li.bluesky a:before{
    background: url("assets/images/social-bluesky.svg") no-repeat;
}

section.get-in-touch .gform_wrapper .gform_body input {
    background: #ffffff;
    border: 1px solid #ced4da;
}
section.get-in-touch .gform_validation_errors {
    margin-bottom: 15px;
}

section.get-in-touch .ginput_container {
    margin-bottom: .4rem;
}
/* section.get-in-touch .gfield--type-captcha {
    display: none;
} */
.gform_wrapper.gravity-theme .gform_footer .gform-button--width-full{
    background-color:var(--pink);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 60px;
    border-radius: 30px;
    border: none;
    margin-bottom: 6px;
}
section.get-in-touch .gform_button{
    margin-left: 0 !important;
    padding: 8px 40px;
    margin-top: -10px !important;
}

.gfield_consent_label, .gfield_consent_label a {
    font-size: 13px !important;
}

.gfield_consent_label a {
    text-decoration: underline !important;
}

.ginput_container_consent {
    padding-left: 22px;
    position: relative;
}

.ginput_container_consent input {
    position:absolute;
    left:0px;
    top:12px;
}

/* End Get in touch styles */

/****** Blog page ******/

/* blog header */
.hero-section-blog {
    background-color: #0a090f;
    height: 370px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.hero-section-blog .hero-text{
    text-align: left;
    position: absolute;
    padding-top: 110px;
    max-width: 450px;
}
.hero-section-blog h1, .hero-section-blog h2.h1,.hero-section-blog p{
    color: var(--white);
}
.hero-section-blog h1, .hero-section-blog h2.h1 {
    font-weight: 500;
    font-size: 42px;
}
.hero-section-blog h1 span,
.hero-section-blog h2.h1 span
{
    font-weight: bold;
    color: var(--white);
}
.hero-section-blog .hero-text p{
    padding-top: 26px;
    font-size: 21px;
    line-height: 33px;
}
h1.publication-title{
    font-weight: bold;
}
.hero-text div strong{
    color: var(--pink);
}
.hero-section-blog p span{
    color: var(--pink);
    font-weight: 600;
}  
/* End Blog Header */

/* Blog listing page */
.blog-list{
    position: relative;
    margin-bottom: 60px;
}
.blog-feature-content{
    margin-bottom: 85px;
}
.blog-feature-content .img-fluid {
    width: 100%;
}
.blog-excerpt{
    padding-left: 5px;
}
.blog-excerpt h3,.publication-excerpt h3{
    padding-top: 32px;
    line-height: 31px;
}
p.meta {
    color:#777777;
    font-weight: 600;
}
.blog-readmore{
    position: absolute;
    bottom: 20px;
    z-index: unset;
}
.post-pagination{
    background-color: var(--pink);
    padding: 10px;
    text-align: center;
}
.post-pagination .current{
    color: var(--pink);
    background: var(--white);
    padding: 5px 10px;
    font-weight: bold;
}
.post-pagination a.page-numbers{
    color: var(--white);
    padding: 15px;
    text-decoration: none;
}

.wp-caption.alignnone {
    width: 100% !important;
}

/****** End blog listing page ******/

/****** Single blog page ******/

.post-image {
    float: right;
    width: 375px;
    height: auto !important;
    margin: 0 0 20px 20px;
}
.download-teaser {
    margin: 55px 0 40px 0;
    padding: 40px 20px;
    background: #f4f4f4;
    position: relative;
}
.download-teaser p{
    line-height: 30px;
}
.download-teaser .button {
    float: none;
    display: block;
    text-align: center;
    background: #fff;
    color: #54A8BF;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    line-height: 1;
    padding: 12px 20px;
}
.download-flash {
    background: var(--pink);
    padding: 14px 20px;
    text-align: center;
    position: absolute;
    top: -10px;
    right: -10px;
    height: 40px;
    line-height: 1;
    color: var(--white);
}
.download-flash .shadow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #a02065 transparent transparent transparent;
    position: absolute;
    right: 0;
    top: 40px;
    color: var(--white);
}
.download-btn a {
    border: 3px solid var(--pink);
    padding: 8px 20px;
    color: var(--pink);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center
}
.download-btn a:hover {
    background-color: var(--pink);
    color: var(--white);
}
p.short-desc{
    font-size: 22px;
    line-height: 26px;
    margin-top: 32px;
    font-weight: bold;
    padding-bottom: 0px;
}
.latest-blogs{
    position: relative;
    line-height: .5;
    margin-bottom: 60px;
}
.latest-blogs a.c-btn{
    margin-top: 15px;
}
.latest-blogs a.c-btn::before{
    height: 2rem;
    width: 2rem;
}
.latest-blogs a.c-btn--style-arrow:hover:after{
    left: 0;
    width: calc(100% - 0.5rem);
}
.pt-4{
    padding-top: 4rem !important;
}

.latest-blogs .short-desc {
    font-size: 18px;
    margin-top: 0;
}

.related-articles .short-desc {
    font-size: 18px;
    /* margin-top: 15px; */
}

.related-articles h3{
    color: var(--black) !important;
}

.blog-sidebar-newsletter {
    padding: 40px 20px;
    background-color: #f4f4f4;
    position: relative;
}

.blog-sidebar-newsletter p {
    line-height: 30px;
}

/****** End single blog page ******/

/* Hero Banner */
.hero-section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .hero-text{
    padding: 90px 0;
}
.hero-section h2.page-title{
    font-size: 48px;
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 2px;
}
.hero-section .breadcrumb p{
    font-size: 17px;
    font-weight: 600;
    color: #fff; 
}

.hero-section .breadcrumb p a{
    color: #fff; 
}
.breadcrumb span {
    display:inline-block;
    padding: 0 7px;
}

.callout .breadcrumb p{
    font-size: 16px;
    font-weight: 500;
    color: #888;
    padding: 0 0 20px 0 !important;
    margin: 20px auto -50px auto;
}

.callout .breadcrumb a{
    color: #888; 
}

.bread {
    margin: 0;
    padding: 0;
}
.bread li {
    display: inline;
    color: #ffffff;
    font-size:14px;
}
.bread li.separator {
    padding: 0 8px;
}
.bread li a {
    color: #fff;
}

.hero-section .quote{
    max-width: 500px;
    padding-bottom: 5px;
}
.hero-section .quote p{
    color: var(--white);
    font-size: 22px;
    font-family: 'Lora',serif;
    font-style: italic;
    line-height: 28px;
}
.hero-section .author{
    font-size: 17px;
    color: #fff;
    font-weight: bold;
}
.hero-section .testimonial-link {
    font-weight: normal;
    display: block;
    color: #fff;
}
/* End of Hero Banner */
/* Homepage hero Banner */
.home-hero-banner{
    min-height: 450px;
    background-position: center;
    background-size: cover;
}
.hero-description{
    padding-top:320px;
    max-width: 600px;
}
.hero-description p{
    font-size: 35px;
    color: var(--white);
    line-height: 44px;
}
.hero-description p strong{
    font-weight: 700;
}
.home-hero-banner .button-link{
    padding-top: 40px;
}
.home-hero-banner .button-link a.c-btn--style-arrow{
   z-index: 0;
   position: relative;
   color: var(--white);
   font-size: 18px;
   text-transform: initial;
}
.home-hero-banner .button-link a.c-btn--style-arrow:before, .c-btn--style-external:before, .c-btn--style-play:before{
    margin-right: 2rem;
    /* background-size: cover; */
}
.home-intro-description{
    text-align: center;
}
.home-intro-description .intro-description h2{
    font-size: 40px;
    color: var(--black);
    max-width: 930px;
    font-weight: normal;
    margin: 0 auto;
    max-width: 930px;
}
.home-intro-description .intro-description p{
    padding-top: 50px;
    margin: 0 auto;
    text-align: center;
    max-width: 850px;
    line-height: 32px;
    font-size: 24px;
}
.home-intro-description .intro-description p strong{
    color: var(--pink);
}
.contact-btn{
    margin-top: 70px;
    text-align: center;
}
.contact-btn a{
    border: 3px solid var(--pink);
    padding: 8px 20px;
    color: var(--pink);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
.contact-btn a:hover{
    background-color: var(--pink);
    color: var(--white);
}
.outline-btn a:hover{
    background-color: var(--white);
}
.fill-btn a{
    background-color: var(--pink);
    border: 3px solid var(--pink);
    padding: 8px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
.outline-btn a{
    border: 3px solid var(--pink);
    padding: 8px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
/* .contact-btn .outline-btn:hover{
    background-color: unset;
} */
.grey-bg{
    background-color: var(--grey);
}
section.Our-work{
    padding-top: 1px;
    text-align: center;
}
.get-touch {
    padding: 1px 0 100px 0;
}
.project-grids{
    margin-top: 75px;
}
.project-grids .row{
    margin: 0;
}
.search-fliter{
    padding-top: 30px;
    display: flex;
    float: right;
}
#filter-work{
    width: 100%;
    margin: 0 auto;
}
.archive-header{
    padding-top: 12px;
}
.archive-header .archive-title{
    padding-top: 0;
    text-align: center;
}
.archive-header #filter-work{
    width: 100%;
    padding-top: 0;
}
.archive-filter{
    float: right;
    width: 30%;
    padding-top: 30px;
}
.archive-project-grid{
    padding-top: 50px !important;
}
.search-fliter .close {
    font-size: 20px;
    color: #212529;
    font-weight: 600;
    border: 2px solid #DEE2E6;
    padding: 2px 10px;
    cursor: pointer;
    float: right;
    margin-left: 10px;
}
.archive-filter .close {
    font-size: 26px;
    color: #212529;
    font-weight: 600;
    border: 2px solid #DEE2E6;
    padding: 2px 10px;
    cursor: pointer;
}
.close-left{
    padding-left: 0;
}
.close-left a{
    float: right;
}
section.home-blog-section .blog-lists{
    margin-top: 60px;
}
section.home-blog-section .blog-lists .blog-feature-content{
    margin-bottom: 0;
}
section.testimonial blockquote p{
    font-family: 'Lora',serif;
    line-height: 36px;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
}
section.testimonial p{
    font-size: 18px;
    font-weight: 700;
}
/* End homepage  */
/* Flexible layout Styling */
.text-content h1{
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 0.01em;
    color: var(--black);
    line-height: 52px;
    margin: 0 0 28px 0;
}
.text-content h1::after{
    content: "";
    display: block;
    width: 18%;
    height: 3px;
    margin-top: 10px;
    background: var(--pink);
}
.text-content .intro-description{
    color: var(--darkgrey);
    font-weight: bold;
    font-size: 23px;
    padding-bottom: 25px;
    line-height: 28px;
}
.text-content .short-description p{
    font-size: 18px;
}
.text-content h2{
    padding-bottom: 15px;
}
.text-content h3{
    font-size: 23px;
    padding-bottom: 15px;
    color:var(--pink);
}
.team-list h3{
    font-size: 20px;
}
.text-content img{
    max-width:100% !important;
    height: auto !important;
}
.wp-caption-text {
    color: #777777;
    padding-top: 10px;
    text-transform: uppercase;
    font-size: 14px;
}
.text-content blockquote {
    border-left: 4px solid var(--pink);
    margin: 25px 0;
    padding-left: 25px;
    font-family: 'Lora', serif;
    font-style:italic;
    font-weight:500;
    padding: 10px 10px 1px 25px;
    background-color: var(--grey);
}

blockquote p strong {
    font-weight: 600;
    display: block;
    font-size: 85%;
    text-align: right;
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    margin-top: 10px;
}

blockquote, blockquote p {
    font-size: 19px;
    line-height: 30px;
}
blockquote img {
    float: right;
    max-height: 220px;
    padding: 0 0 15px 20px;
}
blockquote span {
    font-family: 'Proxima Nova';
	display:block;
	text-align:right;
	font-size:15px;
    font-style:normal;
	padding-top:8px;
}
.text-content .below{
    padding-top: 15px;
}
.client-quote{
    border-radius: 4px 4px 100px 4px;
    max-width: 1105px;
    margin-top: 75px;
    padding: 56px;
}
.client-quote .quote{
    padding: 5px 30px 0 15px;

}
.client-quote .quote p{
    padding-bottom: 0;
    margin-bottom: 15px;
}
.quote-author{
    padding: 30px 50px;
}
.quote-author p{
    color: var(--white);
    padding-bottom: 0;
    margin-bottom: 0;
}
.quote-author .client-name{
    font-size: 18px;
}
.quote-author .client-designation{
    font-size: 17px;
    font-weight: bold;
}
.client-quote .quote p{
    font-family: 'Lora',serif;
    font-size: 26px;
    line-height: 44px;
    font-style:italic;
    color:var(--white);
}
.shortcode-btn-slide:hover{
    color: #ffffff !important;
}
/* End Flexible layout styling */
/* Work Archive page */
.callout {
    margin-top: 80px;
}

.callout h1,.callout h2{
    font-weight: 400;
    text-align: center;
    font-size: 38px;
}
.callout p strong{
    color: var(--pink);
}
.callout p{
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
    padding-top: 42px;
    font-size: 22px;
    line-height: 30px;
}
.project-grid{
    padding-top: 120px;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-name: slideUp;
}
.project-grid .row{
    margin-right: 0;
    margin-left: 0;
}
.grid-item{
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.grid-item a {
    display: block;
    position: relative;
    line-height: .5;
}
.grid-item a:hover .thumb-hover{
    opacity: 1;
}
.grid-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: block;
    z-index: 6;
    opacity: 0;
    text-align: center;
}
.grid-info .title {
    display: table;
    height: 100%;
    width: 95%;
}
.grid-item img {
    width: 100%;
}
.thumb-hover {
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
}
.grid-logo-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 3;
}
.grid-logo-mask img {
    position: relative;
    top: 0;
}
/* End Work Archive page */
/* servic e archive page */
.service-content img{
    background: #efefef;
    transition: background-color 0.5s ease;
    width: 100%;
}
.service-content:hover img {
    background: #ddd;
}
.service-title h3{
    font-size: 20px;
    padding-top: 20px;
    color: var(--pink);
}

.grid-item a:hover .grid-logo-mask {
    background: rgba(0,0,0,0.7);
}

.grid-logo-mask {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-description {
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease;
    position: absolute;
    line-height: 1.3;
    font-size: 20px;
}

.project-logo {
    transition: opacity .3s ease;
}

.grid-item a:hover .project-logo {
    opacity: 0;
}

.grid-item a:hover .project-description {
    opacity: 1;
}

/* end service archive page */
/* Single work page */

#gallery-1 .gallery-item {
    padding-right: 6px;
}
#gallery-1 img {
    width: 100%;
    height: auto;
}
img.img-screen{
    width: 100%;
}
.img-caption{
    text-align: center;
    font-size: 18px;
    margin-top: 14px;
}
.single-item{
    position: relative;
}
.slick-img{
    position: absolute;
    width: 90%;
    top: 5%;
    left: 5%;
}
.slick-img-iphone{
    position: absolute;
    width: 36%;
    left: 31%;
    top: 20%;
}
.slick-img-landscape{
    position: absolute;
    width: 71%;
    top: 12%;
    left: 15%;
}
.slick-img-portrait{
    position: absolute;
    width: 85%;
    top: 12%;
    left: 8%;
}
.slick-prev:before, .slick-next:before {
    font-size: 25px !important;
    line-height: 1;
    opacity: 1 !important;
    color: #999 !important;
}
.slick-prev{
    left: -30px !important;
}
.related-work h3{
    text-align: center;
    font-size: 36px;
    padding-bottom: 40px;
}
.related-work p{
    font-size: 22px;
    text-align: center;
}
.related-work p strong{
    color: var(--pink);
}
.related-projects{
    margin-top: 75px;
}
.related-projects .project-item img{
    width: 100%;
}
.related-projects .project-item p{
    font-size: 22px;
    line-height: 28px;
    margin-top: 32px;
    font-weight: bold;
}
.project-item{
    position: relative;
    overflow: hidden;
}

.project-item a {
    display: block;
    position: relative;
    line-height: .5;
}
.project-item a .project-info{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    /* display: none; */
    z-index: 6;
    /* opacity: 0; */
    text-align: center;
}
.project-item .logo-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 3;
}

a.short-desc{
    color: var(--black);
    font-size: 22px;
    line-height: 28px;
    margin-top: 32px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 30px;
}
a.short-desc:hover{
    color: var(--pink);
}
.related-projects a.short-desc {
    font-size: 23px;
   font-weight: 600;
  }
/* end of single work page */
/* Contact page */
section.contact .company-address{
    line-height: 32px;
}
section.contact h2{
    padding-top: 60px;
}
section.contact input[type="checkbox"] {
    display: block;
}
/* End Contact page */
/* gform styles */
.gform_wrapper.gravity-theme .gfield input.large,.gform_wrapper.gravity-theme .gfield input.large:focus-visible{
    border: 1px solid #ced4da;
  }
  .gform_button {
    background-color: var(--pink) !important;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 60px;
    border-radius: 3px;
    border: none;
    margin-bottom: 6px;
    
  }
  .single-publication .gform_button{
    margin: 0 auto;
  }
  .gform_wrapper.gravity-theme .gfield-choice-input+label {
    padding-left: 10px;
  }
  .gform_wrapper .gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message{
    background: unset !important;
    border: 0 !important;
    font-size: 14.992px !important;
    margin-top: 8px !important; 
    padding: 0 !important;
  }
  .gform_wrapper.gravity-theme .gform_validation_errors {
    border: 0 !important;
  }
  .gform_confirmation_message{
    text-align: center;
    border: 3px solid var(--pink);
    padding: 20px;
    font-size: 22px;
    margin-top: 60px;
  }
  .gform_wrapper.gravity-theme .gfield_error label{
    color: var(--pink) !important;
  }
  .gform_wrapper.gravity-theme .gfield_description{
    color: var(--pink) !important;
  }
  .gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    color: var(--pink) !important;
    font-size: 16px !important;
  }
  .gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    color: var(--pink) !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .gform_wrapper.gravity-theme .gform_validation_errors {
    width:80% !important;
    padding: 16px 16px 16px 10px !important;
  }
  .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
    border: 1px solid var(--pink) !important;
    }
    .gform_wrapper.gravity-theme .gfield_required {
        color: var(--pink) !important;
    }
    .gform_wrapper.gravity-theme .gform_validation_errors>ol {
        display: none !important;
    }
/* end gform styles */
/* Publication landing page */
.publication-excerpt{
    padding-left: 0;
}
/* End publication landing page */

/* single publication styles */
.publication-intro{
    margin-top: 80px;
    margin-bottom: 35px;

}

.publication-intro h1{
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 38px;
    font-weight: normal;
    line-height: 42px;
}

.publication-intro h2{
    text-align: center;
    max-width: 800px;
    margin: 20px auto 0 auto;
    font-size: 18px;
    font-weight: normal;
    color: var(--pink);
    font-weight:600;
}
.publication-intro div p, .magazine-benifits .intro-desc p, .form-download p{
    text-align: center;
    line-height: 1.5;
    font-size: 18px;
}
.publication-intro .intro-desc strong, .magazine-benifits .intro-desc strong{
    color: var(--pink);
}
.publication-intro .intro-desc, .magazine-benifits .intro-desc{
    max-width: 800px;
    margin: 35px auto;
    text-align: center;
}
.blue-background{
    background-color:var(--blue) ;
}
.blue-cloud{
    background: url('assets/images/wave-blue.svg');
}
.blue-background img.publication{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0;
    width: 60%;
}
.magazine-benifits h2,.form-download h2{
    text-align: center;
    font-size: 36px;
    max-width: 700px;
    margin: 0 auto;
    font-weight:normal;
}
.form-download {
    padding: 60px 0;
}
.benefits-listing{
    max-width: 850px;
    margin: 0 auto;
    display: flex;
}
.benefits-right{
    padding-left: 10%;
}
ul.benefits{
    list-style-type: none;
    padding-left: 0;
    width: 50%;
}
ul.benefits-right{
    padding-left: 10%;
}
li.benifit-item:before{
    content: url('assets/images/tick.png');
    margin-right: 25px;
    position: absolute;
    left: 0;
    right: 0;
   
}
li.benifit-item{
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 24px;
    position: relative;
    padding-left: 35px;
}

.pink-background{
    background-color: var(--pinkbg);
}
.form-download{
    width: 80%;
    margin: 0 auto;
}
.magazine-inner{
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.blue-footer{
    background-color: var(--blue);
    /* height: 550px; */
}
/* End single publications styles */
/* team page */
.team-list img{
    float: right;
    margin: 5px 0 20px 20px;
}

/* end team page */

/* Share this buttons arrangements  */
.sharethis-inline-share-buttons {
    margin-bottom: 20px;
}

/* Our work page custom select box styling */
/* end custom selectbox */
/* Media Queries */

/* Search page */

#searchform #searchsubmit {
    background-color:var(--pink);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 0 30px 30px 0;
    border: none;
    margin-bottom: 6px;
    display: inline-block;
}

#searchform #s {
    font-weight: 700;
    padding: 8px 20px;
    border-radius:30px 0 0 30px ;
    border-width: 2px 0 2px 2px;
    border-style:  solid;
    border-color:#000;
    margin-bottom: 6px;
    display: inline-block;
    margin-right: -5px;
    outline: none;
}
#searchform label.screen-reader-text {
    display: none;
}
.search-item img {
    float:right;
    width: 200px !important;
    height: 150px !important;
}

/* End search page */

/* Services columns partial */

.service-cols {
    --bs-gutter-x:5em;
}
.service-col {
    position: relative;
    padding-bottom:100px;
}
.service-col h3 {
    margin-top:20px;
    color:#000;
}

.service-col ul, .service-col li {
    margin:0;
    padding:0;
}
.service-col li {
    position: relative;
    padding:0 0 0 20px;
    list-style: none;
}
.service-col li::before {
    content:"•";
    position: absolute;
    top:0px;
    left:0;
    color:#f80089;
}

.service-col:not(.first)::after {
    width:1px;
    height:100%;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(200,200,200,1) 30%, rgba(200,200,200,1) 70%, rgba(255,255,255,1) 100%);
    position:absolute;
    top: 0;
    left:0;
    content: '';
    display: block;
}

.service-col lord-icon {
    width: 100px;
    height: 100px;
}

/* End services columns partial */

/* Services list partial */

.service-cols {
    --bs-gutter-x:5em;
}

.service-item {
    position: relative;
}

.service-item h3 {
    padding:7px 0 20px 53px;
    color:#000;
}
.service-item lord-icon {
    width: 40px;
    height: 40px;
    position: absolute;
}

/* End services list partial */

/* Logos partial */

.logos img {
    width:400px;
    height:auto;
}

.col-eigth {
    width:12.5%;
    flex: 0 0 auto;
}

/* End logos partial */

/* Work slider partial */

.section-work-slider {
    background-color: var(--trueblack);
}

.section-work-slider .slide-row {
    padding: 50px 0 0 0;
    display: flex; /* make row flex */
    align-items: stretch; /* ensure both columns match height */
}

.section-work-slider .work-slide-right {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.section-work-slider .work-slide-right .inner {
    display: flex;
    align-items: stretch;
}

.section-work-slider .work-slide-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: end;
    padding-bottom: 20px;
}

.section-work-slider .work-slide-image img {
    height: auto;
    width: 80%;
    max-height: 100%;
}

/* Apply special layout when rotated */
.section-work-slider .work-slide-image.rotate-mode {
    position: relative;
    overflow: visible; /* allow rotated image to spill */
}

.section-work-slider .work-slide-image img.rotate-tilted {
    /*position: absolute;*/
    top: 0;
    right: 0;
    transform: rotate(4deg);
    transform-origin: top left;
}

.section-work-slider .text-main-title {
    text-transform: uppercase;
    font-size: 18px;
}

.section-work-slider .text-slide-title {
    color: var(--white);
    font-size: 32px;
    font-weight: bold;
}

.section-work-slider .text-slide-content > * {
    color: var(--white);
}

.section-work-slider .c-btn--color-green.c-btn--style-arrow {
    color: var(--white);
    font-weight: bold;
}

.section-work-slider .slick-dots {
    bottom: -70px; /* Move dots down */
    text-align: center;
}

.section-work-slider .slick-dots li button:before {
    font-size: 12px;
    color: #333; /* Customize dot color */
}

.section-work-slider .slick-dots li.slick-active button:before {
    color: var(--trueblack);
}

/* End work slider partial */

/* Work columns */

.bg-black {
    background: var(--black);
    padding: 80px 0 10px 0;
}
.bg-black h3, .bg-black h2 {
    color:#ffffff !important;
}
.bg-black .service-col:not(.first)::after {
    display: none;
}
.work-columns img {
    margin-bottom: 30px;
} 

.work-columns .client-name {
    color: var(--pink);
    text-transform: uppercase;
    font-size: 14px;
} 

/* End work columns */

@media(max-width:1200px){
    header .navbar .navbar-nav .menu-item a {
        font-size: 16px;
    }
}
@media(max-width:1100px){
    header .navbar .navbar-nav .menu-item a {
        padding-right: 9px;
        padding-left: 9px;
    }
    .blue-background{
        background-repeat: no-repeat;
    }   
}

@media(max-width:992px){
    .navbar {
        padding: 1.2rem 0;
    }
    header .navbar .navbar-brand img {
        width: 225px;
    }
    header .navbar .navbar-toggler{
        display: block;
        border: none;
    }
    header .navbar .navbar-nav{
        visibility: visible;
        flex-direction: row;
    }
    .wrapper{
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
        background:  var(--pink);
        clip-path: circle(0 at calc(100% - 45px) 45px); 
        transition: all 0.6s ease-in-out;
    }
    #active:not(:checked) ~ .wrapper{
        transition: clip-path ease-in-out 700ms 300ms;
    }

    header .navbar .navbar-nav{
        flex-direction: column;
    } 
    header .navbar .navbar-brand-mobile{
        position: absolute;
        left: 6px;
        top: 30px;
        z-index: 2;
    }
    header .navbar .navbar-brand-mobile img{
        width: 60px;
    }
    
    /* hamburger */
    header .navbar .navbar-nav .contact-us a{
        padding: 0;
        margin: 0;
        border: none;
    }
   
    .navbar-nav .menu-item > a {
        margin-top: 0;
    }
    #active:checked ~ .wrapper{
        clip-path: circle(75%);
    }
    #active:checked ~ svg{
        display: none;
    }
    #active:checked ~ .menu-btn .navbar-toggler:before{
        font-size: 100px;
    }
    .menu-btn{
        position: absolute;
        z-index: 2;
        right: -5px; 
        top: 15px;
        height: 50px;
        width: 50px; 
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        font-size: 20px;
        color: var(--white);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }
    svg.icon{
        height: 80px;
    }
    .wrapper ul{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        list-style: none;
        text-align: center;
    }
    header .navbar .navbar-nav .menu-item a{
        font-size: 32px;
        line-height: 58px;
    }

    #active:checked ~ .icon {
        stroke: var(--white);
    }

    #active:checked ~  .wrapper ul li{
        opacity: 0;
        animation: fadeIn var(--bezier) 750ms forwards;
        
    }
    .logo-display{
        opacity: 0;
        animation: fadeIn var(--bezier) 500ms forwards;
        animation-delay: 400ms;
        display: block !important;
    }
    .white-bg{
        opacity: 1;
        animation-delay: 800ms;
        
    }
    .white-bg ~ #b1{
        background-color: var(--white);
    }
    .white-bg ~ .icon{
        stroke: var(--pink);
    }
    .pink-bg ~ #b1{
        background-color: var(--pink);
    }
    #active:checked ~  .wrapper ul li:nth-child(1){animation-delay: 100ms;}
    #active:checked ~  .wrapper ul li:nth-child(2){animation-delay: 200ms;}
    #active:checked ~  .wrapper ul li:nth-child(3){animation-delay: 300ms;}
    #active:checked ~  .wrapper ul li:nth-child(4){animation-delay: 400ms;}
    #active:checked ~  .wrapper ul li:nth-child(5){animation-delay: 500ms;}
    #active:checked ~  .wrapper ul li:nth-child(6){animation-delay: 600ms;}
    #active:checked ~  .wrapper ul li:nth-child(7){animation-delay: 700ms;}
    #active:checked ~  .wrapper ul li:nth-child(8){animation-delay: 800ms;}
    #active:checked ~ .icon{
        stroke: var(--pink);
    }
    @keyframes fadeIn {
        0%   { opacity: 0; transform: translateX(200px); }
        75%  { opacity: .2;}
        100% { opacity: 1;transform: translateX(0%);}
    }
    @keyframes fadeOut {
        0%   { opacity: 1; transform: translateX(0%); }
        75%  { opacity: 0;}
        100% { opacity: 0;transform: translateX(500px);}
    }
    .wrapper ul li a{
        font-size: 32px;
        font-weight: bold;
        padding: 5px 30px;
        color: var(--white) !important;
        position: relative;
        transition: all 0.3s ease;
        animation: fadein ease 8s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .wrapper ul li a:after{
        position: absolute;
        content: "";
        background: var(--white);
        width: 100%;
        height: 50px;
        left: 0;
        border-radius: 10px;
        transform: scaleY(0);
        z-index: -1;
        transition: transform 0.3s ease;
        
    }

    #active:not(:checked) ~  .wrapper ul li{
        opacity: 1;
        animation: fadeOut var(--bezier) 1500ms forwards;
    }

    .logo-none{
        opacity: 1;
        animation: fadeOut var(--bezier) 1500ms forwards;
        animation-delay: 400ms;
        display: none !important;
    }
    #active:not(:checked) ~  .wrapper ul li:nth-child(8){animation-delay: 100ms;}
    #active:not(:checked) ~  .wrapper ul li:nth-child(7){animation-delay: 200ms;}
    #active:not(:checked) ~  .wrapper ul li:nth-child(6){animation-delay: 300ms;}
    #active:not(:checked) ~  .wrapper ul li:nth-child(5){animation-delay: 400ms;}
    #active:not(:checked) ~  .wrapper ul li:nth-child(4){animation-delay: 500ms;}
    #active:not(:checked) ~  .wrapper ul li:nth-child(3){animation-delay: 600ms;}
    #active:not(:checked) ~  .wrapper ul li:nth-child(2){animation-delay: 700ms;}
    #active:not(:checked) ~  .wrapper ul li:nth-child(1){animation-delay: 800ms;}
    
    .wrapper ul li a:hover:after{
        transform: scaleY(1);
    }
    .wrapper ul li a:hover{
        color: var(--pink) !important;
        background: var(--white);
        border-radius: 10px;
    }
    header .navbar .navbar-toggler svg{
        fill:var(--pink);
    }
    
    footer .footer_copyright{
        font-size: 12px;
    }
    #menu-footer-menu {
        flex-direction: row;
    }
    .slick-prev{
        left: 25px !important;
    }
    .slick-next{
        right: 35px !important;
    }
    .single-item{
        padding: 0 80px;
    }
    .quote-author{
        padding: 30px 20px;
    }
    .col-eigth {
        width:25%;
    }
}

@media(max-width:768px){
    header .navbar .navbar-nav .menu-item a{
        font-size: 26px;
        line-height: 52px;
    }
    footer .container .navbar .navbar-nav{
        text-align: center;
        margin: 0 auto;
        padding: 16px 0;
    }
    footer .footer_copyright{
        font-size: 14px;
        text-align: center;
        font-weight: bold;
    }
    #menu-footer-menu {
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
        float: none;
    }
    #menu-footer-menu li a{
        border-right: 0 !important;
    }
    .blog-feature-content .img-fluid{
        width: 100%;
    }
    .post-image {
        float: none;
        width: 100%;
        padding: 0;
        margin: 0 0 20px 0;
    }
    .blue-background img.publication{
        width:100%;
    }
    .magazine-inner{
        width: 100%;
    }
    .latest-blogs{
        display: block;
        padding: 0 80px;
    }
    .client-quote{
        padding: 20px;
    }
    .client-quote .quote p{
        font-size: 22px;
        line-height: 35px;
    }
    .sidebar-wrapper {
        order: 2;
    }
    .archive-filter{
        width: 40%;
    }
    .sidebar-wrapper .latest-blogs {
        padding-left: 0;
    }
    .service-col:not(.first) {
        padding-top:30px;
    }
    .service-col:not(.first)::after {
        width:100%;
        height:1px;
        background: rgb(255,255,255);
        background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(200,200,200,1) 30%, rgba(200,200,200,1) 70%, rgba(255,255,255,1) 100%);
    }
    .section-work-slider .work-slide-image {
        align-items: center;
        justify-content: center;
    }
}
@media(max-width:576px){
    .search-left{
        width: 80%;
    }
    .close-left{
        width: 20%;
    }
    .archive-filter{
        width: 80%;
    }

}
@media(max-width:560px){
    header .navbar .navbar-brand img {
        width: 200px;
        margin-top: 5px;
    }
    .contact-us{
        display: none;
    }
    .wrapper ul li a{
        line-height: 36px;
    }
    .mobile-nav-footer{
        display: block !important;
        position: absolute;
        bottom: 0px;
        width: 100%;
        border-top: 2px solid #fff;
    }
    .mobile-nav-footer .row{
        margin-left: 0;
        margin-right: 0;
    }
    .mobile-nav-footer a{
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        display: block;
        padding: 10px 0 10px 0;
    }
    .column {
        width: 50%;
    }
    .mobile-nav-footer .column:first-child{
        border-right: 1px solid #fff;
    }
    .magazine-benifits h2, .form-download h2 {
        font-size: 24px;
    }
    .benefits-listing{
        display: inline-block;
    }
    .benefits-right{
        padding-left: 0;
    }
    ul.benefits{
        width: 100%;
    }
    ul.benefits-right{
        padding-left: 0;
    }
    ul.benefits-left{
        margin-bottom: 0;
    }
    
}
@media(max-width:468px){
    .c-btn--color-green.c-btn--style-arrow:before {
        margin-top: 5%;
    }
    .col-eigth {
        width:50%;
    }
}
@media(max-width:360px){
    .c-btn--color-green.c-btn--style-arrow:before {
        margin-top: 6%;
    }
    .archive-filter{
        width: 100%;
    }
}
@media(min-width:768px){
    .blog-content{
        padding-right: 100px;
    }
}

/* Touch devices should NOT trigger hover UI */
@media (hover: none) and (pointer: coarse) {

    /* never show description */
    .project-description {
        opacity: 0 !important;
    }

    /* keep logo visible */
    .project-logo {
        opacity: 1 !important;
    }

    /* prevent darker hover overlay */
    .grid-logo-mask {
        background: rgba(0,0,0,0.4) !important;
    }

    /* disable hover image swap */
    .thumb-hover {
        opacity: 0 !important;
    }
}