@font-face {
  font-family: "playfair-display";
  src: url("./font-famliy/playfair-display.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "plusjakartasans-regular";
  src: url("./font-famliy/plusjakartasans-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


* {
  padding: 0;
  margin: 0;
}

body {
    margin: 0 auto;
    width: 360px;
}
img {
    width: 100%;
    height: 100%;
    display: block;
}
.d-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}
.spacer {
    padding: 0 24px;
}
a {
    text-decoration: none;
}
.circle {
    border-radius: 50px;
    padding: 8px;
    background-color: #ED801D;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*----------------------- common css end here --------------*/

/* design css start */

.logo {
    background-color: #000;
    padding: 10px;
}
.logo img {
    max-width: 100px;
    margin: 0 auto;
}
.col-1 {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #000;
    border-bottom: 1px solid #fff;
}
.col-1 span {
    font-family: "plusjakartasans-regular";
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    font-weight: 500;
}
.col-1  .white {
    background-color: #fff;
}
.service-info {
    padding: 20px 10px;
}
h2 {
  font-family: "playfair-display";
    font-size: 30px;
    line-height: 35px;
    color: #000;
    margin-bottom: 10px;
    border-bottom: 1px solid #000;
    padding: 0px 0px 15px 0px;
    text-align: center;
}
.service-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}
a.service-item {
    padding: 10px 0px;
    font-family: "plusjakartasans-regular";
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    color: #000;
    transition: ease-in 0.3s;
}
a.service-item:hover {
    color: #ED801D;
}
a.secondary-button {
    background: #000;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    font-family: "plusjakartasans-regular";
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 25px;
    transition: ease-in 0.3s;
    margin-top: 15px;
}
a.secondary-button:hover {
    background: #ED801D;
    color: #000;
}



.button {
    width: 200px;
    height: 60px;
    --icon-size: 25px;
    --color: #ff6a2f;
    --text-color: rgb(210 210 240);
    --box-glow-color: transparent;
    --box-glow-blur: 20px;
    position: relative;
    min-width: 200px;
    min-height: 60px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-family: "plusjakartasans-regular";
    color: var(--text-color);
    background: #040814cc;
    box-shadow: 0 0 0 1px rgb(200 200 220 / 0.22), 0 0 var(--box-glow-blur) var(--box-glow-color), inset 0 0 26px -10px var(--box-glow-color);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 500ms ease;
    z-index: 2;
    margin: 0 auto;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(200 200 220 / 0.1);
    box-shadow: inset 0 0px 24px 0 rgb(170 230 250 / 0.12);
    border-radius: 60px;
    z-index: 1;
    transition: transform 500ms ease, box-shadow 500ms ease;
}

.text,
.icon {
    z-index: 2;
}

.text {
    transform: translateX(-20%);
    font-family: "plusjakartasans-regular";
    transition: transform 500ms ease;
    color: #fff;
}

.icon {
    position: absolute;
    width: var(--icon-size);
    height: var(--icon-size);
    left: 26px;
    transform: translateX(calc((200px) / 2 + 8px));
    transition: transform 500ms ease, color 500ms ease;
}

.button svg {
    width: 100%;
    height: 100%;
}

.button:hover svg path {
    fill: #ff6a2f;

}

.button:active {
    --box-glow-blur: 36px;
}

.button:hover::before,
.button:active::before {
    transform: translateX(73%);
    box-shadow: inset 0 0px 0px 0 transparent;
}

.button:hover,
.button:active {
    --box-glow-color: var(--color);
}

.button:hover .text,
.button:active .text {
    transform: translateX(0%);
    animation-play-state: running;
    color: var(--color);
}

.button:hover .icon,
.button:active .icon {
    transform: translateX(calc(200px - var(--icon-size) - 43px));
    color: var(--color);
}

.button:focus-visible {
    outline: none;
}

.button:focus-visible:not(:hover, :active) {
    background: #ED801D;
}
/* slider start */


.carousel.slide {
    padding: 30px 0px 40px 0px;
}
.swiper-slide {
  width: 100%;
}

.collection-card {
  width: 100%;
  position: relative;
  border-radius: 6px;
}

.collection-card img {
    width: 100%;
    display: block;
    border-radius: 6px;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #000;
}
.collection-card a {
  font-family: "poppins";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: all 0.4s ease;
  opacity: 0;
}

.collection-card:hover a {
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  opacity: 1;
}

/* slider end */

.youtube-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 50px;
}

.youtube-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    margin-bottom: 30px;
}
a.secondary-button.video {
    display: block;
    width: fit-content;
    margin: 20px auto;
}
.contact-address {
  background: #000;
}

.contact-address .col-1 {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 30px;
  cursor: pointer;
  border-bottom: 5px solid #fff;
}

.contact-address .circle {
  flex-shrink: 0;
  border-radius: 50%;
  padding: 8px;
  background-color: #ed801d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-address .plus {
  margin-left: auto;
  font-size: 32px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

.contact-address p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0 30px;
  font-family: "plusjakartasans-regular";
  font-size: 18px;
  line-height: 29px;
  color: #000;
  background: #fff;

  transition:
    max-height 0.5s ease,
    opacity 0.35s ease,
    padding 0.5s ease;
}

.contact-address.active p {
  opacity: 1;
  padding: 20px 30px;
}

.contact-address strong {
  font-family: "plusjakartasans-regular";
  font-size: 18px;
  line-height: 24px;
  color: #000;
}
.footer-info {
    padding: 20px 10px;
    background-color: #000;
}
h3 {
    font-family: "plusjakartasans-regular";
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 25px;
}
.social-media {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}
a.btn-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 5px;
  font-family: "plusjakartasans-regular";
  color: #000;
  font-size: 17px;
  line-height: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.btn-footer:hover {
  background-color: #ed801d;
  color: #fff;
}

a.btn-footer:hover .share-icon path {
  fill: #fff;
}
/* design css end */