/*

Theme Name : Insignia Media Works

//========== INDEX ==========//
1.Common CSS
2.Preloader CSS
3.Header CSS
4.Banner CSS
5.About Us CSS
6.Our Services CSS
7.Counter CSS
8.Creative Process CSS
9.Our Portfolio CSS
10.Testimonial CSS
11.Brands We Work With CSS
12.Call To Action CSS
13.Footer CSS
14.Scroll To Top CSS
15.Know Us Page CSS
  -Banner CSS
  -Our Journey CSS
16.Our Experties Page CSS
  -Our Experties CSS
17.Our Records Page CSS
  -Our Portfolio CSS
18.Get In Touch Page CSS
  -Contact Us CSS
19.Responsive CSS

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*========== Common CSS Start ==========*/
:root {
    --primary_color: #ed1b2e;
    --secondary_color: #231f20;
    --dark_color: #000000;
    --common_color: #555555;
    --white_color: #ffffff;
    --bg_color: #f8f8ff;
    --gradient_color: linear-gradient(45deg, #000000, #2e3090);
    --body_font: 'Source Sans 3', sans-serif;
    --title_font: 'Roboto', sans-serif;
    --gutter: 30px;
    --section-padding: 100px;
}

body {
    font-size: 16px;
    line-height: 26px;
    color: var(--common_color);
    font-family: var(--body_font);
    background: var(--bg_color);
}

p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title_font);
    color: var(--dark_color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul,
ol {
    margin: 0;
    padding-left: 20px;
}

.for-des {
    display: block;
}

.for-mob {
    display: none;
}

.sub-title {
    font-size: 14px;
    line-height: 24px;
    color: var(--primary_color);
    font-family: var(--title_font);
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 10px;
}

.sub-title:before,
.title .sub-title:after {
    content: '';
    position: relative;
    width: 50px;
    height: 2px;
    background: var(--primary_color);
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.title .sub-title:after {
    margin-left: 20px;
    margin-right: 0;
}

.h1-title {
    font-size: 70px;
    line-height: 90px;
    color: var(--white_color);
    font-family: var(--title_font);
    font-weight: 900;
    text-transform: capitalize;
    margin-bottom: 0;
}

.h1-title span,
.h2-title span {
    color: var(--primary_color);
}

.h2-title {
    font-size: 50px;
    line-height: 60px;
    color: var(--secondary_color);
    font-family: var(--title_font);
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.h3-title {
    font-size: 25px;
    line-height: 35px;
    color: var(--dark_color);
    font-family: var(--title_font);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.title {
    text-align: center;
    margin-bottom: 50px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: var(--gutter);
    --container-space: calc(var(--gutter) / 2);
    padding-right: var(--container-space);
    padding-left: var(--container-space);
}

.row {
    --bs-gutter-x: var(--gutter);
}

.slick-slider [class*=col-] {
    padding-right: calc(var(--gutter) / 2);
    padding-left: calc(var(--gutter) / 2);
}

.main-bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #dddddd;
    z-index: 0;
}

.main-bg-blur:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    z-index: 1;
}

.main-bg-blur [class*="circle-"] {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.main-bg-blur .circle-1 {
    top: -180px;
    left: 20vw;
    width: 300px;
    height: 300px;
    background: var(--primary_color);
}

.main-bg-blur .circle-2 {
    top: 50%;
    left: 50%;
    transform: translate(10vw, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary_color);
}

.main-bg-blur .circle-3 {
    bottom: 0;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient_color);
}

.main-bg-blur .circle-4 {
    bottom: 5vh;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--secondary_color);
}

main {
    position: relative;
    overflow-x: hidden;
    z-index: 10;
}

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

.sec-btn {
    max-width: 100%;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 30px;
    background: var(--primary_color);
    border-radius: 0 10px 0 10px;
    font-size: 16px;
    color: var(--white_color);
    font-family: var(--body_font);
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    outline: none !important;
    border: none;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.sec-btn:hover {
    background: var(--primary_color);
    color: var(--white_color);
    border-radius: 10px 0 10px 0;
}

.sec-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--dark_color);
    opacity: 0.1;
    transition: 0.3s;
    z-index: 0;
}

.sec-btn:hover:before {
    height: 100%;
}

.sec-btn span {
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    display: inline-block;
    font-size: 40px;
    line-height: 50px;
    color: #25D366;
    vertical-align: middle;
}

.whatsapp-btn:hover {
    color: var(--primary_color);
}

.back-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translate(0,-50%);
    width: 60px;
    height: 60px;
    background: var(--primary_color);
    border-radius: 50%;
    padding-inline: 0 3px;
    border: none;
    outline: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.swiper-button:hover {
    background: var(--white_color);
}

.swiper-button:after {
    font-size: 20px;
    font-weight: bold;
    color: var(--white_color);
    transition: 0.3s;
}

.swiper-button:hover:after {
    color: var(--primary_color);
}

.swiper-button.swiper-button-next {
    left: auto;
    right: -30px;
    padding-inline: 3px 0;
}

.swiper-pagination {
    position: relative;
    bottom: 0 !important;
    top: 0 !important;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: 20px;
    height: 5px;
    border-radius: 5px;
    background: var(--dark_color);
    opacity: 0.3;
    outline: none !important;
    transition: 0.3s;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary_color);
    opacity: 1;
    width: 40px;
}

.container {
    position: relative;
    z-index: 5;
}

.breadcrumb-box {
    margin-top: 30px;
}

