:root {
	--black-color:#1e1e1e;
    --black-color1:#363636;
    --orange-color:#e56f4a;
	--white-color: #f5f5f5;
	--dark-purple:#b5dfff;
	--light-purple:#c3abff;
	/* --yellow-color:#fed35b; */
    --yellow-color:#fed35b;
	--light-pink:#fbc1d4;
	--dark-pink:#f0b5ff;
	--light-yellow:#fff5b5;
    --bg-color1:#fcf8ec;  
}
.lenis {
    height: auto;
  }
body {
	 font-family: "Work Sans", sans-serif;
	font-style: normal;
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 1.2;
	position: relative;
	overflow-x: hidden;
	color: var(--black-color);
	position: relative;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    height: 100%;
    overflow: hidden;
  }
body.sw-body-color {
    background-color: var(--bg-color1);
}

.img-fluid {
	max-width: 100%;
	height: auto;
	width: 100%;
}
.container {
	max-width: 1170px;
}
.row>* {
	padding-right: 15px;
	padding-left: 15px;
}
*,
*:before,
*:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a,
a:hover,
a:focus {
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	 font-family: "Work Sans", sans-serif;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin: 0;
	padding: 0;
	word-break: break-word;
}
img {
	max-width: 100%;
}
input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
	outline: none !important;
	box-shadow: none;
}
ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
p {
	margin: 0px;
	padding: 0;
	word-break: break-word;
}
label{
    display: block;
    text-transform: capitalize;
}

/* width */

::-webkit-scrollbar {
	width: 0px;
}

::-webkit-scrollbar-track {
	background: var(--white-color);
}

::-webkit-scrollbar-thumb {
	background: var(--black-color);
	width: 0px;
}
/* gsap scroll text hide */
.gsap-marker-scroller-start {
    display: none !important;
}
.gsap-marker-scroller-end{
    display: none !important;
}
.gsap-marker-end {
    display: none !important;
}
/* cursor css */
.cursor {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--white-color); /* Fixed cursor color */
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevent interference */
    transition: transform 0.1s ease-out;
    position: relative;
    z-index: 9;
}


/*preloader css start*/

.sw-preloader-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #e56f4a;;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
  }

  .sw-preloaderLogo {
    display: flex;
    gap: 4px;
    font-size: 170px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
  }

  .sw-preloaderLogo span {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
  }






/*preloader css end*/

/* common button css */
.sw-banner-btn-width {
    width: 170px;
}
a.sw-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 10px 30px;
    height: 50px;
    border-radius: 50px;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
	position: relative;
	overflow: hidden;
	width: fit-content;
	z-index: 11;
    transition: all 0.5s;
    
	
}
a.sw-all-btn span svg {
    width: 20px;
    height: 20px;
    fill: #222222;
    position: relative;
    top: -2px;
    margin: 0px 5px 0px 0px;
    transition: all 0.5s;
    display: none;
}
a.sw-all-btn > span.sw-all-btn-text{
	color: var(--black-color);
	transition: all 0.5s;
}
.sw-all-btn:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	z-index: -1;
	background-color: var(--black-color);
	/* box-shadow: inset 135px 0 0 0 var(--black-color); */
	border-radius: 50px;
	transition: all 0.5s;
}
a.sw-all-btn:hover{
	color: var(#ffffff);
}
a.sw-all-btn:hover > span.sw-all-btn-text {
    color: #ffffff;
}
a.sw-all-btn:hover:after{
	transform: scale(1);
}
a.sw-all-btn:hover > span.sw-all-btn-icon > svg {
    display: block;
    fill: #ffffff;
	
}
/* ========== banner css start ===========*/
.sw-banner-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--orange-color);
    padding: 0px 0px 10px;
}
.sw-banner-logo {
    text-align: center;
    padding: 50px 0px 50px;
}
.sw-banner-logo img{
    width: 100%;
}
.sw-logo-animation h2 {
    text-transform: uppercase;
    font-size:180px;
    font-weight: 900;
	animation-name: text;
	animation-duration: 7s;
	animation-iteration-count: infinite;
}
@keyframes text {
	0% {
	  color: black;
	  
	}
	30% {
	  letter-spacing: 15px;
	  
	}
	85% {
	  letter-spacing: 8px;
	}
	100% {
	  letter-spacing: 15px;
	}
  }
  .sw-banner-sec1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0px 80px;
    transition: all 0.5s;
}
.sw-banner-sec2-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* width: calc(100% - 55%); */
}
.sw-banner-btn1 > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}
.sw-banner-btn > p {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 10px 30px;
    height: 50px;
    border-radius: 50px;
    color: #000000;
    font-weight: 500;
    font-size: 22px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: fit-content;
    z-index: 11;
    transition: all 0.5s;
}
.sw-smily-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
    transition: all 0.5s;
    margin: 0px 0px 0px -70px;
	animation: animName 2s linear;
}
.sw-smily-icon svg {
    width: 30px;
    transform: rotate(180deg);
}
.sw-banner-btn1 > a:hover .sw-smily-icon{
	margin: 0;
	animation: animName 2s linear;
}
@keyframes animName {
	0%{
	   transform: rotate(20deg);
	  }
   50%{
	   transform: rotate(100deg);
	  }
   }
   .sw-banner-sec2-box1 {
    text-align: center;
    padding: 0px 0px 0px 340px;
}
.sw-banner-sec2-box1.sw-banner-sec2-box1-desktop-none {
    display: none;
}
.sw-banner-sec2-box1 h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
}
.sw-banner-sec2-box1 p {
    color: #ffffff;
    font-weight: 300;
    font-size: 30px;
    line-height: normal;
}
.sw-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
    transition: all 0.7s;
}
.sw-arrow svg {
    width: 30px;
    height: 30px;
    fill: var(--black-color);
    transform: rotate(180deg);
}
.sw-arrow:hover{
	animation:1s  slide-left;
}
.sw-menu-toggle{
    display: none;
}
.sw-menu-toggle-cross{
    display: none;
}
/* popup css start */
button.btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 1;
    z-index: 9;
}
.btn-close:focus {
    outline: 0;
    box-shadow: unset;
    opacity: 1;
}
button.btn.btn-primary {
    background: red;
    position: relative;
}
.sw-lets-work-popup-wrap .modal-header {
    padding: 0px;
    border: none;
}
.sw-lets-work-popup-wrap .modal-dialog {
    max-width: 1000px;
}
.sw-model-forgot .modal-dialog {
    max-width: 630px;
}
.sw-model-forgot .modal-body {
    padding: 80px 50px 90px;
}

