:root {
  --blue-color: #086EE1;
  --background-color: #0E1117;
  --text-color: #fff;
  --font-family: 'Instrument Sans', sans-serif;
}

/* ====== RESET ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body{
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; 
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--background-color);
  box-shadow: inset 0 0 5px grey;
}
::-webkit-scrollbar-thumb {
  background: var(--text-color);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

button, .cursor {
  cursor: pointer;
  transition: all 0.3s ease;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-pad {
  padding: 0 !important;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

footer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 0 0;
}

.footer-top {
    padding-top: 100px;
    padding-bottom: 100px;
}

.site-text {
    display: block;
    width:100%;
    margin-bottom: 30px;
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 400;
}

.footer-top .text-box p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    max-width: min-content;
}

header {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 999;
}

header .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

header .nav-links a {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: normal;
    text-decoration: none;
    color: #fff;
}

header .row {
    align-items: center;
}

.t-btn {
    background-color: var(--blue-color);
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    display: block;
    max-width: fit-content;
    border: 1px solid var(--blue-color);
    transition:0.3s;
}

.t-btn:hover {
    background-color: var(--text-color) !important;
    color: var(--blue-color) !important;
    border-color: var(--blue-color) !important;
    transition:0.3s;
}

header .button-box .t-btn {
    margin-left: auto;
}

header .logo img {
    max-width: 200px;
}

header .logo a {
    display: block;
    max-width: fit-content;
}

.hero-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 130px;
    padding-bottom: 1px;
}

.hero-banner .site-text {
    margin-top: -40px;
    z-index: 1;
    position: relative;
}

.hero-slider {
    margin: auto;
    max-width: 949.68px;
}

.portfolio-sec-01 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.text-box h2 {
    color: var(--text-color);
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.text-box h2 span {
    color: var(--blue-color);
}

.line-stroke-animate {display: block;width: 100%;height: 2px;background: rgba(255, 255, 255, 0.2);position: relative;overflow: hidden;}

.line-stroke-animate::before {
    position: absolute;
    top: 0;
    left: -30%;
    height: 2px;
    width: 100%;
    background: linear-gradient(45deg, rgba(14, 17, 23, 0), #FFFFFF);
    max-width: 30%;
    z-index: 1;
    content: "";
    transition: 0.3s;
    animation: lineupright 5s linear infinite;
}

@keyframes lineupright {
    0% {
        left: -30%;
        opacity: 1;
    }
    20% {
        left: 100%;
        opacity: 1;
    }
    21% {
        opacity: 0;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.portfolio-sec-01 .text-box .line-stroke-animate {
    margin: 23px 0;
}

.portfolio-sec-01 .text-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

.portfolio-sec-01 .row .col-lg-6:nth-child(2) .text-box p {
    text-transform: uppercase;
}

.two-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.portfolio-sec-01 .text-box .two-box {
    margin-top: 20px;
}

.t-btn.btn-outline {
    background: transparent;
    border: 1px solid var(--text-color);
}

.portfolio-sec-01 .row .col-lg-6:nth-child(3) .text-box p {
    max-width: 500px;
    margin-left: auto;
    font-size: 20px;
}

.portfolio-sec-01 .row .col-lg-6:nth-child(3) .text-box p b, .portfolio-sec-01 .row .col-lg-6:nth-child(3) .text-box strong {
    font-weight: 400;
    color: var(--text-color);
    transition: 1s;
    animation: blink 3s linear infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}


.portfolio-sec-02 {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.portfolio-sec-02 .container{
  z-index: 1;
}

.portfolio-sec-02 .text-box h2 {
    max-width: 600px;
    font-weight:600;
}

.portfolio-sec-02 .text-box p {
    color: var(--text-color);
    opacity: 0.5;
    font-size: 20px;
    max-width: 400px;
    margin-left: auto;
}

.portfolio-sec-02 .col-lg-12 .text-box {
    margin-top: 100px;
    margin-bottom: 50px;
}

.service-grid-box {
    /*display: grid;*/
    /*grid-template-columns: repeat(4, 1fr);*/
    gap: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.service-grid-box .servicebox {
    transition: 0.5s;
}

.service-grid-box .servicebox:nth-child(1) img {max-width: 415px;}

.service-grid-box .servicebox h4 {
    transition: 0.3s;
    font-size: 25px;
    font-weight: 500;
    line-height: normal;
    margin-top: 50px;
    margin-bottom: 15px;
}

.service-grid-box .servicebox p {
    color: var(--text-color);
    opacity: 0.5;
    font-size: 18px;
    line-height: normal;
}

.service-grid-box .servicebox .tool-box {
    margin-top: 20px;
    padding-top: 20px;
    transition: 0.5s;
    position: relative;
    opacity: 0;
    visibility: hidden;
}

.service-grid-box .servicebox .tool-box p {
    color: var(--blue-color);
    opacity: 1;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: 0.5s;
}

ul.points-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}

ul.points-list li {
    color: var(--blue-color);
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(8, 110, 225, 0.2);
}

.service-grid-box .servicebox:nth-child(2) img {
    max-width: 373px;
    margin-left: -20px;
}

.service-grid-box .servicebox img {
    transition: 0.5s;
}

.service-grid-box .servicebox:nth-child(1) {
    z-index: 4;
}

.service-grid-box .servicebox:nth-child(3) img {
    max-width: 310px;
    margin-left: -20px;
}

.service-grid-box .servicebox:nth-child(2) {
    z-index: 3;
    padding-top: 28px;
}

.service-grid-box .servicebox:nth-child(3) {
    z-index: 2;
    padding-top: 68px;
}

.service-grid-box .servicebox:nth-child(4) img {
    max-width: 250px;
    margin-left: -20px;
}

.service-grid-box .servicebox:nth-child(4) {
    z-index: 1;
    padding-top: 110px;
}

.service-grid-box .servicebox .tool-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 60%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
    opacity: 0;
}

.service-grid-box .servicebox:hover .tool-box {
    transition: 0.5s;
    opacity: 1;
    visibility: visible;
}

.service-grid-box .servicebox:hover .tool-box::after {
    opacity: 1;
    transition: 0.5s;
}

.portfolio-sec-02::before {
    content: "";
    position: absolute;
    top: 230px;
    left: -15%;
    height: 200px;
    width: 45%;
    background: var(--blue-color);
    filter: blur(130px);
}

.portfolio-sec-02::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -25%;
    height: 200px;
    width: 45%;
    background: var(--blue-color);
    filter: blur(130px);
}

.portfolio-sec-03 {
    padding-top: 100px;
    padding-bottom: 70px;
}

.portfolio-sec-03 .text-box h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.portfolio-sec-03 .text-box p {
    text-align: center;
    margin: auto;
    max-width: 710px;
    font-size: 20px;
    color: var(--text-color);
    opacity: 0.5;
}

.portfolio-sec-03 .line-stroke-animate {
    margin: 60px 0;
}

.casestudy-main h3 {text-transform: uppercase;font-size: 18px;color: var(--text-color);opacity: 0.5;text-align: center;margin-bottom: 40px;}

.case-study-slider .slick-list {
    overflow: unset;
}

.casestudy-single {
    padding: 0px 15.5px;
}