.breadcrumb-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.breadcrumb-box ul li {
    font-size: 18px;
}

.breadcrumb-box ul li a {
    color: var(--white_color);
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb-box ul li a:hover {
    color: var(--primary_color);
}

.breadcrumb-box ul li i {
    font-size: 14px;
    margin-right: 5px;
}

.form-box {
    position: relative;
    margin-bottom: 30px;
    line-height: 1;
}

.form-input {
    width: 100%;
    height: 50px;
    background: var(--white_color);
    border-radius: 50px;
    border: none;
    outline: none;
    box-shadow: 3px 3px 20px rgba(0,0,0,0.15);
    padding: 5px 30px;
    color: var(--common_color);
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

select.form-input {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 60px;
}

textarea.form-input {
    height: 150px;
    resize: none;
    padding: 20px 30px;
    display: block;
    border-radius: 20px;
}

.form-input-select {
    position: relative;
}

.form-input-select i {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0,-50%);
    color: var(--common_color);
    pointer-events: none;
}

.form-box .sec-btn {
    width: 180px;
}

.common-sec {
    position: relative;
    padding: var(--section-padding) 0;
}

.common-sec-pl {
    padding-bottom: var(--section-padding);
}

.img-box {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 0 40px 0 40px;
}

.img-box .img {
    width: 100%;
    height: 100%;
    transition: 0.5s ease-out;
}

.img-box:hover .img {
    transform: scale(1.1);
}

.wave-shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    transform: rotateX(180deg);
    z-index: 5;
}

.wave-shape-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.wave-shape-top img,
.wave-shape-bottom img,
.wave-shape-top svg,
.wave-shape-bottom svg {
    width: 100%;
}
/*========== Common CSS End ==========*/

/*========== Preloader CSS Start ==========*/
body.fixed {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg_color);
    z-index: 999;
}

.preloader-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 250px;
    overflow: hidden;
}

.preloader-box img {
    max-width: 100%;
}
/*========== Preloader CSS End ==========*/

/*========== Header CSS Start ==========*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    z-index: 100;
}

.site-header.sticky-header {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header-box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    width: 120px;
}

.site-branding a {
    display: inline-block;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}

.main-navigation ul li {
    display: inline-block;
    position: relative;
}

.main-navigation ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary_color);
    transition: 0.3s;
    z-index: 0;
}

.main-navigation ul li:hover:before,
.main-navigation ul li.active:before {
    height: 100%;
}

.main-navigation ul li a {
    font-size: 16px;
    line-height: 26px;
    color: var(--white_color);
    text-transform: capitalize;
    font-family: var(--title_font);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    height: 80px;
    padding: 5px 20px;
    position: relative;
    transition: 0.3s;
}

.main-navigation ul li a:hover,
.main-navigation ul li.active a {
    color: var(--white_color);
}

.toggle-button {
    display: none;
}
/*========== Header CSS End ==========*/

/*========== Banner CSS End ==========*/
.main-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 100px;
    background-attachment: fixed;
}

.main-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark_color);
    opacity: 0.85;
    z-index: 1;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content {
    color: var(--white_color);
}

.banner-content .h1-title {
    margin-bottom: 30px;
}

.banner-content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
}

.banner-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

a.link {
    color: var(--white_color);
    font-weight: 700;
}

a.link:hover {
    color: var(--primary_color);
}
/*========== Banner CSS End ==========*/

/*========== About Us CSS Start ==========*/
.about-img-box {
    position: relative;
}

.about-img-box:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-image: url('../images/circel-shape.svg');
    background-size: 100%;
    background-position: top left;
    z-index: 0;
}

.about-img.img-box {
    width: 85%;
    height: 600px;
    position: relative;
    z-index: 0;
}

.about-img-quote {
    position: absolute;
    bottom: 40px;
    right: 0;
    display: inline-block;
    background: var(--white_color);
    width: 300px;
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    z-index: 1;
}

.about-img-quote h5 {
    font-size: 16px;
    color: var(--secondary_color);
    margin-bottom: 0;
}

.about-content {
    padding-left: 40px;
}

.about-text:not(:last-child) {
    margin-bottom: 30px;
}
/*========== About Us CSS End ==========*/

/*========== Our Services CSS Start ==========*/
.service-box.img-box {
    height: 400px;
    margin-bottom: 30px;
}

.service-box.img-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--dark_color), transparent);
    z-index: 1;
}

.service-box-content {
    position: absolute;
    bottom: -42px;
    left: 0;
    width: 100%;
    padding: 30px;
    color: var(--white_color);
    transition: 0.3s;
    z-index: 2;
}

.service-box:hover .service-box-content {
    bottom: 0;
}

.service-box-title {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.service-box .play-icon {
    width: 45px;
    height: 45px;
    font-size: 14px;
    padding-left: 3px;
    top: 15px;
    left: auto;
    right: 15px;
    transform: none;
    z-index: 5;
}

.service-box-content .h3-title,
.service-box-content .h3-title a {
    color: var(--white_color);
}

.service-box-content .h3-title a:hover {
    color: var(--primary_color);
}

.service-box-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 52px;
    margin-bottom: 0;
}

.service-box-content .link {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary_color);
    font-weight: 600;
    margin-top: 16px;
    opacity: 0;
    transition: 0.3s;
}

.service-box:hover .service-box-content .link {
    opacity: 1;
}

.service-box-content .link i {
    font-size: 14px;
    vertical-align: middle;
    margin-left: 5px;
    transition: 0.3s;
}

