@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);
@import url(https://fonts.googleapis.com/css?family=Teko:700);

body {
    /* font-family:"Pacifico"; */
}


/*============= 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 =============*/


/*============== nav button ======================*/
.menu__link1 {
  color: #fff;
  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 =====================*/


.nav {
  width: 100%;
  height: 65px;
  position: fixed;
  line-height: 65px;
  text-align: center;
  z-index: 1000;
}

.logo {
  float: left;
  width: 140px;
  height: 80px;
  /* padding-left: 3rem; */
}

.nav div.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}


.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;
}



/* Home section */

.home {
  width: 100%;
  height: 100vh;
  background-image: url();
  background-position: center top;
background-size:cover;
  z-index: 1000;
}

.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: 15px;
}
.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%;
	}
}






.img {
    animation:zoom 35s linear infinite;
    height:auto;
}

@keyframes zoom {
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.2);
    }
    100%{
        transform:scale(1);
    }
}
.texts {
  
    font-family:"Pacifico";
top:30%;
   
  
}
.captions-head {
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: pink;
    -webkit-text-stroke-width: 1px;

} 
@media (max-width:576px) {
    .captions-head {
        font-size:20px;
    }
    
}

/* our collection */
.neon {
    font-size: 48px;
    color: black;
    /* text-shadow: 
        0 0 5px #00ffe6,
        0 0 10px #00ffe6,
        0 0 20px #00ffe6,
        0 0 40px #00ffe6,
        0 0 80px #00ffe6;
    animation: neon 1.5s ease-in-out infinite alternate; */
}

@keyframes neon {
    from {
        text-shadow: 
            0 0 5px #00ffe6,
            0 0 10px #00ffe6,
            0 0 20px #00ffe6,
            0 0 40px #00ffe6,
            0 0 80px #00ffe6;
    }
    to {
        text-shadow: 
            0 0 20px #ff00d4,
            0 0 30px #ff00d4,
            0 0 40px #ff00d4,
            0 0 50px #ff00d4,
            0 0 60px #ff00d4;
    }
}

.shadow-text {
    font-size: 48px;
    color: #333;
    text-shadow: 2px 2px 4px #aaa;
    font-family: "pacifico";
}

/* Line Animation */

.loader-line {
    width: 200px;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    /* margin: 100px auto; */
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 3px;
    width: 40%;
    background-color: #ff00d4;
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}





/*=================== heading bg =============================*/

.title-style h1 {
  padding: 40px 0;
  font-family:"pacifico";
}


.head-title
{
  font-family: "pacifico";
}


.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;
}

/*=================== heading bg=============================*/

.gal-item-text
{
  font-family: "pacifico";
}

/* fixed bg */

.fixed-bg {
    height: 100%;
    background-size: cover;
    -webkit-background-size: cover !important; 
    -moz-background-size: cover !important; 
    -o-background-size: cover; 
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    line-height: 1.5;    
  }
  
  /* h1 {
    text-align: center;
    font-size: 3.5em;
    color: rgba(255, 255, 255, 1);
    text-shadow: 1px 1px 10px #000, 5px 5px 20px #000, 1px 0px 20px #def;
    opacity: 0.95;
  }
  img {
    width: 100%;
    height: auto;
  } */
  .main-text {
    font-size: 5.5em;
    line-height:0px;
    color:white;
    text-shadow: 1px 1px 10px #000, 5px 5px 20px #000, 1px 0px 20px #def;
  
}
  /* .sub-text{
    color:#fff;
   
   
  } */

  .bg-1 {
    background-image: url("https://i.pinimg.com/564x/63/36/0e/63360ef7374ee04471b2095939b8b39a.jpg");
   height:70vh;
   background-size:cover;
   animation:zoom 35s linear infinite;
 
}

.bg-2 {
  background-image: url("https://i.pinimg.com/564x/63/36/0e/63360ef7374ee04471b2095939b8b39a.jpg");
 height:70vh;
 background-size:cover;
 animation:zoom 35s linear infinite;

}

.bg-3 {
  background-image: url("https://i.pinimg.com/564x/63/36/0e/63360ef7374ee04471b2095939b8b39a.jpg");
 height:70vh;
 background-size:cover;
 animation:zoom 35s linear infinite;

}