.sw-lets-work-popup-wrap .modal-body {
    padding:10px 50px 40px;
}
.sw-lets-work-popup-wrap .sw-lets-work-popup-body > h2 {
    font-size: 70px;
    font-weight: 600;
    padding: 0px 0px 50px;
}

.sw-lets-work1.sw-lets-work2 {
    padding: 30px 0px 0px 0px;
}
.sw-lets-work1 > h2 {
    text-transform: capitalize;
    font-size: 35px;
    font-weight: 500;
    padding: 0px 0px 20px;
}
.sw-model-forgot .sw-lets-work1 h2 {
    font-size: 50px;
    max-width: 370px;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
}
.sw-lets-work1 > ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.sw-lets-work1 ul li a {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--black-color);
    padding: 10px 20px;
    border: 1px solid #cccccc;
    border-radius: 50px;
    display: block;
}
.sw-lets-work1.sw-lets-work2 ul li a {
    padding: 0px;
    border: none;
    font-size: 25px;
    font-weight: 600;
}
.sw-lets-work1.sw-lets-work2 ul {
    justify-content: space-between;
    padding: 80px 0px 0px 0px;
}
.sw-lets-head h2 {
    text-transform: capitalize;
    font-size: 35px;
    font-weight: 500;
    padding: 30px 0px 20px;
}
.sw-lets-field input {
    color: var(--black-color);
    height: 45px;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 18px;
    border: 1px solid #ced4da;
}
.sw-lets-field input .form-control:focus{
    border: 1px solid #ced4da !important;
}
.sw-lets-textarea textarea {
    width: 100%;
    resize: none;
    border-radius: 10px;
    padding: 10px 20px;
    height: 250px;
    overflow: auto;
    font-size: 18px;
    margin: 30px 0px 0px;
    border: 1px solid #ced4da;
}









/* header menu */

.sw-banner-sec2-box2 {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.5s;
    justify-content: flex-end;
}
body.sw-header-menuOpen .sw-banner-sec2-box2 {
    /* right: 15px; */
}
ul.sw-headerMenu {
    display: flex;
    gap: 10px;
    background-color: #ffffff;
    height: 50px;
    align-items: center;
    padding: 0px 10px;
    border-radius: 50px;
    transition: all 0.5s;
    position: relative;
    right: -130px;
   opacity: 0;
   transition: opacity 0.3s ease, transform 0.3s ease;
}
.sw-banner-header-menu {
    display: flex;
}
ul.sw-headerMenu > li:nth-child(1){
    transition-delay: 0.3s;
}
ul.sw-headerMenu > li:nth-child(2){
    transition-delay: 0.6s;
}
ul.sw-headerMenu > li:nth-child(3){
    transition-delay: 0.9s;
}
ul.sw-headerMenu > li:nth-child(4){
    transition-delay: 0.12s;
}
ul.sw-headerMenu > li > a {
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    padding: 5px 5px 5px 10px;
    border-radius: 25px;
    transition: all 0.5s;
}
.sw-menuClick {
    background-color: #ffffff;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    padding: 5px 20px;
    border-radius: 25px;
    transition: all 0.5s;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
body.sw-header-menuOpen ul.sw-headerMenu {
    opacity: 1;
    right: -140px;
}
body.sw-header-menuOpen .sw-arrow {
    transform: translate(-480px, 0);
}
body.sw-header-menuOpen .sw-arrow svg {
    transform: rotate(0deg);
}
/* other pages header css */
.sw-header-two-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:40px 30px 170px;
    background-color: var(--bg-color1);
    position: relative;
    z-index: 1;
}
.sw-header-two-wrapper .swLogo {
    max-width: 650px;
    margin: 0px 0px 0px 350px;
}
.swLogo.swLogo-desktop-none {
    text-align: center;
    padding: 30px 0px 20px;
    display: none;
}
.sw-header-two-wrapper .sw-banner-btn > p {
    background-color: var(--orange-color);
    color: var(--white-color);
}
.sw-header-two-wrapper .sw-arrow {
    background-color: var(--orange-color);
}
.sw-header-two-wrapper .sw-arrow svg{
    fill: var(--white-color);
}
.sw-header-two-wrapper .sw-menuClick{
    background-color: var(--orange-color);
    color: var(--white-color);
}
.sw-header-two-wrapper ul.sw-headerMenu{
    background-color: var(--orange-color);
}
.sw-header-two-wrapper .sw-smily-icon {
    background-color: var(--orange-color);
}
.sw-header-two-wrapper .sw-smily-icon svg{
    fill: var(--white-color);
}
/*================= banner slider css start ============*/
.sw-banner-slider-wrap {
    padding: 0px 50px;
}
/* swiper 3d slider css start */
.sw-banner-slider-wrap .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 480px;
	height: 840px;
	background: #000;
	border-radius: 20px;
	overflow: hidden;
	/* box-shadow: 0px 24px 36.48px 1.52px rgba(0, 0, 0, 0.21); */
}
.sw-banner-slider-wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sw-banner-slider-wrap .swiper-3d {
    perspective: 1425px;
}
  /* serious facts section css */
.sw-banner-bottom-section {
    display: flex;
    justify-content: space-between;
	padding: 70px 250px 0px 30px;
}
.sw-series-facts-slider-wrap {
    position: relative;
    overflow: hidden;
    width: 380px;
}
.sw-serious-facts-content .swiper-pagination {
    color: var(--white-color);
    font-size: 25px;
    font-weight: 600;
    width: 700px;
}
.sw-fact-arrow {
    position: relative;
    bottom: -70px;
    max-width: 120px;
}
.sw-fact-arrow .swiper-button-next:after{
    display: none;
}
.sw-fact-arrow .swiper-button-prev:after{
    display: none;
}

