body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    background-color: #002437;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.btn-custom {
    background-color: #007bff;
    color: white;
}

.btn-custom:hover {
    background-color: #0056b3;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

h3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
}

p {
    font-size: 26px;
    color: #fff;
    font-weight: 200;
    line-height: 1.8;
    letter-spacing: 1px;
    
}

@media only screen and (max-width: 600px) {

  h2 {
    font-size: 36px;
    font-weight: 600;
  }

  h3 {
        font-size: 30px;
    }

    p {
        font-size: 20px;
        color: #fff;
        font-weight: 200;
        line-height: 1.8;
        letter-spacing: 1px;
        
    }
}

@media only screen and (min-width: 601px) and (max-width: 768px) {
    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 33px;
    }
    p {
        font-size: 22px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    h2 {
        font-size: 42px;
    }
     h3 {
        font-size: 34px;
    }
    p {
        font-size: 24px;
    }
}

/* Background colours */
.yellow-bg {
    background-color: #fae053;
}
.orange-bg {
    background-color: #ff9944;
}
.green-bg {
    background-color: #38E8BE;
}
.dark-bg {
    background-color: #141A26;
}

/* Text colours */
.white-text {
    color: #fff;
}

.light-blue-text {
    color: #b3dcf3;
}

.dark-text {
    color: #002437;
}

.btn-xl {
    padding: 13px 40px;
    font-size: 23px;
    font-weight: 600;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    text-decoration: none;
    border-radius: 10px;
    letter-spacing: 1px;
}

.btn-outline {
    border: 3px solid #002437;
    color: #002437;
    text-decoration: none;
}
.btn-outline:hover {
    background-color: #002437;
    border: 3px solid #002437;
    color: #fff;
    text-decoration: none;
}

.btn-outline:focus {
    background-color: #002437;
    border: 3px solid #002437;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.btn-outline:active {
    background-color: #002437;
    border: 3px solid #002437;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.dark-pink-btn {
    background-color: #f91450;
    color: #fff;
    text-decoration: none;
}

.dark-pink-btn:hover {
    color: #fff;
    background: rgb(218, 8, 64);
}


@media only screen and (max-width: 600px) {

  .btn-xl {
    padding: 10px 25px;
    font-size: 17px;
    font-weight: 500;
  }

  .btn-lg {
    padding: 10px 16px;
    font-size: 17px;
    font-weight: 500;
  }
}


