

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Kalam:wght@300;400;700&family=Pacifico&family=Press+Start+2P&display=swap');

*
{
    padding: 0;
    margin: 0;
}


/*============= loader =============*/

#pre-loader
{
  /* background-image: url("../Assets/loader.gif")  ; */
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 9999;
  /* top: 40%; */
  /* left: 42%; */
  width: 100%;
  background-color: white;
  height: 100%;
}

.main-lod
{
  height: 100vh;
  text-align: center;
  align-items: center;
  justify-content: center;
}
/*============= loader =============*/



.container-change {
	position: relative;
	/* width: auto; */
	/* max-width: 100%; */
	height: 100vh;
  background-size: cover;
  object-fit: cover;
}

.image {
	position: absolute;
	width: 100%;
	opacity: 0;
  height: 100vh;
}

.abb
{
    position: absolute;
    top: 45%;
    left: 40%;
    z-index: 999;
    font-size: 60px;
    color: white;
    text-shadow: black 1px 1px 2px;
    font-family: "pacifico";
}


/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */


/*============== nav button ======================*/
.menu__link1 {
    color: #000000;
    line-height: 2;
    position: relative;
  }
  
  .menu__link1::before {
    content: '';
    width: 0;
    height: 2px;
    border-radius: 2px;
    background-color: #000000;
    position: absolute;
    bottom: -.25rem;
    right: 0;
    transition: right .4s, width .4s, left .4s;
  }
  
  .menu__link1:hover::before {
    width: 100%;
    left: 0;
  }

  .wat
{
    height: 30px;
}

.wat:hover
{
    transform: scale(115%);
    transition: 0.5s;
}

/*=============== nav button =====================*/

.logo {
  float: left;
  width: 140px;
  height: 80px;
  /* padding-left: 3rem; */
}


.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    z-index: 1000;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

/* .nav div.logo a:hover {
    color: #00E676;
} */

.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color:black;
    line-height: 65px;
    font-size: 20px;
    /* text-shadow: #bbd7ee 1px 1px; */
}

/* .nav div.main_list ul li a:hover {
    color: #00E676;
} */


/* Home section */

.home {
    width: 100%;
    height: 100vh;
    /* background-image: url(https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=b0f6908fa5e81286213c7211276e6b3d&auto=format&fit=crop&w=1500&q=80); */
    background-position: center top;
	background-size:cover;
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
      margin: 0;
  }
}

@media screen and (max-width:768px) {
  .navTrigger {
      display: block;
  }
  .nav div.logo {
      margin-left: 5px;
  }
  .nav div.main_list {
      width: 100%;
      height: 0;
      overflow: hidden;
  }
  .nav div.show_list {
      height: auto;
      display: none;
  }
  .nav div.main_list ul {
      flex-direction: column;
      width: 50%;
      height: 80vh;
      right: 0;
      left: 0;
      bottom: 0;
      background-color: #000102ac;
      /*same background color of navbar*/
      background-position: center right;
      border-radius: 20px;
  }
  .nav div.main_list ul li {
      width: 100%;
      text-align: center;
      align-items: center;

  }
  .nav div.main_list ul li a {
      text-align: center;
      width: 100%;
      font-size: 20px;
      /* padding: 20px; */
      color: white;
  }
  .nav div.media_button {
      display: block;
  }
}

.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
}

.navTrigger i {
  background-color: #000000;
  border-radius: 2px;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: #ffffff;
    /* background-image: url("https://img.freepik.com/free-vector/soft-bokeh-background_23-2147493955.jpg?t=st=1722239430~exp=1722243030~hmac=63d0c627b478bdf356d2cf2177c72cc7cad23b2751b9cf03479d870c2037a3c9&w=740"); */
    box-shadow: gray 2px 2px 5px;
    height: 100px;
}








.myH2 {
	text-align:center;
	font-size: 4rem;
}
.myP {
	text-align: justify;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
}
@media all and (max-width:700px){
	.myP {
		padding:2%;
	}
}






/*================== marquee ===============================*/