.service-box-content .link:hover i {
    margin-left: 10px;
}

.services-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
/*========== Our Services CSS End ==========*/

/*========== Counter CSS Start ==========*/
.main-counter {
    padding-block: 150px;
    background-attachment: fixed;
}

.main-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark_color);
    opacity: 0.9;
    z-index: 0;
}

.counter-list {
    display: flex;
    align-items: center;
}

.counter-box {
    width: 25%;
    display: inline-block;
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.counter-box:last-child {
    border: none;
}

.counter-box .icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary_color);
    border-radius: 50%;
    margin-bottom: 20px;
}

.counter-box .icon img {
    width: auto;
    height: auto;
    max-width: 60%;
    max-height: 60%;
}

.counter-box .h3-title {
    font-size: 40px;
    line-height: 50px;
    color: var(--white_color);
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    color: var(--white_color);
}
/*========== Counter CSS End ==========*/

/*========== Creative Process CSS Start ==========*/
.creative-process-content {
    padding-right: 40px;
}

.creative-process-content ul {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 0;
}

.creative-process-content ul li {
    display: flex;
}

.creative-process-content ul li .icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary_color);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 30px;
    color: var(--white_color);
    margin-right: 20px;
}

.creative-process-content ul li .h3-title {
    font-size: 22px;
    margin-bottom: 0;
}

.creative-process-content ul li .text {
    align-self: center;
}

.creative-process-img-box {
    position: relative;
}

.creative-process-img-box:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-image: url('../images/circel-shape.svg');
    background-size: 100%;
    background-position: top left;
    z-index: 0;
}

.creative-process-img.img-box {
    height: 600px;
    display: block;
    margin-left: auto;
    width: 85%;
    border-radius: 40px 0 40px 0;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70px;
    height: 70px;
    background: var(--white_color);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: var(--primary_color);
    padding-left: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    z-index: 5;
}

.play-icon:hover {
    color: var(--primary_color);
}

.play-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    pointer-events: none;
    animation: waveBtn 2s infinite;
    z-index: -1;
}

@keyframes waveBtn {
    0% {
        box-shadow: 0 0 0 0 var(--white_color);
    }
    50% {
        box-shadow: 0 0 0 40px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.creative-process-img2.img-box {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 300px;
    height: 220px;
    border-radius: 0 30px 0 30px;
    border: 8px solid var(--white_color);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
/*========== Creative Process CSS End ==========*/

/*========== Our Portfolio CSS Start ==========*/
.portfolio-slider {
    overflow: visible;
}

.portfolio-slider.swiper-3d .swiper-slide-shadow-right,
.portfolio-slider.swiper-3d .swiper-slide-shadow-left {
    background: none;
}

.portfolio-img-box.img-box {
    height: 65vh;
    min-height: 500px;
    max-height: 700px;
    border-radius: 40px;
}

.portfolio-img-box.img-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--dark_color)10%, transparent 80%);
    z-index: 1;
}

.portfolio-img-box.img-box.img:before {
    display: none;
}

.portfolio-img-box.img-box .play-icon {
    z-index: 5;
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: var(--white_color);
    z-index: 2;
}

.portfolio-content .h3-title {
    color: var(--white_color);
}

.portfolio-content .h3-title:last-child {
    margin-bottom: 0;
}

.portfolio-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.projects-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}
/*========== Our Portfolio CSS End ==========*/

/*========== Testimonial CSS Start ==========*/
.main-testimonial-slider {
    width: 100%;
    background: var(--white_color);
    box-shadow: 5px 5px 40px rgba(0,0,0,0.1);
    border-radius: 0 25px 0 25px;
    padding: 55px 40px 40px 40px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 35px;
}

.main-testimonial-slider .quote {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    font-size: 40px;
    line-height: 40px;
    color: var(--primary_color);
    display: inline-block;
    margin-top: -20px;
}

.testimonial-box {
    text-align: center;
}

.testimonial-text {
    padding: 0 10px;
    height: 130px;
    overflow: auto;
    overflow-x: hidden;
    max-width: 600px;
    margin: auto;
}

.testimonial-text::-webkit-scrollbar {
    width: 3px;
}
.testimonial-text::-webkit-scrollbar-thumb {
    background: var(--primary_color);
}
.testimonial-text::-webkit-scrollbar-track {
    background: #dddddd;
}

.review-by {
    margin-top: 30px;
}

.rattings {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rattings span {
    color: #FDCC0D;
}

.review-by h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary_color);
    margin-bottom: 0;
}

.review-by p {
    font-size: 14px;
    line-height: 24px;
}

.testimonial-slider {
    overflow-x: hidden;
}

.testimonial-slider .swiper-pagination {
    position: absolute;
    top: 100% !important;
    bottom: auto !important;
}

.testimonial-review-img {
    position: relative;
}