.sw-fact-arrow .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #ffffff;
}
.sw-fact-arrow .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #ffffff;
}
.sw-fact-arrow .swiper-button-next svg {
    fill: #ffffff;
    width: 20px;
}
.sw-fact-arrow .swiper-button-prev svg {
    fill: #ffffff;
    width: 20px;
}
.sw-serious-facts-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0px 0px 15px;
    margin: 0px 0px 15px;
}
.sw-serious-facts-content:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #ffffff;
}
.sw-serious-facts-content > h2 {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 600;
}
  .sw-serious-facts-content > p{
	color: #ffffff;
    text-transform: capitalize;
	font-size: 30px;
    font-weight: 300;
  }
  .sw-facts-no h2 {
    color: #ffffff;
    font-size:90px;
	font-weight: 600;
}
.sw-facts-no p {
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    max-width: 370px;
    line-height: 1.2;
}
.sw-about-us-content h2 {
    font-size: 90px;
    color: #ffffff;
    font-weight: 500;
}

.sw-common-text-arrow > a{
    display: flex;
    align-items: center;
	padding: 50px 0px 0px;
}
.sw-common-text-arrow > a > span.sw-common-text{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    background: #ffffff;
    padding: 10px 30px;
    height: 50px;
    border-radius: 50px;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
	text-transform: capitalize;
    transition: all 0.5s;
}
.sw-common-text-arrow > a > span.sw-common-text-arrow{
	width: 50px;
    height: 50px;
    display: flex
;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
    transition: all 0.5s;
}
.sw-common-text-arrow > a > span.sw-common-text-arrow > svg {
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
}
.sw-services-text > h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white-color);
    text-transform: capitalize;
    padding: 110px 0px 20px 50px;
}
/* ========== banner css end ===========*/
/* =======brand strategy section start ==========*/
.sw-service-one-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 20px 62px;
	background-color: var(--light-purple);
}
.sw-servicesHead > h2 {
    font-size: 40px;
    padding: 100px 40px 40px;
}

.sw-serviceHead > h2 {
    font-size: 120px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0px 0px 80px;
	text-transform: capitalize;
    cursor: pointer;
}
.sw-serviceHead.sw-serviceHead-white{
    color: var(--white-color);
}
.sw-service-content > h2 {
	text-transform: capitalize;
    font-size: 30px;
    max-width: 600px;
    padding: 0px 0px 20px 0px;
}
.sw-service-content.sw-service-content-white > h2{
    color: var(--white-color);
}
.sw-service-content > p {
    font-size: 20px;
    font-weight: 500;
}
.sw-service-content ul li {
    font-size: 18px;
    font-weight: 500;
    padding: 0px 0px 15px 30px;
    color: var(--white-color);
    position: relative;
    transition: all 0.5s;
}
.sw-service-content ul li span {
    position: absolute;
    left: 0px;
    top: -1px;
}
.sw-service-content.sw-service-content-black ul li{
    color: var(--black-color);
}
.sw-service-content.sw-service-content-black ul li span svg{
    fill: var(--black-color);
}
.sw-service-content ul li span svg{
    fill: var(--white-color);
}
.sw-service-content ul li:hover{
    transform: translateX(-5px);
}
.sw-serviceImg {
    padding: 30px 0px 0px 0px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}
.sw-serviceImg img {
    transition: all 0.5s;
}
.sw-serviceImg:hover img{
    transform: scale(0.9);
}

/* ======= Creative Media section start ==========*/
.sw-service-two-wrapper {
    padding: 40px 20px 52px;
	background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}
/* .sw-serviceHead > h2 {
	text-transform: capitalize;
    font-size: 120px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0px 0px 80px;
	text-transform: capitalize;
    cursor: pointer;
} */
/* .sw-creative-media-content > h2 {
    font-size: 30px;
    max-width: 600px;
    padding: 0px 0px 20px 0px;
}
.sw-creative-media-content > p {
    font-size: 20px;
    font-weight: 500;
} */
/* .sw-creative-media-img {
    padding: 30px 0px 0px 0px;
} */


/* ======= Visual Identity section start ==========*/
.sw-visual-identity-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 20px 52px;
	background-color: var(--yellow-color);
}
/* .sw-visual-identityHead > h2 {
    font-size: 120px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0px 0px 80px;
	text-transform: capitalize;
    cursor: pointer;
} */
/* .sw-visual-identity-content > h2 {
    font-size: 30px;
    max-width: 600px;
    padding: 0px 0px 20px 0px;
}
.sw-visual-identity-content > p {
    font-size: 20px;
    font-weight: 500;
} */
/* .sw-visual-identity-img {
    padding: 30px 0px 0px 0px;
} */

/* ======= website section start ==========*/
.sw-website-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 20px 52px;
	background-color: var(--black-color);
}
/* .sw-websiteHead > h2 {
    font-size: 120px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0px 0px 80px;
	color: var(--white-color);
    cursor: pointer;
} */
/* .sw-website-content > h2 {
    font-size: 30px;
    max-width: 600px;
    padding: 0px 0px 20px 0px;
	color: var(--white-color);
}
.sw-website-content > p {
    font-size: 20px;
    font-weight: 500;
	color: var(--white-color);
} */
/* .sw-website-img {
    padding: 30px 0px 0px 0px;
} */
/* our approch section start */
.sw-our-apporch-box .sw-common-text-arrow a {
    justify-content: center;
}

/* ======== brand launches section start ===========*/
.sw-brand-launches-wrapper {
    position: relative;
    overflow: hidden;
    padding: 70px 40px 70px;
    background-color: var(--orange-color);
    z-index: 1;
}
.sw-brand-launches-heading {
    text-align: center;
    padding: 0px 0px 50px 0px;
}
.sw-brand-launches-heading h2 {
    font-size: 60px;
    font-weight: 600;
    color: var(--white-color);
    cursor: pointer;
}
/* .sw-brand-launches-heading h3 {
    font-size: 60px;
    font-weight: 400;
} */
.sw-brand-launches-heading h3 {
    font-size: 60px;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
}
.sw-brand-launches-box > img {
    width: 100%;
    max-height: 500px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
	border-radius: 10px;
}