.body__inner-wrapper {
    height: 100%;
    max-width: 104rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    justify-content: center;
  }
  
  .outline__text {
    font-family: sans-serif;
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: white;
  }
  
  .marquee {
    width: 100%;
    height: 9rem;
    pointer-events: none;
    /* background: black; */
    background-image: url("https://img.freepik.com/free-vector/blank-pink-national-chinese-day-paper_53876-118757.jpg?t=st=1722241400~exp=1722245000~hmac=d77818dffe6323b640316e021c15cac68979702ea310f63f9cbd740a0226b56b&w=996");
    overflow: hidden;
    box-shadow: 0 2rem 2rem 0.2rem rgba(0, 0, 0, 0.2);
  }
  
  .marquee__inner-wrap {
    height: 100%;
    width: 100%;
  }
  
  .marquee span {
    text-align: center;
    color: rgb(45, 44, 44);
    font-weight: 400;
    white-space: nowrap;
    font-size: max(2vw, 2.4rem);
    line-height: 1.2;
    font-weight: 700;
    padding: 1vh 1vw 0;
    text-transform: uppercase;
  }
  
  .marquee__img {
    width: max(8rem, 12vw);
    height: 8rem;
    margin: 0 4vw;
    border-radius: 100rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #444;
    filter: grayscale(0.6);
  }
  
  .marquee__inner {
    height: 100%;
    width: fit-content;
    align-items: center;
    display: flex;
    position: relative;
    animation: marquee 50s linear infinite;
    will-change: transform;
  }
  
  @keyframes marquee {
    to {
      transform: translateX(-50%);
    }
  }
/*================== marquee ===============================*/
  











/*============ para about ==================*/


.para-about
{
    text-align: center;
    font-family: "pacifico";
    padding-top: 20px;
    font-size: 20px;
}
.para-abou
{
    text-align: center;
    font-family: "pacifico";
    padding-top: 70px;
    
    background: -webkit-linear-gradient(rgb(235, 36, 106), rgb(227, 33, 237));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*============ para about ==================*/



.about-section
{
background-image: url("https://img.freepik.com/free-photo/abstract-luxury-gradient-blue-background-smooth-dark-blue-with-black-vignette-studio-banner_1258-63770.jpg?t=st=1722159622~exp=1722163222~hmac=dc79916b96ed0c62f3d2f3aa82b3a9d991f6c3b64aac7814edcad3b005b6143f&w=1380");
background-repeat: no-repeat;
object-fit: cover;
background-size: cover;
width: 100%;
height: 100%;
margin-top: 30px;
position: relative;
}




.custom-shape-divider-top-1722161890 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1722161890 svg {
    position: relative;
    display: block;
    width: calc(116% + 1.3px);
    height: 221px;
}

.custom-shape-divider-top-1722161890 .shape-fill {
    fill: #FFFFFF;
}


.custom-shape-divider-bottom-1722162136 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1722162136 svg {
    position: relative;
    display: block;
    width: calc(184% + 1.3px);
    height: 92px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1722162136 .shape-fill {
    fill: #FFFFFF;
}




.sec-title{
  position:relative;
  z-index: 1;
  margin-bottom:60px;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #ff2222;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}

.sec-title h2:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:50px;
  height:3px;
  background-color:#d1d2d6;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2{
  color: #ffffff;
}

.sec-title.text-center h2:before{
  left:50%;
  margin-left: -25px;
}

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left:35px;
  margin-bottom: 12px;
}

ul
{
  list-style: none;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    /* color: #ff2222; */
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
  color: #44bce2;
}

.btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}

.btn-style-one:hover{
  background-color: #001e57;
  color: #ffffff;
}
.about-section{
  position: relative;
  padding: 120px 0 70px;
}

.about-section .sec-title{
  margin-bottom: 45px;
}

.about-section .content-column{
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column{
  position: relative;
  padding-left: 30px;
}

.about-section .text{
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.about-section .list-style-one{
  margin-bottom: 45px;
}

.about-section .btn-box{
  position: relative;
}

.about-section .btn-box a{
  padding: 15px 50px;
}

.about-section .image-column{
  position: relative;
}

.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column{
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}

.about-section .image-column .inner-column:before{
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
}

.ab-com
{
  width: 80%;
  height: 90%;
}

.ab-com1
{
  height: 300px;
  width: 300px;
}

.about-section .image-column .image-1{
  position: relative;
}

.about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*============timeline==================*/

.time-line
{
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.who
{
    /* width: 550px; */
    padding: 3%;
}

.line-head
{
    font-family: "pacifico";
    font-size: 26px;
}

.pp
{
    text-align: center;
}

@media only screen and (max-width: 900px) {
  .time-line {
    display: block;
  }

  .who
{
    width: 400px;
    padding: 0px;
}

}

/*============timeline==================*/



/* <main-style> ============================ */
.title-style h1 {
  padding: 40px 0;
}

.title-style {
  margin: 0 auto 80px;
  height: 120px;
  width: 80%;
  min-width: 700px;
  background: #fff;
  position: relative;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 50, 0.5);
}

.title-style::after {
  content: "";
  height: 100px;
  width: 200px;
  background-color: #f992a6;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -1;
}
.title-style::before {
  content: "";
  height: 100px;
  width: 200px;
  background-color: #f992a6;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: -1;
}


/*=============================*/

.top
{
  font-family: "pacifico";

}
.scroll {
  --space: 2rem;

  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--space);
  width: 100%;
  font-family: "Corben", system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  height: 100%;
}

.marqueee {
  --duration: 60s;
  --gap: var(--space);

  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  transform: skewY(-3deg);
}

.marqueee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marqueee__group {
    animation-play-state: paused;
  }
}