.case-study-box {
    background: rgba(8, 110, 225, 0.2);
    padding: 37px 30px 46px;
    border-top: 7px solid var(--blue-color);
    display: flex;
    flex-direction: column;
    gap: 28px;
        width: 100%;
}

.case-study-box span, .case-study-box h4 {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
}

.case-study-box p {
    font-size: 18px;
    opacity: 0.5;
    line-height: normal;
}

.case-study-box .points-list {
    margin-top: 20px;
    gap: 6px;
    row-gap:8px;
}

.case-study-box .points-list li {
    font-size: 18px;
    padding: 10px 20px;
}

.case-study-slider {
    position: relative;
}

/*.case-study-slider::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    background: linear-gradient(90deg,rgba(14, 17, 23, 0.88), rgb(14 17 23 / 14%), transparent, rgb(14 17 23 / 14%), rgba(14, 17, 23, 0.88));*/
/*    height: 100%;*/
/*    width: 100vw;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*}*/

.portfolio-sec-03 .button-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.portfolio-sec-04 {
    padding-top: 80px;
    position: relative;
    padding-bottom: 80px;
}

.portfolio-sec-04 .button-box {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slider-main {
    position: relative;
    margin-top: 50px;
}

.logo-slider-main::after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg,rgba(14, 17, 23, 0.88), rgb(14 17 23 / 14%), transparent, rgb(14 17 23 / 14%), rgba(14, 17, 23, 0.88));
    height: 100%;
    width: 100vw;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.logo-slider-main .slick-list {
    overflow: unset;
}

.portfolio-sec-04 .text-box h2 {
    font-weight: 600;
    max-width: 400px;
}

.portfolio-sec-04 .text-box p {
    opacity: 0.5;
    font-size: 20px;
    max-width: 500px;
    margin-left: auto;
}


.portfolio-sec-04::after {
        content: "";
        position: absolute;
        bottom: 100px;
        left: -15%;
        height: 200px;
        width: 45%;
        background: var(--blue-color);
        filter: blur(130px);
        z-index: -1;
}

.portfolio-sec-05 {
    padding-top: 100px;
    position: relative;
    padding-bottom: 50px;
}

.latest-design-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.portfolio-sec-05 .button-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-sec-05 .text-box h2 {
    font-weight: 600;
    max-width: 380px;
    margin: auto;
    margin-bottom: 10px;
}

.portfolio-sec-05 .text-box p {
    opacity: 0.5;
    font-size: 20px;
    max-width: 700px;
    margin: auto;
}

.portfolio-sec-05::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    filter: blur(200px);
    top: 50%;
    left: 50%;
    z-index: -1;
    background: var(--text-color);
    transform: translate(-50%, -50%);
}

.latest-design-main img {
    border-radius: 10px;
    width: 100%;
    border: 1px solid #4B4B4B;
}

.portfolio-sec-06 .text-box h2 {
    max-width: 460px;
}

.portfolio-sec-06 .text-box p {
    max-width: 730px;
}

.latest-media-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 50px auto;
}

.latest-media-main img {
    border: 1px solid #4B4B4B;
}

.portfolio-sec-06::after {
    content: "";
    position: absolute;
    width: 627px;
    height: 149px;
    filter: blur(200px);
    top: 100px;
    left: -500px;
    z-index: -1;
    background: var(--text-color);
    transform: unset;
}

.portfolio-sec-06::before {
    content: "";
    position: absolute;
    width: 627px;
    height: 149px;
    filter: blur(200px);
    top: 100px;
    right: -500px;
    z-index: -1;
    background: var(--text-color);
    transform: unset;
}

.portfolio-sec-07 {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.portfolio-sec-07::after {
    content: "";
    position: absolute;
    width: 553px;
    height: 553px;
    filter: blur(200px);
    top: 50%;
    left: -400px;
    z-index: -1;
    background: var(--text-color);
    transform: unset;
    transform: translateY(-50%);
}

.portfolio-sec-07::before {
    content: "";
    position: absolute;
    width: 553px;
    height: 553px;
    filter: blur(200px);
    top: 50%;
    right: -400px;
    z-index: -1;
    background: var(--blue-color);
    transform: unset;
    transform: translateY(-50%);
}

.portfolio-sec-07 .text-box h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.portfolio-sec-07 .text-box p {
    opacity: 0.7;
    font-size: 20px;
    margin: auto;
    max-width: 700px;
}

.testimonial-slide p {
    color: var(--text-color);
    font-size: 20px;
    text-align: center;
    font-style: italic;
    letter-spacing: 0.5px;
    padding: 40px 50px;
    border: 1px solid var(--text-color);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.testimonial-slider {
    max-width: 836px;
    margin: auto;
    margin-top: 40px;
}

.testimonial-slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.testimonial-slide span {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.testimonial-nav-slider {max-width: 250px;margin: auto;margin-top: 140px;}

.testimonial-nav-slider img {
    min-height: 156px;
    max-width: 156px;
    object-fit: scale-down !important;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-color);
    border-radius: 100%;
    margin: auto;
    transition: 0.5s;
    margin-top: 0;
}

.testimonial-nav-slider .slick-arrow {
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: 9;
}

.testimonial-nav-slider .slick-list.draggable {
    overflow: unset !important;
}

.testimonial-nav-slider .slick-current.slick-active.slick-center img {
    margin-top: -80px;
    transition: 0.5s;
}

.testimonial-nav-slider {
    position: relative;
}

.testimonial-nav-slider .slick-arrow.next-arrow {
    right: 20px;
    left: auto;
}

.stickyStyle {
    position: fixed;
    transition: 0.5s;
}

.stickyStyle .container {
    background: #00000080;
    backdrop-filter: blur(5px);
    transition: 0.5s;
    border-color: #fff;
}

header .container {
    transition: 0.5s;
    border-radius: 100px;
    background: transparent;
    padding: 5px 15px 5px 30px;
    max-width: 1300px;
    border: 1px solid transparent;
}

.stickyStyle .container .button-box .t-btn {
    font-size: 16px;
    border-radius: 500px;
    transition: 0.3s;
}

.stickyStyle .container .logo img {
    transition: 0.3s;
    padding: 5px 0;
    height: 70px;
}

.case-study-slider .slick-track {
    display: flex !important;
}

.case-study-slider .slick-track .casestudy-single {
    height: -webkit-fill-available;
    display: flex;
}
footer {
    padding-top: 150px;
}

/* Inner Pages Css */

.logo-category-box .container-fluid {
    padding: 0 50px;
}

.sub-banner {
    padding: 200px 0 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sub-banner .text-box h1{
    font-size: 90px;
    font-weight:700;
    text-transform: uppercase;
    line-height: 100px;
}

.logo-category-box .row {
    row-gap: 30px;
}

.logo-category-box {
    padding: 100px 0;
    position: relative;
}

.logo-category-box::before{
    content: "";
    position: absolute;
    top: 230px;
    left: -15%;
    height: 200px;
    width: 45%;
    filter: blur(130px);
    background: var(--blue-color);
}

.logo-category-box::after{
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    filter: blur(200px);
    top: 50%;
    left: 90%;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: var(--text-color);
}

.logo-category-box .categoryBox{
    position:relative;
    overflow: hidden;
    display: block;
    border-radius:20px;
    border:1px solid #4B4B4B;
    cursor:pointer;
}

.logo-category-box .categoryBox img {
    /*height: 396px;*/
    /*object-fit: cover;*/
    width: 100%;
    transition:0.5s;
    transform:scale(1);
}

.logo-category-box .categoryBox:hover img {
    transform:scale(1.2);
    transition:0.5s;
}

.logo-category-box .categoryBox p {
    position: absolute;
    z-index: 1;
        top: 100%;
    left: 50%;
    transform: translate(-50%, 0%);
    font-size: 30px;
    font-weight: 500;
    transition: 0.5s;
    opacity: 0;
        width: 100%;
    text-align: center;
    max-width: 90%;
}

.logo-category-box .categoryBox::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
    transition: 0.3s;
}

.logo-category-box .categoryBox:hover p {
    transition: 0.5s;
    opacity: 1;
     top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-category-box .categoryBox:hover::after {
    transition: 0.3s;
       
    opacity: 0.5;
}

.logo-category-box .categoryBox::before {
    content: "";
    position: absolute;
    width: 340%;
    height: 40px;
    filter: blur(50px);
    z-index: 2;
    background: var(--text-color);
    bottom: -100%;
    left: -100%;
    transform: rotate(45deg);
    transition: 2s;
}

a.categoryBox {}

.logo-category-box .categoryBox:hover::before {
    transition: 2s;
    bottom: 100%;
    left: 100%;
}

.web-design-category-box .categoryBox {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 20px;
    border: 1px solid #4B4B4B;
    cursor: pointer;
}

.web-design-category-box .categoryBox img {
    width: 100%;
    transition: 0.5s;
    transform: scale(1);
}

.web-design-category-box .categoryBox::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, black, transparent);
    transition: 0.3s;
    opacity: 0.6;
    z-index: 1;
}

.web-design-category-box .categoryBox p {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: 500;
    transition: 0.5s;
    opacity: 1;
    width: 100%;
    text-align: center;
    max-width: 90%;
}

.web-design-category-box .row {
    row-gap: 30px;
}

.web-design-category-box .categoryBox:hover img {
    transition: 0.5s;
    transform: scale(1.2);
}

.web-design-category-box .categoryBox:hover::before {
    bottom: 0;
    height: 30%;
    transition: 0.3s;
    opacity: 1;
}

.web-design-category-box .categoryBox:hover p {
    transition: 0.5s;
    top: 90%;
}

.web-design-category-box .container-fluid {
    padding: 0 50px;
}

.web-design-category-box {
    padding: 100px 0;
    position: relative;
}

.web-design-category-box::before {
    content: "";
    position: absolute;
    top: 230px;
    left: -15%;
    height: 200px;
    width: 45%;
    filter: blur(130px);
    background: var(--blue-color);
}

.web-design-category-box::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    filter: blur(200px);
    top: 50%;
    left: 90%;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: var(--text-color);
}