.bg-4 {
  background-image: url("https://i.pinimg.com/564x/63/36/0e/63360ef7374ee04471b2095939b8b39a.jpg");
 height:70vh;
 background-size:cover;
 animation:zoom 35s linear infinite;

}

@media (max-width:576px) {
    .main-text {
        font-size:2.5em;
    }
    .bg-1 {
        background-image:url("https://i.pinimg.com/564x/63/cb/6e/63cb6e78f24bb2c9352935e3fad5eb5f.jpg");

        background-size:cover;
        height:60vh;
    }
    
}

@media (max-width:576px) {
  .main-text {
      font-size:2.5em;
  }
  .bg-2 {
      background-image:url("https://i.pinimg.com/564x/0c/6d/6e/0c6d6e00d681e062e8af05134a4f9f28.jpg");

      background-size:cover;
      height:60vh;
  }
  
}

@media (max-width:576px) {
  .main-text {
      font-size:2.5em;
  }
  .bg-3 {
      background-image:url("https://i.pinimg.com/564x/ce/18/83/ce1883e0488d02e45a443eff056b58d5.jpg");

      background-size:cover;
      height:60vh;
  }
  
}

@media (max-width:576px) {
  .main-text {
      font-size:2.5em;
  }
  .bg-4 {
      background-image:url("https://i.pinimg.com/564x/c4/42/95/c44295c5ec1e939ca7022fff1bdc3033.jpgg");

      background-size:cover;
      height:60vh;
  }
  
}

/* circular cards animation */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} */

.circular {
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #162052; */
}

.box {
  position: relative;
  width: 250px;
  height: 250px;
  border:2px solid lightgray;
  border-radius: 50%;
  overflow: hidden;
  font-family: "pacifico";
}

.box::before {
  content: "";
  position: absolute;
  inset: -5px 70px;
  background: rgb(172,3,3);
  background: linear-gradient(95deg, rgba(172,3,3,1) 0%, rgba(172,3,3,0.7176120448179272) 100%);
  transition: 0.5s;
  animation: border-animation 4s linear infinite;
  cursor: pointer;
}

.box:hover::before {
  inset: -20px 0px;
}

@keyframes border-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.box::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  z-index: 1;
}

.content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  inset: 15px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
}

.content .circular-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.75s;
  pointer-events: none;
  z-index: 3;
}

.box:hover .content .circular-img {
  opacity: 0;
}

.content h2 {
  position: relative;
  color: #fff;
  font-size: 1.0rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.content h2 span {
  font-size: 0.75rem;
  font-weight: 300;
}

.content a {
  position: relative;
  margin-top: 5px;
  padding: 5px 10px;
  background: #fff;
  color: #070a1c;
  border-radius: 25px;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-decoration: none;
  transition: 0.5s;
}

.content a:hover {
  letter-spacing: 0.2rem;
}

.mangalgiri {

    background: -webkit-linear-gradient(rgb(235, 36, 106), rgb(251, 44, 168));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  cursor: pointer;
  font-family: "pacifico";

}


/* cards */
.snip *,
.snip *:before,
.snip *:after {
  box-sizing: border-box;
  transition: all 0.45s ease;
}

.snip {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 315px;
  min-width: 230px;
  font-family: "Pacifico";
  color: #fff;
  /* font-size: 16px; */
  margin: 10px;
  text-align: left;
  border-radius:35px;
  transform: translateZ(0);
}

.snip:hover .snip__title,
.snip:hover .snip__text {
  transform: translateY(0);
  opacity: 0.9;
  transition-delay: 0.2s;
}

.snip::before,
.snip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius:35px;
  /* background-color: #b81212; */
  background-color:rgba(184, 135, 11, 0.404);
  opacity: 0.5;
  transition: all 0.45s ease;
}

.snip::before {
  transform: skew(30deg) translateX(-80%);
}

.snip::after {
  transform: skew(-30deg) translateX(-70%);
}

.snip:hover::before {
  transform: skew(30deg) translateX(-20%);
  transition-delay: 0.05s;
}

.snip:hover::after {
  transform: skew(-30deg) translateX(-10%);
}

.snip:hover .snip__figcaption::before {
  transform: skew(30deg) translateX(-40%);
  transition-delay: 0.15s;
}

.snip:hover .snip__figcaption::after {
  transform: skew(-30deg) translateX(-30%);
  transition-delay: 0.1s;
}