@media only screen and (min-width: 601px) and (max-width: 768px) {

    .btn-xl {
        padding: 13px 30px;
        font-size: 18px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {

    .btn-xl {
        padding: 10px 30px;
        font-size: 20px;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {

    .btn-xl {
        padding: 12px 35px;
        font-size: 22px;
    }
}

.f-24 {
    font-size: 24px;
}

/* ==========================================================================
Header
 ========================================================================== */



.top-gradient-border {
    height: 6px;
    width: 100%;
    background: linear-gradient(to right, #ffd740, #f86449, #f91450, #673ab6, #26c6da, #00ad94);
    position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
}

.top-navigation a {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

.desktop-nav .nav-link {
    margin-right: 20px;
    font-weight: 500;
}

.desktop-nav .nav-link:hover {
    color: #66FCF1;
}

/* Hamburger menu */
        .hamburger {
            width: 30px;
            height: 24px;
            position: relative;
            cursor: pointer;
            display: inline-block;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #fff;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2) {
            top: 10px;
            width: 60%;
            right:0;
            left:40%;
        }

        .hamburger span:nth-child(3) {
            top: 20px;
        }

        /* Transform to X */
        .hamburger.active span:nth-child(1) {
            top: 10px;
            transform: rotate(135deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            left: -0px;
        }

        .hamburger.active span:nth-child(3) {
            top: 10px;
            transform: rotate(-135deg);
        }

        /* Full screen modal */
        .fullscreen-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #002437;
            z-index: 1050;
            padding-top: 180px;
        }

        /* Keep hamburger visible above modal */
        .mobile-toggle {
            position: relative;
            z-index: 1060;
        }

        .hamburger.active span {
            background: #fff;
        }

        /* Position mobile toggle fixed when menu is active */
        .mobile-toggle.menu-active {
            position: fixed;
            top: 53px;
            right: 10px;
            background: #002437;
            padding: 10px;
            border-radius: 5px;
        }

        .fullscreen-menu.show {
            display: flex;
            flex-direction: column;
            align-items: center;
           /*  justify-content: center; */
        }

        .fullscreen-menu .nav-link {
            font-size: 1.5rem;
            padding: 1rem 0;
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .fullscreen-menu .nav-link:hover {
            color: #0d6efd;
        }

        /* Desktop nav items */
        @media (max-width: 991.98px) {
            .desktop-nav {
                display: none !important;
            }
        }

        @media (min-width: 992px) {
            .mobile-toggle {
                display: none !important;
            }
        }

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }

@media only screen and (max-width: 600px) {
    .top-logo {
        width: 60px;
        height: auto;
    }
}

/* ==========================================================================
Content
 ========================================================================== */

.gradient-text {
    background: linear-gradient(to right, #ffd740, #f86449, #f91450);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.content-top-sm {
    padding-top: 25px;
}
.content-bottom-sm {
    padding-bottom: 25px;
}
.content-top-md {
    padding-top: 50px;
}

.content-bottom-md {
    padding-bottom: 50px;
}

.content-top-lg {
    padding-top: 75px;
}

.content-bottom-lg {
    padding-bottom: 75px;
}

.content-top-xl {
    padding-top: 100px;
}

.content-bottom-xl {
    padding-bottom: 100px;
}

.home-header h1 {
    font-size: 90px;
    font-weight: 800;
    padding-top: 40px;
}

.home-lead-text {
    font-size: 40px;
    font-weight: 300;
    padding-top: 30px;
    letter-spacing: 1px;
}



.work-container {
    padding: 60px 60px 0 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.work-container h3 {
    font-size: 50px;
    font-weight: 700;
    padding-bottom: 20px;
}

.work-container p {
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 20px;
    letter-spacing: 0;
}

.testimonial p {
    font-weight: 300;

    font-size: 40px;
    padding-bottom: 15px;
    letter-spacing: 1px;
}
.testimonial cite {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.testimonial cite span.title {
    font-weight: 300;
    font-size: 20px;
    color: #b3dcf3;
}

@media only screen and (max-width: 600px) {
  
    .content-top-md {
    padding-top: 25px;
    }

    .content-bottom-md {
        padding-bottom: 25px;
    }

    .content-top-lg {
        padding-top: 50px;
    }

    .content-bottom-lg {
        padding-bottom: 50px;
    }

    .content-top-xl {
        padding-top: 50px;
    }

    .content-bottom-xl {
        padding-bottom: 50px;
    }
    .home-header h1 {
        font-size: 50px;
        font-weight: 700;
        padding-top: 0;
    }

    .home-lead-text {
        font-size: 25px;
        font-weight: 300;
        padding-top: 20px;
        letter-spacing: 0.5px;
    }
    .work-container {
        padding: 0 12px 0 12px;
        border-radius: 0px;  
    }

    .work-container h3 {
        font-size: 36px;
        font-weight: 600;
        padding: 16px 0;
        letter-spacing: 0.5px;
    }

    .work-image-container {
        margin-top: 50px;
    }

    .work-container.last{
        margin-bottom: 20px;
    }

    .work-container p {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .testimonial p {
        font-size: 28px;
    }
    .testimonial cite {
        font-size: 24px;
    }

    .testimonial cite span.title {
        font-weight: 300;
        font-size: 20px;
        color: #b3dcf3;
    }
}


@media only screen and (min-width: 601px) and (max-width: 768px) {

   .content-top-md {
    padding-top: 25px;
    }

    .content-bottom-md {
        padding-bottom: 25px;
    }

    .content-top-lg {
        padding-top: 50px;
    }

    .content-bottom-lg {
        padding-bottom: 50px;
    }

    .content-top-xl {
        padding-top: 50px;
    }

    .content-bottom-xl {
        padding-bottom: 50px;
    }

    .home-header h1 {
        font-size: 65px;
        padding-top: 30px;
    }

    .home-lead-text {
        font-size: 34px;
    }

    .work-container {
        padding: 20px 50px 0 50px;
        margin:0 5px 60px 5px;
    }

    .work-container h5 {
        padding-bottom: 10px;
    }

    .work-container h3 {
        font-size: 42px;
        font-weight: 700;
        padding-bottom: 5px;
    }

    .work-container p {
        padding-bottom: 10px;
        line-height: 1.6;
    }

    .work-image-container {
        margin-top: 60px;
    }

    .work-container.last{
        margin-bottom: 20px;
    }

    .testimonial p {
        font-size: 32px;
        letter-spacing: 0.5px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  
    .content-top-md {
       padding-top: 25px;
    }

    .content-bottom-md {
        padding-bottom: 25px;
    }

    .content-top-lg {
        padding-top: 50px;
    }

    .content-bottom-lg {
        padding-bottom: 50px;
    }

    .content-top-xl {
        padding-top: 50px;
    }

    .content-bottom-xl {
        padding-bottom: 50px;
    }

    .home-header h1 {
        font-size: 70px;
        padding-top: 30px;
    }

    .home-lead-text {
        font-size: 36px;
    }

    .work-container {
        padding: 10px 30px 0 30px;
        margin:0 5px 60px 5px;
    }

    .work-container h3 {
        font-size: 36px;
        padding-bottom: 10px;
    }

    .work-container p {
        font-size: 20px;
        padding-bottom: 10px;
    }
    .work-image-container {
        margin-top: 100px;
    }
    .work-container.last{
        margin-bottom: 20px;
    }

    .testimonial p {
        font-size: 32px;
        padding-bottom: 15px;
        letter-spacing: 1px;
    }
    .testimonial cite {
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 20px;
        letter-spacing: 1px;
        color: #fff;
    }

    .testimonial cite span.title {
        font-weight: 300;
        font-size: 20px;
        color: #b3dcf3;
    }
}


@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .home-header h1 {
        font-size: 75px;
        padding-top: 30px;
    }

    .home-lead-text {
        font-size: 36px;
    }

    .work-container {
        padding: 40px 40px 0 40px;
        margin:0 5px 60px 5px;
    }
    .work-container h3 {
        font-size: 45px;
        padding-bottom: 10px;
    }
    .work-container p {
        padding-bottom: 10px;
    }
    .work-image-container {
        margin-top: 60px;
    }

    .work-container.last{
        margin-bottom: 20px;
    }
}

.inner-page-header h1 {
    font-size: 80px;
    font-weight: 800;
    padding-top: 40px;
}

.inner-page-header p{
    font-size: 36px;
    font-weight: 300;
    padding-top: 30px;
    letter-spacing: 1px;
}

.experience-row {
    padding: 40px  0;
    border-top: 1px solid #59798B;
}

.experience-row .date{
  font-size: 22px;  
}

.experience-row .company{
  color: #B3DCF3;
  font-size: 20px;  
}

.experience-row p{
  padding-top: 20px;
  
}

.contact-form .row {
    margin-bottom: 50px;
}

.contact-form .row.textarea-row{
    margin-bottom: 20px;
}

.contact-form label{
  display: block;
  margin-bottom:0;
}
.contact-form input,
.contact-form textarea{
    border: #59798B solid 2px;
    border-radius: 10px;
    background: #033049;
    color: #fff;
    margin-top:10px;
}

.contact-form input{
  height: 70px;
}

.contact-form textarea{
    height: 200px;
}

.contact-form span.required{
   color:#F31553;
}

@media only screen and (max-width: 600px) {
  
  .inner-page-header h1 {
    font-size: 50px;
    padding-top: 0px;
    }

    .inner-page-header p{
        font-size: 25px;
        padding-top: 20px;
    }

    .experience-row .date{
        font-size: 20px;  
    }

    .experience-row .company{
    font-size: 18px;  
    }

    .experience-row h3{
      padding: 10px 0 4px 0;
    
    }

    .experience-row p{
    padding-top: 20px;    
    }

    .contact-form .row {
    margin-bottom: 0;
    }
    .contact-form input{
       height:60px;
       margin-bottom: 30px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 768px) {
  .inner-page-header h1 {
        font-size: 65px;
        padding-top: 30px;
    }

    .inner-page-header p{
        font-size: 30px;
    }

   .experience-row h3{
      padding: 10px 0 4px 0;    
    }

    .experience-row .date{
    font-size: 20px;  
    }

    .experience-row .company{
    font-size: 18px;  
    }

     .contact-form .row {
    margin-bottom: 0;
    }
    .contact-form input{
       height:60px;
       margin-bottom: 30px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .inner-page-header h1 {
        font-size: 70px;
        padding-top: 0;
    }

    .inner-page-header p{
        font-size: 32px;
    }

    .experience-row h3{
      padding: 10px 0 4px 0;    
    }

    .experience-row .date{
    font-size: 20px;  
    }

    .experience-row .company{
    font-size: 20px;  
    }
    .contact-form .row {
       margin-bottom: 30px;
    }

    .contact-form input{
       height:60px;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .inner-page-header h1 {
        font-size: 75px;
        padding-top: 20px;
    }

    .inner-page-header p{
        font-size: 34px;
    }
    .experience-row .date{
    font-size: 22px;  
    }

    .experience-row .company{
    color: #B3DCF3;
    font-size: 20px;  
    }
    .contact-form .row {
       margin-bottom: 40px;
    }
}

.case-study-header h1 {
    font-size: 75px;
    font-weight: 800;
    padding-top: 40px;
}

.case-study-header p {
    font-size: 30px;
    font-weight: 300;
    padding-top: 30px;
    letter-spacing: 1px;
}



p.meta {
    font-size: 20px;
    padding-top: 0px;
    letter-spacing: 0.5px;
}

.case-study h3{
    font-size:45px;
    font-weight: 700;
    padding-bottom: 30px;
    letter-spacing: -0.5px;
}

.case-study h4{
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.case-study p{
    padding-bottom: 20px;
}

.case-study ul{
    padding-left: 40px;
}

.case-study li{
     font-size: 26px;
    color: #fff;
    font-weight: 200;
    line-height: 1.6;
    letter-spacing: 1px;
    padding-bottom: 20px;
}

.coloured-bg-text h3,
.coloured-bg-text p,
.coloured-bg-text li {
    color: #002437;
}

.coloured-bg-text p,
.coloured-bg-text li{
    font-weight: 400;
    letter-spacing: 0px;
}
.ratings img{
    margin-bottom: 30px;
}

.grid-images img{
            margin-bottom: 30px;
}


@media only screen and (max-width: 600px) {
    
    .case-study-header h1 {
        font-size: 45px;
        padding-top: 0;
        }
    
        .case-study-header p {
            font-size: 25px;
            padding-top: 20px;
            padding-bottom: 0;
        }
    
        p.meta {
            font-size: 16px;
        }

        .meta-company {
            display: block;
            margin-bottom: 10px;
        }
    
        .case-study h3{
            font-size:32px;
        }
    
        .case-study h4{
            font-size:24px;
        }
    
        .case-study p{
            font-size:20px;
        }
    
        .case-study li{
            font-size:20px;
        }
        .ratings img.last-image{
            margin-bottom: 0px;
        }
    }
@media only screen and (min-width: 601px) and (max-width: 768px) {
    .case-study-header h1 {
        font-size: 55px;
        padding-top: 30px;
        }
    
        .case-study-header p {
            font-size: 28px;
        }
    
        p.meta {
            font-size: 18px;
        }
    
        .case-study h3{
            font-size:36px;
        }
    
        .case-study h4{
            font-size:26px;
        }
        .grid-images img{
            margin-bottom: 30px;
        }
    }

@media only screen and (min-width: 769px) and (max-width: 992px) {

    .case-study-header h1 {
        font-size: 60px;
        padding-top: 30px;
        }
    
        .case-study-header p {
            font-size: 30px;
        }
    
        p.meta {
            font-size: 19px;
        }
    
        .case-study h3{
            font-size:38px;
        }
    
        .case-study h4{
            font-size:28px;
        }

        .case-study p{
            padding-bottom: 15px;
        }
        .grid-images img{
            margin-bottom: 30px;
        }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
    
    .case-study-header h1 {
        font-size: 65px;
        padding-top: 20px;
        }
    
        .case-study-header p {
            font-size: 30px;
        }
         p.meta {
            font-size: 22px;
        }

        .case-study h3{
            font-size:38px;
        }
}




 
.above-footer-gradient {
    width: 100%;
    background: linear-gradient(to right, #033049, #0a3953);
}

/* ==========================================================================
Footer
 ========================================================================== */

.footer-gradient-border {
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, #ffd740, #f86449, #f91450, #673ab6, #26c6da, #00ad94);
}
.footer-links {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    list-style: none;
    padding-left: 30px;
}

.footer-links li {
    display: inline;
    margin-right: 20px;
}

.footer-links li a {
    color: #b3dcf3;
}

footer p {
    font-size: 14px;
    color: #637e8e;
    margin: 0;
    padding-left: 30px;
}

.social-links {
    list-style: none;
    padding-left: 0;
    padding-top: 8px;
    float: right;
}

.social-links li {
    display: inline;
    margin-right: 20px;
}

@media only screen and (max-width: 600px) {
    .footer-container {
        padding-top: 30px;
    }

    .footer-logo {
        width: 50px;
        height: auto;
    }

    .footer-links {
        margin-top: 20px;
        padding-left: 0;
    }
    footer p {
        padding-left: 0;
    }
    .social-links {
        float: left;
        padding-top: 20px;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 601px) and (max-width: 768px) {
    .footer-container {
        padding-top: 40px;
    }
     .footer-links {
        padding-left: 0;
    }
    footer p {
        padding-left: 0;
    }
} 

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .footer-container {
        padding-top: 40px;
    }

    .footer-links {
        padding-left: 0;
    }
    footer p {
        padding-left: 0;
    }
}