.fancybox-navigation .fancybox-button div {
    background: #fff !important;
}

.fancybox-navigation .fancybox-button {
    width: 100px !important;
    height: 130px !important;
}

.fancybox-navigation .fancybox-button svg path {
    fill: #000 !important;
}

.graphicBoxes .categoryBox {
    height: 100%;
}

.graphicBoxes .categoryBox img {
    height: 100%;
    object-fit: cover;
}

.casestudy-sec-01 {
    padding: 70px 50px;
    position: relative;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.casestudy-sec-01 .casestudy-main {
    display: block;
    height: 100%;
    width: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid #4B4B4B;
}

.casestudy-main .img-box {
    height: 100%;
    width: 100%;
}

.casestudy-main .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.casestudy-main .case-study {
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 0.5s;
    z-index: 1;
    padding: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(0deg, black, transparent);
}

.casestudy-main .case-study h4 {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
}

.casestudy-main .case-study p {
    width: 100%;
    text-align: left;
    font-size: 18px;
}

.casestudy-main .case-study .line-stroke-animate {
    margin: 20px 0;
}

.casestudy-main:hover .case-study {
    top: 0;
    transition: 0.5s;
}

.casestudy-main:hover .img-box img {
    transition: 0.5s;
    transform: scale(1.05);
}

.casestudy-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 30px 0 50px;
}

.single-case-study header, .single-case-study footer {
    display: none;
}

.casestudy-banner .row {
    align-items: center;
}

.casestudy-banner .text-box h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.casestudy-banner .text-box h1 span {
    color: #086EE1;
    text-shadow: 1px 1.5px white;
}

.logo-slider-single img, .portfolio-sec-05 .latest-design-box img {
    border: 1px solid #4B4B4B;
    object-fit:cover;
}

.portfolio-sec-05 .latest-design-box img {
    height:275px;
}

.logo-slider-single {display: flex !important;height: -webkit-fill-available;}

.logo-slider-main .slick-list  .slick-track {
    display: flex !important;
}


.singleBox .row {
    position: relative;
    row-gap: unset !important;
}

.singleBox .row .col-lg-12 {
    text-align: center;
    position: sticky !important;
    top: 110px;
}

.singleBox .row .col-lg-12 .categoryBox {
    width: auto;
    display: inline-block;
    border-radius: 42px;
    margin-bottom: 30px;
    border: 0;
    height: fit-content;
}

.singleBox .row .col-lg-12 .categoryBox::after, .singleBox .row .col-lg-12 .categoryBox::before, section.logo-category-box.singleBox::after, section.logo-category-box.singleBox::before{
    content:unset !important;
}

.singleBox .row .col-lg-12 .categoryBox img {
    width: auto;
    height: 85vh;
    display: block;
    margin: auto;
    border-radius: 42px;
    object-fit: cover;
}

.web-designs-box img {
    max-height: 600px;
    object-fit: cover;
    object-position: center;
}

/* Inner Pages Css End */

.mobileVersion {
    display:none !important;
}

.sub-banner .text-box h1 {
    font-size: 70px;
}

.logo-category-box .categoryBox {
    height: 100%;
}

.logo-category-box .categoryBox img {
    height: 100%;
    object-fit: cover;
}

.latest-media-main img {
    border-radius: 10px;
}

