* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "dearest";
  src: url("../../fonts/DEAREST.NORMAL.TTF");
}

body {
  background: var(--background);
  color: var(--text-color);
  font-family: dearest;
}

button,
a,
a:hover,
a:focus,
a:active,
button:hover,
button:focus,
button:active {
  text-decoration: none;
  cursor: pointer;
}



/* Nav Bar Start */
.navbar-container {
  position: relative;
  width: 100%;
  top: 0;
  box-shadow: rgba(72, 72, 72, 0.5) 0px 0px 7px 0px;
  padding: 0.2% 2% 0% 2%;
  display: flex;
  background-color: rgb(72, 0, 0);
  justify-content: space-between;
  align-items: center;
}
.logo-wrapper img {
  width: 70%;
}
.alerts {
  padding: 0.1% 2% 0% 2%;
  margin-top: 0.4%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.alert-message,
.alert-contact {
  color: red;
  font-size: 1rem;
  font-weight: bold;
  padding-right: 2%;
  font-family: dearest;
  letter-spacing: 1px;
  padding: 0% 0% 0.2% 0%;
}
.navigation-links {
  width: 170px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: bold;
  font-family: dearest;
  text-align: center;
  letter-spacing: 1px;
}
.nav-link:hover {
  color: red;
}
/* Nav Bar Ends */

/*  Desk contact   */

#contact {
  /* background-image: linear-gradient(
    white,
    rgb(153, 151, 151),
    rgb(255, 255, 255)
  ); */
  height: 100dvh;
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  /* overflow: hidden; */
}
#contact .container {
  /* margin-top: -100px; */
  padding-bottom: 0;
  /* font-family: sans-serif; */
  font-size: 1.2rem;
}

.container h2 {
  font-size: 2rem;
  /* margin-top: 0px; */
}
.cont_p1 {
  font-size: 0.8rem;
}

.contact_container {
  flex-direction: row;
  gap: 50px;
  /* align-items: center; */
  /* padding: 50px;
  border-radius: 24px;
  background-color: rgb(255, 255, 255); */
}

#sbmt {
  color: #fff;
  width: 230px;
  height: 47px;
  background: linear-gradient(to bottom, #f95052, #b6375b);
  outline: none;
  border: none;
  font-size: 1rem;
  display: block;
  cursor: pointer;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  box-shadow: inset 0px 6px 6px rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px #f95052, -1px -1px 2px #b6375b;
  margin-top: 30px;
}

.w-24 {
  width: calc(24px * 5);
}

.h-24 {
  height: calc(24px * 5);
}

.contact__info__icons {
  position: relative;
}

.arrow {
  position: absolute;
  top: -50px;
  left: 50%;
  rotate: 40deg;
  display: block;
  display: none;
}

.arrow::after {
  /* position: absolute; */
  content: "click here";
  color: var(--text-color);
  inset: 0;
  width: 400px;
  background: red;
}

.contact__info__icons {
  /* --font-size: 2rem; */
  height: 220px;
  width: 100%;
  justify-content: space-evenly;
  flex-direction: column;
  gap: 1rem;
  /* font-size: var(--font-size); */
}
.contact__info__icons h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: mediumspringgreen;
}
.contact__info__icons p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact_container > .bottom__container {
  /* width: 100%; */
  height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: red; */
}

.contact__info__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 70%;
  gap: 1rem;
  /* text-transform: uppercase; */
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.5px;
}
/* text-align: justify; */

.contact__info__icons i {
  /* background-color: var(--accent-color); */
  background-color: #25d366;
  font-size: var(--font-size);
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
}

.gap-2 {
  gap: 8px;
}

.contact__info__icons i:hover {
  background-color: var(--accent-color);
  color: white;
  border: transparent;
  cursor: pointer;
}

#sbmt:hover {
  color: #f95052;
  background: linear-gradient(to bottom, #f3f3f3, #d3d3d3);
  text-shadow: 2px 2px 3px #b8b9be, -2px -2px 3px #fff;
}

/*Desk footer*/

footer {
  width: 100%;
  padding: 0;
}

