@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.ttf");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.ttf");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.ttf");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.ttf");
  font-weight: 900;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: 400;
  background: #fff;
  color: #2f2d41;
  line-height: 1.7;
  max-width: 100%;
  overflow-x: hidden;
  min-width: 375px;
  -webkit-text-size-adjust: 100%;
}

section {
  overflow: hidden;
}

a, a:hover {
  text-decoration: none
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* width: 100%; */
}

input:focus, textarea:focus {
  box-shadow: none !important;
  outline: 0 !important
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.container {
  max-width: 1920px;
  padding: 80px 100px;
  margin: 0 auto
}

.visibility-hidden {
  visibility: hidden;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.w-980px {
  max-width: 980px;
}
.w-880px {
  max-width: 880px;
}

.h-100vh {
  height: 100vh;
}

.border-bottom-nav {
  border-bottom: 1px solid #EEE7F1;
}


.justify-center {
  justify-content: center;
}

.display-desktop {
  display: block;
}

.display-mobile {
  display: none !important;
}

.bg-pink {
  background: #F27D96 !important;
}

.bg-light-pink {
  background-color: #FFF5F9;
}

.bg-section-pink {
  background: #FFE9F1;
}

.border-pink {
  border: 2px solid #F27D96 !important;
}

.bg-white {
  background: #fff !important;
}

.border-white {
  border: 2px solid #fff !important;
}

.bg-pink .white-arrow {
  display: none;
}

.gradient-bg {
  background-image: linear-gradient(110deg, #540C6F 50%, #EE4367 50%, #EE4367 100%);
}

.gradient-bg-revert {
  background-image: linear-gradient(70deg, #540C6F 50%, #EE4367 50%, #EE4367 100%);
}


.contact-bg {
  position: relative;
  background-image: linear-gradient(75deg, #540C6F 53%, transparent 53%, transparent 100%);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-bg::after {
  content: "";
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background: red;
  background-image: url('/assets/images/home/webp/contact-bg.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

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

.text-left {
  text-align: left;
}

.text-purple {
  color: #540C6F !important;
}

.border-purple {
  border: 2px solid #540C6F !important;
}

.text-red {
  color: #AC1B3D !important;
}
.red-icon .arrow , .red-icon .arrow::after, .red-icon .arrow::before{
  background-color:  #AC1B3D !important;
  transition: ease-out 0.5s;
}
.text-red:hover .arrow , .text-red:hover .arrow::after , .text-red:hover .arrow::before {
  background-color:  #fff !important;
}
.text-black {
  color: #151515 !important;
}
.black-icon .arrow , .black-icon .arrow::after, .black-icon .arrow::before{
  background-color:  #151515 !important;
}
.text-white {
  color: #fff !important;
}

.width-fit {
  width: fit-content !important;
}

.purple-btn {
  border: 2px solid #540C6F;
  background: #540C6F;
  color: #FFFFFF;
  border-radius: 12px;
  min-width: 180px;
  text-transform: uppercase;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 17px;
  cursor: pointer;
height: 52px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-top: 30px;
  transition: ease-out 0.5s;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 0 #000;
}

.white-nav .purple-btn:hover{
  background: #540C6F !important;
}

a.bg-pink{
  box-shadow: inset 0 0 0 0 #F27D96;
}
a.purple-btn:hover{
  background: #7a3693 !important;
  color: #fff !important;
  border-color: #7a3693;
}

a.bg-pink:hover{
  color: #000  !important;
  box-shadow: inset 0 -100px 0 0 #fff !important;
}

.transparent-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #FFFFFF;
  border-radius: 12px;
  min-width: 180px;
  text-transform: uppercase;
  padding: 15.5px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  cursor: pointer;
height: 52px;
  margin-top: 20px;
  transition: ease-out 0.5s;
  box-shadow: inset 0 0 0 0 #540C6F;
}
.transparent-btn:hover{
color: #fff !important;
  box-shadow: inset 0 -100px 0 0 #540C6F;
}
a.transparent-btn.text-purple:hover{
  color: #540C6F  !important;
  box-shadow: inset 0 -100px 0 0 #fff !important;
}
.purple-btn .icon {
  position: relative;
display:flex;
justify-content:center;
align-items:center;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
}

.purple-btn .arrow {
  position: relative;
  top: 0;
  width: 20px;
  height: 3px;
  background-color: #fff;
  border-radius: 10px;
}

.purple-btn .arrow::after, .purple-btn .arrow::before {
  content: '';
  position: absolute;
  width: 13px;
  height: 3px;
  right: 1px;
  background-color: #fff;
  border-radius: 10px;
  /* transform-origin: top right; */
}

.purple-btn .arrow::after {
  bottom: 0px;
  transform: rotate(35deg);
  transform-origin: bottom right;
}

.purple-btn .arrow::before {
  top: 0px;
  transform: rotate(-35deg);
  transform-origin: top right;
}

.more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #540C6F;
  transition: .3S ease-in-out;
}
.more img{
  transition: .3S ease-in-out;
}
.more:hover img{
transform: translateX(4px);
}
/* ------- spacings-------  */

.m-0 {
  margin: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pt-40{
  padding-top: 40px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}
.pt-16{
  padding-top: 16px !important;
}
.pt-0 {
  padding-top: 0 !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.pt-90{
  padding-top: 90px;
}

.pt-80 {
  padding-top: 80px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* ------- spacings-------  */
/* ---------- typography ---------  */
.title {
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 51px;
  color: #151515;
  margin-bottom: 20px;
}

.title span {
  color: #EE4367;
}

.title-lg {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 77px;
  margin-bottom: 20px;
  color: #151515;
}

.title-lg span {
  color: #EE4367;
}
.subtitle{
  font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 1.1;
}
.title-contact {
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 51px;
  /* white / 100 */
  margin-bottom: 16px;
  color: #FFFFFF;
}

.blog-title-lg {
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 58px;
  color: #151515;
  margin-bottom: 32px;
}

.blog-title-md {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #151515;
  margin-bottom: 12px;
}

.blog-title-sm {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #151515;
  margin-bottom: 12px;
}

.single-blog-date {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #424141;
  margin-top: 32px;
  margin-bottom: 8px;
}

.order-list , .unorder-list{
  counter-reset: item;
  list-style-type: none;
}

.order-list li , .unorder-list li{
  text-align: left;
  margin: 16px 0;
  display: flex;
align-items: baseline;
}

.order-list li:before {
  content: counter(item) " ";
  counter-increment: item;
  margin-right: 12px;
  background: #EE4367;
  min-width: 24px;
  max-width: 24px;
  max-height: 24px;
  min-height: 24px;
  border-radius: 100%;
  display: flex;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unorder-list li::before{
  content:" ";
  counter-increment: item;
  margin-right: 12px;
  background: #EE4367;
  min-width: 8px;
  max-width: 8px;
  max-height: 8px;
  min-height: 8px;
  border-radius: 100%;
  display: flex;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #ffffff;
  display: flex;

  justify-content: center;
}
.text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #424141;
  margin-bottom: 12px;
}

.text-md {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}

.icon-title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #151515;
  margin-bottom: 16px;
}

.portfoliolink {
  font-style: normal;
  font-weight: 500;
  display: block;
  font-size: 20px;
  line-height: 24px;
  text-decoration-line: underline;
  margin-bottom: 10px;
  color: #540C6F;
  text-transform: lowercase;
}

/* ---------- typography ---------  */
/* ------ columns section -----------  */
.image-and-text {
  display: flex;
  align-items: center;
  padding: 45px 0 0 0;
  margin-top: 15px;
}

.image-and-text .image-side {
  width: 50%;
  padding: 0 30px 0 0;
}
.image-and-text.image-right .image-side{
  padding: 0 0 0 30px;
}
.image-and-text .content-side {
  width: 50%;
  padding: 0;
  overflow: hidden;
}

.image-border {
  position: relative;
  width: fit-content;
  margin: auto;
}

.image-border::before {
  content: "";
  position: absolute;
  display: block;
  background-color: transparent;
  border: 6px solid #EE4367;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transform: translate(-45px, -45px);
}

.image-and-text.image-right .image-border::before {
  transform: translate(45px, -45px);
}

.image-side .image-border {
  margin-right: auto;
  margin-left: 0;
}
.image-side .image-border img{
  max-width: 480px;
  width: 100%;
}
.image-and-text.image-right .image-border {
  margin-left: auto;
  margin-right: 0;
}

/* ------ columns section -----------  */
@media screen and (max-width:1900px) {
  .container {
    max-width: 1600px;
    padding: 60px 130px;
  }
}

@media screen and (max-width:1600px) {
  .container {
    max-width: 1480px
  }
}

@media screen and (max-width:1400px) {
  .container {
    max-width: 1300px
  }
}

@media screen and (max-width:1300px) {
  .container {
    max-width: 1160px;
    padding: 50px 70px;
  }
}

@media screen and (max-width:1200px) {
  .container {
    max-width: 1160px;
    padding: 50px 90px;
  }
}

@media screen and (max-width:1100px) {
  .container {
    /* max-width: 1024px; */
    padding: 50px 75px;
  }
}

@media screen and (max-width:991px) {
  .container {
    padding: 50px 50px;
  }

  .display-desktop {
    display: none !important;
  }

  .direction-col-mobile {
    flex-direction: column !important;
  }

  .display-mobile {
    display: block !important;
  }

  .gradient-bg {
    background-image: linear-gradient(165deg, #540C6F 50%, #EE4367 50%, #EE4367 100%);
  }

  .contact-bg {
    background-image: linear-gradient(90deg, #540C6F 100%, transparent 100%, #540C6F 100%);
  }

  .image-and-text {
    flex-direction: column-reverse;
  }
  .image-and-text.image-right{
    flex-direction:column;
  }
  .image-and-text .image-side{
    width: auto;
    text-align: center;
    max-width: 400px;
    padding: 75px 0 0 45px;
  }

  .image-and-text.image-right .image-side {
    padding: 75px 45px 0 0;
  }

  .image-and-text .content-side {
    width: 100%;
    padding: 0;
  }

  .image-and-text {
    padding: 0;
  }

  .w-100-mb {
    width: 100%;
  }

  .image-border {
    margin: auto !important;
  }

  .gradient-bg-revert {
    background-image: linear-gradient(168deg, #540C6F 54%, #EE4367 54%, #EE4367 100%);
  }

  .contact-bg::after {
    display: none;
  }
  .text-left-md{
    text-align: left;
  }
}

@media screen and (max-width:767px) {
  .container {
    /* max-width: 576px; */
    padding: 60px 40px;
  }

  .image-border::before {
    transform: translate(-25px, -25px);
  }

  .gradient-bg {
    background-image: linear-gradient(165deg, #540C6F 58%, #EE4367 58%, #EE4367 100%);
  }

  .image-and-text.image-right .image-border::before {
    transform: translate(25px, -25px);
  }

  .image-and-text .image-side {
    padding: 50px 0 0 25px;
  }

  .image-and-text.image-right .image-side {
    padding: 50px 25px 0 0;
  }
}

@media screen and (max-width:576px) {
  .py-40-sm {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .pb-0-sm{
    padding-bottom: 0 !important;
  }
  .pt-0-sm{
    padding-top: 0 !important;
  }
.pt-40-sm{
padding-top: 40px !important;
}
.pt-30-sm{
  padding-top: 30px !important;
  }
  .container {
    padding: 40px 16px;
  }

  .gradient-bg {
    background-image: linear-gradient(165deg, #540C6F 62%, #EE4367 62%, #EE4367 100%);
  }

  .purple-btn {
    width: 100% !important;
    justify-content: center;
  }

  .title {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .title-lg {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 12px;
    color: #151515;
  }

  .title-contact {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    /* or 129% */
    text-transform: capitalize;
    margin-bottom: 12px;
    color: #FFFFFF;
  }
  .subtitle{
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
  }
  .blog-title-lg {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    color: #151515;
  }

  .blog-title-md {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #151515;
    margin-bottom: 12px;
    margin-top: 12px;
  }

  .blog-title-sm {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #151515;
    margin-bottom: 8px;
  }

  .text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .text-md {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }

  .icon-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 8px;
  }
.core-values-section .icon-title ,.core-values-section .text , .core-values-section .title {
  text-align: left !important;
}
  .portfoliolink {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-decoration-line: underline;
    margin-bottom: 8px;
    color: #540C6F;
  }

  .transparent-btn {
    padding: 13.5px 18px;
    max-height: 48px;
    margin-top: 12px;
  }

  .purple-btn {
    padding: 10px 18px;
    max-height: 48px;
    margin-top: 12px;
  }
}

.wow {
    visibility: visible !important;
}