@media only screen and (max-width: 1440px) {
    .t-btn {
    font-size: 16px;
}
header {
    padding: 0 10px;
}
.hero-slider {
    max-width: 700px;
}

.case-study-box .points-list li {
    font-size: 16px;
    padding: 7px 15px;
}

.case-study-box {
    padding: 30px 20px;
    gap: 20px;
}

.case-study-box span, .case-study-box h4 {
    font-size: 25px;
}

.service-grid-box .servicebox:nth-child(1) img {
    max-width: 355px;
}

.service-grid-box .servicebox:nth-child(2) img {
    max-width: 313px;
}

.service-grid-box .servicebox:nth-child(3) img {
    max-width: 250px;
}

.service-grid-box .servicebox:nth-child(4) img {
    max-width: 190px;
}

.service-grid-box .servicebox h4 {
    font-size: 20px;
}

.service-grid-box .servicebox p {
    font-size: 16px;
}

.service-grid-box .servicebox .tool-box {
    margin-top: 10px;
    padding-top: 10px;
}

.service-grid-box {
    max-width: 930px;
        margin: auto;
}

.service-grid-box {
    max-width: 930px;
}

.portfolio-sec-02 .col-lg-12 .text-box {
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
}

.casestudy-main .case-study {
    padding: 30px;
}

.casestudy-main .case-study h4 {
    font-size: 25px;
    line-height: normal;
}

.casestudy-main .case-study p {
    font-size: 16px;
}

.web-design-category-box .categoryBox:hover p {
    top: 80%;
}

.web-design-category-box .categoryBox:hover::before {
    height: 50%;
}
.logo-category-box .categoryBox p {
    font-size: 24px;
}

.sub-banner .text-box h1 {
    font-size: 70px;
}

}
@media only screen and (max-width: 1199px) {
    
        .sub-banner .text-box h1 {
        font-size: 50px;
        line-height: normal;
    }
    
    .hero-slider {
    max-width: 700px;
}

.case-study-box .points-list li {
    font-size: 16px;
    padding: 7px 15px;
}

.case-study-box {
    padding: 30px 20px;
    gap: 20px;
}

.case-study-box span, .case-study-box h4 {
    font-size: 25px;
}

header .nav-links {
    gap: 30px;
}

header .button-box .t-btn, .stickyStyle .container .button-box .t-btn {
    padding: 14px 17px;
    font-size: 15px;
}

.service-grid-box {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 60px;
}

.service-grid-box .servicebox img {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}

.service-grid-box .servicebox {
    margin: 0 !important;
    padding: 0 !important;
}

.service-grid-box .servicebox .tool-box {
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 20px !important;
    padding-top: 20px;
}

.service-grid-box .servicebox .tool-box::after {
    opacity: 1;
}

.portfolio-sec-03 {
    padding-top: 50px;
}

.portfolio-sec-05 {
    padding-top: 50px;
}
}
@media only screen and (max-width: 1024px) {
    header#StickyHeader {
    display: none;
}

.text-box h2 {
    font-size: 30px;
}

.portfolio-sec-01 .row .col-lg-6:nth-child(3) .text-box p {
    font-size: 16px;
}

.portfolio-sec-01 .text-box p {
    font-size: 16px;
}

.portfolio-sec-02 .text-box p {
    font-size: 16px;
}

.portfolio-sec-04 .text-box p {
    font-size: 16px;
}

.portfolio-sec-03 .text-box p {
    font-size: 16px;
}

.portfolio-sec-05 .latest-design-box img {
    height: 205px;
}

.latest-design-main {
    gap: 15px;
}

.latest-media-main {
    gap: 15px;
}

.latest-media-main .logo-slider-single img {
    width: 100%;
    max-height: unset !important;
}
.sub-banner {
    padding: 100px 0 70px;
}
    .web-design-category-box .container-fluid, .logo-category-box .container-fluid {
    padding: 0 15px;
}

.web-design-category-box, .logo-category-box , .casestudy-sec-01{
    padding: 50px 0;
}

.case-study-grid {
    grid-template-columns: 1fr 1fr;
        gap: 20px;
}
}
@media only screen and (max-width: 991px) {
    
        .sub-banner .text-box h1 {
        font-size: 35px;
    }
    .hero-slider {
    max-width: 400px;
}

.text-box {
    text-align: center;
}

.two-box {
    justify-content: center;
}

.portfolio-sec-01 .text-box .two-box {
    margin-bottom: 30px;
}

.portfolio-sec-01 .row .col-lg-6:nth-child(3) .text-box p {
    max-width: 100%;
}

.portfolio-sec-02 .text-box h2 {
    max-width: 100%;
    margin-bottom: 20px;
}

.portfolio-sec-02 .text-box p {
    max-width: 100%;
}

.portfolio-sec-02 .col-lg-12 .text-box {margin-top: 50px;}

.portfolio-sec-04 .text-box h2 {
    max-width: 100%;
    margin-bottom: 20px;
}

.portfolio-sec-04 .text-box p {
    max-width: 100%;
}

.portfolio-sec-04 {
    padding-bottom: 40px;
}

.latest-design-main, .latest-media-main {
    grid-template-columns: 1fr 1fr;
}

.portfolio-sec-07 {
    padding-top: 50px;
}

.testimonial-nav-slider img {
    min-height: 120px;
    max-width: 120px;
    object-fit: contain;
}

.portfolio-sec-07 {
    padding-bottom: 50px;
}

.testimonial-slide p {
    font-size: 16px;
    margin-bottom: 0;
}
}
@media only screen and (max-width: 767px) {
    

    
    .fancybox-navigation .fancybox-button svg path{
    fill: #fff !important;
    color: #fff !important;
}

.fancybox-navigation .fancybox-button {
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
}

.case-study-grid {
    grid-template-columns: 1fr;
}

.fancybox-navigation .fancybox-button div {
    background: #086ee147 !important;
}

.web-design-category-box .categoryBox p {
    font-size: 20px;
}
    
    .sub-banner .text-box h1 {
    font-size: 25px;
    line-height: normal;
}

.sub-banner {
    padding: 60px 0 !important;
    background-size: cover !important;
}



.casestudy-sec-01 {
    padding: 50px 0;
}

.casestudy-main .case-study {
    padding: 20px;
}

.casestudy-main .case-study h4 {
    font-size: 20px;
}

.casestudy-main .case-study p {
    font-size: 14px;
}

    .desktopVersion {
    display: none !important;
}
    .hero-banner {
    background-size: contain;
    padding-top: 80px;
}

.portfolio-sec-01 {
    padding-top: 20px;
}

.text-box h2 {
    font-size: 25px;
}

.portfolio-sec-01 .text-box p {
    font-size: 13px;
}

.t-btn {
    font-size: 14px;
}

.portfolio-sec-02 {
    padding-top: 0;
}

.service-grid-box {grid-template-columns: 1fr;}

.service-grid-box .servicebox h4 {
    margin-top: 30px;
}

.service-grid-box .servicebox .tool-box::after {
    width:100%;
}

ul.points-list {
    gap: 13px;
}

.portfolio-sec-03 {
    padding-top: 0;
}

.portfolio-sec-03 .line-stroke-animate {
    margin: 35px 0;
}

.case-study-box .points-list {
    justify-content: start;
}

.portfolio-sec-03 .button-box {
    margin-top: 50px;
}

.portfolio-sec-04 {
    padding-top: 0;
}

.portfolio-sec-05 .text-box p {
    font-size: 16px;
}

.portfolio-sec-05 .latest-design-box img {
    height: 120px;
}

.portfolio-sec-06 {padding-top: 0;}

.portfolio-sec-07 .text-box p {
    font-size: 16px;
}

.testimonial-slide p {
    padding: 20px 30px;
    font-size: 14px;
}

.testimonial-slide svg {
    width: 140px;
    height: fit-content;
}

.testimonial-nav-slider {
    margin-top: 80px;
    max-width: 170px;
}

.testimonial-nav-slider .slick-current.slick-active.slick-center img {
    margin-top: -50px;
}

.footer-bottom p {
    font-size: 14px;
    text-align: center;
}

footer {
    padding-top: 70px;
}

.mobileVersion {display: block !important;}
        .sub-banner .text-box h1 {
        font-size: 20px ;
    }
    .singleBox .row .col-lg-12 .categoryBox img {
    height: 30vh;
}
}