[class^="review-img-"] {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid var(--white_color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.review-img-1 {
    top: -20px;
    right: 103%;
    width: 50px;
    height: 50px;
    border-width: 2px;
    animation: movedelement3 8s linear infinite;
}

.review-img-2 {
    top: 100px;
    right: 115%;
    animation: movedelement 5s linear infinite;
}

.review-img-3 {
    top: 200px;
    right: 103%;
    width: 40px;
    height: 40px;
    border-width: 2px;
    animation: movedelement4 5s linear infinite;
}

.review-img-4 {
    top: 340px;
    right: 108%;
    animation: movedelement2 10s linear infinite;
}

.review-img-5 {
    top: -20px;
    left: 103%;
    width: 40px;
    height: 40px;
    border-width: 2px;
    animation: movedelement 7s linear infinite;
}

.review-img-6 {
    top: 100px;
    left: 115%;
    animation: movedelement3 6s linear infinite;
}

.review-img-7 {
    top: 180px;
    left: 105%;
    width: 50px;
    height: 50px;
    border-width: 2px;
    animation: movedelement4 6s linear infinite;
}

.review-img-8 {
    top: 340px;
    left: 108%;
    animation: movedelement2 8s linear infinite;
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }
    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }
    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(-10px, -10px);
        transform: translate(-10px, -10px);
    }
    50% {
        -webkit-transform: translate(-5px, -5px);
        transform: translate(-5px, -5px);
    }
    75% {
        -webkit-transform: translate(-10px, 5px);
        transform: translate(-10px, 5px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement3 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(15px, 15px);
        transform: translate(15px, 15px);
    }
    50% {
        -webkit-transform: translate(8px, 8px);
        transform: translate(8px, 8px);
    }
    75% {
        -webkit-transform: translate(15px, -8px);
        transform: translate(15px, -8px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement4 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(-15px, -15px);
        transform: translate(-15px, -15px);
    }
    50% {
        -webkit-transform: translate(-8px, -8px);
        transform: translate(-8px, -8px);
    }
    75% {
        -webkit-transform: translate(-15px, 8px);
        transform: translate(-15px, 8px);
    }
    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
/*========== Testimonial CSS End ==========*/

/*========== Brands We Work With CSS Start ==========*/
.brands-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.brands-img {
    width: 100%;
    height: 100px;
    background: var(--white_color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 10px 0 10px;
}

.brands-img img {
    width: auto;
    max-height: 100%;
    height: auto;
    max-width: 100%;
}
/*========== Brands We Work With CSS End ==========*/

/*========== Call To Action CSS Start ==========*/
.main-call-action {
    padding-block: 150px;
    background-attachment: fixed;
}

.main-call-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark_color);
    opacity: 0.9;
    z-index: 0;
}

.call-action-box {
    text-align: center;
    color: var(--white_color);
}

.call-action-box .h2-title {
    color: var(--white_color);
}

.call-action-box p {
    display: inline-block;
    max-width: 800px;
}

.call-action-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
/*========== Call To Action CSS End ==========*/

/*========== Footer CSS Start ==========*/
.site-footer {
    position: relative;
    padding-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-logo a {
    display: inline-block;
    width: 150px;
    margin-bottom: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.social-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--primary_color);
    font-size: 16px;
    color: var(--primary_color);
    transition: 0.3s;
}

.social-icon a:hover {
    background: var(--primary_color);
    color: var(--white_color);
}

.footer-info {
    width: 30%;
}

.footer-link,
.footer-contact {
    padding-top: 20px;
}

.footer-link .h3-title,
.footer-contact .h3-title {
    color: var(--secondary_color);
    margin-bottom: 20px;
}

.footer-link  ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link ul li a {
    color: var(--common_color);
    display: inline-block;
    padding-left: 15px;
    transition: 0.3s;
    position: relative;
}

.footer-link ul li a:hover {
    color: var(--primary_color);
}

.footer-link ul li a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
}

.contact-link-box:not(:last-child) {
    margin-bottom: 20px;
}

.contact-link-box a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    line-height: 26px;
    color: var(--common_color);
    transition: 0.3s;
}

.contact-link-box a.address {
    max-width: 330px;
}

.contact-link-box a:hover {
    color: var(--primary_color);
}

.contact-link-box a span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--primary_color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 10px;
    color: var(--white_color);
}

.footer-bottom {
    border-top: 1px dashed rgba(0,0,0,0.3);
    padding: 20px 0;
}

.copy-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.copy-right p {
    margin-bottom: 0;
}

.copy-right p a {
    color: var(--primary_color);
    font-weight: 700;
    transition: 0.3s;
}

.copy-right p a:hover {
    text-decoration: underline;
}
/*========== Footer CSS End ==========*/

/*========== Scroll To Top CSS Start ==========*/
.scrolltop {
    position: fixed;
    bottom: 45px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary_color);
    font-size: 18px;
    line-height: 41px;
    color: var(--white_color);
    text-align: center;
    border: 2px solid var(--primary_color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 90;
    transition: 0.3s;
}

.scrolltop:hover {
    background: var(--white_color);
    color: var(--primary_color);
}
/*========== Scroll To Top CSS End ==========*/

/*========== Know Us Page CSS Start ==========*/
/* Banner CSS Start */
.main-banner.inner-banner {
    height: auto;
    display: block;
    padding-block: 220px;
    background-attachment: unset;
}

.main-banner.inner-banner .banner-content {
    text-align: center;
}

.main-banner.inner-banner .banner-content .h1-title {
    margin-bottom: 0;
}

.main-banner.inner-banner .banner-content .h1-title span {
    color: var(--primary_color);
}
/* Banner CSS End */

/* Our Journey CSS Start */
.journey-slider {
    position: relative;
    padding-bottom: 120px;
    margin-top: 80px;
}

.journey-slider:before {
    content: '';
    position: absolute;
    top: 170px;
    left: 50%;
    transform: translate(-50%);
    width: 100vw;
    height: 10px;
    background: var(--secondary_color);
}

.journey-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    row-gap: 60px;
}

.journey-year {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: var(--primary_color);
    border-radius: 50%;
    position: relative;
    margin-bottom: 42px;
}