.snip__image {
  backface-visibility: hidden;
  max-width: 100%;
  vertical-align: top;
/* border:2px solid red; */
border-radius:35px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.snip__figcaption {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  bottom: 0;
  padding: 25px 40% 25px 20px;
  border-radius:35px;
 
}

.snip__figcaption::before,
.snip__figcaption::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #d837375a;
  border-radius:35px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  content: "";
  opacity: 0.5;
  z-index: -1;
}

.snip__figcaption::before {
  transform: skew(30deg) translateX(-100%);
}

.snip__figcaption::after {
  transform: skew(-30deg) translateX(-90%);
}

.snip__title,
.snip__text {
  margin: 0;
  opacity: 0;
  letter-spacing: 1px;
}

.snip__title {
  font-family: "Teko", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
}

.snip__text {
  font-size: 0.9em;
}

.snip__link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}


.Luxurious {
  background: -webkit-linear-gradient(rgb(235, 36, 106), rgb(251, 44, 168));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "pacifico";
}

/* line Animation */
.line-body-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  margin: 0;
  /* background-color: #f0f0f0; */
}

.line-container {
  /* width: 500px;
  height: 100px; */
  overflow: hidden;
}

.animated-lines {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  /* animation: draw-line 2s linear infinite; */
  animation: draw-line 2s linear infinite, change-color 4s linear infinite;
  
}

@keyframes draw-line {
  to {
      stroke-dashoffset: 0;
  }
}

@keyframes change-color {
  0% {
      stroke: #00ffe6;
  }
  33% {
      stroke: green;
  }
  66% {
      stroke: red;
  }
  100% {
      stroke: #d400d4;
  }
}

/* Functional Wear */
.functional-ware {
  background-image:url("https://i.pinimg.com/564x/ba/88/aa/ba88aa824a51763e3a8aaf0974e9a5a6.jpg");
  height:70vh;
  background-size:cover;
  background-attachment: fixed;
  
  /* animation:zoom 35s linear infinite; */
}

/* cards section */

.card-function_1 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/8f/bc/c3/8fbcc31bd4d26d98f99b939da6f6daab.jpg")

}

.card-function_1:hover .card_content_function, .card-function_1:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_1:hover {
  transform:scale(1.1)
}

.card_content_function {
  z-index:2;
  color:#fff;
  font-family:Arial;
  padding:0px 20px 25px;
  position:absolute;
  bottom:-150px;
  left:0;
  transition: all 0.25s;
}

.card_title_function {
  font-size:20px;
  font-weight:600;
}

.card_desc_function {
  font-size:14px;
  margin-top:5px;
}

.card_bottom_shadow_function

{
  height:150px;
  width:100%;
  position:absolute;
  bottom:-150px;
  left:0;
  transition: all 0.1s;
  background-image: linear-gradient(
    180deg,
    transparent,
    rgba(37, 37, 37, 0.61),
    #111
  );
}

/* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg'); */

.card-function_2 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/564x/85/13/02/851302e2392e8023167c6a89090a410d.jpg")

}

.card-function_2:hover .card_content_function, .card-function_2:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_2:hover {
  transform:scale(1.1)
}

.card-function_3 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/6d/01/c9/6d01c967ffdfc5ec918ce2aada3d4d30.jpg")

}

.card-function_3:hover .card_content_function, .card-function_3:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_3:hover {
  transform:scale(1.1)
}

.card-function_4 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/78/80/08/788008a47bdcf2a82ab7026a4dd354bc.jpg")

}

.card-function_4:hover .card_content_function, .card-function_4:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_4:hover {
  transform:scale(1.1)
}

.card-function_5 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/ea/07/80/ea0780c2a27506f959dd022004036132.jpg")

}

.card-function_5:hover .card_content_function, .card-function_5:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_5:hover {
  transform:scale(1.1)
}

.card-function_6 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/f5/23/d7/f523d716e66680fa61471cadd3861ecc.jpg")

}

.card-function_6:hover .card_content_function, .card-function_6:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_6:hover {
  transform:scale(1.1)
}

.card-function_7 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/fe/e9/4a/fee94a1a2f41ca458ccfaaa251b6084e.jpg")

}

.card-function_7:hover .card_content_function, .card-function_7:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_7:hover {
  transform:scale(1.1)
}

