/*FONT imports*/
@import url(https://fonts.googleapis.com/css?family=Oswald:400,700);
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Alkatra&family=Playfair+Display:ital,wght@0,600;1,400&family=Roboto+Slab:wght@100;200;400;700&display=swap");

/* main styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* pre loader style starts */
.loading {
  background-color: var(--bg);
  color: var(--fg);
  font: 1em/1.5 sans-serif;
  height: 100vh;
  display: grid;
  place-items: center;
  transition:
    background-color var(--trans-dur),
    color var(--trans-dur);
}

.smiley {
  width: 8em;
  height: 8em;
}

.smiley__eye1,
.smiley__eye2,
.smiley__mouth1,
.smiley__mouth2 {
  animation: eye1 3s ease-in-out infinite;
}

.smiley__eye1,
.smiley__eye2 {
  transform-origin: 64px 64px;
}

.smiley__eye2 {
  animation-name: eye2;
}

.smiley__mouth1 {
  animation-name: mouth1;
}

.smiley__mouth2 {
  animation-name: mouth2;
  visibility: hidden;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 90%, 10%);
    --fg: hsl(var(--hue), 90%, 90%);
  }
}

/* Animations */
@keyframes eye1 {
  from {
    transform: rotate(-260deg) translate(0, -56px);
  }

  50%,
  60% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.58, 1);
    transform: rotate(-40deg) translate(0, -56px) scale(1);
  }

  to {
    transform: rotate(225deg) translate(0, -56px) scale(0.35);
  }
}

@keyframes eye2 {
  from {
    transform: rotate(-260deg) translate(0, -56px);
  }

  50% {
    transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
  }

  52.5% {
    transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1, 0);
  }

  55%,
  70% {
    animation-timing-function: cubic-bezier(0, 0, 0.28, 1);
    transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
  }

  to {
    transform: rotate(150deg) translate(0, -56px) scale(0.4);
  }
}

@keyframes eyeBlink {

  from,
  25%,
  75%,
  to {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0);
  }
}

@keyframes mouth1 {
  from {
    animation-timing-function: ease-in;
    stroke-dasharray: 0 351.86;
    stroke-dashoffset: 0;
  }

  25% {
    animation-timing-function: ease-out;
    stroke-dasharray: 175.93 351.86;
    stroke-dashoffset: 0;
  }

  50% {
    animation-timing-function: steps(1, start);
    stroke-dasharray: 175.93 351.86;
    stroke-dashoffset: -175.93;
    visibility: visible;
  }

  75%,
  to {
    visibility: hidden;
  }
}

@keyframes mouth2 {
  from {
    animation-timing-function: steps(1, end);
    visibility: hidden;
  }

  50% {
    animation-timing-function: ease-in-out;
    visibility: visible;
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -351.86;
  }
}


/* preloader style ends */

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  transition: background 0.2s linear;

}

section {
  height: 100%;
  width: 100%;
  position: relative;
}

/* dark theme toogle */
body.dark {
  background-color: #292c35;
}

/* #9b59b6 */

body.dark h1,
body.dark .support a {
  color: #fff;
}

body.dark .events-slider__code {
  color: #b1b0b0;
}

body.dark .events-slider__title {
  color: var(--primaryColor);
}

body.dark .events-slider__text {
  color: rgb(230, 227, 227);
}

