:root{
  --primarycolor: #D30F27;
  --secondarycolor: #F18218;
  --yellow: #FDD617;
  --champion-blue: #161633;
  --champion-blue80: rgba(22, 22, 51, 0.8); 
  --black:#000000;
  --black10:rgba(0, 0, 0, 0.1);
  --glossy-black: #242424;
  --metallic-black: #2B2B2B;
  --gray: #818181;
  --dark-heather-grey: #494949;
  --dark-heather-grey2: #484848;
  --white:#ffffff;
  --christmas-white: #EDEDED;
  --pale-silver: #EBEBEB;

  --primaryFont: "Montserrat", sans-serif;
}
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin:0; 
    padding:0;
}
html, body {
    scroll-behavior: smooth;
}
body{
    background-color: var(--white);
    font-family: var(--primaryFont);
    font-size: 16px;
    font-weight: normal;
    margin:0;
    padding: 0;
}
a,
button{
    font-family: var(--primaryFont);
    outline:none !important; 
    text-decoration:none; 
    box-shadow:none; 
    transition: all 0.5s ease-in-out;
}
a:hover,
a:focus,
select:focus,
button:focus,
.btn:focus,
.btn.focus {
    outline:none;
    text-decoration:none;
    box-shadow:none;
}
img {
    display: block;
    object-fit: cover;
    max-width:100%;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    list-style:none;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
    outline:none !important;
}
input,
select,
textarea,
button{ 
    outline:none !important;
    box-shadow:none;
}
p{
    padding: 0;
}
.container{
    max-width: 1064px;
    margin: 0 auto;
    padding: 0 16px;
}
.theme-btn{
    background-color: var(--secondarycolor);
    border: 0;
    border-radius: 0 12px 0 12px;
    color: var(--white) !important;
    display: inline-block;
    font-family: var(--primaryFont);
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    outline: none;
    padding: 18px 30px;
    text-decoration: none !important;
}
.theme-btn:hover,
.theme-btn:focus{
    background-color: var(--primarycolor);
}
.heading{
    color: var(--primarycolor);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}


/* Header CSS Start */