/* Case Study New Page Style Start */

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center!important;
    align-items: center !important;
}

.single-case-study{
    background-color:#fff !important;
}

  .Casestudy-section-banner {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 950px;
}
.Casestudy-section-banner .text h1 {
    font-size: 50px;
    color: #ffffff;
    line-height: 1.3em;
    font-weight: 600;
}
.Casestudy-section-banner .text h5 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 55px;
    line-height: 1.2;
}
.Casestudy-section-banner .text h5::after {
    content: "";
    color: #ffffff;
    background-color: #fff;
    height: 2px;
    width: 45px;
    top: 10px;
    left: 2px;
    position: absolute;
}
.Casestudy-section-01 {
    padding: 100px 0;
    position: relative;
   
}

.Casestudy-section .text h3 {
    color: #063349;
    font-size: 25px;
    font-weight: 700;
    padding: 5px 0;
}

.Casestudy-section .text p{
    color: #4c4c4c;
    font-size: 20px;
    font-weight: 400;
}
.Casestudy-section .t-btn {
    color: #419f9a !important;
    font-size: 25px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: .3s !important;
    background:transparent !important;
}
.Casestudy-section .t-btn:hover{
    color: #000 !important;
}
.Casestudy-section-01 .Tool-text{
    display: flex;
    align-items: center;
}
.Casestudy-section-01 .text p {
    max-width: 85%;
    margin-bottom: 50px;
    line-height: 1.7em;
    padding-left: 40px;
}
.Casestudy-section-01 .t-btn {
    color: #419f9a;
    font-size: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s;
    padding-left: 15px;
    padding-top: 15px;
}
.Casestudy-section-header {
    position: absolute;
    left: 0;
    margin: auto;
    right: 0;
    top: 20px;
}
.Casestudy-section-01 .t-btn i {
    padding-left: 10px;
}
.Casestudy-section-01 .t-btn:hover{
    color: #000;
}
.Casestudy-section-01 .Visit-text {
    float: right;
    
}
.Casestudy-section-01 .text p {
    max-width: 96%;
    
}
.Casestudy-section-02{
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.Casestudy-section-02 .list-text ul{
    padding: 0px;
}
.Casestudy-section-02 .list-text ul li {
    color: #fff;
    list-style: none;
    font-size: 16px;
    font-weight: 300;
    display: flex;
    column-gap: 10px;
    margin-bottom: 30px;
    max-width: 80%;
}
.Casestudy-section-02 .list-text ul li i {
    margin-top: 3px;
}
.Casestudy-section-02 .text h2 {
    font-weight: 500;
    color: #ffffff;
    font-size: 45px;
    margin-bottom: 40px;
}
.Casestudy-section-02 .text-bottom {
    padding-top: 40px;
}

.Casestudy-section-02 .text-bottom h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
   
}
.Casestudy-section-02 .text-bottom p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    max-width: 520px;
        margin-bottom: 20px;
}
.Casestudy-section-02 .list-text h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 25px;
}
.Casestudy-section-02 .text-down h4{
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
}
.Casestudy-section-02 .text-down p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    max-width: 520px;
}
.Casestudy-section-02 .text-down{
    position: relative;
}
.Casestudy-section-02 .text-down::after {
    content: "";
    background-image: url(https://clients.muhammadprojects.com/newdevelopment/wp-content/uploads/2026/06/Untitled-15.webp);
    position: absolute;
    width: 74px;
    height: 100px;
    background-repeat: no-repeat;
    margin: auto;
    right: -20px;
    top: 55px;
}
.Casestudy-section-02 .img-box {
    padding-top: 50px;
}
.Casestudy-section-02 .left-down h6 {
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
}
.Casestudy-section-02 .img-bottom .desk-img {
    margin-top: 40px;
}
.Casestudy-section-03{
    text-align: center;
    padding: 100px 0;
   
}


.Casestudy-section-03 .text {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.Casestudy-section-03 .text img {
    margin-bottom: 50px;
}
.Casestudy-section-03 .text h2 {
    color: #000;
    font-size: 45px;
    font-weight: 400;
    font-family: 'Domine', serif;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.Casestudy-section-03 .text p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    max-width: 780px;
    display: block;
    margin: auto;
    margin-bottom: 60px;
}

.Casestudy-section-04 {
    padding: 100px 0px 50px 0px;
    background-color: #e5eff3;
    margin-top: -160px;
}
.Casestudy-section-04 .text h3 {
    font-size: 45px;
    font-weight: 600;   
    color: #000000;
}
.Casestudy-section-04 .text p {
    font-size: 20px;
    color: #000000;
    font-weight: 300;
    max-width: 770px;
    line-height: 32px;
        margin-bottom: 15px;
}
.Casestudy-section-05 {
    background-color: #e4eef2;
  
}
.Casestudy-section-05 .box-img img {
    width: 100%;
}
.Casestudy-section-06 {
    padding: 100px 0px;
    background-position: 100% 177%;
    background-repeat: no-repeat;
    background-size: 100% 77%;
}
.Casestudy-section-06 .text {
    margin-bottom: 20px;
    padding-left: 30px;
}
.Casestudy-section-06 .img-box-1 img {
    margin-top: -40px;
    margin-left: -20px;
    margin-top: -40px;
}
.Casestudy-section-06 .img-box img {
   
}
.Casestudy-section-06 .text h3 {
    color: #000000;
    font-size: 45px;
    font-weight: 600;
    padding: 5px 0;
    line-height: normal;
}
.Casestudy-section-06 .text p {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    max-width: 750px;
}
.Casestudy-section-07  {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
}
.Casestudy-section-07  .text h3 {
    color: #000000;
    font-size: 45px;
    font-weight: 500;
    padding: 5px 0;
}
.Casestudy-section-07 .text p {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    max-width: 780px;
}
.Casestudy-section-07 {
    padding: 100px 0;
}
.Casestudy-section-07 .two-text {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 25px;
    margin-bottom: 10px;
}
.Casestudy-section-07 span {
    color: rgba(255, 255, 255, 0);
    border-top: 1px solid white;
    height: 10px;
}
.Casestudy-section-07 .text-img-box h6 {
    font-size: 14px;
    font-weight: 400;
    color: white;
}
.Casestudy-section-07 .text h2 {
    font-size: 45px;
    font-weight: 600;
    color: white;
}
.Casestudy-section-07 .text-img-box h4 {
    font-size: 22px;
    color: white;
    font-weight: 500;
}
.Casestudy-section-07 .text-img-box p {
    color: white;
    font-size: 18px;
    font-weight: 300;
}
.Casestudy-section-07 .text-img-box {
    margin: 40px 0 20px;
}
.Casestudy-section-07 .text-img-box-2 {
    padding-left: 75px;
}
.Casestudy-section-07 .text-img-box h6 {
    font-size: 14px;
    font-weight: 400;
    color: white;
}
.Casestudy-section-07 .text-img-box-2 h6 {
    font-size: 14px;
    font-weight: 400;
    color: white;
}
.Casestudy-section-07 .text-img-box-2 h4 {
    font-size: 22px;
    color: white;
    font-weight: 500;
}
.Casestudy-section-07 .text-img-box-2 {
    margin: 40px 0 20px;
}
.Casestudy-section-07 .text-img-box-2 p {
    color: white;
    font-size: 18px;
    font-weight: 300;
}
.Casestudy-section-07 .box-img img {
    width: 100%;
}
.Casestudy-section .mobile-img{
    display:none;

}
.Casestudy-section-02 img.wow.fadeInDown {
    display: none;
}
.Casestudy-section-02 .img-bottom img {
    margin-top: 80px;
    width: 100%;
}

.Casestudy-section img.desk-img, .Casestudy-section img.mobile-img {
    width: fit-content !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.Casestudy-section-03 .text img {
    max-width: 100px !important;
}

.Casestudy-section-03 .bottom-img img{
    max-width:unset !important;
}

header .nav-links .sub-menu {
    position: absolute;
    top: 130%;
    left: 0%;
    background: #ffffff0d;
    padding: 7px 15px;
    border: 1px solid #fff;
    border-radius: 7px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index:99;
    min-width:200px;
    width:max-content;
}

header .nav-links .menu-item-has-children {
    position: relative;
}

header .nav-links .menu-item-has-children:hover .sub-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
}

header.stickyStyle .nav-links .sub-menu {
    background: #0E1117;
    border-color: #454c5a;
}

header .nav-links .menu-item-has-children::after {
    content: ">";
    position: absolute;
    top: -2px;
    right: -16px;
    transform: rotate(90deg);
    font-family: monospace;
}

.portfolio-sec-05 .latest-design-box img, .latest-media-main img {
    transition: 0.3s;
    transform: scale(1);
}

.portfolio-sec-05 .latest-design-box img:hover, .latest-media-main img:hover {
    transition: 0.3s;
    transform: scale(1.1);
}

.service-grid-box.desktopVersion {
    min-height: 854px;
}    

.Casestudy-section-02 .img-box img {
    padding-top: 30px;
    width: 90%;
}
.Casestudy-section-03 {
    padding: 80px 0;
}
.Casestudy-section-02 {
    padding: 80px 0;
}
.Casestudy-section-01 {
    padding: 80px 0;
    background-position: 100% 100%;
    
}

.Casestudy-section-01 .t-btn {
    padding-left: 10px !important;
    padding-top: 6px !important;
    font-size: 22px !important;
    margin-right: 80px;
    padding: 0;
    border: 0;
}
.Casestudy-section-01 .Tool-text img {
    width: 22% !important;
}
.Casestudy-section-02 .list-text ul li {
    margin-bottom: 25px;
  
}
.Casestudy-section-02 .text-bottom {
    padding-top: 30px;
}
.Casestudy-section-03::after {
    height: 55px;
    width: 180px;
    top: 12%;
    right: 15px;
}
.Casestudy-section-03 .text h3 {
    font-size: 32px;
    padding: 7px 0;
}



@media only screen and (min-width: 1400px){
    .Casestudy-section .container {
    max-width: 1170px !important;
}
} 
@media only screen and (max-width: 1600px){
  
  .Casestudy-section img.mobile-img {
    display: none !important;
} 
  .Casestudy-section img.desk-img {
    display: block !important;
    width: 100%;
    margin-top: 50px;
}
     
   .Casestudy-section-banner {
    height: 800px !important;
}
.Casestudy-section .text h1 {
    font-size: 45px !important;
  
}
.Casestudy-section-banner .text h5 {
    font-size: 17px;
    margin-bottom: 7px;
    
}
.Casestudy-section-01 .text p {
    max-width: 90%;
}
.Casestudy-section .text p {
     font-size: 18px !important;
}
.Casestudy-section-03 .text h2 {
    font-size: 40px;
    padding-bottom: 15px;
}
.Casestudy-section-03 .text img {
    margin-bottom: 35px;
}
.Casestudy-section-03 .bottom-img img {
    width: 100% !important;
}
.Casestudy-section-04 .text h3 {
    font-size: 40px;
}
.Casestudy-section-04 {
    padding: 80px 0px 40px 0px;
    margin-top: -140px;
}
.Casestudy-section-06 .img-box img {
    width: 90%;
    display: block;
    margin: auto;


}
.Casestudy-section-06 {
    padding: 80px 0px;
}
.Casestudy-section-06 .text p {  
    font-size: 18px !important;
    line-height: 30px; 
}
.Casestudy-section-06 .text h3 {
  
    font-size: 40px;
}
.Casestudy-section-07 {
    padding: 80px 0;
}
.Casestudy-section-07 .text-img-box-2 {
    padding-left: 50px;
}

.Casestudy-section-01 .text h3 {
    font-size: 30px !important;
    padding: 2px 0;
}

header .nav-links {
    gap: 25px;
}
}
@media only screen and (max-width: 1199px){

  .Casestudy-section-banner {
    height: 650px !important;
}

.Casestudy-section .text h1 {
    font-size: 40px !important;
    line-height: 1.3em !important;
}
.Casestudy-section-01 .text p {
    max-width: 100%;
    margin-bottom: 40px;
    line-height: 1.7em;
    padding-left: 10px;
}
.Casestudy-section-banner .text h5 {
    font-size: 15px;
    margin-bottom: 7px;
}
.Casestudy-section .text h3 {
    font-size: 26px !important;
}
.Casestudy-section-01 .text h3 {
    font-size: 24px !important;
    padding: 3px 0;
}
.Casestudy-section-01 .t-btn {
    font-size: 20px;
    margin-right: 100px;
}
.Casestudy-section .text p {
    font-size: 17px !important;
}
.Casestudy-section .text h2 {
    font-size: 35px !important;
}
.Casestudy-section-02 .text h2 {
    margin-bottom: 30px;
}
.Casestudy-section-02 .list-text h4 {
    font-size: 24px;
    margin-bottom: 20px;
}
.Casestudy-section-02 .list-text ul li {
    font-size: 15px;
    column-gap: 9px;
    margin-bottom: 25px;
    max-width: 100%;
}
.Casestudy-section-02 .text-bottom h4 {
    font-size: 24px;
}
.Casestudy-section-02 .text-down h4 {
    font-size: 24px;

}
.Casestudy-section-02 .text-down::after {
    right: -60px;
    top: 50px;
    width: 73px;
    height: 100px;
}
.Casestudy-section-02 .img-box img {
    padding-top: 0px;
    width: 100%;
}
.Casestudy-section-02 {
    padding: 60px 0;
}
.Casestudy-section-02 .left-down h6 {
    font-size: 9px;
    padding-left: 10px;
}
.Casestudy-section-02 img.desk-img {
    margin-top: 50px;
}
.Casestudy-section-02 .img-bottom .desk-img {
    margin-top: 15px;
}
.Casestudy-section-03::after {
    height: 45px;
    width: 150px;
    top: 12%;
    right: 20px;
}
.Casestudy-section-03 {
    padding: 60px 0;
}
.Casestudy-section-03 .text p {
    margin-bottom: 40px;
}
.Casestudy-section-04 {
    padding: 70px 0px 30px 0px;
    margin-top: -120px;
}
.Casestudy-section-04 .text p {
    max-width: 100%;
    line-height: 27px;
}
.Casestudy-section-06 {
    padding: 60px 0px;
}
.Casestudy-section-06 .text p {
    line-height: 28px;
    font-size: 17px !important;
}
.Casestudy-section-06 .img-box img {
    width: 90%;
    display: block;
    margin: auto;
}
.Casestudy-section-06 .text {
    padding-left: 50px;
}
.Casestudy-section-06 .img-box-1 img{
    width: 90% !important;
    margin-top: -15px; 
    display: block;
    margin: auto;
}
.Casestudy-section-06 {
    padding: 60px 0px;
}
.Casestudy-section-03 .text h2 {
    padding-bottom: 10px;
}
.Casestudy-section-07 .text-img-box img {
    width: 80%;
}
.Casestudy-section-07 .text-img-box-2 img {
    width: 90%;
}
.Casestudy-section-07 .text-img-box h4 {
    font-size: 20px;
}
.Casestudy-section-07 .text-img-box p {
    font-size: 16px;
}
.Casestudy-section-07 .two-text {
    column-gap: 7px;
    margin-top: 20px;
    margin-bottom: 5px;
}
.Casestudy-section-07 {
    padding: 60px 0;
}
.Casestudy-section-07 .text-img-box-2 p {
    font-size: 16px;
}
.Casestudy-section-07 .text-img-box-2 h4 {
    font-size: 20px;
 
}

.service-grid-box.desktopVersion {
    display: none !important;
}
}
@media only screen and (max-width: 991px){

    .Casestudy-section-banner {
    height: 650px !important;
}

.Casestudy-section-01 {
    padding: 60px 0;
}
.Casestudy-section-banner .text h5::after {
    top: 7px;
    left: 4px;
  
}
.Casestudy-section .text h1 {
    font-size: 35px !important;
}
.Casestudy-section-banner .text h5 {
    font-size: 14px;
    margin-bottom: 5px;
}
.Casestudy-section-02 {
    padding: 50px 0;
}
.Casestudy-section-02 .left-down h6 {
display: none !important;
}
.Casestudy-section-08 {
    padding: 40px 0px;
}
.Casestudy-section-02 .text-bottom h4 {
    font-size: 22px;
}
.Casestudy-section-02 .text-down::after {
    right: 110px;
    top: 45px;
}
.Casestudy-section-02 .list-text h4 {
    font-size: 21px;
    margin-bottom: 15px;
}
.Casestudy-section-02 .text-bottom {
    padding-top: 15px;
}
.Casestudy-section-02 .list-text ul li i {
    margin-top: 4px;
    font-size: 14px;
}
.Casestudy-section-02 .text-bottom p {
    font-size: 15px;
    max-width: 700px;
    margin-bottom: 20px;
}
.Casestudy-section-02 .text-down p {

    font-size: 15px;
    max-width: 700px;
}
.Casestudy-section-02 .list-text ul li {
    font-size: 14px;
    column-gap: 8px;
    margin-bottom: 15px;
   
}
.Casestudy-section .text h2 {
    font-size: 30px !important;
}
.Casestudy-section-02 .text h2 {
    margin-bottom: 25px;
}
.Casestudy-section-02 .text-down::after {
   display: none;
}
.Casestudy-section-02 .img-bottom .desk-img {
    margin-top: 2px;
}
.Casestudy-section-03::after {
   display: none;
}
.Casestudy-section-03 .text img {
    margin-bottom: 25px;
}
.Casestudy-section-03 {
    padding: 50px 0;
}
.Casestudy-section-06 .text {
    margin-bottom: 10px;
    padding-left: 30px;
}
.Casestudy-section-06 .text h3 br {
  
    display: none !important;
}
.Casestudy-section-06 {
    padding: 50px 0px;
}
.Casestudy-section .text p {
    font-size: 16px !important;
}
.Casestudy-section-06 .text p {
    line-height: 28px;
    font-size: 16px !important;
    margin-bottom: 30px;
}
.Casestudy-section-04 .text p {
    max-width: 700px;
    line-height: 25px;
   
}
.Casestudy-section-04 {
    padding: 50px 0px 30px 0px;
    margin-top: -90px;
}


.Casestudy-section-07 .text-img-box img {
    width: 85%;
}
.Casestudy-section-07 .text-img-box-2 img {
    width: 100%;
}
.Casestudy-section-07 .text-img-box p {
    font-size: 15px;
    font-weight: 300;
}
.Casestudy-section-07 .text-img-box h4 {
    font-size: 18px;
}
.Casestudy-section-07 .text-img-box-2 h4 {
    font-size: 18px;
}
.Casestudy-section-07 .text-img-box-2 p {
    font-size: 15px;
}
.Casestudy-section-01 .text h3 {
    font-size: 20px !important;
    padding: 2px 0;
}
.Casestudy-section-07 .text-img-box {
    margin: 25px 0 20px;
}
.Casestudy-section-07 .text-img-box-2 {
    margin: 25px 0 20px;
}
.Casestudy-section-01 .t-btn {
    font-size: 18px;
}

.Casestudy-section-07 {
    padding: 40px 0;
}
.Casestudy-section .text h2 {
    font-size: 25px !important;
}
.Casestudy-section-01 .text p {
    margin-bottom: 30px;
    line-height: 1.7em;
    padding-left: 0px;
}
.Casestudy-section-02 .list-text ul li i {
    margin-top: 4px;
    font-size: 12px;
}

}
@media only screen and (max-width: 767px){
    
    .logo-slider-single, .case-study-slider .slick-track .casestudy-single{
        height:fit-content !important;
        display:block !important;
    }
    .Casestudy-section-02 .img-box {
    padding-top: 15px;
}
.Casestudy-section-02 .img-bottom img {
    margin-top: 40px;
    width: 100%;
}
.Casestudy-section .text p {
    font-size: 14px;
}

.Casestudy-section-01 {
    padding: 40px 0;
    text-align: center;
}
.Casestudy-section-01::after {
 
    display: none !important;
}
.Casestudy-section-01 .t-btn {
    font-size: 16px;
    margin-right: 50px;
}
.Casestudy-section-01 .Tool-text {
    display: flex;
    align-items: center;
    justify-content: center;
}
.Casestudy-section-01 .Visit-text {
    margin-top: 15px;
    margin-left: 60px;
    float: none;
}
.Casestudy-section-01 .Tool-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 70px;
}
.Casestudy-section-01 .t-btn i {
    padding-left: 5px;
}
.Casestudy-section .text p {
    font-size: 15px !important;
}
.Casestudy-section-header{
    text-align: center;
    top: 20px;
}
.Casestudy-section-header img {
    width: 35%;
}
.Casestudy-section-banner .text h5 {
    font-size: 13px;
    margin-bottom: 3px;
}
.Casestudy-section .text h1 {
    font-size: 30px !important;
}
.Casestudy-section-01 .text h3 {
    font-size: 18px !important;
    padding: 1px 0;
}
.Casestudy-section-banner {
    height: 550px !important;
    text-align: center;
}
.Casestudy-section-banner .text h5::after {

    display: none !important;
   
}
.Casestudy-section-banner h1 br {
    display: none !important;
}
.Casestudy-section-banner .text h5 {
    font-size: 15px;
    margin-bottom: 4px;
    padding-left: 5px;
}
.Casestudy-section-02 .text h2 {
    margin-bottom: 20px;
}
.Casestudy-section-02 .list-text h4 {
    font-size: 20px;
}
.Casestudy-section-02 .list-text ul li {
    font-size: 13px;
    column-gap: 7px;
    margin-bottom: 12px;
}
.Casestudy-section-02 .text-bottom p {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 12px;
}
.Casestudy-section-02 .text-bottom {
    padding-top: 10px;
}
.Casestudy-section-02 .text-bottom h4 {
    font-size: 20px;
}
.Casestudy-section-02 .text-down h4 {
    font-size: 20px;
}
.text h2 {
    font-size: 24px !important;
}
.Casestudy-section-03 .text img {
    margin-bottom: 30px;
}
.Casestudy-section-03 {
    padding: 40px 0;
}
.Casestudy-section-04 {
    padding: 30px 0px;
    text-align: center;
    margin-top: -80px;
    padding-bottom: 0px;
}
.Casestudy-section-03::before {
    width: 545px;
}
.Casestudy-section-03 .text p {
    margin-bottom: 30px;
}
.Casestudy-section-06 {
    padding: 40px 0px;
}
.Casestudy-section-06 .text {
    padding-left: 0px;
    text-align: center;
}
.Casestudy-section-06 .text p {
    line-height: 25px;
    margin-bottom: 5px;
}
.Casestudy-section-06 .img-box-1 img {
    width: 96% !important;
    margin-top: 0px;
    margin: auto;
    display: block;
}
.Casestudy-section-06 .img-box img {
    width: 90%;
    display: block;
    margin: auto;
}
.Casestudy-section-07 .text h2 {
    text-align: center;
}
.Casestudy-section-07 .text-img-box img {
    width: 80%;
    display: block;
    margin: auto;
}
.Casestudy-section-07 .text-img-box {
   
    text-align: center;
}
.Casestudy-section-07 .text-img-box-2 img {
    width: 80%;
    display: block;
    margin: auto;
}
.Casestudy-section-07 .text-img-box-2 {
    padding-left: 0px;
    text-align: center;
}
.Casestudy-section-07 .two-text {
    column-gap: 7px;
    margin-top: 20px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Casestudy-section-07 .two-text-2 {
    column-gap: 7px;
    margin-top: 20px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
}
@media only screen and (max-width: 575px){

.Casestudy-section-02 .img-bottom img {
    margin-top: 20px;
    display: none;
}

.Casestudy-section-05 img.wow.fadeInUp {
    display: none !important;
}

.Casestudy-section-header {
    text-align: center;
    top: 30px;
}
    .Casestudy-section-banner .text h5 {
    font-size: 12px;
}
.Casestudy-section-01 {
    padding: 30px 0;
}
.Casestudy-section-01 .t-btn {
    font-size: 14px;
}
.Casestudy-section-01 .Visit-text {
    margin-top: 10px;
    margin-left: 70px;
    float: none;
}
    .Casestudy-section-02 .text h2 {
    margin-bottom: 35px;
    text-align: center;
}
.Casestudy-section-01 .text p {
    margin-bottom: 20px;
}
.Casestudy-section .text p{
    font-size: 13px !important;
}



.Casestudy-section-02 {
    padding: 30px 0;
}
.Casestudy-section-02 .list-text h4 {
    font-size: 18px;
    margin-bottom: 18px;
}
.Casestudy-section-02 .list-text ul li {
    font-size: 12px;
    column-gap: 5px;
    margin-bottom: 12px;
}
.Casestudy-section-02 .list-text h4 {
    font-size: 16px;
    margin-bottom: 12px;
}
.Casestudy-section-02 .text-bottom p {
    font-size: 12px;
    margin-bottom: 18px;
}
.Casestudy-section-02 .text-bottom h4 {
    font-size: 18px;
}
.Casestudy-section-02 .text-down h4 {
    font-size: 18px;
}
.Casestudy-section-02 .text-down p {
    font-size: 12px;
}
.Casestudy-section-02 .text-down h4 {
    font-size: 16px;
}
.Casestudy-section-01 .Tool-text img {
    width: 18% !important;
}
.Casestudy-section-01 .Visit-text {
    margin-top: 10px;
}
.Casestudy-section .text h1 {
    font-size: 20px !important;
    line-height: 30px !important;
}
.Casestudy-section-banner .text h5 {
    font-size: 13px;
    margin-bottom: 2px;
    padding-left: 5px;
}
.Casestudy-section-banner {
    height: 350px !important;
    text-align: center;
    padding-top: 50px;
}
.Casestudy-section-01 .text h3 {
    font-size: 16px !important;
}
.Casestudy-section-02 {
    padding: 30px 10px;
}
.Casestudy-section .text h3 {
    font-size: 20px !important;
}
.Casestudy-section-03::before {
    width: 500px;
}
.Casestudy-section-03 .text img {
    margin-bottom: 20px;
    width: 15%;
}
.Casestudy-section-04 .text p {
  
    line-height: 20px;
}
.Casestudy-section-06 {
    padding: 30px 0px;
    background-image: none !important;
}
.Casestudy-section-06 .text p {
  font-size: 13px !important;
  line-height: 22px;
}
.Casestudy-section-06 .img-box img {
    width: 50%;
}
.Casestudy-section-06 .img-box-1 img {
    width: 60% !important;
  
}
.Casestudy-section .text h2 {
    font-size: 20px !important;
    text-align: center;
}
.Casestudy-section-07 {
    padding: 30px 0;
}
.Casestudy-section-07 .text-img-box-2 img {
    width: 60%;
  
}
.Casestudy-section-07 .text-img-box img {
    width: 60%;
   
}
.Casestudy-section-07 .text-img-box p {
    font-size: 12px;
}
.Casestudy-section-07 .text-img-box-2 p {
    font-size: 12px;
}
.Casestudy-section-07 .text-img-box-2 h6 {
    font-size: 10px;
  
}
.Casestudy-section-07 .text-img-box-2 h4 {
    font-size: 16px;
}
.Casestudy-section-07 .text-img-box h6 {
    font-size: 10px;
}
.Casestudy-section-07 .text-img-box h4 {
    font-size: 16px;
}  

.servicemobileboxes {
    padding: 0 20px;
}

.servicemobileboxes.service-grid-box .servicebox .tool-box {
    margin-bottom: 30px !important;
    margin-top: 10px !important;
    padding-top: 10px;
}

.servicemobileboxes.service-grid-box .servicebox .points-list li {
    font-size: 14px;
    padding: 5px 15px;
}

.servicemobileboxes.service-grid-box .servicebox p {
    font-size: 14px;
}

.servicemobileboxes.service-grid-box .servicebox h4 {
    margin-top: 20px;
}

.case-study-slider .slick-slide, .case-study-slider .slick-track .casestudy-single {
  height: auto !important;
  display: flex !important;
}

.testimonial-nav-slider {
    display: none !important;
}

.testimonial-slide p {
    height: 200px;
    overflow: overlay;
}
}

/* Case Study New Page Style End  */