body.dark .home_background {
  background-color: #000000;
  background-image: linear-gradient(147deg, #000000 0%, #2c3e50 74%);
}

body.dark .subHeadingText {
  color: white;
}

body.dark .description {
  color: rgb(187, 180, 180);
}

body.dark .event-description {
  color: white;
}

body.dark .event-left {
  background-color: var(--secondayColor);
}

body.dark .event {
  box-shadow: 0 4px 16px -8px rgba(216, 216, 216, 0.895);
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa-moon {
  color: #f1c40f;
}

.fa-sun {
  color: #f39c12;
}



.checkbox:checked+.checkbox-label .ball {
  transform: translateX(24px);
}



:root {
  --primaryColor: #219ebc;
  --secondayColor: #fb8500;
  --normalFont: 'Poppins', sans-serif;
  --headingFont: 'Josefin Sans', sans-serif;
  --eventsBackground: grey;

  --team-first-color:
    /*hsl(29, 80%, 58%)*/
    #fb8500;
  --team-first-color-light:
    /* hsl(29,80%,70%) #fb8500*/
    #f3e4e4;
  --team-black-color: #044353
    /*hsl(29 , 16% , 10%)*/
  ;
  --team-text-color: hsl(29, 8%, 65%);
  --team-body-color: hsl(29, 100%, 99%);

  --team-body-font: 'Poppins', sans-serif;
  --team-h3-font-size: 1.125rem;
  --team-smaller-font-size: .75rem;

  --hue: 223;
  --bg: hsl(var(--hue), 90%, 90%);
  --fg: hsl(var(--hue), 90%, 10%);
  --trans-dur: 0.3s;
}

::-webkit-scrollbar {
  width: 0.625rem;
}

::-webkit-scrollbar-track {
  background: #404040;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to right bottom, #fd8721, #c34915);
}

/* preloader */

.pl {
  display: block;
  width: 9.375em;
  height: 9.375em;
}

.pl__arrows,
.pl__ring-rotate,
.pl__ring-stroke,
.pl__tick {
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.pl__arrows {
  animation-name: arrows42;
  transform: rotate(45deg);
  transform-origin: 16px 52px;
}

.pl__ring-rotate,
.pl__ring-stroke {
  transform-origin: 80px 80px;
}

.pl__ring-rotate {
  animation-name: ringRotate42;
}

.pl__ring-stroke {
  animation-name: ringStroke42;
  transform: rotate(-45deg);
}

.pl__tick {
  animation-name: tick42;
}

.pl__tick:nth-child(2) {
  animation-delay: -1.75s;
}

.pl__tick:nth-child(3) {
  animation-delay: -1.5s;
}

.pl__tick:nth-child(4) {
  animation-delay: -1.25s;
}

.pl__tick:nth-child(5) {
  animation-delay: -1s;
}

.pl__tick:nth-child(6) {
  animation-delay: -0.75s;
}

.pl__tick:nth-child(7) {
  animation-delay: -0.5s;
}

.pl__tick:nth-child(8) {
  animation-delay: -0.25s;
}

/* Animations */
@keyframes arrows42 {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

@keyframes ringRotate42 {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(720deg);
  }
}

@keyframes ringStroke42 {

  from,
  to {
    stroke-dashoffset: 452;
    transform: rotate(-45deg);
  }

  50% {
    stroke-dashoffset: 169.5;
    transform: rotate(-180deg);
  }
}

@keyframes tick42 {

  from,
  3%,
  47%,
  to {
    stroke-dashoffset: -12;
  }

  14%,
  36% {
    stroke-dashoffset: 0;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/*navbar styles*/

.navbar {
  height: 100%;
  background-color: transparent;
  padding-bottom: 80px;
}

nav {
  width: 100%;
  padding: 15px 0;
  background: #ecf0f3;
  box-shadow: -3px -3px 7px #ffffff,
    3px 3px 5px #ceced1;
  font-family: var(--normalFont);
  position: fixed;
  z-index: 999;
}


nav .menu {
  max-width: 1270px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu .logo {
  padding: -20px;
  margin: -20px;
}

.menu ul {
  list-style: none;
  display: flex;

}

.menu ul a {
  margin: 0 8px;
  text-decoration: none;
  font-size: 15px;
  color: #31344b;
  font-weight: 400;
  display: inline-flex;
  padding: 10px 12px;
  /* box-shadow: -3px -3px 7px #ffffff,
            3px 3px 5px #ceced1;
	position:relative;
	transition: color 0.2s ease-out, transform 0.2s ease-out;
       border-radius:10px 10px;  */

}


.menu ul a:hover {
  color: var(--secondayColor);
  /* transform: scale(1.05);
    box-shadow: 4px 4px 10px 0 rgba(0,0,0,.1), -4px -4px 10px rgba(255,255,255,1); */
}

/* .menu ul a:focus{
    outline: none;
      transform: scale(0.6);
      box-shadow: 4px 4px 10px 0 rgba(0,0,0,.1), -4px -4px 10px rgba(255,255,255,1), 4px 4px 10px 0 rgba(0,0,0,.1) inset, -4px -4px 10px rgba(255,255,255,1) inset;
} */


nav label.btn {
  color: #31344b;
  font-size: 18px;
  cursor: pointer;
  display: none;
}

nav label.cancel {
  position: absolute;
  top: 25px;
  right: 30px;
}

#check {
  display: none;
}

@media (max-width:940px) {
  .menu ul {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    padding-top: 45px;
    height: 100%;
    background: #ecf0f3;
    box-shadow: 0 5px 10px #b0b0b5;
    z-index: 12;
    transition: all 0.3s ease;
  }

  .menu ul a {
    display: block;
    font-size: 23px;
    width: 100%;
    margin-top: 30px;
    box-shadow: none;
    text-align: center;
  }

  .menu ul a:hover:before {
    box-shadow: none;
  }

  nav label.bars {
    display: block;
  }

  #check:checked~label.bars {
    display: none;
  }

  #check:checked~ul label.cancel {
    display: block;
  }

  #check:checked~ul {
    left: 0;

  }

}

@media (max-width: 768px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    padding: 10px;
    background-color: #f8f9fa;
    width: 100%;
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    margin: 0 auto;
    text-align: center;
  }

  .navbar-nav li {
    display: inline-block;
    float: none;
  }
}

@media (max-width: 767px) {

  /* Adjust the margin-left property for the "About Us" section */
  #about {
    margin-left: 10px;
  }
}

