@import "../font/cambon/stylesheet.css";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');

@font-face {
    font-family: 'Manrope', sans-serif;
}
@font-face {
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
}
html{
    scroll-behavior: smooth;
    background-color: #FFFFFF;
    overflow: visible;
}

h1{
    font-size: 3.375rem;
    font-family: "Cambon";
    letter-spacing: 0.2pt;
    font-weight: 600;
    line-height: 4.188rem;
}

h2{
    font-size: 2.813rem;
    font-family: "Cambon";
    letter-spacing: 0.2pt;
    font-weight: 600;
    line-height: 3.5rem;
}

h3{
    font-size: 2rem;
    font-family: "Cambon";
    letter-spacing: 0.2pt;
    line-height: 2.5rem;
}

h4{
    font-size: 1.5rem;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.2pt;
    font-weight: 500;
}

h5{
    font-size: 0.875rem;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 4pt;
    line-height: 1.063rem;
    margin-bottom: 10px;
}

p{
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.2pt;
    line-height: 1.294rem;
    color: #616365;
}

.typeWriter{
    font-size: 2.813rem;
    font-family: "Cambon";
    letter-spacing: 0.2pt;
    font-weight: 600;
    line-height: 3.5rem;
}

a{
    font-family: 'Manrope', sans-serif;
}

.btn{
    font-family: 'Manrope', sans-serif;
    min-width: 150px;
}

.text-blue{
    color: #052460 !important;
}

.text-white{
    color: #FFFFFF;
}

.text-yellow{
    color: #FEBE10;
}

.btn-blue{
    background-color: #052460;
    border: 2px solid #052460;
    color: #FFFFFF;
}

.btn-blue:hover{
    background-color: transparent;
    border: 2px solid #052460;
    color: #052460;
}

.btn-white{
    background-color: #FFFFFF;
    border: 2px solid #052460;
    color: #052460;
}

.btn-white:hover{
    background-color: #052460;
    color: #FFF;
}

.btn-yellow{
    background-color: #FEBE10;
    border: 2px solid #FEBE10;
    color: #052460;
}

.btn-yellow:hover{
    background-color: transparent;
    color: #FEBE10;
    border: 2px solid #FEBE10;
}

.btn-navbar{
    border-radius: 20px;
}

a{
    text-decoration: none !important;
}

.py-6{
    padding-top: 4rem;
    padding-bottom: 4rem;
}

#navbar{
    width: 100%;
    position: fixed;
    z-index: 9999;
}

.navbar-text{
    color: #FFF;
    display: inline-block;
    margin: 0;
}
.navbar-text:hover{
    color: #FFF;
}
.navbar-text::after{
    display:block;
    content: '';
    border-bottom: solid 3px #FFFFFF;  
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
    transform-origin: 0% 50%; 
}
.navbar-text.active{
    border-bottom: solid 3px #FFFFFF;
}
.navbar-text:hover::after{
    transform: scaleX(1);
    transform-origin: 0% 50%;
}


.navbar-text-blue{
    color: #052460;
    display: inline-block;
    margin: 0;
}
.navbar-text-blue.active{
    border-bottom: solid 3px #052460;
}
.navbar-text-blue:hover{
    color: #052460;
}
.navbar-text-blue:not(.active)::after{
    display:block;
    content: '';
    border-bottom: solid 3px #052460;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    transform-origin: 0% 50%;
}

.navbar-text-blue:hover::after{
    transform: scaleX(1);
    transform-origin: 0% 50%; 
}

.navbar ul{
    padding-inline-start: 0 !important;
}

.navbar-shrink{
    height: 60px;
    /* height: 600px; */
    background-color: #FFF;
    /* transition: all 0.1s; */
    box-shadow: 0px 3px 10px 1px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 3px 10px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 3px 10px 1px rgba(0,0,0,0.1);
}