.card-function_8 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/ad/aa/e1/adaae143200520b0bcb152f73fd349bb.jpg")

}

.card-function_8:hover .card_content_function, .card-function_8:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_8:hover {
  transform:scale(1.1)
}

.card-function_9 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/ad/aa/e1/adaae143200520b0bcb152f73fd349bb.jpg")

}

.card-function_9:hover .card_content_function, .card-function_9:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_9:hover {
  transform:scale(1.1)
}
.card-function_10 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/ad/aa/e1/adaae143200520b0bcb152f73fd349bb.jpg")

}

.card-function_10:hover .card_content_function, .card-function_10:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_10:hover {
  transform:scale(1.1)
}

.card-function_11 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/ad/aa/e1/adaae143200520b0bcb152f73fd349bb.jpg")

}

.card-function_11:hover .card_content_function, .card-function_11:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_11:hover {
  transform:scale(1.1)
}

.card-function_12 {
  height:300px;
  /* width:270px; */
  border-radius:0.5rem;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: all 0.4s;
  background-size:cover;
  /* background-image:url('https://idsb.tmgrup.com.tr/ly/uploads/images/2021/06/06/119434.jpeg');
  */
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  background-image:url("https://i.pinimg.com/736x/ad/aa/e1/adaae143200520b0bcb152f73fd349bb.jpg")

}

.card-function_12:hover .card_content_function, .card-function_12:hover .card_bottom_shadow_function {
  bottom:0
}

.card-function_12:hover {
  transform:scale(1.1)
}

/* Animation Border */


/*// Glow Border Animation //*/

.keyframe-border {
  padding: 20px;
  font-size: 24px;
  background-color: white;
  border: 5px solid transparent;
  position: relative;
  border-radius:25px;
  animation: border-anim 2s infinite;
}

@keyframes border-anim {
  0% {
      border-color: blue;
  }
  25% {
      border-color: green;
  }
  50% {
      border-color: red;
  }
  75% {
      border-color: yellow;
  }
  100% {
      border-color: blue;
  }
}

/* bridal section */

/* body {

    margin: 0;

    padding: 0;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;  

    font-family: sans-serif;

    background-color: #f1f1f1; 

} */

/* .container-bridal .card-bridal .icon {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: #2c73df;

}

.container-bridal .card-bridal .icon .fa {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  font-size: 80px;

  color: #fff;

}

.container-bridal .card-bridal .slide-bridal {

  width: 300px;

  height: 200px;

  transition: 0.5s;

}

.container-bridal .card-bridal .slide-bridal.slide1-bridal {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 1;

  transition: .7s;

  transform: translateY(100px);

}

.container-bridal .card-bridal:hover .slide-bridal.slide1-bridal{

  transform: translateY(0px);

}

.container-bridal .card-bridal .slide-bridal.slide2-bridal {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 20px;

  box-sizing: border-box;

  transition: .8s;

  transform: translateY(-100px);

  box-shadow: 0 20px 40px rgba(0,0,0,0.4);

}

.container-bridal .card-bridal:hover .slide-bridal.slide2-bridal{

  transform: translateY(0);

}

.container-bridal .card-bridal .slide-bridal.slide2-bridal::after{

  content: "";

  position: absolute;

  width: 30px;

  height: 4px;

  bottom: 15px;

  left: 50%;

  left: 50%;

  transform: translateX(-50%);

  background: #2c73df;

}

.container-bridal .card-bridal .slide-bridal.slide2-bridal .content-bridal p {

  margin: 0;

  padding: 0;

  text-align: center;

  color: #414141;

}

.container-bridal .card-bridal .slide-bridal.slide2-bridal .content-bridal h3 {

  margin: 0 0 10px 0;

  padding: 0;

  font-size: 24px;

  text-align: center;

  color: #414141;

}  */


/* body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
} */

/* .card-bridal {
  width: 200px;
  height: 300px;
  background-color: #3498db;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5em;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  animation: jelly 0.5s;
}

@keyframes jelly {
  0% {
      transform: scale(1, 1);
  }
  25% {
      transform: scale(1.1, 0.9);
  }
  50% {
      transform: scale(0.9, 1.1);
  }
  75% {
      transform: scale(1.05, 0.95);
  }
  100% {
      transform: scale(1, 1);
  }
} */


/* 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;
  }
}

.main-text
{
  font-family: "pacifico";
}