.marqueee__group img {
  max-width: clamp(10rem, 1rem + 28vmin, 20rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
}

.marqueee__group p {
  background-image: linear-gradient(
    75deg,
    hsl(240deg 70% 49%) 0%,
    hsl(253deg 70% 49%) 11%,
    hsl(267deg 70% 49%) 22%,
    hsl(280deg 71% 48%) 33%,
    hsl(293deg 71% 48%) 44%,
    hsl(307deg 71% 48%) 56%,
    hsl(320deg 71% 48%) 67%,
    hsl(333deg 72% 48%) 78%,
    hsl(347deg 72% 48%) 89%,
    hsl(0deg 73% 47%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marqueee--borders {
  border-block: 3px solid dodgerblue;
  padding-block: 0.75rem;
}

.marqueee--reverse .marqueee__group {
  animation-direction: reverse;
  animation-delay: calc(var(--duration) / -2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/*=========== footer shape =====================*/

/*================buttons=====================*/

.buttons {
    display: flex;
    justify-content: space-around;
    top: 20px;
    left: 20px;
  }
  
  .buttons button {
    width: 150px;
    height: 50px;
  
    margin: 20px;
    color: rgb(89, 18, 171);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: solid white 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
  }
  
  .buttons button:before,
  .buttons button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #44d8a4;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  
  .buttons button span:before,
  .buttons button span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: #44d8a4;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button p {
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .buttons button p:before,
  .buttons button p:after {
    position: absolute;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    z-index: 1;
    left: 0;
  }
  
  .buttons button p:before {
    content: attr(data-title);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button p:after {
    content: attr(data-text);
    top: 150%;
    color: #44d8a4;
  }
  
  .buttons button:hover:before,
  .buttons button:hover:after {
    width: 100%;
  }
  
  .buttons button:hover span {
    z-index: 1;
  }
  
  .buttons button:hover span:before,
  .buttons button:hover span:after {
    height: 100%;
  }
  
  .buttons button:hover p:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button:hover p:after {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button.start {
    background-color: #44d8a4;
    box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
  
  .buttons button.start p:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button.start p:after {
    color: white;
    transition: all 0s ease;
    content: attr(data-start);
    top: 50%;
    transform: translateY(-50%);
    animation: start 0.3s ease;
    animation-fill-mode: forwards;
  }
  
  @keyframes start {
    from {
      top: -50%;
    }
  }
  
  .buttons button.start:hover:before,
  .buttons button.start:hover:after {
    display: none;
  }
  
  .buttons button.start:hover span {
    display: none;
  }
  
  .buttons button:active {
    outline: none;
    border: none;
  }
  
  .buttons button:focus {
    outline: 0;
  }




  /* for small devices */
  
  @media only screen and (max-width: 900px) {
    .banner-img {
      margin: 40px auto;
      width: 80%;
    }
  
    .banner-title {
      top: 150px;
      left: 50%;
      transform: translateX(-50%);
    }
  
    .banner-title h1 {
      font-size: 16px;
      padding: 5px;
      line-height: 20px;
    }
  
    .title-style h1 {
      font-size: 25px;
    }
  
    .fashion-box {
      margin: -20px 0;
    }
  
    .title-style {
      margin: 0 auto 80px;
      height: 120px;
      width: 50%;
      min-width: 250px;
      background: #fff;
      position: relative;
      box-shadow: 0 4px 5px 0 rgba(0, 0, 50, 0.5);
    }
  
    .sm-bt {
      margin-bottom: 40px;
    }
  
    .offer img {
      margin-top: 40px !important;
      margin-bottom: 0 !important;
    }
  
    .fashion-blog {
      margin: 100px 0 150px 0;
    }
    .footer-icons {
      text-align: center;
    }
    .copyright {
      text-align: center;
    }
  }


  /*====================== blogs ========================*/


 .card-img-top {
  width:100%;
 }
 .card:hover
 {
  transform: scale(105%);
  transition: 0.5s;
  box-shadow: gray 2px 2px 5px;
 }






  