.navbar-shrink .navbar{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.navbar-shrink .navbar-text{
    color: #052460;
}

.navbar-logo-shrink{
    width: 180px !important;
}

.navbar-logo{
    width: 250px;
    transition: all .4s ease;
}

/* hamburger btn */
.navbar-toggler {
    position: relative; /* -=TS*=-  */
    display: block;
    background: transparent;
    cursor: pointer;
    outline: none;
    border: none;
    z-index: 5;
  }
  
  /* -= btn lines =- */
  .navbar-toggler .line {
    display: block;
    margin: 10px auto;
    width: 30px;
    height: 1px;
    background-color: #FFF;
    transition: all 0.2s linear;
  }
  
  .navbar-toggler.is-active .line:nth-child(2) {
    opacity: 0;
  }
  
  /* -= id0 =- */
  #navbar-toggler0.is-active .line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  #navbar-toggler0.is-active .line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

.dropdown-megamenu{
    padding: 30px 0;
    width: 100% !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    border: none !important;

    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
}

.dropdown-title{
    height: 30px;
    list-style: none;
}

.dropdown-title h5{
    color: #052460;
}

.dropdown-item{
    white-space: inherit;
}

.dropdown-item:hover{
    background-color: transparent;
}

.dropdown-digital-marketing{
    margin-top: 0 !important;
    right: 350px !important;
    left: auto !important;
    /* border-top: none; */
    border: none;
    border-radius: 0 !important;

    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
}

.dropdown-about-us{
    margin-top: 0 !important;
    right: 290px !important;
    left: auto !important;
    /* border-top: none; */
    border: none;
    border-radius: 0 !important;

    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
}



.dropdown-digital-marketing .dropdown-item, .dropdown-about-us .dropdown-item{
    padding: 0.25rem 2rem;
}

.slideUp{
    animation: slideInAnimation .4s ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.slideUp:nth-child(1) {opacity: 0; animation-delay: 0.0s;}
.slideUp:nth-child(2) {opacity: 0; animation-delay: 0.1s;}
.slideUp:nth-child(3) {opacity: 0; animation-delay: 0.2s;}
.slideUp:nth-child(4) {opacity: 0; animation-delay: 0.3s;}

@keyframes slideInAnimation {
    0% {
        opacity: 0;
        transform: translateY(5px);

    }
    100% {
        opacity: 1;
        transform: translateY(0px);
     }
}

.modal-content{
    background-color: #052460;
}

.modal-header{
    border: none;
}
.modal-logo{
    width: 200px;
}
.modal-body-content{
    position: relative;
    transform: translateY(-50%);
    top: 50%;
}
.modal-footer{
    border: none;
    justify-content: flex-start;
}
.modal-copyright-text{
    font-size: 12px;
    line-height: 15px;
    color: #B3B3B3;
}
.mobile-modal-text.active{
    border-bottom: solid 3px #FFFFFF;
}

.under {
    text-decoration: underline;
  }

#dm-banner{
    padding-top: 15vh;
}

.mt-n1 {
    margin-top: -0.25rem !important;
}

.mt-n2 {
    margin-top: -0.5rem !important;
}

.mt-n3 {
    margin-top: -1rem !important;
}

.mt-n4 {
    margin-top: -1.25rem !important;
}

.mt-n5 {
    margin-top: -1.5rem !important;
}

.mt-n6 {
    margin-top: -2rem !important;
}

.case-study-img{
    border-radius: 15px;
}

.mobile-footer-copyright{
    font-size: 14px;
}

/* Start - Submit Modal */
.success-modal {
    z-index: 99999 !important;
}

#submit-modal .modal-content{
    border: none;
    border-radius: 0;
    background-color: transparent;
}

#submit-modal .modal-header {
    background-color: #FEBE10;
}

#submit-modal .modal-header img {
    width: 60%;
}

#submit-modal .modal-body {
    background-color: #fff;
}

#submit-modal .modal-footer{
    background-color: #fff;
}
/* End - Submit Modal */

.navbar button{
    border: none;
    box-shadow: none !important;
    outline: none !important;
}
.banner-container{
    background-color: #052460;
}

.banner-container .container{
    padding-top: 10rem;
}

.banner-text{
    padding-top: 5rem;
}

.banner-text p{
    max-width: 90%;
}

.what-we-offer-slider{
    margin-top: 60px;
}

#what-we-offer{
    margin-top: 80px;
}

.what-we-do-best p{
    max-width: 80%;
}

.what-we-offer-image img{
    background-color: #F7F5F2;
}

.what-we-offer-text{
    padding: 20px 0 0 20px;
}

.what-we-offer-text h3{
    color: #454545;
    font-weight: 300;
}