.sw-brand-launches-box {
    padding: 0px 0px 40px 0px;
}
.sw-brand-launches-content {
    padding: 20px 0px 0px 0px;
}

.sw-brand-launches-content > h2 > a {
    font-size: 25px;
    display: block;
    color: var(--white-color);
    font-weight: 600;
}
.sw-brand-launches-content > p{
	font-size: 23px;
    display: block;
    color: var(--white-color);
    font-weight: 500;
	padding: 10px 0px 0px 0px;
}
.sw-see-more-projects .sw-common-text-arrow a {
    justify-content: center;
}
/* ============ testimonials section csss start =========== */
.sw-testimonial-wrapper{
    position: relative;
    overflow: hidden;
    padding: 70px 40px;
    background-color: var(--orange-color);
}
.sw-testimonial-heading > h2 {
    font-size: 120px;
    font-weight: 700;
    /* color: var(--white-color); */
    padding: 0px 0px 70px 0px;
}
/* testimonial slider css start */
.sw-testimonial-client-info {
    display: flex;
    align-items: center;
    gap: 30px;
}
.sw-testimonial-slider-wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .sw-testimonial-box{
    /* background-color: #db6844; */
}
.sw-testimonial-box {
    padding: 20px 20px;
    /* background: var(--orange-color); */
    border-radius: 10px;
}
.sw-testimonial-client-img > img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
}
.sw-testimonial-clientName > h2{
    font-size: 25px;
    /* color: var(--white-color); */
    text-transform: capitalize;
}
.sw-testimonial-content {
    padding: 40px 0px 0px 0px;
}
.sw-testimonial-content > p{
    font-size: 24px;
    color: var(--white-color);
}
/* whats trending section css start */
.sw-trending-wrapper {
    padding: 150px 0px 0px;
}
.sw-trendingBox {
    margin: 0px 0px 30px;
}
.sw-trending-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 70px 0px;
}
.sw-trending-head > h2 {
    font-size: 120px;
    font-weight: 700;
    /* color: var(--white-color); */
}
.sw-trendingBox > a:hover p{
    border-bottom-color: var(--white-color);
}
.sw-trending-img{
    margin: 0px 0px 30px 0px;
}
.sw-trending-img > img {
    width: 100%;
    border-radius: 10px;
}

.sw-trendingBox > a > p {
    line-height: 1.5;
    font-size: 25px;
    color: var(--white-color);
   
    border-bottom: 2px solid transparent;
    display: inline;
    transition: all 0.5s;
}
/* ========== our serious relationship css start ============*/
.sw-our-serious-relationship-wrapper {
    position: relative;
    overflow: hidden;
    padding: 70px 40px;
    background-color: var(--black-color);
}
.sw-our-serious-rel-left > h2{
    font-size: 40px;
    color: var(--white-color);
}
.sw-our-seriou-rel-logo {
    display: grid;
    gap: 70px;
    flex-wrap: wrap;
    padding: 0px 0px 150px 0px;
    grid-template-columns: repeat(3, 280px);
    text-align: center;
}
.sw-our-ser-logo img {
    
}
.sw-match-team-box {
    background-color: var(--light-purple);
    border-radius: 10px;
    padding: 40px 40px;
    position: relative;
    min-height: 530px;
    max-height: 530px;
    margin: 0px 0px 15px 0px;
    transition: all 0.5s;
}
.sw-match-team-heading h2 {
    font-size: 40px;
    color: var(--black-color);
    font-weight: 600;
}
.sw-match-team-heading h3 {
    font-size: 40px;
    font-weight: 400;
    color: var(--black-color);
}
.sw-match-team-bottom-head {
    position: absolute;
    bottom: 20px;
}
.sw-match-team-bottom-head > h2{
    transition: all 0.5s;
}
.sw-match-team-bottom-head > h2 > span {
    font-size: 100px;
    font-weight: 600;
    color: var(--black-color);
    position: relative;
    left: -60px;
    transition: all 0.5s;
}
.sw-match-team-bottom-head > h2 > svg {
    width: 50px;
    height: 50px;
    position: relative;
    top: -30px;
    fill: var(--black-color);
    left: -30px;
    transition: all 0.5s;
    opacity: 0;
}
.sw-match-team-box:hover .sw-match-team-bottom-head > h2 > svg{
    opacity: 1;
    left: 0;
}
.sw-match-team-box:hover .sw-match-team-bottom-head > h2 > span{
    left: 0;
}
.sw-ourTeam-box-color{
    background-color: var(--orange-color);
}
.sw-ourTeam-box-color .sw-match-team-heading h2{
    color: var(--white-color);
}
.sw-ourTeam-box-color .sw-match-team-heading h3{
    color: var(--white-color);
}
.sw-ourTeam-box-color .sw-match-team-bottom-head > h2{
    color: var(--white-color);
}
.sw-ourTeam-box-color .sw-match-team-bottom-head > h2 > span > svg {
    fill: var(--white-color);
}
/* =========== footer css start ============*/
.sw-footer-wrapper{
    position: relative;
    overflow: hidden;
    background-color: var(--orange-color);
    padding: 70px 40px 20px;
}
.sw-footer-sec1 >h2 {
    font-size: 30px;
    font-weight: 400;
    color: var(--white-color);
    padding: 20px 0px 0px 0px;
}
.sw-footer-sec2 > ul > li {
    position: relative;
    transition: all 0.5s;
}
.sw-footer-sec2 > ul > li:hover{
    transform: translateX(-5px);
}
.sw-footer-sec2 > ul > li:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: var(--white-color);
    height: 2px;
    width: 0;
    transition: all 0.5s;
}
.sw-footer-sec2 > ul > li > a{
    color: var(--white-color);
    font-size: 50px;
    display: block;
    text-transform: capitalize;
    padding: 10px 0px;
}
.sw-footer-sec2 > ul > li:hover::after{
    width: 100%;
}
.sw-footer-sec3 > ul > li {
    color: var(--white-color);
    font-size: 30px;
    text-align: right;
    padding: 10px 0px;
}
.sw-footer-sec3 > ul > li > a{
    color: var(--white-color);
    font-size: 50px;
    text-transform: capitalize;
}
.sw-footer-sec2.sw-footer-social {
    padding: 0px 0px 0px 70px;
}
.sw-footer-sec2.sw-footer-menu {
    padding: 0px 0px 0px 50px;
}
.sw-footer-logo {
    padding: 120px 0px 30px;
}
.sw-footer-logo img {
    width: 100%;
}
.sw-footer-copywrite-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sw-footer-copywrite-left > ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.sw-footer-copywrite-left.sw-footer-copywrite-left1 > ul {
    gap: 30px;
}
.sw-footer-copywrite-left > ul > li {
    text-transform: uppercase;
    font-size: 23px;
    color: var(--white-color);
    font-weight: 500;
    transition: all 0.5s;
}
.sw-footer-copywrite-left > ul > li > a{
    color: var(--white-color);
}
.sw-footer-copywrite-left > ul > li:hover{
    transform: translateX(-5px);
    color: var(--black-color);
}
.sw-footer-copywrite-left > ul > li:hover a{
    color: var(--black-color);
}
/* background white footer css */
.sw-footer-wrapper.sw-white-footer-wrapper {
    background-color: transparent;
}
.sw-footer-sec2.sw-footer-menu ul li:after {
    background-color: var(--black-color);
}
.sw-footer-sec2.sw-footer-social ul li:after {
    background-color: var(--black-color);
}
.sw-footer-wrapper.sw-white-footer-wrapper .sw-footer-sec1 h2 {
    color: var(--black-color);
}
.sw-footer-wrapper.sw-white-footer-wrapper .sw-footer-sec2 ul li a{
    color: var(--black-color);
}
.sw-footer-wrapper.sw-white-footer-wrapper .sw-footer-sec3 ul li {
    color: var(--black-color);
}
.sw-footer-wrapper.sw-white-footer-wrapper .sw-footer-sec3 ul li a {
    color: var(--black-color);
}
.sw-footer-wrapper.sw-white-footer-wrapper .sw-footer-copywrite-left ul li {
    color: var(--black-color);
}
.sw-footer-wrapper.sw-white-footer-wrapper .sw-footer-copywrite-left ul li:hover{
    color: var(--orange-color);
}
.sw-footer-wrapper.sw-white-footer-wrapper .sw-footer-copywrite-left ul li a {
    color: var(--black-color);
}
.sw-footer-wrapper.sw-white-footer-wrapper .sw-footer-copywrite-left ul li:hover a{
    color: var(--orange-color);
}
/* yellow footer */
.sw-footer-wrapper.sw-white-footer-wrapper.sw-yellow-footer-wrapper {
    background-color: var(--bg-color1);
}
/* ==================== about page css start ======================*/
.sw-about-main-wrapper{
    background-color: var(--bg-color1);
    padding: 0px 30px;
    transition: all 0.5s;
}
/* about team slider css start */
.sw-about-team-box {
    position: relative;
    transition: all 0.5s;
}
.swAbout-team .swiper-wrapper {
    margin: 40px 0px;
}
.sw-about-team-box img {
    border-radius: 10px;
    width: 205px;
    height: 270px;
    object-fit: cover;
    object-position: top center;
    transition: all 0.5s;
}
.sw-about-team-box:hover img{
    transform: scale(1.1);
}
/* about team slider css end */
/*  */
.sw-about-year-heading > h2 {
    font-size: 380px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.6;
    padding: 15px 0px 0px;
}
.sw-about-year-heading > h3 {
    font-size: 200px;
    font-weight: 300;
    text-transform: uppercase;
}
.sw-about-para-head {
    text-align: center;
    padding: 50px 0px 30px;
}