footer p {
  color: BLACK;

  line-height: 15px;
  float: right;

  font-family: "adinekirnbergregular";
  margin-right: -80px;
  font-size: 32px;
  cursor: none;
}

[data-id="form-control"] {
  box-shadow: 5px 5px 5px white;
}

.btn-group {
  margin-top: 20px;
}

/*close 781 desk*/

/*  Mobile contact   */

@media screen and (max-width: 780px) {
  .contact-info {
    width: 100%;
    display: flex;
  }
  .contact-info svg {
    width: 100%;
    height: 10em;
    margin-left: 0;
    object-fit: contain;
    /* margin-top: 40px; */
  }

  .contact-info iframe {
    width: 90%;
    height: 13vh;
  }

  #contact {
    /* background-image: linear-gradient(white, rgb(153, 151, 151), white); */
    /* background-color: orangered; */
    flex-direction: column;
  }

  #contact .container h2 {
    font-size: 1.3rem;

    margin-top: 0px;
  }
  .cont_p1 {
    font-size: 0.8rem;
  }
  .contact_container {
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
    height: 100vh;
  }

  #center_all {
    display: none;
  }

  .contact_container > .top__container {
    /* width: 100%; */
    flex-grow: 0;
  }
  .contact_container > .bottom__container {
    /* width: 100%; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
  }

  #sbmt {
    color: #fff;
    max-width: 350px;
    width: 70%;
    height: 50px;
    background: linear-gradient(to bottom, #f95052, #b6375b);
    outline: none;
    border: none;
    font-size: 1.2rem;
    display: block;
    cursor: pointer;
    font-weight: 500;
    margin-inline: auto;
    margin-bottom: 30px;
    border-radius: 2.5em;
    box-shadow: inset 0px 6px 6px rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px #f95052, -1px -1px 2px #b6375b;
  }

  #sbmt:hover,
  label {
    color: #f95052;
    background: linear-gradient(to bottom, #f3f3f3, #d3d3d3);
    text-shadow: 2px 2px 3px #b8b9be, -2px -2px 3px #fff;
  }
  .file-upload {
    display: none;
  }

  .btn-group {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10%;
  }
}

/* back button */

.back-button {
  /* position: absolute; */
  border: none;
  background: rgb(64, 64, 64);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
}

a:has(.back-button) {
  text-decoration: none;
  color: white;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: white;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.gap-4 {
  gap: 16px;
}

.w-full {
  width: 100%;
}

@media screen and (width > 500px) {
  .back-button {
    position: fixed;
    left: 40px;
    top: 40px;
  }

  #contact {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact_container > * {
    /* width: 100%; */
    flex: 1;
  }

  [data-id="form-control"] {
    height: 50px;
  }

  .file-input label {
    position: relative;
    /* width: 250px; */
    /* width: fit-content; */
    height: 50px;
    border-radius: 25px;
    background: linear-gradient(40deg, #ff6ec4, #7873f5);
    background: linear-gradient(to bottom, #f95052, #b6375b);
    background: #4b4b4b;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0px 6px 6px rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* font-weight: bold; */
    font: inherit;
    gap: 10px;
    align-self: center;
    cursor: pointer;
    transition: transform 0.2s ease-out;
    margin-block: 20px;
    text-shadow: none;
    font-size: 1.2rem;
  }
}

/* form control */

/* === Form Control === */
[data-id="form-control"] {
  display: block;
  border-radius: 30px;
  width: 100%;
  /* height: 6vh; */
  height: 45px;
  padding: 10px 30px;
  font-size: 1rem;
  /* font-weight: 400; */
  line-height: 1.6;
  color: #454360;
  background-color: #e0e5ec;
  overflow: hidden;
  border-radius: 50px;
  border: none;
  display: block;
  width: 100%;

  /* border: 1px solid #ced4da; */

  /* border-radius: 0.25rem; */
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

body[data-theme="dark"] [data-id="form-control"] {
  border: 0.5px solid #7b7b7b;
}

[data-id="form-control"]:focus {
  outline: 0;
  background: #ffffff;
}

[data-id="form-control"]::-webkit-input-placeholder {
  /* Edge */
  color: #aeacca;
}

[data-id="form-control"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aeacca;
}

[data-id="form-control"]::-moz-placeholder {
  color: #aeacca;
}

[data-id="form-control"]::-ms-input-placeholder {
  color: #aeacca;
}

[data-id="form-control"]::placeholder {
  color: #aeacca;
}

body[data-theme="dark"] .light-img {
  display: none;
}
body[data-theme="light"] .dark-img {
  display: none;
}

body[data-theme="light"] [data-mode="light"] {
  display: block;
}

.form-group {
  margin-bottom: 30px;
}

.input-group-addon {
  padding: 0;
  font-size: 1.2rempx;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

.rounded {
  border-radius: 20px !important;
}

.bg-white {
  background: #e0e5ec !important;
}

.shadow-dark,
.desktop-header-3 .dropdown-menu,
[data-id="form-control"]:focus {
  box-shadow: -7px -7px 10px 0px #fff9, -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, inset 0px 0px 0px 0px #fff9,
    inset 0px 0px 0px 0px #0001, inset 0px 0px 0px 0px #fff9,
    inset 0px 0px 0px 0px #0001;
  background: white;
}

.shadow-light {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.01);
  box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.01);
}

.shadow-blue {
  box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, inset 0px 0px 0px 0px #fff9,
    inset 0px 0px 0px 0px #0001, inset 0px 0px 0px 0px #fff9,
    inset 0px 0px 0px 0px #0001;
}

.shadow-pink {
  box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, inset 0px 0px 0px 0px #fff9,
    inset 0px 0px 0px 0px #0001, inset 0px 0px 0px 0px #fff9,
    inset 0px 0px 0px 0px #0001;
}

.shadow-yellow {
  box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001, inset 0px 0px 0px 0px #fff9,
    inset 0px 0px 0px 0px #0001, inset 0px 0px 0px 0px #fff9,
    inset 0px 0px 0px 0px #0001;
}

.padding-30 {
  padding: 30px;
}

.triangle-left:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid #fff;
  position: absolute;
  left: -15px;
  top: 20%;
}

.triangle-top:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  left: 50%;
  top: -10px;
  -webkit-transform: translateX(-7.5px);
  -ms-transform: translateX(-7.5px);
  transform: translateX(-7.5px);
}

.morphext > .animated {
  display: inline-block;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6 {
  color: #fff;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 0;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Styles for dialog window */
.white-popup {
  background: #e0e5ec;
  border-radius: 25px;
  padding: 30px;
  text-align: left;
  max-width: 650px;
  margin: 40px auto;
  position: relative;
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-close {
  font-size: 40px;
  opacity: 1;
}
.mfp-close:hover {
  opacity: 0.75;
}

.container {
  width: 100%;
  max-width: clamp(300px, 90%, 960px);
  margin-inline: auto;
  justify-content: center;
}

.contact_container > * {
  flex: 1;
}

.file {
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
  position: absolute;
}

input,
textarea {
  font: inherit;
}

.file-input label {
  position: relative;
  /* width: 250px; */
  /* width: fit-content; */
  height: 45px;
  border-radius: 25px;
  background: linear-gradient(40deg, #ff6ec4, #7873f5);
  background: linear-gradient(to bottom, #f95052, #b6375b);
  background: #4b4b4b;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0px 6px 6px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* font-weight: bold; */
  font: inherit;
  gap: 10px;
  align-self: center;
  cursor: pointer;
  transition: transform 0.2s ease-out;
  margin-block: 20px;
  text-shadow: none;
  font-size: 1.2rem;
}

.file-name {
  position: absolute;
  bottom: -35px;
  left: 10px;
  font-size: 0.85rem;
  color: #555;
}

input:hover + label,
input:focus + label {
  color: #f95052;
  background: linear-gradient(to bottom, #f3f3f3, #d3d3d3);
  /* text-shadow: 2px 2px 3px #b8b9be, -2px -2px 3px #fff; */
}

/* Adding an outline to the label on focus */
input:focus + label {
  outline: 1px solid #000;
  outline: -webkit-focus-ring-color auto 2px;
}

.contact__info__click__logo {
  position: absolute;
  top: -40%;
  right: 10%;
}

.contact__info__click__logo svg{
  width: 100px;
  height: 180px;
}