.what-we-offer-slider .tns-nav{
    margin-top: 20px;
}

.customize-tools .controls{
    z-index: 1;
}

#responsive .tns-item{
    padding: 0 10px !important;
}

#our-portfolio{
    margin-top: 80px;
}

.brands-and-organisations p{
    max-width: 80%;
}

.portfolio-container .tns-nav{
    margin-top: 20px;
}

.portfolio-slider-image img {
    width: 140px !important;
    margin: 0 auto !important;
    display: block;
}

#hire-us-footer{
    margin-top: 80px;
    background-color: #052460;
}

#hire-us-footer .container{
    padding-top: 80px;
    padding-bottom: 80px;
}

.company-address{
    max-width: 300px;
}
.google-cert-badge{
    max-width: 150px;
}
.footer-copyright-desktop{
    color: #B3B3B3 !important;
}
.user-box{
    position: relative;
}

.user-box input{
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #FFF;
    width: 100%;
    color: #FFF;
    outline: none;
}

.user-box label{
    font-size: 14px;
    position: absolute;
    left: 12px;
    top: 0;
    color: #FFF;
    pointer-events: none;
    transition: .2s ease;
}

#policy-error.error{
    display: block !important;
    color: red !important;
}
.user-box label.error{
    top: 30px !important;
    color: red !important;
}

.user-box input:focus ~ label:not(.error),
.user-box input:valid ~ label:not(.error){
    top: -20px;
    font-size: 12px;
}

.question-box{
    position: relative;
}

.question-box textarea{
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #FFF;
    width: 100%;
    color: #FFF;
    outline: none;
}

.question-box label{
    font-size: 14px;
    position: absolute;
    left: 12px;
    top: 25px;
    color: #FFF;
    pointer-events: none;
    transition: .2s ease;
}

.question-box textarea:focus ~ label,
.question-box textarea:not(:placeholder-shown) ~ label{
    top: -20px;
    font-size: 12px;
    border: 0;
}

.company-footer-logo{
    max-width: 300px;
}

.company-footer-logo .footer-copyright{
    font-size: 12px !important;
    line-height: 1.3 !important;
}

.footer-logo{
    width: 100%;
}
/** Start Job Application Page **/
#join-us{
    margin-top: 80px;
    margin-bottom: 80px;
}

#join-us-footer{
    background-color: #052460;
}

#join-us-footer .container{
    padding-top: 80px;
    padding-bottom: 80px;
}
.career-container a{
    position: relative;
}
.career-container h3{
    color: #454545;
}
.career-container svg{
    position: absolute;
}
.career-container span{
    position: relative;
    left: 25px;
    top: -3px;
}
.responsibilities-list{
    padding-left: 18px;
}
.responsibilities-list li{
    color: #616365;
    padding-bottom: 0.5rem;
}
.requirement-list{
    padding-left: 18px;
}
.requirement-list li{
    color: #616365;
    padding-bottom: 0.5rem;
}
.user-box select{
    background-color: transparent;
    border: none;
    color: #FFF;
    border-bottom: 1px solid #FFF;
    width: 100%;
    outline: none;
    font-size: 14px;
}
.user-box select option{
    color: #000 !important;
}
.upload-box{
    background-color: transparent;
    color: #FFF;
    position: relative;
}
.upload-box input{
    visibility: hidden;
    position: absolute;
    font-size: 10px;
}
.upload-box label{
    display: block;
    border-bottom: 1px solid #FFF;
}
.upload-box svg{
    position: relative;
    right: 15px;
    fill: currentColor;
    top: -5px;
}
.upload-box span{
    position: relative;
    top: -5px;
    display: inline-block;
    width: 90%;
    font-size: 14px;
}
.disclaimer-text{
    font-size: 12px;
    color: #FFF;
}

.upload-box label.error{
    border: none;
    color: red;
    pointer-events: none;
}
/** End Job Application Page **/