.sw-about-para-head > h2 {
    font-size: 40px;
    font-weight: 600;
}
.sw-about-para-head p {
    font-size: 40px;
    font-weight: 300;
}
.sw-about-para1 {
    max-width: 830px;
    margin: 0px auto 0;
    text-align: center;
}
.sw-about-para1.sw-about-para3 {
    margin: 0px auto 0;
}
.sw-about-para1 > p {
    font-size: 50px;
    font-weight: 400;
}
.sw-about-para1 > p > span {
    font-weight: 600;
}
.sw-about-para1.sw-about-para2 {
    margin: 60px auto 60px;
}

/*  */
.sw-about-big-img {
    padding: 70px 0px 70px;
    position: relative;
    overflow: hidden;
}
.sw-about-big-img img {
    width: 100%;
    height: 100%;
  background-size: cover;
  /* transform: scale(1.2); */
}
/* section left right css */
.sw-about-left1 {
    padding: 0px 150px 0px 0px;
    margin: 0px 0px 30px 0px;
}
.sw-about-left1 > h2{
    font-size: 100px;
    font-weight: 600;
}
.sw-about-left1 > p{
    font-size: 30px;
}
.sw-about-right1 {
    background-color: var(--orange-color);
    border-radius: 10px;
    padding: 0px 30px 50px;
    margin: 0px 0px 30px 0px;
}
.sw-about-right1 h2 {
    font-size: 300px;
    color: var(--white-color);
    font-weight: 600;
    position: relative;
    top: -15px;
}
.sw-about-right1 p {
    font-size: 40px;
    color: var(--white-color);
    max-width: 400px;
}
/*  */
.sw-about-left2 {
    background-color: var(--light-pink);
    border-radius: 10px;
    padding: 50px 30px 50px;
    margin: 0px 0px 30px 0px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}
.sw-about-left2 h2 {
    font-size: 200px;
    color: var(--black-color);
    line-height: 0.9;
    font-weight: 600;
    padding: 0px 0px 100px;
}
.sw-about-left2 h2:hover {
    -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 80%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
  }
  
  @-webkit-keyframes shine {
    from {
      -webkit-mask-position: 150%;
    }
    
    to {
      -webkit-mask-position: -50%;
    }
  }
.sw-about-left2 p {
    font-size: 40px;
    max-width: 620px;
    font-weight: 500;
}
.sw-about-right2 {
    background-color: var(--light-purple);
    padding: 50px 30px 50px;
    border-radius: 10px;
    margin: 0px 0px 30px 0px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}