.swiper-slide:nth-child(even) .journey-year {
    margin-top: 42px;
    margin-bottom: 0;
}

.journey-year:before {
    content: '';
    position: absolute;
    top: calc(100% - 7px);
    left: 50%;
    transform: translate(-50%);
    width: 50px;
    height: 20px;
    border-top: 20px solid var(--primary_color);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.swiper-slide:nth-child(even) .journey-year:before {
    top: auto;
    bottom: calc(100% - 7px);
    border-top: 0;
    border-bottom: 20px solid var(--primary_color);
}

.journey-year:after {
    content: '';
    position: absolute;
    top: calc(100% + 12px);
    width: 2px;
    height: 50px;
    background: var(--common_color);
    opacity: 0.5;
}

.swiper-slide:nth-child(even) .journey-year:after {
    top: auto;   
    bottom: calc(100% + 12px);
}

.journey-year h4 {
    font-size: 20px;
    color: var(--secondary_color);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: var(--white_color);
    border-radius: 50%;
    margin-bottom: 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.journey-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.journey-content:before {
    content: '';
    position: absolute;
    bottom: calc(100% + 31px);
    left: 50%;
    transform: translate(-50%);
    width: 20px;
    height: 10px;
    border-bottom: 10px solid var(--secondary_color);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.swiper-slide:nth-child(even) .journey-content:before {
    top: calc(100% + 38px);
    border-top: 10px solid var(--secondary_color);
    border-bottom: 0;
}

.journey-content-text {
    height: 142px;
    overflow: auto;
    overflow-x: hidden;
    padding: 0 10px;
}

.journey-content-text::-webkit-scrollbar {
    width: 3px;
}

.journey-content-text::-webkit-scrollbar-thumb {
    background: var(--primary_color);
}

.journey-content-text::-webkit-scrollbar-track {
    background: #dddddd;
}

.journey-content-text p {
    font-size: 14px;
    line-height: 23px;
}

.journey-slider .swiper-button {
    top: auto;
    bottom: 0;
    left: calc(50% - 40px);
    transform: translate(-50%);
}

.journey-slider .swiper-button.swiper-button-next {
    left: calc(50% + 40px);
}
/* Our Journey CSS End */

.why-choose-us .creative-process-img.img-box {
    width: 100%;
}

.why-choose-us .creative-process-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-choose-us .creative-process-content ul li {
    position: relative;
    padding-left: 30px;
}

.why-choose-us .creative-process-content ul li .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-right: 10px;
}

.why-choose-us .creative-process-content ul li .h3-title {
    font-size: 18px;
}

.why-choose-us .creative-process-content ul li:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--primary_color);
    border-radius: 50%;
    font-size: 10px;
    line-height: 20px;
    color: var(--white_color);
    text-align: center;
}


/*========== Know Us Page CSS End ==========*/

/*========== Our Experties Page CSS Start ==========*/
/* Our Experties CSS Start */
.about-img.img-box.page-experties-img {
    width: 100%;
}

.main-page-experties:nth-child(even) .about-img-box:before {
    left: auto;
    right: -50px;
}

.main-page-experties:nth-child(even) .about-img.img-box.page-experties-img {
    border-radius: 40px 0 40px 0;
}

.main-page-experties:nth-child(even) .about-content.page-experties-content {
    padding-left: 0;
    padding-right: 40px;
}

.main-page-experties .about-content .call-action-btn {
    justify-content: flex-start;
}

.main-page-experties .about-content a.link {
    color: var(--primary_color);
    text-transform: capitalize;
}

.main-page-experties .about-content a.link:hover {
    color: var(--primary_color);
    text-decoration: underline !important;
}
/* Our Experties CSS End */
/*========== Our Experties Page CSS End ==========*/

/*========== Our Records Page CSS Start ==========*/
/* Our Portfolio CSS Start */
.page-records-lists {
    margin-bottom: -30px;
}

.page-records-lists .nav-tabs {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    gap: 0 20px;
    margin-bottom: 50px;
}

.page-records-lists .nav-tabs .nav-link {
    margin: 0;
    border: none;
    outline: none;
    background: transparent;
    border-radius: 0;
    font-size: 18px;
    color: var(--common_color);
    font-weight: 500;
    position: relative;
    padding: 10px 15px;
    text-transform: capitalize;
    transition: 0.3s;
}

.page-records-lists .nav-tabs .nav-link:hover {
    color: var(--primary_color);
}

.page-records-lists .nav-tabs .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary_color);
    border-radius: 10px 10px 0 0;
    transition: 0.3s;
    z-index: 0;
}

.page-records-lists .nav-tabs .nav-link.active:before {
    height: 100%;
}

.page-records-lists .nav-tabs .nav-link.active {
    color: var(--white_color);
}

.page-records-lists .nav-tabs .nav-link span {
    position: relative;
    z-index: 1;
}

.page-records-lists .portfolio-box {
    margin-bottom: 30px;
}

.page-records-lists .portfolio-img-box.img-box {
    height: 450px;
    max-height: unset;
    min-height: unset;
}
/* Our Portfolio CSS End */
/*========== Our Records Page CSS End ==========*/

/*========== Get In Touch Page CSS Start ==========*/
/* Contact Us CSS Start */
.contact-us-link {
    position: relative;
    margin-bottom: var(--section-padding);
}

.contact-us-link-box {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    padding: 30px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    transition: 0.3s;
}