/** Start Contact Us Page**/
#contact-us{
    padding-top: 15vh;
}
#contact-us .user-box input{
    color: #000;
    border-bottom: 1px solid #000;
}
#contact-us .user-box label{
    color: #000;
}
#contact-us .question-box textarea{
    border-bottom: 1px solid #000;
    color: #000;
}
#contact-us .question-box label{
    color: #000;
}
.company-details a{
    color: #000;
}
.company-details .company-clickable:hover{
    text-decoration: underline !important;
}
.company-details h4{
    max-width: 300px;
}
.selective-checkbox{
    cursor: pointer;
}
.selective-checkbox span{
    border: 1px solid #C4C4C4;
    border-radius: 20px;
    padding: 8px 21px;
    color: #C4C4C4;
    margin-right: 15px;
    display: block;
    margin-bottom: 15px;
}
.selective-checkbox input{
    visibility: hidden;
    position: absolute;
}
.selective-checkbox input:checked ~ span{
    border: 1px solid #052460;
    color: #052460;
}
#subject-error-message{
    display: block;
    color: red;
}
.svg-icon{
    width: 40px;
}
.gmap-icon{
    margin-left: 25px;
}
#looking-for-job{
    margin-top: 80px;
    background-color: #FEBE10;
}
.join-us-button a{
    margin-top: 15%;
}
#contact-us-footer{
    background-color: #052460;
}
.contact-us-footer-details .footer-logo{
    max-width: 300px;
}
.contact-us-footer-details .company-address{
    max-width: 300px;
}
.contact-us-footer-details .footer-copyright{
    font-size: 12px !important;
    line-height: 1.3 !important;
    color: #B3B3B3;
}
.contact-us-footer-mobile .footer-copyright{
    font-size: 14px !important;
}
.contact-us-footer-mobile .company-code{
    font-size: 12px !important;
}
/** End Contact Us Page**/

/** Start Our Service Page **/
.our-service {
    padding-top: 15vh;
    margin-bottom: 80px;
}
.our-service-rows {
    margin-top: 100px;
}
.our-service-rows a {
    text-decoration: none;
    color: #000;
    margin-left: 2rem;
    font-family: 'Manrope', sans-serif;
}
.our-service-rows-hyperlink {
    border-left: solid #d6d6d6 2px;
}
.our-service lottie-player{
    width: 90%;
    margin: 0 auto;
}
.our-service-border-bottom {
    border-bottom: 1px solid #fff;
    margin: 0.6rem 0;
}
.our-service-rows h2 {
    color: #052460;
    font-size: 44px;
    text-align: left;
}
our-service-rows-img-right {
    padding-left: 6rem;
}

/** End Our Service Page **/

/* Start About Us Page */
#about-us {
    padding-top: 15vh;
}
#who-we-are {
    margin-top: 100px;
}
#why-choose-us {
    margin-top: 100px;
}
.controls-next-prev-arrow-img{
    width: 50px !important;
    height: 50px !important;
}
#communication {
    background-color: #052460;
    margin-top: 80px;
}
.hexagon-top {
    width: 0;
    border-bottom: 30px solid #FEBE10;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
}
.hexagon-content {
    width: 104px;
    height: 60px;
    background-color: #FEBE10;
}
.hexagon-bottom {
    width: 0;
    border-top: 30px solid #FEBE10;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
}
.hexagon-content h5 {
    letter-spacing: 0;
}
#testimonials {
    margin-top: 80px;
}
.testimonial-container{
    width: 65%;
}
.testimonials-position {
    position: relative;
}
.testimonials-position::before {
    position: absolute;
    content: "“";
    font-size: 13.875rem;
    font-family: 'Cambon';
    font-weight: 600;
    left: -10rem;
    top: -6rem;
    color: #052460;
}
.controls-txt-slider {
    cursor: pointer;
}
#looking-for-job{
    margin-top: 80px;
    background-color: #FEBE10;
}
.join-us-button a{
    margin-top: 15%;
}
#hire-us-footer .border-bottom {
    border-bottom: 1px solid #fff;
    
}
#life-at-hive {
    margin-top: 80px;
}
.life-at-hive-img{
    width: auto !important;
    height: 400px !important;
}
.life-at-hive-slider-control{
    margin-top: 20px;
    background-color: transparent !important;
    border: none !important;
}
.life-at-hive-prev-btn{
    /* transform: scaleX(-1); */
    width: 73px;
    height: 30px;
    background: url("../images/arrows_svg/arrow-gray.svg") no-repeat;
    display: inline-block;
    background-size: 100% !important;
}
.life-at-hive-next-btn{
    width: 73px;
    height: 30px;
    background: url("../images/arrows_svg/arrow-yellow.svg") no-repeat;
    display: inline-block;
    background-size: 100% !important;
}
/* End About Us Page */

