@import url("https://fonts.googleapis.com/css2?family=Yatra+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karma:wght@600;700&display=swap");
/* CSS formatting */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Karma";
  font-size: 1.5vw;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
/* HTML */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* ********************************Header******************************** */
header {
  height: max-content;
  display: flex;
  font-family: "Yatra One";
}

/* LOGO */
#Logo {
  padding: 1vw 0px 0px 1vw;
}
#Logo img {
  height: 10vw;
}

/* Heading */
#Heading {
  margin-left: 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.8vw;
}

/* ********************************Navigation******************************** */
nav {
  background: url(../Images/prism.png);
}

#NavigationBar {
  height: max-content;
  /* height: 4vw; */
}

#NavigationBar ul {
  display: flex;
  color: #ffffff;
  justify-content: space-evenly;
}

#NavigationBar a {
  padding: 1vw 3vw;
  text-decoration: none;
  color: #ffffff;
}

#NavigationBar li {
  padding: 1vw 0vw;
  cursor: pointer;
  list-style: none;
}

.navigationLink:hover {
  text-decoration: underline;
  text-shadow: 1px 1px 2px rgb(201, 201, 201), 0 0 25px rgb(168, 168, 168),
    0 0 5px rgb(170, 170, 170);
}

/* DropDownAbout */

.dropDownAbout {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  margin-top: 5px;
}

.dropDownAbout ul {
  display: flex;
  flex-direction: column;
  margin-left: 2vw;
  margin-right: 2vw;
}

.dropDownAbout ul {
  margin-left: 1px;
}
.dropDownAbout li {
  margin: 5px 0px;
  padding-left: 0px;
}

.dropDownAbout a {
  padding: 0px;
  margin: 0px;
  color: #000000 !important;
}

.aboutLink:hover .dropDownAbout {
  transition: all 3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.underline {
  --line: #000000;
  --color: #000000;
  text-decoration: none;
  color: var(--color);
  position: relative;
  text-shadow: none;
}

.underline:hover {
  text-decoration: underline;
}

.dropDownAbout span {
  background-image: linear-gradient(0deg, var(--line) 0%, var(--line) 100%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 1px;
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  font-size: 16px;
  line-height: 20px;
  transform: translateZ(0);
}

.dropDownAbout svg {
  display: inline;
  width: 13px;
  height: 20px;
  position: relative;
  left: -2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
  stroke: var(--line);
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s)
    var(--stroke-easing, linear) var(--stroke-delay, 0s);
}

.underline:hover {
  --background-size: 0%;
  --background-delay: 0s;
  --stroke-dashoffset: 26;
  --stroke-duration: 0.3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: 0.195s;
  text-decoration: underline;
}

.underline:before,
.underline:after {
  box-sizing: inherit;
}

/* Popup */
#Headingcontact:hover {
  text-decoration: underline;
  text-shadow: 1px 1px 2px rgb(201, 201, 201), 0 0 25px rgb(168, 168, 168),
    0 0 5px rgb(170, 170, 170);
}

/* The Modal (background) */
.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* overflow: auto; */
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
.popup-content {
  background-color: #fefefe;
  margin: 7% auto;
  padding: 2vw;
  border-radius: 0.6vw;
  color: #000000;
  border: 0.2vw solid black;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.2),
    0 6px 20px 3px rgba(0, 0, 0, 0.19);
  width: calc(100vw - 30vw);
  cursor: initial;
}

/* The Close Button */
.close {
  color: rgb(100, 100, 100);
  float: right;
  font-size: 3vw;
  font-weight: bold;
  position: absolute;
  right: 14vw;
  top: 7vw;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.popup::-webkit-scrollbar {
  display: none;
}

#BackToTop {
  position: fixed;
  top: 90%;
  left: 95%;
}

#BackToTop img {
  background-color: rgba(70, 70, 70, 0.7);
  height: 3vw;
  cursor: pointer;
  border-radius: 0.3vw;
}

@media only screen and (max-width: 770px) {
  body {
    font-size: 3vw;
  }
  header {
    flex-direction: column;
    align-items: center;
  }

  #Heading {
    font-size: 3.2vw;
  }

  .dropDownAbout svg {
    display: none;
  }

  .popup-content {
    width: calc(100vw - 10vw);
  }

  .close {
    font-size: 5vw;
    right: 5vw;
  }
  #BackToTop {
    left: 90%;
    top: 95%;
  }
  #BackToTop img {
    height: 5vw;
  }
}

@media only screen and (max-width: 360px) {
  #BackToTop img {
    height: 7vw;
  }
}

/* ********************************Footer******************************** */

footer {
  display: flex;
  color: #e0e0e0;
  background-image: url(../Images/prism.png);
  justify-content: space-around;
  font-size: 1vw;
  padding: 1vw 0;
}