.contact-us-link-box:hover {
    background: var(--white_color);
    box-shadow: 5px 5px 30px rgb(0 0 0 / 10%);
    border-color: var(--white_color);
}

.contact-us-link-box .icon {
    width: 50px;
    height: 50px;
    background: var(--primary_color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    line-height: 22px;
    color: var(--white_color);
    margin: 0 auto 10px auto;
}

.contact-us-link-box .h4-title {
    font-size: 20px;
    line-height: 30px;
    color: var(--secondary_color);
    margin-bottom: 10px;
}

.contact-us-link-text {
    text-align: center;
}

.contact-us-link-text p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 500;
}

.contact-us-link-text p a {
    display: inline-block;
    color: var(--common_color);
    transition: 0.3s;
}

.contact-us-link-text p a:hover {
    color: var(--primary_color);
}

.contact-us-form {
    padding-right: 40px;
}

.contact-us-form .h2-title {
    margin-bottom: 40px;
}

.google-map,
.google-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    font-size: 0;
    line-height: 1;
}
/* Contact Us CSS End */
/*========== Get In Touch Page CSS End ==========*/

/*========== Responsive CSS Start ==========*/
@media (min-width: 2100px) {
    .container {
        max-width: 1400px;
    }
}

@media screen and (max-width: 1399px) {
    .main-navigation ul li a {
        padding: 5px 10px;
    }
    .h1-title {
        font-size: 60px;
        line-height: 80px;
    }
    .h2-title {
        font-size: 45px;
        line-height: 55px;
    }
    .banner-content p,
    .counter-box p {
        font-size: 18px;
        line-height: 28px;
    }
    .about-content {
        padding-left: 20px;
    }  
    .counter-box .h3-title {
        font-size: 35px;
        line-height: 45px;
    }  
    .creative-process-content,
    .main-page-experties:nth-child(even) .about-content.page-experties-content,
    .contact-us-form {
        padding-right: 20px;
    }
    .page-records-lists .nav-tabs {
        gap: 0 5px;
    }
    .page-records-lists .nav-tabs .nav-link {
        padding: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .main-navigation ul {
        gap: 10px 5px;
    }
    .main-navigation ul li a {
        font-size: 14px;
    }
    .header-btn .sec-btn {
        padding: 5px 20px;
    }
    .about-img.img-box,
    .creative-process-img.img-box {
        width: 90%;
    }
    .about-img-box:before {
        top: -40px;
        left: -40px;
        width: 120px;
        height: 120px;
    }
    .about-content {
        padding-left: 0;
    }
    .h1-title {
        font-size: 55px;
        line-height: 75px;
    }
    .h2-title {
        font-size: 40px;
        line-height: 50px;
    }
    .h3-title {
        font-size: 22px;
        line-height: 32px;
    }
    .service-box.img-box {
        height: 350px;
        border-radius: 0 30px 0 30px;
    }
    .service-box-content {
        padding: 30px 20px;
    }
    .counter-box .h3-title {
        font-size: 30px;
        line-height: 40px;
    }
    .creative-process-content,
    .main-page-experties:nth-child(even) .about-content.page-experties-content,
    .contact-us-form {
        padding-right: 0;
    }   
    .creative-process-img2.img-box {
        width: 280px;
        height: 180px;
        border-radius: 0 20px 0 20px;
    } 
    .creative-process-img-box:before {
        top: -40px;
        right: -40px;
        width: 120px;
        height: 120px;
    }
    .portfolio-content {
        padding: 30px;
    }
    .footer-info p {
        font-size: 14px;
        line-height: 24px;
    }
    .main-banner.inner-banner {
        padding-block: 180px 140px;
    }
    .page-records-lists .nav-tabs {
        gap: 0;
    }
    .page-records-lists .nav-tabs .nav-link {
        font-size: 16px;
        padding: 10px 7px;
    }
    .brands-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }
    .for-des,
    .header-btn,
    .testimonial-review-img {
        display: none;
    }    
    .for-mob {
        display: block;
    }
    .toggle-button {
        display: block;
        position: fixed;
        top: 31px;
        right: 30px;
        background: transparent;
        border: none;
        outline: none;
        width: 30px;
        height: 19px;
        z-index: 110;
    }
    .toggle-button span {
        width: 100%;
        height: 3px;
        display: block;
        background: var(--white_color);
        margin-bottom: 5px;
        border-radius: 5px;
        position: relative;
        top: 0;
        transition: 0.3s;
    }    
    .toggle-button span:last-child {
        margin-bottom: 0;
    } 
    .toggle-menu .toggle-button span {
        background: var(--primary_color);
    }   
    .toggle-menu .toggle-button span:nth-child(1) {
        transform: rotate(45deg);
        top: 8px;
    }    
    .toggle-menu .toggle-button span:nth-child(2) {
        opacity: 0;
    }    
    .toggle-menu .toggle-button span:nth-child(3) {
        transform: rotate(-45deg);
        top: -8px;
    }
    .header-menu-box {
        position: fixed;
        top: 0;
        right: -400px;
        width: 350px;
        height: 100vh;
        background: var(--dark_color);
        box-shadow: -20px 0 20px rgba(255,255,255,0.05);
        padding: 100px 0 40px;
        overflow: auto;
        overflow-x: hidden;
        transition: 0.5s;
        z-index: 100;
    } 
    .toggle-menu .header-menu-box {
        right: 0;
    }
    .header-menu-box::-webkit-scrollbar {
        width: 3px;
    }
    .header-menu-box::-webkit-scrollbar-thumb {
        background: var(--primary_color);
    }
    .header-menu-box::-webkit-scrollbar-track {
        background: #dddddd;
    }
    .site-header {
        height: 80px;
        background: rgba(0,0,0,0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .site-header-box {
        height: auto;
    }
    .site-branding {
        position: fixed;
        top: 0;
        left: 30px;
        height: 80px;
        display: flex;
        align-items: center;
    }    
    .header-menu {
        width: auto;
        height: auto;
        display: block;
    } 
    .header-mobile-call {
        position: fixed;
        top: 0;
        right: 90px;
        height: 80px;
        display: flex;
        align-items: center;
    }
    .header-mobile-call a {
        font-size: 20px;
        line-height: 1;
        color: var(--white_color);
    }
    .header-mobile-call a:hover {
        color: var(--primary_color);
    }
    .black-shadow {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: none;
        z-index: 90;
    }
    .main-navigation ul {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px 0;
    }
    .main-navigation ul li {
        width: 100%;
    }
    .main-navigation ul li:before {
        width: 0;
        height: 100%;
    }
    .main-navigation ul li:hover:before, 
    .main-navigation ul li.active:before {
        width: 100%;
    }
    .main-navigation ul li a {
        font-size: 18px;
        line-height: 28px;
        padding: 10px 30px;
        height: auto;
        display: block;
    }
    .header-mobile-contact {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid var(--common_color);
        padding-inline: 30px;
    }    
    .header-mobile-contact a {
        color: var(--white_color);
        display: inline-flex;
        align-items: center;
        transition: 0.3s;
    }    
    .header-mobile-contact a:hover {
        color: var(--primary_color);
    }    
    .header-mobile-contact a i {
        vertical-align: middle;
        margin-right: 10px;
        flex-shrink: 0;
        color: var(--primary_color);
    }
    .main-banner {
        height: auto;
        padding-block: 180px 160px;
    }
    .banner-content {
        text-align: center;
    }    
    .banner-btn {
        justify-content: center;
    }
    .h1-title {
        font-size: 50px;
        line-height: 70px;
    }   
    .sub-title {
        margin-bottom: 0;
    } 
    .about-img-box:before {
        top: -30px;
        left: -30px;
        width: 100px;
        height: 100px;
    }
    .about-img.img-box, 
    .creative-process-img.img-box {
        width: calc(100% - 70px);
    }    
    .about-img.img-box,
    .creative-process-img.img-box {
        height: 450px;
    }
    .about-content,
    .creative-process-content {
        padding-top: 40px;
    }
    .main-counter,
    .main-call-action {
        padding-block: 100px;
        background-attachment: unset;
    }
    .counter-list {
        flex-wrap: wrap;
        row-gap: 60px;
        position: relative;
    }
    .counter-list:before,
    .counter-list:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1px;
        height: 100%;
        background: var(--common_color);
    }
    .counter-list:after {
        width: 100%;
        height: 1px;
    }
    .counter-box {
        width: 50%;
        border: 0;
        padding-inline: 20px;
    }
    .counter-box .h3-title {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 5px;
    }
    .creative-process-img-box:before {
        top: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
    }
    .portfolio-img-box.img-box,
    .page-records-lists .portfolio-img-box.img-box {
        height: 500px;
        min-height: unset;
        max-height: unset;
    }
    .footer-content {
        flex-wrap: wrap;
    }
    .footer-info {
        width: 100%;
    }
    .site-footer {
        padding-top: var(--section-padding);
    }
    .copy-right {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .main-banner.inner-banner {
        background-attachment: unset;
    }
    .breadcrumb-box {
        margin-top: 10px;
    }
    .breadcrumb-box ul li {
        font-size: 16px;
    }
    .page-records-lists .nav-tabs {
        position: relative;
        left: 50%;
        transform: translate(-50%);
        width: 100vw;
        padding: 0 30px;
        justify-content: space-between;
        gap: 0 10px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        margin-bottom: 40px;
    }
    .page-records-lists .nav-tabs::-webkit-scrollbar {
        width: 0;
        height: 0;
        opacity: 0;
    }
    .page-records-lists .nav-tabs::-webkit-scrollbar-thumb {
        width: 0;
        height: 0;
        background: transparent;
        opacity: 0;
    }
    .page-records-lists .nav-tabs::-webkit-scrollbar-track {
        background: transparent;
        opacity: 0;
    }
    .page-records-lists .nav-tabs .nav-link {
        font-size: 16px;
        padding: 10px 15px;
    }
    .contact-us-link-box {
        max-width: 400px;
        display: block;
        margin: 0 auto 30px;
        height: auto;
    }
    .contact-us-form {
        margin-top: -30px;
        margin-bottom: 60px;
    }
    .contact-us-form .h2-title {
        text-align: center;
        margin-bottom: 30px;
    }
    .form-box .sec-btn {
        display: flex;
        margin: auto;
    }
    .google-map iframe {
        height: 300px;
    }
    .brands-list {
        grid-template-columns: repeat(4, 1fr);
    }
    #mail-status {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    .h1-title {
        font-size: 45px;
        line-height: 65px;
    }
    .main-banner {
        padding-block: 160px 130px;
    }
    .banner-content .h1-title {
        margin-bottom: 20px;
    }
    .banner-content p, 
    .counter-box p {
        font-size: 16px;
        line-height: 26px;
    }  
    .about-img-box:before {
        top: -20px;
        left: -20px;
        width: 80px;
        height: 80px;
    }
    .about-img.img-box, .creative-process-img.img-box {
        height: 400px;
    }
    .about-img-quote {
        width: 280px;
        bottom: 30px;
        padding: 15px;
    }  
    .about-img-quote p,
    .about-img-quote h5 {
        font-size: 14px;
        line-height: 24px;
    }
    .sub-title {
        font-size: 13px;
    }
    .sub-title:before, .title .sub-title:after {
        width: 30px;
        margin-right: 10px;
    }
    .title .sub-title:after {
        margin-right: 0;
        margin-left: 10px;
    }
    .h2-title {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 20px;
    }
    .title {
        margin-bottom: 35px;
    }
    .service-box.img-box {
        height: 300px;
    }
    .main-counter, .main-call-action {
        padding-block: 80px;
    }
    .counter-box .icon {
        margin-bottom: 15px;
    }
    .counter-box .h3-title {
        font-size: 22px;
        line-height: 32px;
    }
    .creative-process-img-box:before {
        top: -20px;
        right: -20px;
        width: 80px;
        height: 80px;
    }
    .creative-process-img2.img-box {
        width: 220px;
        height: 150px;
        border-width: 5px;
    }
    .creative-process-content ul li .icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
    .portfolio-img-box.img-box,
    .page-records-lists .portfolio-img-box.img-box {
        height: 400px;
        border-radius: 30px;
    }
    .play-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    .main-testimonial-slider {
        padding: 45px 30px 30px 30px;
    }
    .testimonial-text {
        height: 180px;
    }
    .main-banner.inner-banner {
        padding-block: 160px 110px;
    }
    .journey-slider {
        margin-top: 50px;
        padding-bottom: 100px;
    }
    .brands-img {
        height: 70px;
    }
}

@media screen and (max-width: 575px) {
    .preloader-box {
        width: 150px;
    }
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --container-space: calc(var(--gutter));
    }
    .header-menu-box {
        width: 300px;
    }
    .wave-shape-bottom,
    .wave-shape-top {
        width: 575px;
        display: flex;
        justify-content: center;
    }
    .about-img.img-box, .creative-process-img.img-box {
        width: calc(100% - 40px);
        height: 350px;
    }
    .h1-title {
        font-size: 40px;
        line-height: 60px;
    }
    .h2-title {
        font-size: 30px;
        line-height: 40px;
    }
    .counter-box {
        padding-inline: 10px;
    }
    .counter-box .icon {
        width: 60px;
        height: 60px;
    }
    .counter-box p {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0;
    }
    .counter-box .h3-title {
        margin-bottom: 0;
    }
    .creative-process-img2.img-box {
        width: 150px;
        height: 100px;
    }
    .footer-link, .footer-contact {
        padding-top: 0;
    }
    .footer-link .h3-title, .footer-contact .h3-title {
        margin-bottom: 15px;
    }
    .scrolltop {
        bottom: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 14px;
        line-height: 35px;
    }
    .why-choose-us .creative-process-content ul {
        grid-template-columns: repeat(1, 1fr);
    }
    .brands-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 400px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --container-space: calc(var(--gutter) / 2);
    }
    .swiper-button {
        left: -15px;
        width: 50px;
        height: 50px;
    }
    .swiper-button.swiper-button-next {
        right: -15px;
    }
    .swiper-button:after {
        font-size: 15px;
    }
    .header-menu-box {
        width: 270px;
    }
    .site-branding {
        left: 15px;
        width: 100px;
    }
    .toggle-button {
        right: 15px;
    }
    .header-mobile-call {
        right: 70px;
    }
    .main-navigation ul li a {
        padding: 10px 15px;
        font-size: 16px;
        line-height: 26px;
    }
    .header-mobile-contact {
        padding-inline: 15px;
    }
    .main-banner {
        padding-block: 140px 110px;
    }
    .h1-title {
        font-size: 35px;
        line-height: 55px;
    }
    .h2-title {
        font-size: 28px;
        line-height: 38px;
    }
    .about-img-quote {
        width: 240px;
    }
    .about-img-quote p, .about-img-quote h5 {
        font-size: 12px;
        line-height: 22px;
    }
    .about-img-quote p {
        margin-bottom: 7px;
    }
    .about-img.img-box, .creative-process-img.img-box {
        width: calc(100% - 30px);
    }
    .creative-process-content ul li .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 10px;
    }
    .creative-process-content ul li .h3-title {
        font-size: 20px;
    }
    .portfolio-content {
        padding: 20px;
    }
    .portfolio-img-box.img-box,
    .page-records-lists .portfolio-img-box.img-box {
        height: 350px;
    }
    .portfolio-content p {
        -webkit-line-clamp: 2;
    }
    .main-testimonial-slider {
        padding: 45px 15px 30px 15px;
    }
    .footer-logo a {
        width: 120px;
    }
    .footer-content {
        margin-bottom: 40px;
    }
    .main-banner.inner-banner {
        padding-block: 140px 80px;
    }
    .page-records-lists .nav-tabs {
        padding: 0 15px;
    }
    .page-records-lists .nav-tabs .nav-link {
        padding: 5px 15px;
    }
    .contact-us-link-box {
        padding: 30px 15px;
    }
    .form-input {
        padding: 5px 20px;
    }
    .form-input-select i {
        right: 20px;
    }
    select.form-input {
        padding-right: 40px;
    }
    textarea.form-input {
        padding: 20px;
    }
    .brands-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
/*========== Responsive CSS End ==========*/