/* Start Careers Page */
#careers {
    padding-top: 15vh;
}
#new-talents {
    margin-top: 80px;
}
#new-talents h4 {
    min-height: 70px;
}
#new-talents img {
    width: 120px;
    height: 120px;
}
#life-at-hnn {
    margin-top: 80px;
}
#career-jobs {
    margin-top: 80px;
}
#career-jobs h3{
    min-height: 100px;
}
.customize-tools-career-slider{
    position: absolute;
    width: 100%;
    z-index: 99;
}
#career .controls-txt-slider{
    position: relative;
    top: 45%;
}
#career .controls-txt-slider li{
    position: absolute;
    top: 50%;
}
#career .controls-txt-slider .prev-arrow{
    left: 0;
    padding-left: 15px;
}
#career .controls-txt-slider .next-arrow{
    right: 0;
    padding-right: 15px;
}
#ideal-position {
    margin-top: 80px;
    background-color: #FEBE10;
}
/* End Careers Page */

/* Start Privacy Page */
#privacy-policy{
    padding-top: 15vh;
}

#privacy-policy p,
#privacy-policy h4{
    color: #000 !important;
}
/* End Privacy Page */

/* Start SEO Page */

#need-of-seo {
    margin-top: 100px;
}

.need-of-seo-pill{
    width: auto;
    height: 100px;
    border: solid 2px;
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.2pt;
    line-height: 1.294rem;
    color: #616365;
}

.seo-controls{
    list-style: none;
}
.seo-controls li{
    position: absolute;
    z-index: 99;
    margin-top: 20px;
    padding: 12px 20px;
    cursor: pointer;
}

.seo-controls li:hover{
    background-color:#F7F5F2;
}

.seo-controls li.prev{
    left: 0;
    padding-left: 15px;
}

.seo-controls li.next{
    right: 0;
    padding-right: 15px;
}

.tns-nav{
    margin-top: 20px;
}

#what-we-can-do {
    margin-top: 80px;
}

#why-choose-us-seo{
    margin-top: 50px;
}

#our-approach {
    margin-top: 80px;
}
#our-approach h4 {
    min-height: 70px;
}
#our-approach img {
    width: 120px;
    height: 120px;
}

#why-choose-us-seo{
    background-color: #052460;
}

#why-choose-us-seo .container{
    margin-top: 50px;
}

.card-first-page-ranking{
    border-radius: 10px;
    border-bottom: solid 10px #FEBE10;
}

.case-study-list{
    padding-left: 27px;
}
.case-study-list li{
    color: #FFFFFF;
}

#request-audit {
    background-color: #FEBE10;
    height: auto;
}

.input-audit{
    margin-top: 20px;
}

.input-audit form{
    background-color: transparent;
    border: transparent;
}

.input-audit input{
    height: 40px;
}

#seo-url-error-message{
    color: red !important;
    margin-left: 10px !important;
}

#seo-email-error-message{
    color: red !important;
    margin-left: 10px !important;
}

.submit{
    position: relative;
    bottom: 12px;
}

#blogs .card{
    border: solid 1px #052460;
}

/* End SEO Page */

/* Start Google Ads Page */

#why-choose-us-g-ads{
    margin-top: 50px;
    background-color: #052460;
}

#why-choose-us-g-ads .container{
    margin-top: 50px;
}
#why-choose-us-g-ads .case-study-img{
    width: 90%;
    margin-left: 50px;
}

.need-of-google-ads-pill{
    width: auto;
    height: 100px;
    border: solid 2px;
    font-size: 20px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.2pt;
    line-height: 1.294rem;
    color: #616365;
}

.google-ads-controls{
    list-style: none;
}
.google-ads-controls li{
    position: absolute;
    z-index: 99;
    margin-top: 20px;
    padding: 12px 20px;
    cursor: pointer;
}

.google-ads-controls li:hover{
    background-color:#F7F5F2;
}

.google-ads-controls li.prev{
    left: 0;
    padding-left: 15px;
}

.google-ads-controls li.next{
    right: 0;
    padding-right: 15px;
}