header {
    position: sticky;
    top: 0;
    z-index: 9;
}
.header-wrapper{
    background-color: var(--white);
    position: relative;
}
.header-wrapper .container{
    max-width: 1380px;
}
.header-row{
    display: flex;
    align-items: center;
    gap: 24px;
}
.logo{
    transform: translateY(30px);
    z-index: 2;
}
.logo img{
    display: block;
    max-width: 136px;
    transition: all 0.5s ease-in-out;
    width: 100%;
}
.header-sticky .logo img {
    max-width: 100px;
}
.header-menu {
    margin-left: auto;
}
.header-menu > ul{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-menu > ul > li > a{
    color: var(--dark-heather-grey);
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    padding: 20px 0;
}
.header-menu > ul > li.active a{
    color: var(--primarycolor);
}
.header-menu > ul > li > a:hover{
    color: var(--primarycolor);
}
.toggle-menu-mobile{
    display: none;
}
.contact-btn a{
    background-color: var(--primarycolor);
    border-radius: 0 12px 0 12px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 10px 12px 10px 16px;
}
.contact-btn a:hover{
    background-color: var(--secondarycolor);
}
.contact-btn a img{
    width: 30px;
}

/* Hero  CSS Start */

.hero{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 115px 0 70px;
    position: relative;
    z-index: 1;
}
.hero::after{
    background-color: var(--champion-blue80);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
}
.hero .container{
    max-width: 1328px;
}
.hero-row{
    padding: 0 0 40px;
}
.hero-heading{
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 746px;
    margin: 0 0 38px;
}
.hero .hero-description{
    max-width: 746px;
    margin: 0 0 38px;
}
.hero-description p{
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}
.hero-btn-group{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.hero-btn-group li{
    list-style: none;
}
.hero-services-btn{
    background-color: var(--primarycolor);
    border-radius: 0 12px 0 12px;
    color: var(--white);
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    padding: 18px 30px;
    text-decoration: none;
}
.hero-services-btn:hover{
    background-color: var(--secondarycolor);
}
.hero-touch-btn{
    background-color: var(--white);
    border-radius: 0 12px 0 12px;
    color: var(--primarycolor);
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    padding: 18px 30px;
    text-decoration: none;
}
.hero-touch-btn:hover{
    background-color: var(--yellow);
    color: var(--black);
}
.hero-line img{
    width: 100%;
}

/* What We Do CSS Start */

.what-we{
    padding: 70px 0 102px;
}
.what-we-title{
    margin: 0 0 20px;
    max-width: 770px;
}
.what-we-title .heading{
    margin: 0 0 40px;
}
.what-we-title p{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}
.what-we-list{
    overflow: hidden;
}
.what-we-list-inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}
.what-we-single{
    padding: 25px;
    width: 50%;
}
.what-we-box{
    border-radius: 0 20px 0 20px;
    padding: 26px 16px;min-height: 192px;
}
.what-we-box-heading{
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 16px;
}
.what-we-box p{
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 12px;
}
.infrastructure{
    background-color: var(--primarycolor);
}
.technology{
    background-color: var(--secondarycolor);
}
.consultancy{
    background-color: var(--yellow);
}
.consultancy .what-we-box-heading,
.consultancy p,
.consultancy .what-we-btn{
    /* color: var(--glossy-black); */
}
.consultancy .what-we-box-heading,
.consultancy p{
    color: var(--glossy-black);
}
.what-we-btn{
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    /* max-width: max-content; */
    width: 100%;
}
.what-we-btn img{
    max-width: 54px;
    transition: all 0.5s ease-in-out;
}
.what-we-btn:hover{
    color: var(--black);
}
.what-we-btn:hover img{
    filter: brightness(0) saturate(100%)
}
.consultancy .what-we-btn:hover{
    /* color: var(--primarycolor); */
}
.consultancy .what-we-btn:hover img{
    /* filter: brightness(0) saturate(100%) invert(21%) sepia(80%) saturate(4245%) hue-rotate(342deg) brightness(80%) contrast(108%); */
}
.what-we-btn:hover img{
    animation: run linear infinite 1.5s;
}
@keyframes run {
  0% {
    transform: translateX(0);
  }
  50% { 
    transform: translateX(10px);
   }
  100% {
    transform: translateX(0);
  }
}

/* what-we & service verticle layout */
.service-vertical .what-we-list-inner{
    flex-direction: column;
    row-gap: 50px;
}
.service-vertical .what-we-list-inner .what-we-single{
    width: 100%;
    padding: 0 25px;
}

/* Our Values CSS Start */

.our-values{
    background-color: var(--primarycolor);
    margin: 0 0 100px;
    padding: 70px 0 10px;
    position: relative;
}
.our-values::after{
    background-image: url(../images/shap-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100px;
    position: absolute;
    top: 100%;
    left: 0;
    content: "";
    height: 100px;
    width: 100%;
}
.our-values-row{
    display: flex;
    align-items: center;
    gap: 66px;
}
.our-values-title{
    max-width: 235px;
    width: 100%;
}
.our-values-heading{
    color: var(--white);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}
.our-values-right{
    width: calc(100% - 301px);
}
.our-values-content{
    display: flex;
    gap: 30px;
    margin: 0 0 30px;
}
.our-values-single{
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.our-values-single img{
    width: 50px;
}
.our-values-single p{
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}
.our-values-btn{
    color: var(--yellow);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: max-content;
    white-space: nowrap;
    width: 100%;
}
.our-values-btn img{
    max-width: 54px;
    transition: all 0.5s ease-in-out;
    width: 100%;
}
.our-values-btn:hover{
    color: var(--white);
}
.our-values-btn:hover img{
    animation: run linear infinite 1.5s;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(299deg) brightness(102%) contrast(102%);
}
/* Our value & only title & description block */
.our-values.otc-desc-red .our-values-row{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 40px;
}
.otc-desc-red .our-values-title{
    max-width: unset;
}
.otc-desc-red .our-values-title .our-values-heading{
    font-size: 54px;
}
.otc-desc-red .our-values-description p{
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

/* Our Partners CSS Start */

.partners{
    padding: 90px 0;
}
.partners-title{
    margin: 0 0 62px;
    max-width: 724px;
}
.partners-title .heading{
    margin: 0 0 20px;
}
.partners-title p{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}
.partners-list{
    overflow: hidden;
}
.partners-list-inner{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    margin: 0 -16px;
}
.partners-single{
    padding: 0 16px;
    width: 20%;
}
.partners-single-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.partners-single-inner img{
    max-width: 130px;
    width: 100%;
}

/* Case Studies CSS Start */

.case-studies{
    background-color: var(--christmas-white);
    padding: 102px 0 160px;
}
.case-studies-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 56px;
    padding: 0 10px 0 0;
}
.case-studies-heading{
    color: var(--black);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}
.case-studies-btn{
    color: var(--primarycolor);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}
.case-studies-btn:hover{
    color: var(--secondarycolor);
}
.case-studies-btn img{
    max-width: 54px;
    transition: all 0.5s ease-in-out;
    width: 100%;
}
.case-studies-btn:hover img{
    animation: run linear infinite 1.5s;
    filter: brightness(0) saturate(100%) invert(71%) sepia(77%) saturate(4269%) hue-rotate(354deg) brightness(100%) contrast(90%);
}
.case-studies-list{
    overflow: hidden;
}
.case-studies-list-inner{
    display: flex;
    flex-wrap: wrap;
    row-gap: 42px;
    margin: 0 -21px;
}
.case-studies-single{
    width: 50%;
    padding: 0 21px;
}
.case-studies-single-heading{
    color: var(--primarycolor);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 26px;
}
.case-studies-single-heading a{
    color: var(--primarycolor);
    transition: all 0.5s ease-in-out;
}
.case-studies-single-heading a:hover{
    color: var(--secondarycolor);
}
.case-studies-single-inner p{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 20px;
}
.case-studies-view{
    color: var(--primarycolor);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    max-width: max-content;
}
.case-studies-view:hover{
    color: var(--secondarycolor);
}
.case-studies-view img{
    max-width: 54px;
    width: 100%;
}
.case-studies-view:hover img{
    animation: run linear infinite 1.5s;
    filter: brightness(0) saturate(100%) invert(71%) sepia(77%) saturate(4269%) hue-rotate(354deg) brightness(100%) contrast(90%);
}

/* Ready To Talk CSS Start */

.ready-to-talk{
    padding: 82px 0 90px;
}
.ready-to-talk-form{
    background-color: var(--primarycolor);
    border-radius: 0 30px 0 30px;
    margin: 0 auto;
    max-width: 800px;
    padding: 40px 50px 58px;
}
.ready-to-talk-form .heading{
    color: var(--yellow);
    margin: 0 0 18px;
}
.ready-to-talk-form p{
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px 0;
}
.ready-to-talk-form p:last-child {
    margin: 0;
}
.ready-to-talk-form form{
    margin: 32px 0 0;
}
.ready-to-talk-form .form-row{
    display: flex;
    gap: 14px;
}
.ready-to-talk-form .form-group{
    margin: 0 0 40px;
    width: 100%;
}
.ready-to-talk-form .form-group input{
    background-color: var(--white);
    border: 0;
    border-radius: 12px;
    color: var(--dark-heather-grey2);
    font-family: var(--primaryFont);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    height: 52px;
    padding: 16px;
    width: 100%;
}
.ready-to-talk form.wpcf7-form .wpcf7-response-output {
    border: none;
    margin: 20px 0 0 0;
    background-color: var(--white);
    padding: 10px;
    border-radius: 5px;
    width: max-content;
}
.ready-to-talk form.failed .wpcf7-response-output,
.ready-to-talk form.aborted .wpcf7-response-output {
    color: var(--primarycolor);
}
.ready-to-talk form.spam .wpcf7-response-output,
.ready-to-talk form.invalid .wpcf7-response-output,
.ready-to-talk form.unaccepted .wpcf7-response-output {
    color: var(--primarycolor);
}
.ready-to-talk form.sent .wpcf7-response-output {
    color: #46b450;
}
.ready-to-talk form.wpcf7-form.invalid .wpcf7-not-valid-tip{
    color: var(--white);
    margin:5px 0 0 0;
}
.talk-form-btn{
    background-color: transparent;
    background-image: url(../images/icon-linearrow-yellow.svg);
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    background-size: 50px auto;
    border: 0;
    border-radius: 0;
    color: var(--yellow);
    cursor: pointer;
    font-family: var(--primaryFont);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    padding: 0 70px 0 0;
    transition: all 0.5s ease-in-out;
}
.talk-form-btn:hover{
    animation: runbg linear infinite 1.5s;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(13%) hue-rotate(237deg) brightness(104%) contrast(104%);
}
@keyframes runbg {
  0% {
    background-position: calc(100% - 10px) center;
  }
  50% { 
    background-position: 100% center;
   }
  100% {
    background-position: calc(100% - 10px) center;
  }
}

/* Footer CSS Start */

.footer-wrapper{
    background-color: var(--pale-silver);
    padding: 95px 0 40px;
}
.footer-wrapper .container{
    max-width: 1380px;
}
.footer-row{
    display: flex;
    gap: 92px;
}
.footer-logo img{
    max-width: 164px;
    width: 100%;
}
.footer-right{
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: calc(100% - 256px);
}
.footer-menu-list{
    display: flex;
    gap: 55px;
}
.footer-menu{
    display: flex;
    flex-direction: column;
    width: 33.33%;
}
.footer-heading{
    color: var(--dark-heather-grey);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    margin: 0 0 10px;
}
.footer-menu p{
    color: var(--dark-heather-grey);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}
.footer-menu ul{
    margin: 0;
    padding: 0;
}
.footer-menu ul li{
    list-style: none;
    margin: 0 0 8px;
}
.footer-menu ul li:last-child{
    margin: 0;
}
.footer-menu ul li a{
    color: var(--dark-heather-grey);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}
.footer-menu ul li a:hover{
    color: var(--primarycolor);
}
.footer-terms-policy ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 31px;
    margin: 0;
    padding: 0;
}
.footer-terms-policy ul li{
    list-style: none;
    position: relative;
}
.footer-terms-policy ul li::after{
    background-color: var(--dark-heather-grey);
    position: absolute;
    top: 0;
    right: -16px;
    content: "";
    height: 100%;
    width: 1px;
}
.footer-terms-policy ul li:last-child:after{
    display: none;
}
.footer-terms-policy ul li a{
    color: var(--dark-heather-grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
}
.footer-terms-policy ul li a:hover{
    color: var(--primarycolor);
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 20px 0 0;
}
.copyright p{
    color: var(--dark-heather-grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}
.copyright p a{
    color: var(--dark-heather-grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: underline;
}
.copyright p a:hover{
    color: var(--primarycolor);
}

/* ==============================
    Services Page CSS
==============================*/

/* Breadcrumb CSS Start */

.breadcrumb{
    background-color: var(--champion-blue);
    padding: 116px 0;
    position: relative;
    z-index: 1;
}
.breadcrumb::after{
    background-image: url(../images/hero-line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 80%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.2;
    width: 100%;
    z-index: -1;
}
.breadcrumb-heading{
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

/* Services CSS Start */

.services{
    padding: 80px 0;
}
.services-title{
    margin: 0 0 50px;
    max-width: 632px; 
}
.services-title .heading{
    margin: 0 0 20px;
}
.services-title p{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}
.services-inner{
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.services-menu ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.services-menu ul li{
    border-right: 1px solid var(--secondarycolor);
    list-style: none;
    padding: 0 40px;
}
.services-menu ul li:first-child{
    padding: 0 40px 0 0;
}
.services-menu ul li:last-child{
    border-right: 0;
    padding: 0 0 0 40px;
}
.services-menu ul li,
.services-menu ul li a{
    color: var(--secondarycolor);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}
.services-menu ul li a:hover{
    color: var(--primarycolor);
}
.services-list{
    display: flex;
    flex-direction: column;
    gap: 85px;
}
.services-single{
    display: flex;
    flex-direction: column;
    gap: 26px;
    scroll-margin-top: 110px;
}
.services-single-heading{
    border-bottom: 2px solid var(--black);
    padding: 0 0 20px;
}
.services-single-heading h3{
    color: var(--black);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}
.services-single-content{
    display: flex;
    gap: 68px;
}
.services-single-copy{
    width: 52%;
}
.services-single-copy p:last-child{
    margin-bottom: 0;
}
.services-single-copy p{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 20px;
}
.services-single-copy ul{
    margin: 0 0 20px;
    padding: 0;
}
.services-single-copy ul li{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    list-style: none;
    margin: 0 0 16px;
    position: relative;
    padding: 0 0 0 38px;
}
.services-single-copy ul li:last-child{
    margin: 0;
}
.services-single-copy ul li::after{
    background-image: url(../images/icon-true-red.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 20px;
    width: 20px;
}
.services-single-img{
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    width: 48%;
}
.services-single-img img{
    border-radius: 0 20px 0 20px;
    max-height: 360px;
    transition: all 0.5s ease-in-out;
    height: 100%;
    width: 100%;
}
.services-single-img:hover img{
    transform: scale(1.1);
}
.services-single-btn-group{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Services Partners CSS Start */

.services-partners.partners{
    padding: 70px 0 36px;
}

/* ==============================
    Case Studies Page CSS
==============================*/

/* Studies Breadcrumb */

.studies-breadcrumb{
    padding: 30px 0 50px;
}
.studies-line img{
    width: 100%;
}
.studies-breadcrumb-row .heading{
    font-size: 36px;
}

/* Case Studies Page CSS Start */

.studies-page{
    background-color: transparent;
    padding: 60px 0 130px;
}
.studies-page .case-studies-title{
    border-bottom: 2px solid var(--black);
    padding: 0 0 20px;
}
.studies-page .case-studies-row{
    display: flex;
    flex-direction: column;
    row-gap: 116px;
}
.case-studies-listing{
    scroll-margin-top: 140px;
}


/* ==============================
    Case Studies Single Page CSS
==============================*/

/* Case Studies Detail CSS Start */

.studies-detail{
    padding: 120px 0 40px;
}
.studies-detail-row{
    margin: 0 auto;
    max-width: 690px;
}
.studies-detail-subheading{
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
}
.studies-detail-title .heading{
    font-size: 30px;
    margin: 0 0 10px;
    max-width: 470px;
}
.studies-detail-category{
    color: var(--gray);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}
.studies-detail-copy{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.studies-detail-copy > *:last-child{
    margin: 0;
}
.studies-detail-copy hr{
    border: 1px solid var(--black);
    display: inline-block;
    margin: 32px 0;
    width: 100%;
}
.studies-detail-copy h1{
    color: var(--primarycolor);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px;
}
.studies-detail-copy h2{
    color: var(--primarycolor);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px;
}
.studies-detail-copy h3{
    color: var(--primarycolor);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px;
}
.studies-detail-copy h4{
    color: var(--primarycolor);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px;
}
.studies-detail-copy h5{
    color: var(--primarycolor);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px;
}
.studies-detail-copy h6{
    color: var(--primarycolor);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px;
}
.studies-detail-copy p{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 40px;
}
.studies-detail-copy i,
.studies-detail-copy p i{
    font-style: italic;
    font-weight: 600;
}
.studies-detail-copy .heading-big{
    color: var(--secondarycolor);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 40px;
    max-width: 460px;
}
.studies-detail-copy > strong {
    display: block;
    font-weight: 700;
    margin: 0 0 20px;
}
.studies-detail-copy img{
    border-radius: 0 20px 0 20px;
    margin: 0 0 40px;
}
.studies-detail-copy ul{
    margin: 0 0 40px;
}
.studies-detail-copy ul li{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    list-style: none;
    margin: 0 0 16px;
    position: relative;
    padding: 0 0 0 38px;
}
.studies-detail-copy ul li:last-child{
    margin: 0;
}
.studies-detail-copy ul li::after{
    background-image: url(../images/icon-true-red.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 20px;
    width: 20px;
}
.studies-detail-copy ol{
    margin: 0 0 40px;
}
.studies-detail-copy ol li{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    list-style: auto inside;
    margin: 0 0 16px;
    position: relative;
    padding: 0;
}
.studies-detail-copy ol li:last-child{
    margin: 0;
}
.studies-detail-copy blockquote p,
.studies-detail-copy blockquote{
    background-color: var(--yellow);
    border-radius: 0 20px;
    color: var(--metallic-black);
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 28px;
    margin: 0 0 40px;
    padding: 50px 90px;
}
.studies-detail-copy blockquote p em,
.studies-detail-copy blockquote em,
.studies-detail-copy blockquote span{
    color: var(--metallic-black);
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 16px 0 0;
}
.studies-detail-copy p a{
    color: var(--primarycolor);
    text-decoration: underline;
}
.studies-detail-copy p a:hover{
    color: var(--secondarycolor);
}


/* ==============================
    Contact Us Page - Block CSS
==============================*/
section.contact-block {
    padding: 82px 0 90px;
}
.contact-block .contact-form-box {
    padding: 0;
    width: 60%;
}
.contact-block .contact-block-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.contact-block .contact-form-box .ready-to-talk-form {
    max-width: unset;
}
.contact-block .contact-image img {
    width: 100%;
    border-radius: 0 20px 0;
}
.contact-block .contact-image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    width: 40%;
}
.contact-block .contact-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.contact-block .contact-location {
    width: calc(50% - 20px);
}
.contact-block .contact-location.phone-number {
    width: 100%;
}
.contact-block .contact-location .contact-location-heading {
    color: var(--dark-heather-grey);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    margin: 0 0 10px;
}
.contact-block .contact-location p {
    color: var(--dark-heather-grey);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}
.contact-block .contact-location ul li {
    color: var(--dark-heather-grey);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    margin: 0;
}
.contact-block .contact-location ul li a {
    font-weight: 400;
    color: var(--dark-heather-grey);
    transition: all 0.5s ease-in-out;
}
.contact-block .contact-location ul li a:hover {
    color: var(--primarycolor);
}

/* ==============================
    Content block Start
==============================*/

.content-block {
    padding: 80px 0 80px;
}
.content-block .content-text {
    color: var(--black);
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.content-block .content-text ul,
.content-block .content-text ol {
    margin-left: 15px;
    padding-left: 15px;
}
.content-block .content-text ul li {
    list-style: disc;
}
.content-block .content-text ol li {
    list-style: decimal;
}
.content-block .content-text ul li,
.content-block .content-text ol li{
    line-height: 22px;
    margin-bottom: 16px;
}
.content-block .content-text ul ul li{
    list-style: circle;
}
.content-block .content-text ol ol li{
    list-style: upper-roman;
}
.content-block .content-text p{
    line-height: 24px;font-size: 18px;;
}
.content-block .content-text a{
    color: var(--primarycolor);
    text-decoration: underline;
}
.content-block .content-text a:hover{
    color: var(--secondarycolor);
}
.content-block .content-text blockquote{
    background-color: var(--yellow);
    border-radius: 0 20px;
    color: var(--metallic-black);
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 28px;
    margin: 0 0 40px;
    padding: 50px 90px;
}
.content-block .content-text a.theme-btn {
    max-width: max-content;
    text-decoration: none;
    color: var(--white);
}
.content-block .content-text hr{
    border: 1px solid var(--black);
    display: inline-block;
    margin: 30px 0 10px;
    width: 100%;
}
/* ==============================
    Content block End
==============================*/


.bg-pale-silver{
    background-color: var(--pale-silver);
}



/* our mission */
/* .our-mission .ourms-description {
    padding: 25px;
    background: var(--secondarycolor);
    border-radius:0 20px 0 20px;
} */
.ourms-subtitle {
    margin-bottom:20px;
}
.ourms-main-content ul {
    margin: 0 0 20px;
    padding: 0;
}
.ourms-main-content ul li{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    list-style: none;
    margin: 0 0 16px;
    position: relative;
    padding: 0 0 0 38px;
}
.ourms-main-content ul li::after{
    background-image: url(../images/icon-true-red.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 20px;
    width: 20px;
}
.our-mission .what-we-title p{
    line-height: 24px;
}
.ourms-main-content p{
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}
.partners.equal-pad{padding: 36px 0 36px;}
.bg-red{
    background-color:var(--primarycolor)
}
.bg-orange{
    background-color: var(--secondarycolor);
}
.footer-menu-list{justify-content:space-between;}
.pad40{padding: 40px 0 40px;}
.padcustom{padding: 60px 0 10px;}
.pad90{padding: 90px 0 90px !important;}
.contact-block .contact-location{width: calc(84% - 20px);}
/* ==============================
    Responsive CSS Start
==============================*/

@media (max-width:1279px){
    .header-menu > ul{
        gap: 16px;
    }
    .header-menu > ul > li > a{
        font-size: 18px;
    }
    .footer-row{
        gap: 60px;
    }
    .footer-right{
        width: calc(100% - 224px);
    }
    .footer-menu-list{
        gap: 30px;
    }
}
@media (min-width:992px){
    .header-menu{
        display: block !important;
    }
}
@media (max-width:991px){
    .toggle-menu-mobile{
        display: block;
    }
    .logo {
        transform: translateY(20px);
    }
    .logo img{
        max-width: 100px;
    }
    .header-sticky .logo img {
        max-width: 80px;
    }
    .toggle-menu{
        background-color: var(--secondarycolor);
        border: 0;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
    }
    .toggle-menu.toggle-active span{
        background-color: transparent;
    }
    .toggle-menu.toggle-active span::after{
        transform: rotate(45deg);
        top: 0;
    }
    .toggle-menu.toggle-active span::before{
        transform: rotate(-45deg);
        bottom: 0;
    }
    .toggle-menu span{
        background-color: var(--white);
        height: 3px;
        position: relative;
        transition: all 0.5s ease-in-out;
        width: 30px;
    }
    .toggle-menu span::after{
        background-color: var(--white);
        position: absolute;
        top: -10px;
        left: 0;
        content: "";
        height: 3px;
        transition: all 0.5s ease-in-out;
        width: 30px;
    }
    .toggle-menu span::before{
        background-color: var(--white);
        position: absolute;
        bottom: -10px;
        left: 0;
        content: "";
        height: 3px;
        transition: all 0.5s ease-in-out;
        width: 30px;
    }
    .header-menu{
        background-color: var(--white);
        border-top: 1px solid var(--dark-heather-grey);
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        overflow-y: auto;
        max-height: calc(100vh - 100px);
        padding: 40px 20px 20px;
        width: 100%;
        z-index: 1;
    }
    .header-sticky .header-menu{
        max-height: calc(100vh - 80px);
    }
    .header-menu > ul{
        align-items: start;
        justify-content: start;
        flex-direction: column;
    }
    .header-menu > ul > li > a{
        padding: 8px 0;
    }
    .contact-btn{
        margin: 0 0 0 auto;
    }
    .what-we-list-inner{
        margin: 0 -10px;
    }
    .what-we-single{
        padding: 10px 10px;
    }
    .what-we-box{
        min-height: 250px;
    }
    .what-we-box-heading{
        font-size: 20px;
    }
    .our-values{
        margin: 0 0 80px;
    }
    .our-values-row{
        align-items: start;
        flex-direction: column;
        gap: 40px;
    }
    .our-values-title{
        max-width: 100%;
    }
    .otc-desc-red .our-values-title .our-values-heading,
    .our-values-heading{
        font-size: 40px;
    }
    .our-values-right{
        width: 100%;
    }
    .our-values::after{
        background-size: 100% 80px;
        height: 80px;
    }
    .partners-list-inner{
        margin: 0 -10px;
    }
    .partners-single{
        padding: 0 10px;
        width: 33.33%;
    }
    .case-studies {
        padding: 80px 0 120px;
    }
    .case-studies-title{
        margin: 0 0 40px;
    }
    .footer-wrapper{
        padding: 80px 0 40px;
    }
    .footer-row{
        flex-direction: column;
        gap: 40px;
    }
    .footer-logo{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-right{
        width: 100%;
    }

    /* ==============================
        Services Page CSS
    ==============================*/

    .breadcrumb::after{
        background-size: 100% auto;
    }
    .services-single-content{
        gap: 30px;
    }

    /* ==============================
        Contact Us Page CSS
    ==============================*/
    .contact-block .contact-block-row {
        flex-direction: column-reverse;
    }
    .contact-block .contact-form-box {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    .contact-block .contact-image {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
}
@media (max-width:767px){
    .hero-heading{
        font-size: 36px;
    }
    .what-we{
        padding: 60px 0;
    }
    .what-we-title{
        margin: 0 0 30px;
    }
    .what-we-list-inner{
        row-gap: 20px;
    }
    .what-we-single{
        width: 100%;
    }
    .our-values{
        padding: 60px 0 40px;
    }
    .our-values-row{
        gap: 30px;
    }
    .otc-desc-red .our-values-title .our-values-heading,
    .our-values-heading {
        font-size: 36px;
    }
    .our-values-content{
        flex-direction: column;
    }
    .our-values-single{
        gap: 12px;
    }
    .our-values::after {
        background-size: 100% auto;
        height: 80px;
        background-position: 0 0;
    }
    .partners {
        padding: 20px 0 60px 0;
    }
    .partners-title{
        margin: 0 0 30px;
    }
    .case-studies {
        padding: 60px 0 80px;
    }
    .case-studies-title{
        margin: 0 0 30px;
    }
    .case-studies-heading{
        font-size: 24px;
    }
    .case-studies-list-inner{
        margin: 0 -10px;
    }
    .case-studies-single{
        padding: 0 10px;
        width: 100%;
    }
    .case-studies-single-heading {
        font-size: 26px;
        margin: 0 0 20px;
    }
    .ready-to-talk{
        padding: 60px 0;
    }
    .ready-to-talk-form{
        padding: 30px 20px 38px;
    }
    .footer-wrapper {
        padding: 60px 0 30px;
    }
    .footer-menu-list{
        flex-direction: column;
    }
    .footer-menu{
        width: 100%;
    }
    .copyright{
        align-items: center;
        flex-direction: column;
        gap: 8px;
        margin: 30px 0 0;
    }

    /* ==============================
        Services Page CSS
    ==============================*/

    .breadcrumb-heading{
        font-size: 36px;
    }
    .services {
        padding: 60px 0;
    }
    .services-title {
        margin: 0 0 40px;
    }
    .services-inner{
        gap: 50px;
    }
    .services-menu ul li{
        padding: 0 20px;
    }
    .services-menu ul li:first-child {
        padding: 0 20px 0 0;
    }
    .services-menu ul li:last-child{
        padding: 0 0 0 20px;
    }
    .services-menu ul li a{
        font-size: 18px;
    }
    .services-single-content{
        flex-direction: column-reverse;
    }
    .services-single-copy,
    .services-single-img{
        width: 100%;
    }
    .services-single-img img{
        max-height: 450px;
    }
    .services-single-heading h3{
        font-size: 24px;
    }

    /* ==============================
        Case Studies Page CSS
    ==============================*/

    .studies-page{
        padding: 20px 0 50px;
    }
    .studies-page .case-studies-row{
        row-gap: 80px;
    }

    /* ==============================
        Case Studies Single Page CSS
    ==============================*/

    .studies-detail{
        padding: 100px 0 40px;
    }
    .studies-detail-copy blockquote{
        padding: 40px 60px;
    }

    /* ==============================
        Contact Us Page CSS
    ==============================*/
    section.contact-block {
        padding: 60px 0;
    }

    /* ==============================
        Content block
    ==============================*/
    .content-block .content-text blockquote {
        padding: 40px 60px;
    }
}
@media (max-width:575px){
    .theme-btn {
        font-size: 16px;
        padding: 16px 24px;
    }
    .header-row{
        justify-content: space-between;
    }
    .contact-btn{
        display: none;
    }
    .hero{
        padding: 80px 0 60px;
    }
    .hero-btn-group{
        gap: 16px;
    }
    .hero-services-btn,
    .hero-touch-btn{
        font-size: 16px;
        padding: 16px 24px;
    }
    .our-values {
        margin: 0 0 60px;
    }
    .our-values::after{
        height: 60px;
    }
    .otc-desc-red .our-values-title .our-values-heading,
    .our-values-heading {
        font-size: 24px;
    }
    .otc-desc-red .our-values-description p{
        font-size: 18px;
        line-height: 22px;
    }
    .partners-single{
        width: 50%;
    }
    .case-studies-title{
        align-items: start;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }
    .case-studies-view{
        font-size: 16px;
    }
    .ready-to-talk-form .form-row{
        flex-direction: column;
        gap: 0;
    }
    .ready-to-talk-form .form-group{
        margin: 0 0 20px;
    }
    .ready-to-talk-form{
        border-radius: 0 20px 0 20px;
    }

    /* ==============================
        Services Page CSS
    ==============================*/

    .breadcrumb{
        padding: 100px 0;
    }
    .services-menu ul{
        border: 1px solid #F18218;
        border-radius: 12px;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .services-menu ul li,
    .services-menu ul li:first-child,
    .services-menu ul li:last-child{
        border: 0;
        padding: 0;
    }
    .services-single-img img {
        max-height: 360px;
    }
    .services-partners.partners {
        padding: 10px 0;
    }
    .services-single-btn-group{
        justify-content: center;
    }

    /* ==============================
        Case Studies Page CSS
    ==============================*/

    .studies-breadcrumb-row .heading{
        margin: 20px 0 0;
    }

    /* ==============================
        Case Studies Single Page CSS
    ==============================*/

    .studies-detail {
        padding: 100px 0 60px;
    }
    .studies-detail-copy .heading-big{
        font-size: 36px;
        max-width: 360px;
    }
    .studies-detail-copy blockquote {
        padding: 26px 32px;
    }

    /* ==============================
        Contact Us Page CSS
    ==============================*/
    .contact-block .contact-location {
        width: 100%;
    }

    /* ==============================
        Content block
    ==============================*/
    .content-block .content-text blockquote {
        font-size: 20px;
        line-height: 24px;
        padding: 26px 32px;
    }

    .ourms-sub-heading{
        font-size: 20px;
    }
}