.sw-about-right2 h2 {
    font-size: 300px;
    position: relative;
    top: -53px;
}
.sw-about-right2 p {
    font-size: 40px;
    font-weight: 500;
    max-width: 400px;
    padding: 50px 0px 0px;
}
/*  */
.sw-about-left3{
    background-color: var(--yellow-color);
    padding: 50px 30px 50px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.sw-about-left3 h2 {
    font-size: 70px;
    font-weight: 600;
    max-width: 520px;
}
.sw-about-left3 p {
    font-size: 40px;
    font-weight: 500;
    max-width: 430px;
    padding: 250px 0px 0px;
}
.sw-about-right3 {
    background-color: var(--black-color);
    padding: 50px 30px 50px;
    border-radius: 10px;
    position: relative;
    min-height: 830px;
    max-height: 830px;
    position: relative;
    z-index: 1;
}

.sw-about-right3 h2{
    font-size: 100px;
    color: var(--white-color);
}
.sw-about-right3 p {
    font-size: 40px;
    color: var(--white-color);
    position: absolute;
    bottom: 50px;
    max-width: 410px;
}
/* according to text change the image */
.sw-about-text-scrolling-wrapper {
    padding: 70px 0px;
}
.sw-about-text-scrolling1 {
    padding: 0px 0px 70px;
}
.sw-about-text-scrolling-wrapper > h2 {
    font-size: 50px;
    color: var(--black-color);
    padding: 0px 0px 40px 0px;
}
.sw-about-text-scrolling1 > h2 {
    font-size: 50px;
    font-weight: 600;
}
.sw-about-text-scrolling1 > h2 > span {
    font-weight: 300;
}
.sw-about-text-scrolling1 > p {
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0px 0px 0px;
}
.sw-about-textImage {
    position: relative;
}
.sw-about-textImage img {
    position: absolute;
    top: 0px;
    right: 0px;
    left: auto;
    border-radius: 10px;
}
.sw-about-text-scrolling1.active h2 > span{
    color: var(--orange-color);
    font-weight: 600;
}
.sw-about-text-scrolling1.active p > b{
    color: var(--orange-color);
}
/*  */
.sw-match-team-box.sw-match-team-box1{
    background-color: var(--black-color);
}
.sw-match-team-box.sw-match-team-box1 .sw-match-team-heading h2{
    color: var(--white-color);
}
.sw-match-team-box.sw-match-team-box1 .sw-match-team-heading h3{
    color: var(--white-color);
}
.sw-match-team-box.sw-match-team-box1 .sw-match-team-bottom-head h2 span{
    color: var(--white-color);
}

.sw-match-team-box.sw-match-team-box1 .sw-match-team-bottom-head h2 svg {
    fill: var(--white-color);
}
.sw-match-team-box.sw-ourTeam-box-color .sw-match-team-bottom-head h2 span{
    color: var(--white-color);
}
.sw-match-team-box.sw-ourTeam-box-color .sw-match-team-bottom-head h2 svg{
    fill: var(--white-color);
}
/* ============= service page css start ===============*/
.sw-service-banner-heading {
    background-color: var(--bg-color1);
    padding: 120px 0px 250px 0px;
}
.sw-service-banner-heading h2 {
    font-size: 90px;
    max-width: 1190px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}
/* service box css start */
.sw-service-sec2-wrapper {
    background-color: var(--bg-color1);
    padding: 0px 20px 100px;
}

.sw-service-sec2-box1 {
    padding: 20px;
}

.sw-service-sec2-box1 h2{
    font-size: 30px;
}

.sw-service-sec2-box1 p {
    font-size: 25px;
    padding: 25px 240px 0px 0px;
}

.sw-service-sec2-box2 {
    padding: 20px 20px 120px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.sw-service-sec2-box2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0px;
    width: 0;
    height: 100%;
    background: var(--orange-color);
    /* border-radius: 10px; */
    z-index: -1;
    transition: all 0.5s;
}
.sw-service-sec2-box2:hover:before{
    width: 100%;
}
.sw-service-sec2-box2:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background-color: var(--orange-color);
    transition: all 0.5s;
}
.sw-service-sec2-box2:hover:after{
    border-radius: 10px;
}
.sw-service-sec2-box2 h2{
    font-size: 55px;
    color: var(--black-color);
}

.sw-service-sec2-box2 p{
    font-size: 25px;
    color: var(--black-color);
    padding: 25px 0px 0px 0px;
}
/* ======= why serious is good ========*/
.sw-serious-good-wrapper {
    background-color: var(--bg-color1);
    padding: 90px 0px 0;
    position: relative;
    z-index: 1;
}
.sw-serious-good-heading h2 {
    font-size: 115px;
    font-weight: 400;
    padding: 0px 40px 0px 40px;
}
.sw-serious-good-heading h2 span {
    display: block;
    font-weight: 600;
}
.sw-serious-box1-head1 {
    padding: 0px 0px 30px 0px;
}
.sw-serious-box1-head1 h2 {
    font-size: 40px;
    position: relative;
    padding: 0px 0px 0px 40px;
}
.sw-serious-box1-head1 h2 span {
    padding: 0px 30px 0px 0px;
    position: absolute;
    left: 0;
}
.sw-serious-box1-para p{
    font-size: 25px;
}
.sw-serious-box1-para {
    padding: 0px 60px 130px;
}
/* service countdown section css start */
.sw-countdown-wrapper {
    background-color: var(--bg-color1);
    padding: 0px 40px;
    position: relative;
    z-index: 1;
}
.sw-countdown-box {
    background-color: #d2d2fb;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    margin: 0px 0px 20px 0px;
    min-height: 500px;
    max-height: 500px;
    z-index: 1;
    transition: all 0.5s;
}
.sw-countdown-box:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    height: 7px;
    background-color: #a4a4f0;
    border-radius: 0px 0px 10px 10px;
    transform: scale(0);
    transition: all 0.5s;
}
.sw-countdown-box:hover:after{
   transform: scale(1);
}
.sw-countdown-box:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 0px;
    background-color: #b7b7ec;
    z-index: -1;
    border-radius: 10px;
    transition: all 0.8s;
}
.sw-countdown-box:hover:before{
    height: 100%;
}
.sw-countdown-heading h2 span {
    font-weight: 600;
}
.sw-countdown-heading h2 {
    font-size: 115px;
    max-width: 1470px;
    text-align: center;
    margin: 0 auto 50px;
    font-weight: 400;
}
.sw-countdown-no h1{
    font-size: 115px;
}
.sw-countdown-para {
    position: absolute;
    bottom: 40px;
}
.sw-countdown-para p {
    font-size: 20px;
    padding: 0px 50px 0px 0px;
}
/* ============= work page css start ==============*/
/* tab css start */
.sw-tab-wrapper {
    background-color: var(--bg-color1);
    padding: 0px 40px 150px;
}
.sw-tab-head nav .nav-tabs {
    border-bottom: 1px solid transparent;
    justify-content: center;
    padding: 150px 0px 250px;
}
.sw-tab-head nav button.nav-link {
    position: relative;
    font-size: 100px;
    text-transform: capitalize;
    font-weight: 600;
    color: #000000;
    margin: 0px 30px;
    opacity: 0.3;
}
.sw-tab-head .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link span {
    font-size: 20px;
    position: absolute;
    right: -40px;
    background: #000000;
    padding:20px 20px;
    top: 0px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 400;
   
}
.sw-tab-head .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active span{
    box-shadow: 0 0 0 0 var(--orange-color);
    -webkit-animation: pulseeffect 2.5s infinite;
}
@-webkit-keyframes pulseeffect {
    0% {
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    70% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 50px rgba(224, 34, 113, 0);
    }
    100% {
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        box-shadow: 0 0 0 0 rgba(224, 34, 113, 0);
    }
}
.sw-tab-head .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: var(--bg-color1);
}
.sw-tab-head .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border-color: var(--bg-color1);
    opacity: 1;
    color: var(--black-color);
   background-color: transparent;
}