.tns-nav{
    margin-top: 20px;
}

.leverage-row img{
    margin-top: 35px;
}

/* End Google Ads Page */

/* Start SMM Page */

#business-issues{
    margin-top: 100px;
}

#why-choose-us-smm {
    background-color: #FEBE10;
    height: auto;
    margin-top: 50px;
}

.smm-carousel-control{
    margin-top: 20px;
    background-color: transparent !important;
    border: none !important;
}

.smm-prev-btn{
    transform: scaleX(-1);
    width: 73px;
    height: 30px;
    background: url("../images/arrows_svg/arrow-blue.svg") no-repeat;
    display: inline-block;
    background-size: 100% !important;
}
.smm-prev-btn:hover{
    background: url("../images/arrows_svg/arrow-white.svg") no-repeat;
    display: inline-block;
    background-size: 100% !important;
}

.smm-next-btn{
    width: 73px;
    height: 30px;
    background: url("../images/arrows_svg/arrow-blue.svg") no-repeat;
    display: inline-block;
    background-size: 100% !important;
}
.smm-next-btn:hover{
    background: url("../images/arrows_svg/arrow-white.svg") no-repeat;
    display: inline-block;
    background-size: 100% !important;
}

#why-choose-us-smm .carousel{
    margin-left: 50px;
}
.carousel-item-img{
    width: 80%;
}

/* End SMM Page */

/* Start Email Page */

/* ------------------------------------- */

/* End Email Page */

/* Start Blogs Page */

.secret-list{
    padding-left: 27px;
}

.secret-list li{
    color: black;
}


/* End Blogs Page */

/* Start Ecommerce Page */

#why-you-need-ecommerce {
    margin-top: 80px;
}

.why-you-need-ecommerce-list{
    padding-left: 27px;
}

.why-you-need-ecommerce-list li{
    color: black;
}

#why-choose-us-ecommerce{
    background-color: #052460;
    margin-top: 80px;
}

#why-choose-us-ecommerce .card{
    border: solid 1px #052460;
    background-color: #052460;
}

#why-choose-us-ecommerce .card-title{
    align-items: center !important;
    height: 80px;
}

/* End Ecommerce Page */

/* Start Corporate Page */

#get-a-quote{
    background-color: #FEBE10;
}

.corporate-card{
    background-color: transparent;
    border-color: transparent;
}

/* End Corporate Page */

@media screen and (max-width: 1199.98px) {
    h1{
        font-size: 2.813rem;
        line-height: 2.938rem;
    }
    
    h2{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    h3{
        font-size: 1.5rem;
        line-height: 1.75rem;
    }
    h4{
        font-size: 1.313rem;
        line-height: 1.563rem;
    }
    
    .typeWriter{
        min-height: 130px;
    }
    
    .banner-text{
        padding-top: 0;
    }
    
    .what-we-offer-text h3{
        min-height: 55px;
    }
    #new-talents h4 {
        min-height: 100px;
    }
    
    #hear-from-you h3 {
        min-height: 80px;
    }

    .need-of-seo-pill, .need-of-google-ads-pill{
        width: auto;
        height: 100px;
        border: solid 2px;
        font-size: 18px;
        font-family: 'Manrope', sans-serif;
        letter-spacing: 0.2pt;
        line-height: 1.15rem;
        color: #616365;
    }

    .leverage-row {
        flex-direction: column;
        align-items: center;
    }

    .leverage-row img{
        margin-top: 0;
    }

    .boost-row img{
        margin-top: 30px;
    }
    
    .email-row img{
        margin-top: 35px;
    }

    .secret-row img{
        margin-top: 35px;
    }

}