/* scroll to top */
#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #3498db;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  z-index: 999;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}

#scroll:hover {
  background-color: #e74c3c;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
  font-family: var(--normalFont);
}

a {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 50px 10px 50px;
}

.mainImg {
  color: black;
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.text-blk.headingText {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--primaryColor);
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 40%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.text-blk.subHeadingText {
  color: rgb(102, 102, 102);
  font-size: 23px;
  line-height: 32px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.text-blk.description {
  font-size: 15px;
  line-height: 26px;
  color: rgb(123, 120, 120);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  font-weight: 400;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.explore {
  font-size: 16px;
  line-height: 28px;
  color: rgb(102, 102, 102);
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(102, 102, 102);
  border-right-color: rgb(102, 102, 102);
  border-bottom-color: rgb(102, 102, 102);
  border-left-color: rgb(102, 102, 102);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  background-color: white;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 8px;
  padding-right: 40px;
  padding-bottom: 8px;
  padding-left: 40px;
  transition: all 0.2s ease-in;
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: var(--secondayColor);
  color: white;

}

.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  flex-direction: row-reverse;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  position: static;
}

.allText.aboveText {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
}

.allText.bottomText {
  margin-top: 0px;
  margin-right: 40px;
  margin-bottom: 0px;
  margin-left: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0px;
  padding-right: 15px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.purpleBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 430px;
  background-color: rgb(176, 98, 255);
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  bottom: -35px;
  left: -8%;
}

.purpleText {
  font-size: 18px;
  line-height: 26px;
  color: white;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.ultimateImg {
  width: 50%;
  position: relative;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .allText.bottomText {
    margin-top: 30px;
    margin-right: 40px;
    margin-bottom: 0px;
    margin-left: 0px;
    text-align: left;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .allText.aboveText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .text-blk.subHeadingText {
    text-align: left;
    font-size: 26px;
    line-height: 32px;
  }

  .text-blk.description {
    text-align: left;
    line-height: 24px;
  }

  .explore {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
  }

  .responsive-container-block.Container {
    justify-content: space-evenly;
  }

  .purpleBox {
    bottom: 10%;
  }

  .responsive-container-block.Container.bottomContainer {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    max-width: 930px;
  }

  .allText.bottomText {
    width: 40%;
  }

  .purpleBox {
    bottom: auto;
    left: -10%;
    top: 70%;
  }

  .mainImg {
    width: 100%;
  }

  .text-blk.headingText {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .allText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 24px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 18px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .allText.bottomText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .mainImg {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: -70px;
    margin-left: 0px;
  }

  .responsive-container-block.Container.bottomContainer {
    flex-direction: column;
  }

  .ultimateImg {
    width: 100%;
  }

  .purpleBox {
    position: static;
  }

  .allText.bottomText {
    width: 100%;
    align-items: flex-start;
  }

  .text-blk.headingText {
    text-align: left;
  }

  .text-blk.subHeadingText {
    text-align: left;
  }

  .text-blk.description {
    text-align: left;
  }

  .ultimateImg {
    position: static;
  }

  .mainImg {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .ultimateImg {
    position: relative;
  }

  .purpleBox {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    position: absolute;
    left: 0px;
    top: 80%;
  }

  .allText.bottomText {
    margin-top: 100px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .mainImg {
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .text-blk.subHeadingText {
    font-size: 24px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 28px;
  }

  .text-blk.description {
    font-size: 16px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 22px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
  }

  .allText.bottomText {
    margin-top: 50px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0 0 0 0;
    margin: 30px 0 0 0;
  }

  .ultimateImg {
    position: static;
  }

  .purpleBox {
    position: static;
  }

  .stars {
    width: 55%;
  }

  .allText.bottomText {
    margin-top: 75px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .purpleText {
    font-size: 16px;
    line-height: 22px;
  }

  .explore {
    padding: 6px 35px 6px 35px;
    font-size: 15px;
  }
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}




/*home styles*/


svg {
  font-family: 'Russo One', sans-serif;
  position: absolute;
  margin-top: -5%;
}

svg text {
  text-transform: uppercase;
  animation: stroke 5s linear alternate;
  stroke-width: 2;
  stroke: #365fa0;
  font-size: 140px;
}

@keyframes stroke {
  0% {
    fill: rgba(72, 138, 20, 0);
    stroke: rgba(54, 95, 160, 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }

  70% {
    fill: rgba(72, 138, 20, 0);
    stroke: rgba(54, 95, 160, 1);
  }

  80% {
    fill: rgba(72, 138, 20, 0);
    stroke: rgba(54, 95, 160, 1);
    stroke-width: 3;
  }

  100% {
    fill: rgba(72, 138, 204, 1);
    stroke: rgb(15, 79, 183);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}

#cardWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center;
}

.cardContent {
  position: absolute;
  height: 250px;
  width: 400px;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 100px 0 30px 50px;
}

.content {
  font-family: arial;
  color: rgba(255, 255, 255, 0.5);
}


.card_logo {
  padding-top: 40px;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-bottom: 0px;
}

@media screen and (max-width: 700px) {
  #cardWrap {
    width: 92%;

  }

  .menu .logo {
    width: 62%;
  }

  .card_logo img {
    margin-top: 50px;
    width: 85%;
  }

  svg {
    margin-top: 5px;
  }

  svg text {
    font-size: 200px;

  }

}

.home_social-media {
  display: flex;
  justify-content: center;
  margin-top: -60px;

}

.home_social-media a {
  display: flex;
  background-color: #e3edf7;
  height: 50px;
  width: 50px;
  margin: 0 15px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0);
  transition: transform 0.5s;
}

.home_social-media a i {
  font-size: 30px;
  background-color: #e3edf7;
  color: #777;
  transition: transform 0.5s;

}

.home_social-media a:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
    inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
    -0.5px -0.5px 0px rgba(255, 255, 255, 1),
    0.5px 0.5px 0px rgba(0, 0, 0, 0.15), 0px 12px 10px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.01);
  transform: translateY(2px);
}

a:hover i {
  transform: scale(0.9);
}

a:hover .fa-facebook {
  color: #3b5998;
}

a:hover .fa-twitter {
  color: #00acee;
}

a:hover .fa-github {
  color: #000000;
}

a:hover .fa-instagram {
  color: #f14843;
}

a:hover .fa-linkedin-in {
  color: #3b5998;
}

@media screen and (max-width: 700px) {

  .home_social-media {
    padding-top: 80px;
  }

  .home_social-media a {
    height: 40px;
    width: 40px;
  }

  .home_social-media a i {
    font-size: 20px;
  }
}

/* frosted glass effect */
.card {
  /* height: 520px;
  width: 1100px; */
  height: 500px;
  width: 1000px;
  background: rgb(255, 255, 255);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px outset rgba(255, 255, 255, 0.3);
  box-shadow: 0px 1px 24px -1px rgba(0, 0, 0, 0.2);

}

/* grain/noise effect */
.card::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 250px;
  border-radius: 30px;
  opacity: 0.5;

}

/* About Us Styles */
.main-about {
  font-family: main-article;
}

.main-about-content-title {

  background-color: white;
  display: flex;
  color: var(--primaryColor);
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}

.main-article {
  font-family: "Roboto Slab", serif;
  font-size: 110%;
  padding: 1rem 2rem;
  background-color: white;
}

@media screen and (max-width: 700px) {
  .main-article {
    font-size: 70%;
    padding: 5px;
  }

}

.main-about-content-article.about-acm-box {
  margin: 0 auto;
  padding: 1.5rem;
  background-color: white;
  padding-left: 2rem;
  width: 200%;
  height: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px;
  box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25),
    -8px -8px 12px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(-45deg, rgba(4, 72, 210, 0.932), rgba(2, 10, 239, 0.25));
}

/* ACM card starts here */
.main-image {
  width: 100%;
  height: auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;

}

/* ACM card ends here */

/* Content part starts here */
.about-content {
  margin-top: 1rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
  padding-right: 2rem;
  padding-left: 2rem;
  border-style: solid 0.3rem;

}

@media screen and (max-width: 700px) {
  .about-us p {
    font-size: 75%;
    margin: -10px;
  }

  .about-body-contents .about-acm-box {
    width: 110%;
    margin: -15px;
  }
}

.about-content-title {
  font-family: "Playfair Display", serif;
  font-size: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bolder;
  padding-bottom: 1rem;
}

.about-quote {
  font-family: "Alkatra", cursive;
  font-weight: bold;
  font-size: 90%;
  color: red;
  padding-top: 0.1rem;
  padding-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us {
  font-family: 'Roboto Slab', serif;
  font-size: large;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  background-color: white;
}


.about-acm-box {
  margin: 0 auto;
  padding: 1rem;
  width: 95%;
  height: 42%;
  border-radius: 20px;
  box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25),
    -8px -8px 12px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(-45deg, rgba(4, 72, 210, 0.932), rgba(2, 10, 239, 0.25));
}

/* Cards CSS */

/* Float three columns side by side */
.about-column {
  float: left;
  width: 33.33%;
  padding: 50px;
}

/* Remove extra left and right margins, due to padding */
.about-row {
  margin: 0 -5px;
}

/* Clear floats after the columns */
.about-row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 700px) {
  .about-column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.about-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 5px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.back.about-from-left.h2 {
  color: white;
}

.about-card .about-profile {
  border-radius: 10px;
  transition: 0.2s;
}

.about-card:hover .about-profile {
  transform: scale(1.4);
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}

.about-card .about-card-content {
  width: 100%;
  height: 100%;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.about-card .about-card-content .back {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--secondayColor);
  transition: 1s;
  border-bottom: white;
  z-index: 1;
  padding: 10px;
}

.about-from-left {
  top: 0;
  left: -100%;
}

.about-from-left h2 {
  background-color: white;
}

.about-from-left h3 {
  background-color: white;
}

.about-card:hover .about-card-content .about-from-left {
  left: 0%;
}

.about-from-bottom {
  top: 100%;
  left: 0;
}

.about-from-bottom h2 {
  background-color: white;
}

.about-from-bottom h3 {
  background-color: white;
}

.about-card:hover .about-card-content .about-from-bottom {
  top: 0%;
}

.about-from-right {
  top: 0%;
  right: -100%;
}

.about-from-right h2 {
  background-color: white;
}

.about-from-right h3 {
  background-color: white;
}

.about-card:hover .about-card-content .about-from-right {
  right: 0;
}

.about-card .about-card-content .back h3 {
  font-size: 15px;
  letter-spacing: 2px;
}

.about-card .about-card-content .back .about-des {
  font-family: "Alkatra", cursive;
  background-color: white;
  font-size: 115%;
  padding: 1rem 0.5rem;
}

@media screen and (max-width: 700px) {
  .about-card .about-card-content .back .about-des {
    font-size: 90%;
  }
}



/* About Us style ends */




/* Events Styles */

.events {
  height: 100%;
  font-family: var(--normalFont);
  background-image: var(--eventsBackground);
  padding-bottom: 20px;
}

.website_heading {
  padding: 80px 0px;
  text-align: center;

}

.website_heading h1 {
  font-size: 3rem;
  text-shadow: -3px 3px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-family: var(--headingFont);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.starting_letter {
  color: var(--secondayColor);
}


.events-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: auto;

  background: #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  height: 400px;


}

@media screen and (max-width: 992px) {
  .events-slider {
    max-width: 680px;
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .events-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .events-slider {
    height: 350px;
  }
}

.events-slider__item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .events-slider__item {
    flex-direction: column;
  }
}

.events-slider__item.swiper-slide-active .events-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}

.events-slider__item.swiper-slide-active .events-slider__content>* {
  opacity: 1;
  transform: none;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(1) {
  transition-delay: 0.3s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(2) {
  transition-delay: 0.4s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(3) {
  transition-delay: 0.5s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(4) {
  transition-delay: 0.6s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(5) {
  transition-delay: 0.7s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(6) {
  transition-delay: 0.8s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(7) {
  transition-delay: 0.9s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(8) {
  transition-delay: 1s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(9) {
  transition-delay: 1.1s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(10) {
  transition-delay: 1.2s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(11) {
  transition-delay: 1.3s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(12) {
  transition-delay: 1.4s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(13) {
  transition-delay: 1.5s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(14) {
  transition-delay: 1.6s;
}

.events-slider__item.swiper-slide-active .events-slider__content>*:nth-child(15) {
  transition-delay: 1.7s;
}

.events-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, #ee8d16 0%, #27befa 74%);
  box-shadow: 4px 8px 15px 1px var(--secondayColor);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}

.events-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  border-radius: 20px;
  opacity: 0.8;
}

.events-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .events-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}

@media screen and (max-width: 576px) {
  .events-slider__img {
    width: 95%;
  }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
  .events-slider__img {
    height: 270px;
  }
}

.events-slider__content {
  padding-right: 25px;
}

@media screen and (max-width: 768px) {
  .events-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}

@media screen and (max-width: 576px) {
  .events-slider__content {
    padding: 0;
  }
}

.events-slider__content>* {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.events-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}

.events-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primaryColor);
  margin-bottom: 20px;
}

.events-slider__text {
  color: rgb(123, 120, 120);
  margin-bottom: 30px;
  line-height: 1.5em;
  font-size: 80%;
  font-weight: 500;
}

.events-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (max-width: 576px) {
  .events-slider__button {
    width: 100%;
  }
}

.events-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.events-slider .swiper-pagination-custom,
.events-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.events-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .events-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.events-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

@media screen and (max-width: 768px) {
  .events-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }

  .events {
    margin-bottom: -250px;
  }

  .past_events {
    margin-bottom: 100%;
  }
}

.events-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}

.events-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fd3838;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

@media screen and (max-width: 768px) {
  .events-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

.ball {
  border-radius: 50%;
  position: absolute;
  z-index: -5;
}

.ball1 {
  transform: translate(900px, -500px);
  height: 300px;
  width: 300px;
  background: linear-gradient(90deg, #0084ff, #0ff);
}

.ball2 {
  transform: translate(970px, -120px);
  height: 150px;
  width: 150px;
  background: linear-gradient(90deg, #ff9500, #000dff);
}

.ball3 {
  transform: translate(160px, -140px);
  height: 240px;
  width: 240px;
  background: linear-gradient(90deg, #00ffd9, #00ff84);
}

@media screen and (max-width: 700px) {
  .ball1 {
    display: none;
  }

  .ball2 {
    display: none;
  }

  .ball3 {
    display: none;
  }
}

ul {
  list-style: none;
}

.events_filter {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(237, 237, 237, 0.6);
  flex-wrap: wrap;
  margin: 10px;
  width: 30%;
  left: 35%;
  position: relative;
  margin-top: -2%;
  margin-bottom: 5%;
}

.events_filter li {
  margin: 10px;
  padding: 5px 20px;
  color: #9b9b9b;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
}

.events_filter_active {
  background-color: #aee6f7;
  color: black;
}


.event-container {
  font-family: "Roboto", sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

.event-container h3.year {
  font-size: 40px;
  text-align: center;
  border-bottom: 1px solid #b1b1b1;
}

.event-container .event {
  box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.4);
  display: flex;
  border-radius: 8px;
  margin: 32px 0;
}

.event .event-left {
  background: #222;
  min-width: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eee;
  padding: 8px 48px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px 0 0 8px;
}

.event .event-left .date {
  font-size: 56px;
}

.event .event-left .month {
  font-size: 16px;
  font-weight: normal;
}

.event .event-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}

.event .event-right h3.event-title {
  font-size: 24px;
  margin: 24px 0 10px 0;
  color: #218bbb;
  text-transform: uppercase;
}

.event .event-right .event-timing {
  background: #fff8ba;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 8px;
  border-radius: 16px;
  margin: 10px 0;
  font-size: 14px;
  gap: 5px;
}

.time_loc {
  display: flex;
  gap: 10px;
}

.event .event-right .event-timing img {
  height: 20px;
  padding-right: 8px;
}

@media (max-width: 550px) {
  .event {
    flex-direction: column;
    width: 95%;
  }

  .event-container {
    margin-bottom: 110%;
    margin-left: 5%;
  }

  .event .event-left {
    padding: 0;
    border-radius: 8px 8px 0 0;
  }

  .event .event-left .event-date .date,
  .event .event-left .event-date .month {
    display: inline-block;
    font-size: 24px;
  }

  .event .event-left .event-date {
    padding: 10px 0;
  }

  .events_filter {
    display: flex;
    width: 500px;
    left: -16%;
  }
}




/*projects styles*/

#projects {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0px;
  font-family: var(--normalFont);
}

ul {
  list-style: none;
}

.projects_filter {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(237, 237, 237, 0.6);
  flex-wrap: wrap;
  margin: 20px;

}

.projects_filter li {
  margin: 10px;
  padding: 5px 20px;
  color: #9b9b9b;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
}

.projects_filter_active {
  background-color: #aee6f7;
  color: black;
}

.projects_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.projects_box {
  width: 330px;
  padding: 5px;
  border: 1px solid #eeeeee;
  margin: 20px;
  box-shadow: 0 5px 10px rgba(242, 173, 104, 0.92);
}

.projects_box img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
}

/*team styles*/

.team-head {
  padding: 0.8rem 1rem 4rem 1rem;
  text-align: center;
  font-family: var(--team-body-font);
  font-size: 2rem;
  color: #f26316;

}

#team-section1 {
  font-family: var(--team-body-font);

  display: flex;
  padding-left: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

#team-section2 {
  font-family: var(--team-body-font);

  display: flex;
  padding-left: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

#team-section3 {
  font-family: var(--team-body-font);

  display: flex;
  padding-left: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

#team-section {
  font-family: var(--team-body-font);

  display: flex;
  padding-left: 3rem;
  flex-wrap: wrap;
  justify-content: center;


}

.team-box {
  padding-left: 10rem;
  display: flex;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.team-container {
  height: 50vh;
  margin-inline: 1.5rem;
  display: grid;
  place-items: center;
  margin-right: 3rem;
  width: 32vh;
  margin-top: 2rem;
}

.team-card {
  position: relative;
  width: 226px;
  background-color: var(--team-black-color);
  padding: 1.25rem 2rem 3rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px hsla(29, 75%, 8%, .2);
}

.team--img {
  width: 101px;
  border-radius: 50%;

}

.team--border {
  width: 110px;
  height: 110px;
  border: 2px solid var(--team-first-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.team--profession {
  color: var(--team-text-color);
  font-size: var(--team-smaller-font-size);
  font-weight: 500;
}

.team--name {
  color: var(--team-first-color);
  font-size: var(--team-h3-font-size);
  font-weight: 500;
}

.team--social {
  width: 200px;
  background-color: var(--team-first-color);
  padding: .75rem;
  border-radius: 3rem;
  text-align: initial;
  box-shadow: 0 8px 24px hsla(29, 75%, 56%, .3);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.75rem;
  margin: 0 auto;
  overflow: hidden;
  transform-origin: 18px 17px;
}

.team--social-control {
  position: relative;
  transform-origin: 18px 18px;
  transition: transform 0.45s ease;
  transform: rotate(0);

}

.team--social-toggle {
  display: inline-flex;
  background-color: var(--team-black-color);
  color: var(--team-first-color);
  font-size: 1.25rem;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.team--social-text {
  display: block;
  color: var(--team-black-color);
  font-size: var(--team-smaller-font-size);
  font-weight: 500;
}

.team--social-list {
  display: inline-flex;
  column-gap: 0.75rem;
  transform: rotate(135deg);
  transform-origin: 18px 17px;
}

.team--social-link {
  display: inline-flex;
  background-color: var(--team-first-color-light);
  color: var(--team-black-color);
  font-size: 1.25rem;
  padding: 6px;
  border-radius: 50%;
}

.team--social-text,
.team--social-list {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 3.1rem;
}

.team--social-text {
  top: 0.5rem;
}

.animation .team--social-control {
  transform: rotate(-135deg);
}

.team--social.animation {
  animation: up-animation 1s ease-in-out forwards;
}

@keyframes up-animation {

  0%,
  100% {
    transform: rotate(0);
  }

  50%,
  60% {
    transform: rotate(-3deg);
  }

  88% {
    transform: rotate(1deg);
  }
}

.team--social.down-animation {
  animation: down-animation 1s ease-in-out forwards;
}

@keyframes down-animation {

  0%,
  100% {
    transform: rotate(0);
  }

  50%,
  60% {
    transform: rotate(6deg);
  }

  0%,
  88% {
    transform: rotate(-1deg);
  }
}

@media screen and (max-width:640px) {
  .team-container {
    width: 100%;
  }

}



/*    TESTIMONIAL    */

.testimonial {
  text-align: center;
  color: #F2EFE8;
  margin: 80px 30px;
  padding: 30px 40px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  font-family: var(--normalFont);
}

.testimonial:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #424242;
  border-radius: 30px;
  z-index: -1;
}

.testimonial:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FB8C00;
  border-radius: 30px;
  transform: rotate(-7deg);
  z-index: -2;
}

.testimonial .pic {
  border: 5px solid #F2EFE8;
  display: inline-block;
  margin-bottom: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.testimonial .pic img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.testimonial .testimonial-content {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 30px;
  margin-bottom: 20px;
}

.testimonial .testimonial-title a {
  display: inline-block;
  color: #FB8C00;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial .testimonial-title small {
  color: #F2EFE8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.owl-theme .owl-controls {
  margin-top: 0px;
  margin-left: 10px;
  text-align: center;
}

.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  opacity: 1;
  background: #FB8C00;
  color: #F2EFE8;
  border-radius: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 5px;
}

.owl-prev:before,
.owl-next:before {
  content: "\f060";
  font-family: 'FontAwesome';
  font-size: 20px;
}

.owl-next:before {
  content: "\f061";
}



/* ------testimonial  close-------*/


/*----------Contact Us starts-----------*/

.contact-container {

  max-width: 85%;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.contact-container .contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-container .contact-content .contact-left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.contact-content .contact-left-side::before {
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.contact-content .contact-left-side .details {
  margin: 14px;
  text-align: center;
}

.contact-content .contact-left-side .details i {
  font-size: 30px;
  color: var(--secondayColor);
  margin-bottom: 10px;
}

.contact-content .contact-left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.contact-content .contact-left-side .details .text-one,
.contact-content .contact-left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}

.contact-container .contact-content .contact-right-side {
  width: 75%;
  margin-left: 75px;
}

.contact-content .contact-right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  padding-top: 30px;
  padding-bottom: 40px;
  color: var(--primaryColor);
}

.contact-right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.contact-right-side .input-box input,
.contact-right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.contact-right-side .message-box {
  min-height: 110px;
}

.contact-right-side .input-box textarea {
  padding-top: 6px;
}

.contact-right-side .button {
  display: inline-block;
  margin-top: 12px;
}

.contact-right-side .button input[type="button"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--primaryColor);
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type="button"]:hover {
  background: var(--primaryColor);
}

@media (max-width: 950px) {
  .contact-container {
    width: 90%;
    padding: 30px 40px 40px 55px;
    margin-left: 10px;
  }

  .contact-container .contact-content .contact-right-side {
    width: 75%;
    margin-left: 55px;
  }
}

@media (max-width: 800px) {
  .contactus {
    padding-left: 20px;
    padding-right: 50px;
  }

  .contact-container {
    margin: 20px 0;
    height: 100%;
  }

  .contact-container .contact-content {
    flex-direction: column-reverse;
  }

  .contact-container .contact-content .contact-left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-container .contact-content .contact-left-side::before {
    display: none;
  }

  .contact-container .contact-content .contact-right-side {
    width: 100%;
    margin-left: 0;
  }
}

.contactus {
  height: 100%;
  width: 100%;
  margin-left: 50px;
  /*margin-right: 60px;*/
  padding-left: 60px;
  text-align: center;

}


.contactus {
  height: 100%;
  font-family: var(--headingFont);
  background-image: var(--eventsBackground);
  padding-bottom: 100px;
  font-family: "Poppins", sans-serif;
}

.website_heading {
  padding: 80px 0px;
  text-align: center;

}

.website_heading h1 {
  font-size: 3rem;
  text-shadow: -3px 3px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-family: var(--headingFont);
}

.starting_letter {
  color: var(--secondayColor);
}

.fa {
  padding: 20px;
  font-size: 20px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 5px;
  border-radius: 50%;
  margin-top: 15px;
}

.fa:hover {
  opacity: 0.7;
}

.fa-facebook {
  background: var(--secondayColor);
  color: white;
}

.fa-twitter {
  background: var(--secondayColor);
  color: white;
}

.fa-instagram {
  background: var(--secondayColor);
  color: white;
}

.fa-linkedin {
  background: var(--secondayColor);
  color: white;
}

.contact-left-side .social-media {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .contactus {
    padding-left: 10px;
    padding-right: 20px;
    margin-left: 40px;
  }

  .contact-container {
    margin: 20px 0;
    height: 100%;
  }

  .contact-container .contact-content {
    flex-direction: column-reverse;
  }

  .contact-container .contact-content .contact-left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-container .contact-content .contact-left-side::before {
    display: none;
  }

  .contact-container .contact-content .contact-right-side {
    width: 100%;
    margin-left: 0;
  }

  .contactus .website_heading h1 {
    font-size: 2rem;
    text-shadow: -3px 3px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: var(--headingFont);

  }
}


.button {
  outline: none;
  height: 40px;
  text-align: center;
  width: 130px;
  border-radius: 40px;
  background: #fff;
  border: 2px solid var(--primaryColor);
  color: var(--primaryColor);
  letter-spacing: 1px;
  text-shadow: 0;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
}

.button:hover {
  color: white;
  background: var(--primaryColor);
}

.button:active {
  letter-spacing: 2px;
}

.button:after {
  content: "SUBMIT";
}




/*----------Contact Us Ends--------------*/

/*footer styles*/

footer {
  position: relative;
  width: 100%;
  background: #019ed0;
  min-height: 300px;
  padding: 20px 50 px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: var(--normalFont);
}

footer .social_icon,
footer .menu2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

footer .social_icon li,
footer .menu2 li {
  list-style: none;
}


footer .social_icon li a {
  font-size: 2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

footer .social_icon li a:hover {
  transform: translateY(-10px);
  color: var(--secondayColor);
}

footer .menu2 li a {
  font-size: 1.2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  text-decoration: none;
  opacity: 0.75;
}

footer .menu2 li a:hover {
  opacity: 1;

}

footer p {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
}





@keyframes animateWave {
  0% {
    background-position-x: 1000px;
  }

  100% {
    background-position-x: 0px;
  }
}

@keyframes animateWave_02 {
  0% {
    background-position-x: 0px;
  }

  100% {
    background-position-x: 1000px;
  }
}