.sw-tab-body-inner .sw-brand-launches-box .sw-brand-launches-content h2 a{
    color: var(--black-color);
}
.sw-tab-body-inner .sw-brand-launches-box .sw-brand-launches-content p{
    color: var(--black-color);
}
/* projects css */
.sw-project-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 30px;
    border-top: 1px solid #dddddd;
    cursor: pointer;
    position: relative;
    transition: all 0.5s;
}
.sw-project-body:hover {
    border-color: var(--orange-color);
}
.sw-project-head h2 {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
    transition: all 0.5s;
}
.sw-project-head .sw-flip-animate span {
    position: relative;
    display: inline-block;
    padding: 0;
    transition: transform 0.5s;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
  }
  .sw-project-head .sw-flip-animate span:before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    content: attr(data-hover);
    transition: color 0.5s;
    transform: rotateX(-90deg);
    transform-origin: 50% 0;
    text-align: center;
  }

  .sw-project-body:hover .sw-project-head .sw-flip-animate span{
    transform: rotateX(90deg) translateY(-22px);
  }
  .sw-project-body:hover .sw-project-head .sw-flip-animate span:before{
    color: var(--orange-color);
  }
/* industry css */
.sw-industry-head h2 {
    text-transform: capitalize;
    font-size: 40px;
    font-weight: 600;
    padding: 0px 30px 30px;
}
.sw-industry-body.sw-industry-body2 {
    padding: 130px 0px 0px 0px;
}
.sw-project-hover-img img {
    transition: all 0.5s;
    position: absolute;
    border-radius: 10px;
    top: -70px;
    z-index: 1;
    opacity: 0; /* Initially hidden */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; 
  transform: scale(0); /* Slightly shrink the image initially */
}
.sw-project-hover-img {
    /* display: none; */
    transition: all 0.5s;
}
.sw-project-body:hover .sw-project-hover-img img {
    opacity: 1; /* Show image smoothly */
  transform: scale(1); /* Bring it to normal size */
    z-index: 1;
}


/* sw-indexMain-wrapper Page */
/* .sw-indexMain-wrapper {
    position: relative;
    height: 100vh;
    align-items: center;
    opacity: 0;
} */

/* Fixed Logo Position */
/* .sw-fixed-logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    padding: 20px 40px 0;
} */
/* ================= blog page css start ==================*/
.sw-blog-wrapper {
    padding: 0px 40px 200px;
}

.sw-blog-news-heading h2 {
    font-size: 90px;
    font-weight: 600;
    text-align: center;
    padding: 150px 0px 0px 0px;
}
.sw-blog-tabs-wrap nav .nav.nav-tabs {
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0px 50px;
    
}
.sw-blog-tabs-wrap nav .nav-tabs .nav-link {
    background-color: transparent;
    border-radius: 50px;
    padding: 12px 30px;
    text-transform: capitalize;
    font-weight: 500;
}
.sw-blog-tabs-wrap nav .nav.nav-tabs button.nav-link {
    font-size: 22px;
    color: var(--black-color);
    background-color: var(--bg-color1);
}
.sw-blog-tabs-wrap nav .nav.nav-tabs button.nav-link.active {
    background-color: var(--orange-color);
    color: var(--white-color);
}
.sw-blog-tab-body a img {
    border-radius: 10px;
}
.sw-blog-tab-body a h2 {
    color: var(--black-color);
    font-size: 25px;
    padding: 20px 0px 70px;
    font-weight: 500;
    transition: all 0.5s;
}
.sw-blog-tab-body a h3 {
    color: var(--black-color);
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
.tab-pane {
    transition: opacity 0.5s ease-in-out;
}
.sw-blog-tab-body:hover a h2{
    color: var(--orange-color);
}
/* ========= blog single page css start ==========*/
.sw-blog-single-heading1 > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.sw-blog-single-heading1 ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
}
.sw-blog-single-heading2 h2 {
    font-size: 70px;
    text-align: center;
    font-weight: 600;
    max-width: 1130px;
    margin: 60px auto 40px;
}
.sw-blog-single-head2-name h2 {
    text-transform: uppercase;
    font-size: 18px;
}
.sw-blog-single-heading2-img-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding: 60px 0px 130px;
}
.sw-blog-single-head2-img img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
}
.sw-blog-single-head2-name h2 {
    text-transform: uppercase;
    font-size: 18px;
}
.sw-blog-single-center-img1 {
    text-align: center;
    padding:0px 30px 80px;
}
.sw-blog-single-center-img1 img {
    max-width: 1024px;
    max-height: 575px;
    min-height: 575px;
    margin: 0 auto;
    border-radius: 10px;
}
.sw-blog-single-content-box {
    max-width: 900px;
    margin: 0 auto;
}
.sw-blog-single-content-box h2 {
    font-size: 35px;
    font-weight: 500;
    padding: 50px 0px 30px;
}
.sw-blog-single-content-box p {
    font-size: 22px;
    padding: 0px 0px 80px;
    font-weight: 400;
}
.sw-blog-single-content-box > ul{
    padding: 0px 0px 80px;
}
.sw-blog-single-content-box > ul > li {
    position: relative;
    font-size: 22px;
    font-weight: 400;
    padding: 0px 0px 15px 20px;
}
.sw-blog-single-content-box ul li span {
    position: absolute;
    left: 0;
    top: -2px;
}
.sw-blog-single-content-box ul li span svg {
    width: 5px;
}
.sw-blog-single-center-img2 {
    text-align: center;
    padding: 0px 30px;
}
.sw-blog-single-center-img2 img {
    max-width: 1024px;
    max-height: 575px;
    min-height: 575px;
    margin: 0 auto;
    border-radius: 10px;
}
.sw-our-serious-rel-bottom-wrap.sw-blog-single-match-wrap {
    padding: 150px 40px 100px;
}