@media screen and (max-width: 991.98px) {
    #navbar{
        background-color: #052460;
    }
    .navbar-shrink .navbar-text{
        color: #FFF;
    }
    .navbar .container-fluid{
        padding: 0;
    }
    .navbar .navbar-brand{
        padding-left: 1rem;
    }
    .navbar-nav{
        position: relative;
        min-height: calc(100% - 153.41px - 2rem);
        margin-top: 30px;
    }
    .nav-item a{
        width: 100%;
        font-size: 22px;
        color: #FFF !important;
    }
    .navbar-arrow{
        height: 20px !important;
        position: relative;
        bottom: 5px;
    }
    .navbar-collapse{
        overflow-y: scroll;
        overflow-x: hidden;
        transition: all .2s ease-out;
    }

    .navbar-collapse.collapsing{
        height: 0 !important;
    }
    .navbar .navbar-collapse{
        background-color: #052460;
        height: calc(100vh - 3rem);
        padding: 0 1rem;

    }
    .navbar-text, .navbar-text-blue{
        position: relative;
    }
    .navbar-text-blue:not(.active)::after{
        border-bottom: solid 3px #FFF;
    }
    .navbar-text-blue.active{
        border-bottom: solid 3px #FFF;
    }

    .arrow:before{
        content: '';
        width: 20px;
        height: 20px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-image: url('../images/arrow-right(white).svg');
        background-size: 20px;
        transition: all 0.4s ease;
        transform-origin: center;
    }

    .arrow.show:before{
        transform: rotateZ(90deg);
	    transform-origin: 75% 25% 0px;
    }

    .dropdown-megamenu, .dropdown-digital-marketing, .dropdown-about-us{
        box-shadow: 0 0;
        -webkit-box-shadow: 0 0;
        -moz-box-shadow: 0 0;
    }
    .dropdown-menu{
        padding: 0;
        background-color: #052460;
        border: none !important;
        border-radius: 0 !important;
    }

    .dropdown-title h5{
        color: #FEBE10;
    }

    .dropdown-item{
        padding: 0.25rem 0;
    }
    .dropdown-digital-marketing .dropdown-item, .dropdown-about-us .dropdown-item{
        padding: 0.25rem 0;
    }
    .dropdown-item a{
        font-size: 16px;
    }
    .dropdown-item a:hover{
        color: #FFF;
    }



    .banner-container .container{
        padding-top: 10rem;
    }
    .navbar-logo{
        width: 180px;
    }
    .company-footer-logo .footer-logo{
        max-width: 300px;
    }
    
    .contact-us-footer-logo .footer-logo{
        max-width: 200px
    }
    
    .typeWriter{
        min-height: 0;
    }
    
    .join-us-button a{
        margin-top: 5%;
    }
    .btn-navbar{
        min-width: 100px !important;
    }
    .btn-yellow{
        width: 100%;
    }
    #new-talents h4 {
        min-height: 0;
    }
    #hear-from-you h3{
        min-height: 0;
    }
    .testimonials-position::before {
        top: 20px;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 6.875rem;
    }
    .testimonial-container{
        width: 100%;
    }
    
    .approach-desc p{
        position: relative;
        bottom: 20px;
    }

    #why-choose-us-seo{
        margin-top: 0;
    }

    .case-study-row{
        flex-direction: column;
        align-items: center;
    }

    .case-study{
        margin-top: 40px;
    }

    .case-study-list li{
        color: #FFFFFF;
        text-align: start;
    }

    #bottom-approach{
        position: relative;
        bottom: 30px;
    }

    .input-audit .d-flex{
        flex-direction: column;
    }

    .input-audit input{ 
        margin: 10px 0 !important;
    }

    #seo-url-error-message{
        color: red !important;
        margin-left: 10px !important;
        position: relative;
        bottom: 10px !important;
    }
    
    #seo-email-error-message{
        color: red !important;
        margin-left: 10px !important;
        position: relative;
        bottom: 10px !important;
    }

    .submit{
        margin-top: 20px;
    }

    .need-of-seo-pill, .need-of-google-ads-pill{
        width: auto;
        height: 100px;
        border: solid 2px;
        font-size: 18px;
        font-family: 'Manrope', sans-serif;
        letter-spacing: 0.2pt;
        line-height: 1rem;
        color: #616365;
    }

    #need-of-google-ads{
        margin-top: 50px;
    }

    .case-study-row-g-ads{
        flex-direction: column;
        align-items:center;
    }

    .case-study-g-ads{
        margin-top: 40px;
    }

    #why-choose-us-g-ads .case-study-img{
        margin-left: 0;
    }

    #why-choose-us-smm .carousel{
        margin-left: 0;
    }

    .carousel-item-img{
        width: 90%;
    }

    .card-results-row{
        min-height: 0;
    }

    .boost-row {
        flex-direction: column;
        align-items: center;
    }

    .boost-row img{
        margin-top: 0;
    }

    .email-row {
        flex-direction: column;
        align-items: center;
    }

    .email-row img{
        margin-top: 0;
    }

    .secret-row {
        flex-direction: column;
        align-items: center;
    }

    .secret-row img{
        margin-top: 0;
    }

    .secret-list li{
        text-align: start;
    }

}

