.landing {
  height: 100vh;
  width: 100vw;
  background: -webkit-gradient(linear, left bottom, left top, from(#966892), to(rgba(150, 104, 146, 0.2))), url(img1.jpeg);
  background: linear-gradient(0deg, #966892, rgba(150, 104, 146, 0.2)), url(img1.jpeg);
  background-size: cover;
  background-position: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: var(--foreground);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10vw;
}

.maintag {
  font-size: 5vw;
}

.subtag {
  font-size: 2vw;
}

.myicon {
  font-size: 10vw;
}

.land {
  width: 60vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-icons {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 15%;
  left: -100%;
  background-color: var(--foreground);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px solid var(--background);
  -webkit-transition: all;
  transition: all;
  -webkit-transition-duration: 2s;
          transition-duration: 2s;
  -webkit-animation: slideInSocial 2s 1s 1 forwards;
          animation: slideInSocial 2s 1s 1 forwards;
}

.social-icons i {
  padding: 1vw;
  color: var(--background);
  font-size: 3vw;
}

.social-icons i:hover {
  font-weight: 900;
  cursor: pointer;
}

@-webkit-keyframes slideInSocial {
  0% {
    left: -100%;
  }
  100% {
    left: -2px;
  }
}

@keyframes slideInSocial {
  0% {
    left: -100%;
  }
  100% {
    left: -2px;
  }
}

@media only screen and (max-device-width: 800px) {
  .landing {
    padding: 0px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 20vh;
    background-size: cover;
    background-position: right;
  }
  .land {
    width: 100vw;
  }
  .maintag {
    font-size: 2rem;
  }
  .subtag {
    font-size: 1rem;
  }
  .myicon {
    font-size: 4rem;
  }
  .social-icons i {
    padding: 10px;
    color: var(--background);
    font-size: 1.5rem;
  }
  .social-icons i:hover {
    font-weight: 900;
    cursor: pointer;
  }
}

.ourBlog {
  background-color: var(--background);
  color: var(--foreground);
  width: 100vw;
  height: 70vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-middle {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 20vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-img {
  width: auto;
  height: 40vh;
}

.blog-data {
  margin-left: 2vw;
  width: auto;
  max-width: 50vh;
  height: 40vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 2.5vh;
}

.blog-title {
  font-size: 5vh;
  font-weight: 600;
}

.blog-desc {
  text-align: justify;
}

.blog-control button {
  font-family: var(--customFont);
  background-color: var(--foreground);
  color: var(--background);
  border-radius: 5px;
  outline: none;
  border: 1px solid var(--foreground);
  padding: 1vw;
  font-size: 2vh;
}

.blog-control button:hover {
  cursor: pointer;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog-title-mob {
  display: none;
}

@media only screen and (max-device-width: 800px) {
  .ourBlog {
    margin-top: -5px;
    width: 100vw;
    height: 100vh;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .container-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80vw;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blog-img {
    width: 70vw;
    height: auto;
  }
  .blog-title {
    display: none;
  }
  .blog-title-mob {
    font-size: 5vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5vh;
  }
  .blog-data {
    font-size: 2vh;
    margin-top: 5vh;
    max-width: 70vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .blog-control button {
    margin-top: 5vh;
    font-size: 2vh;
    padding: 2vh;
  }
}

.collab {
  width: 100vw;
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--background);
}

.collab-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-tag {
  font-size: 5vh;
  font-weight: 600;
}

.sub-tag {
  font-size: 3vh;
  font-weight: 100;
}

.collab-content {
  width: 80vw;
  margin-top: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.collab-img {
  width: 25vw;
  height: 15vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.collab-img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  cursor: pointer;
}

.collab-item {
  font-size: 3vh;
}

@media only screen and (max-device-width: 800px) {
  .collab-title {
    text-align: center;
  }
  .collab {
    padding-top: 10vh;
    padding-bottom: 10vh;
    width: 100vw;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main-tag {
    font-size: 3vh;
  }
  .sub-tag {
    font-size: 2vh;
  }
  .collab-content {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100vw;
  }
  .collab-img {
    width: 90vw;
    height: 55vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .collab-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 3vh;
    margin-bottom: 5vh;
    width: 90vw;
  }
}

.notableFeatures {
  padding-top: 10vh;
  padding-bottom: 10vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.notable-cont {
  width: 80vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-tag-not {
  margin-bottom: 10vh;
  text-align: center;
  font-size: 5vh;
  font-weight: 600;
}

.features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: justify;
}

.feature {
  text-align: center;
  width: 20vw;
}

.feature .feature-tag {
  font-size: 3vh;
  font-weight: 500;
  margin-bottom: 5vh;
}

.feature .feature-icon {
  font-size: 10vh;
  color: var(--foreground);
}

.banner {
  width: 100vw;
  height: 20vw;
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0.01))), url(banner.jpeg);
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0.01)), url(banner.jpeg);
  background-size: cover;
  background-position: right;
}

.contact {
  color: var(--background);
  width: 100vw;
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10vw;
  padding-right: 10vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact .secmain {
  font-size: 4vh;
  font-weight: 500;
}

.secs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec {
  padding-left: 10vh;
}

@media only screen and (max-device-width: 800px) {
  .notableFeatures {
    padding-top: 10vh;
    padding-bottom: 10vh;
    height: auto;
  }
  .features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .feature {
    border-bottom: 1px solid var(--foreground);
    padding-bottom: 5vh;
    text-align: center;
    width: 70vw;
  }
  .feature .feature-tag {
    font-size: 3vh;
    font-weight: 500;
    margin-bottom: 5vh;
  }
  .feature .feature-icon {
    font-size: 10vh;
    color: var(--foreground);
  }
  .banner {
    height: 30vh;
  }
}

@media only screen and (max-device-width: 1000px) {
  .contact {
    padding-top: 10vh;
    padding-bottom: 10vh;
    width: 100vw;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 10vw;
    padding-right: 10vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .contact .secmain {
    font-size: 4vh;
    font-weight: 500;
  }
  .secs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sec {
    margin-top: 2vh;
    margin-bottom: 2vh;
    padding-left: 0px;
    padding-right: 4vh;
  }
}

.nav {
  position: fixed;
  top: -10vh;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100vw;
  height: 10vh;
  background-color: var(--foreground);
  color: var(--background);
}

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 40vw;
}

.brand {
  font-size: 3vh;
  font-weight: 700;
}

.link a {
  text-decoration: none;
  color: var(--background);
}

.link:hover {
  cursor: pointer;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media only screen and (max-device-width: 1000px) {
  .links {
    display: none;
  }
}

.menu-btn {
  position: absolute;
  top: 4vh;
  left: 5vw;
  display: none;
  z-index: 1;
  height: 20px;
  width: 28px;
  cursor: pointer;
}

.menu-btn__burger {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 28px;
  height: 3px;
  background: var(--background);
}

.menu-btn__burger::before {
  content: '';
  position: absolute;
  top: -8px;
  width: 24px;
  height: 3px;
  background: var(--background);
}

.menu-btn__burger::after {
  content: '';
  position: absolute;
  top: 8px;
  width: 32px;
  height: 3px;
  background: var(--background);
}

.moblinks {
  display: none;
}

.mlink {
  margin-bottom: 2vh;
  margin-right: 5vw;
  font-size: 4vh;
}

.mlink a {
  color: var(--background);
  text-decoration: none;
}

.open {
  position: fixed;
  -webkit-animation: slideup 0.5s 1 forwards;
          animation: slideup 0.5s 1 forwards;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 90vh;
  width: 100vw;
  background-color: var(--foreground);
  color: var(--background);
}

@media only screen and (max-device-width: 1000px) {
  .menu-btn {
    display: block;
  }
  .menu-btn2 {
    display: block;
  }
}

@-webkit-keyframes slideup {
  0% {
    top: 100vh;
  }
  100% {
    top: 10vh;
  }
}

@keyframes slideup {
  0% {
    top: 100vh;
  }
  100% {
    top: 10vh;
  }
}

:root {
  --foreground:#ffffff;
  --background:#966892;
  --customfont:'Itim', cursive;
}

body {
  margin: 0px;
  font-family: var(--customfont);
}

* {
  -webkit-transition: all;
  transition: all;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

html {
  scroll-behavior: smooth;
}
/*# sourceMappingURL=main.css.map */