/* ============== e-commerce page css start */
/* Streetwear Brand css start */
.sw-eco-brand-wrapper {
    padding: 0px 40px 60px;
}
.sw-eco-brand-wrapper > h2{
    font-size: 70px;
    text-transform: capitalize;
    font-weight: 400;
}
.sw-eco-brand-wrapper > h2 > span{
    text-transform: uppercase;
    font-weight: 800;
}
.sw-platform-used-wrap h2 {
    font-size: 30px;
    font-weight: 500;
    padding: 130px 0px 25px;
    position: relative;
    margin: 0px 0px 25px;
}
.sw-platform-used-wrap h2:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--orange-color);
    width: 500px;
    height: 1px;
}
.sw-platform-used-wrap ul {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 720px;
}
.sw-platform-used-wrap ul li {
    padding: 0px 10px 0px 0px;
}
.sw-platform-used-wrap ul li a {
    color: var(--black-color);
    font-size: 25px;
    text-transform: capitalize;
}

.sw-platform-used-wrap ul li a span{

}
.sw-platform-used-wrap ul li a span svg{
    width: 40px;
    height: 40px;
}
/* mission css start */
.sw-mission-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    border-bottom: 1px solid var(--orange-color);
    gap: 16px;
    border-top: 1px solid var(--orange-color);
    padding: 80px 0px 8%
    ;
    margin: 30px 0px 40px 0px;
}
.sw-mission-box{
    margin-bottom: 25px;
}
.sw-mission-box h1{
    font-size: 35px;
    color: var(--black-color);
    padding: 0px 0px 25px;
}
.sw-mission-box p{
    font-size: 28px;
    color: var(--black-color1);
}
.sw-mission-box.grid-item:first-child {
    grid-column: span 2;
  }
/*  */
.sw-wco-image-wrap {
    background-color: var(--orange-color);
    position: relative;
    overflow: hidden;
}
.sw-wco-imageBox{
    background-color: var(--bg-color1);
}
.sw-wco-imageBox img {
    width: 100%;
}

.sw-wco-imageBox1 {
    padding: 40px 40px;
    text-align: center;
    margin: 0px 20px 20px 12px;
    border-radius: 0px 0px 20px 0px;
}
.sw-wco-imageBox1 img {
    max-width: 120px;
}
.sw-wco-imageBox2 {
    border-radius: 0px 20px 0px 0px;
    height: 432px;
    margin: 0px 20px 0px 12px;
}
.sw-wco-imageBox2 img {
    height: 432px;
}
.sw-wco-imageBox3 {
    margin: 0px 0px 30px;
    padding: 110px 0px;
    border-radius: 0px 0px 20px 20px;
}
.sw-wco-imageBox3 img {
    padding: 0px 30px;
}
.sw-wco-imageBox4 {
    text-align: center;
    padding: 40px 10px;
    border-radius: 20px 20px 0px 0px;
    max-height: 538px;
    object-fit: cover;
    object-position: top;
}
.sw-wco-imageBox5 {
    margin: 0px 0px 20px 20px;
    border-radius: 0px 0px 0px 20px;
}
.sw-wco-imageBox5 img {
    max-height: 513px;
    object-fit: cover;
    border-radius: 0px 0px 0px 20px;
}
.sw-wco-imageBox6 {
    border-radius: 20px 0px 0px 0px;
    margin: 0px 0px 0px 20px;
    height: 436px;
}
.sw-wco-imageBox6 img {
    max-height: 436px;
    object-fit: cover;
    object-position: top;
}
.sw-eco-big-img1 {
    padding:70px 0px 70px;
}
.sw-eco-big-img1-content > h1 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}
.sw-eco-big-img1-content > p {
    font-size: 40px;
    padding: 10px 0px 40px;
}
.sw-eco-logo-breakdown-wrap > h1 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 50px 0px 30px;
}
.sw-eco-logo-breakdown-wrap ul li {
    font-size: 40px;
    position: relative;
    padding: 0px 0px 50px 30px;
}
.sw-eco-logo-breakdown-wrap ul li span {
    position: absolute;
    left: 0px;
    top: 0px;
}
.sw-eco-logo-breakdown-wrap ul li span svg {
    width: 8px;
    height: 8px;
    fill: var(--orange-color);
}
.sw-eco-logo-breakdown-wrap ul li b{

}

.sw-eco-logo-breakdown-wrap ul > p{
    font-size: 40px;
}
.sw-eco-big-img2 {
    padding: 60px 0px 60px;
}
.sw-visit-btn a {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    background-color: var(--orange-color);
    padding: 7px 25px;
    border-radius: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 130px;
}



/*  */
.sw-banner-sec1.sw-banner-sec1-index {
    justify-content: center;
}
.sw-banner-sec1.sw-banner-sec1-index .sw-banner-sec2-box1.sw-banner-sec2-res-none {
    padding: 0;
}