@media screen and (max-width: 767.98px) {
    .navbar-logo{
        width: 200px;
    }
    .navbar-logo-container{
        margin: 0 auto;
    }
    .typeWriter{
        min-height: 130px;
    }
    .btn-fullwidth{
        width: 100%;
    }

    #blogs .card-group{
        display: flex;
        flex-flow: column;
        width: 80%;
    }

    #blogs .card{
        margin-bottom: 30px;
    }

    .input-audit .d-flex{
        flex-direction: column;
    }

    .input-audit input{ 
        margin: 10px 0 !important;
    }

    #seo-url-error-message{
        color: red !important;
        margin-left: 10px !important;
        position: relative;
        bottom: 10px !important;
    }
    
    #seo-email-error-message{
        color: red !important;
        margin-left: 10px !important;
        position: relative;
        bottom: 10px !important;
    }

    .submit{
        margin-top: 20px;
    }

    .need-of-seo-pill, .need-of-google-ads-pill{
        width: auto;
        height: 100px;
        border: solid 2px;
        font-size: 18px;
        font-family: 'Manrope', sans-serif;
        letter-spacing: 0.2pt;
        line-height: 1rem;
        color: #616365;
    }

    .case-study-row-g-ads{
        flex-direction: column;
        align-items:center;
    }

    .case-study-g-ads{
        margin-top: 40px;
    }
    
}
@media screen and (max-width: 575.98px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .navbar-logo{
        width: 180px;
    }
    .modal-logo{
        width: 180px;
    }
    #hear-from-you .controls-next-prev-arrow-img {
        width: 30px !important;
        height: 30px !important;
    }
    
    #hear-from-you .controls-txt-slider .prev-arrow{
        left: 0;
        padding-left: 0;
    }
    #hear-from-you .controls-txt-slider .next-arrow{
        right: 0;
        padding-right: 0;
    }

    .input-audit .d-flex{
        flex-direction: column;
    }

    .input-audit input{ 
        margin: 10px 0 !important;
    }

    #seo-url-error-message{
        color: red !important;
        margin-left: 10px !important;
        position: relative;
        bottom: 10px !important;
    }
    
    #seo-email-error-message{
        color: red !important;
        margin-left: 10px !important;
        position: relative;
        bottom: 10px !important;
    }

    .submit{
        margin-top: 20px;
    }

    .need-of-seo-pill{
        width: 80%;
        height: 100px;
        border: solid 2px;
        font-size: 18px;
        font-family: 'Manrope', sans-serif;
        letter-spacing: 0.2pt;
        line-height: 1rem;
        color: #616365;
    }

    .need-of-google-ads-pill{
        width: 80%;
        height: 100px;
        border: solid 2px;
        font-size: 17px;
        font-family: 'Manrope', sans-serif;
        letter-spacing: 0.2pt;
        line-height: 1rem;
        color: #616365;
    }

}

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

    .card-results-row{
        flex-direction: column;
        align-items:center;
    }

    .card-fold.col-6{
        width: 100%;
    }

    #blogs .card-group{
        display: flex;
        flex-flow: column;
        width: 90%;
    }

    .card-yellow{
        border-bottom-left-radius: 0;
        border-top-right-radius: 15px;
    }

}

/* .container-makan {
    background: #f9f9f9;
}

.container-makan.flex-column {
    max-width: 60px;
}

.container-makan img {
    margin: 5px;
}

.container-makan.scale {
    transform: scaleY(.05);
    padding-top: 5px; 
} */

/* testing for UI/UX PAGE - Moodboard */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  .column {
    flex: 20%;
    max-width: 25%;
    padding: 5px 8px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  @media (max-width: 1200px) {
    .column {
      flex: 40%;
      flex-wrap: wrap;
      max-width: 50%;
    }
  }
  
  @media (max-width: 600px) {
    .column {
      flex: 50%;
      max-width: 100%;
    }
  }