@font-face {
  font-family: "Maharlika";
  src: url("../assets/fonts/maharlika.ttf") format("truetype");
}

/* Ajal's Section */
body {
  margin: 0;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 7px;
  transition: all 0.5s ease-in-out;
}

body::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.275);
  backdrop-filter: blur(10px);
}

body::-webkit-scrollbar-thumb {
  background-color: #0e76bb;
  outline: none;
  border-radius: 50px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #0099ff;
  cursor: pointer;
}

/* Nav */
nav {
  position: fixed;
  display: flex !important;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  width: 100%;
  height: 12vh;
}

.nav_logo {
  display: flex;
  width: 280px;
  height: 85px;
  cursor: pointer;
}

.nav_logoContainer {
  flex: 0.3;
  background-color: #000000;
  border: 4px solid #56b3ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav_makeaton {
  flex: 0.7;
  background-color: #56b3ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav_makeaton h1 {
  margin: 0;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 23px;
  line-height: 27px;
  color: #ffffff;
}

.nav_links_container {
  flex: 0.8;
  height: 76px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  transition: all 0.4s ease-in;
  align-items: center;
  padding-right: 15px;
}

.nav_links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.nav_links a {
  text-decoration: none;
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 0px solid #5bc0eb;
  transition: all 0.3s ease-in-out;
}

.nav_links a:hover {
  text-decoration: none;
  color: #ffffff;
  /* border-bottom: 4px solid #5bc0eb; */
  transform: scale(1.05);
}

.nav_links .nav-active {
  border-bottom: 4px solid #5bc0eb;
}

.nav_registerNowBtn {
  text-transform: uppercase;
  width: 180px;
  height: 45px;
  background: #0e76bc;
  border-radius: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  cursor: pointer;
  margin: auto 30px;
}

.nav_toggleBtn {
  width: 50px;
  height: 30px;
  background: transparent;
  /* border: 1px solid rgba(233, 233, 233, 0.137); */
  border: none;
  display: none;
  outline: none;
}

.nav_toggle_bar {
  width: 60%;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.bar1 {
  transform: translate(-50%, 150%);
  transition: all 0.7s ease;
}

.bar2 {
  transition: all 0.7s ease;

  transform: translate(-50%, -50%);
}

.bar3 {
  transform: translate(-50%, -250%);
  transition: all 0.7s ease;
}

.open .nav_toggle_bar {
  width: 70%;
}

.open .bar1 {
  transform: rotate(-45deg) translate(-14px, -13px);
}

.open .bar2 {
  transition: all 0.7s ease;
  width: 0;
}

.open .bar3 {
  transform: rotate(45deg) translate(-14px, 14px);
}

@media only screen and (max-width: 1024px) {
  .nav_logo {
    width: 90px;
  }

  .nav_logoContainer {
    flex: 1;
  }

  .nav_makeaton {
    display: none;
  }

  .nav_links_container {
    flex: 0.9;
  }

  .nav_links a {
    font-size: 14px;
  }

  .nav_registerNowBtn {
    width: 140px;
    font-size: 14px;
    margin: auto 10px;
  }
}

@media only screen and (max-width: 768px) {
  nav {
    position: fixed;
    display: block !important;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
  }

  .nav_logo {
    width: 59px;
    height: 59px;
    margin: 10px 20px;
  }

  .nav_toggleBtn {
    display: block;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(-5%, -50%);
  }

  .nav_links_container {
    width: 100%;
    height: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.829);
    pointer-events: none;
    overflow-y: hidden;
  }

  .nav_links {
    flex: 0.7;
    flex-direction: column;
  }

  .nav_links a {
    opacity: 0;
  }

  .nav_links a:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav_links a:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav_links a:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }

  .nav_links a:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }

  .nav_links a:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }

  .nav_links a:nth-child(6) {
    transition: all 0.5s ease 0.9s;
  }

  .expanded {
    height: 100vh;
    pointer-events: all;
  }

  .nav_registerNowBtn {
    margin: 0 auto;
    opacity: 0;
    transition: all 0.5s ease-in 1.5s;
  }

  .expanded .nav_registerNowBtn {
    opacity: 1;
  }

  a.showLinks {
    opacity: 1;
  }
}

/* End of nav */
/* Hero */
.hero {
  overflow-x: hidden;
  background-image: url("../assets/images/hero_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  object-fit: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

.hero_mask {
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    172.55deg,
    rgba(0, 0, 0, 0) 10.91%,
    #000000 94.22%
  );
  z-index: 0;
}

.hero_content {
  margin-top: 15vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 65%;
  flex: 1;
  z-index: 1;
}

.hero_content p,
h1,
h2,
h3,
h4,
em {
  margin: 0;
  padding: 0;
}

.hero_content_cittic {
  display: flex;
  align-items: center;
}

.hero_content_cittic p {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 35px;
  margin-left: 10px;
  color: #ffffff;
}

.hero_content_makeaton h1 {
  font-family: Maharlika;
  font-style: normal;
  font-weight: normal;
  font-size: 140px;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 10px 0;
}

.hero_content_desc {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.hero_content_desc_main {
  font-family: Poppins;
  font-style: italic;
  font-weight: normal;
  font-size: 23.9px;
  line-height: 36px;
  text-transform: uppercase;
  color: #ffffff;
}

.hero_content_desc_main em {
  font-weight: bolder;
}

.hero_content_desc_date {
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  margin: 10px 0;
}

.hero_registerBtn {
  text-transform: uppercase;
  width: 380px;
  height: 80px;
  background: #0e76bc;
  border-radius: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 39.4468px;
  line-height: 59px;
  color: #ffffff;
  cursor: pointer;
  margin: 30px 0;
}

.hero_sponsors {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 20px;
  z-index: 1;
}

.hero_sponsors_learnMore_container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 50px;
}

.hero_sponsors_learnMore {
  cursor: pointer;
}

.hero_sponsors_logo {
  flex: 1;
}

.hero_sponsors_socialLinks_container {
  display: flex;
  flex-direction: column;
  padding-right: 50px;
  justify-content: center;
}

.hero_sponsors_socialLink {
  cursor: pointer;
  text-decoration: none;
  background-color: #0e76bc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  margin: 5px 0;
}

.hero_sponsors_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero_sponsors_logo p {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
}

.hero_sponsors_logo_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}

.hero_sponsors_logo_container img {
  cursor: pointer;
  transition: 0.4s ease-in;
  margin: 5px;
  width: auto;
  height: 50px;
  filter: grayscale(1);
}

.hero_sponsors_logo_container img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}

.hero_apply_button {
  align-items: center;
  background-color: #3770ff;
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  outline: none;
  padding: 0 32px;
  transition: all 0.1s ease-in 0s;
  white-space: nowrap;
  width: 12rem;
  cursor: pointer;
}

.hero_apply_button:hover {
  background-color: #114ef3;
  box-shadow: 0 4px 4px rgba(83, 100, 255, 0.32);
}

.sponsors-golden-head {
  width: 35%;
  min-width: 14rem;
  margin-top: 1rem;
}

.sponsors-silver-head {
  width: 30%;
  min-width: 12rem;
  margin-top: 1rem;
}

.sponsors-bronze-head {
  width: 25%;
  min-width: 10rem;
  margin-top: 1rem;
}

@media only screen and (max-width: 1024px) {
  .hero_content_makeaton h1 {
    font-size: 100px;
  }

  .hero_content_desc_main {
    font-size: 20px;
  }

  .hero_content_desc_date {
    font-size: 20px;
  }

  .hero_registerBtn {
    width: 340px;
    height: 70px;
    font-size: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .hero_content {
    width: 75%;
  }

  .hero_content_makeaton h1 {
    font-size: 100px;
  }

  .hero_content_desc_main {
    font-size: 18px;
  }

  .hero_content_desc_date {
    font-size: 18px;
  }

  .hero_registerBtn {
    width: 300px;
    height: 60px;
    font-size: 25px;
  }

  .hero_sponsors_logo_container {
    padding: 0 20px;
  }

  .hero_sponsors_socialLinks_container {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 500px) {
  .hero_content_makeaton h1 {
    font-size: 55px;
  }
}

/* End of hero */
@media only screen and (max-width: 250px) {
  .about__left__gallery_image {
    width: 65%;
    margin: 0;
  }

  .hero_content_makeaton h1 {
    font-size: 33px;
  }
}

/* End of hero */
.about {
  background-image: url("/assets/images/about/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3em 2em;
  position: relative;
  color: white;
  font-weight: 100;
}

.about__right__gallery__images {
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto;
  height: fit-content;
}

.about__right__gallery__image_cell {
  opacity: 0.4;
  transition: opacity 0.5s;
}

.about__right__gallery__image_cell:hover {
  opacity: 1;
}

.about__left__gallery {
  margin-top: 2em;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

.about__left__gallery_image {
  margin-left: 2rem;
  margin-right: 2rem;
  width: 28%;
}

.dotted-text-horizontal {
  position: relative;
  color: white;
  margin-bottom: 20px !important;
  font-family: "Maharlika", Arial, Helvetica, sans-serif;
  width: fit-content;
}

.dotted-text-vertical {
  position: relative;
  color: white;
  margin-bottom: 20px !important;
  font-family: "Maharlika", Arial, Helvetica, sans-serif;
}

.dotted-text-horizontal::after {
  content: " ";
  position: absolute;
  bottom: -0.125rem;
  left: -1%;
  height: 0.7rem;
  background-image: url(/assets/images/about/dots-horizontal.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 102%;
}

.dotted-text-vertical::after {
  content: " ";
  position: absolute;
  background-image: url(/assets/images/about/dots-vertical.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 4em;
  height: 1em;
  top: 1em;
  transform: translateX(-0.5rem);
}

.about__gallery_title {
  height: fit-content;
  margin-top: 50%;
  margin-bottom: 0%;
  padding: 0;
  transform: translateY(-50%) rotate(90deg);
}

.why {
  background-image: url("/assets/images/why/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3em 2em;
  position: relative;
  color: white;
  height: 100%;
}

.testimonial {
  background: linear-gradient(108.65deg, #02223b 5.42%, #313131 98.64%);
  border: 1px solid #56b3ed;
  box-sizing: border-box;
}

.why .card {
  background: #ffffff;
  position: relative;
  box-shadow: 0px 30px 40px rgba(212, 217, 232, 0.2);
  line-height: 32px;
  color: #4b4b4b;
  z-index: 1;
  padding: 1rem;
  width: 17rem;
  height: 8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.why .heading {
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 15px;
}

.why .sub-heading {
  font-size: 14px;
}

.why .dotted-text-horizontal {
  position: relative;
  color: white;
  margin-bottom: 20px !important;
  font-family: "Maharlika", Arial, Helvetica, sans-serif;
  width: fit-content;
  margin-top: 1em;
}

.why .dotted-text-horizontal::after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: -1%;
  height: 0.7rem;
  background-image: url(/assets/images/why/dots-horizontal.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 102%;
}

@media screen and (max-width: 768px) {
  .about__left__gallery_image {
    width: 36%;
  }

  .loky {
    position: absolute;
    top: 10rem;
    left: 50%;
    z-index: 0;
    opacity: 0.1;
  }

  .why {
    overflow-x: hidden;
    padding: 0;
  }

  .card {
    width: 19rem;
    height: 10rem;
  }

  .testimonial {
    border: none;
    height: 50rem;
    /*padding-left: 3rem;*/
  }

  .about {
    background: rgba(44, 47, 74, 0.92);
  }

  .about__content__mobile {
    background: #12223b;
    box-shadow: 0px 4px 10px rgba(187, 225, 250, 0.25);
    border-radius: 4px;
    padding: 2em;
    margin-bottom: 2em;
  }
}

/* Sponsors */
@font-face {
  font-family: "Maharlika";
  src: url("../assets/fonts/maharlika.ttf");
}

.sponsors {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(142.02deg, #50afe9 21.92%, #0c507a 94.36%);
}

.sponsors-header {
  font-family: "Maharlika", Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
}

.sponsor-col {
  width: 250px;
  height: 130px;
  background-color: rgba(226, 226, 226, 0.685);
  border-radius: 20px;
  box-shadow: 0px 40px 50px 0px rgba(212, 217, 232, 0.2);
  transition: all 0.2s ease-in-out;
}

.sponsor-col:hover {
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

.sponsor-img {
  max-height: 100px;
}

@media (max-width: 576px) {
  .sponsors {
    background: #12223b;
  }

  .sponsors-header {
    font-size: 40px;
  }

  .sponsor-col {
    width: 90px;
    height: 52px;
    border-radius: 8px;
    box-shadow: 0px 15px 20px 0px #d4d9e833;
  }

  .sponsor-img {
    max-height: 40px;
  }
}

/* End of Sponsors */

/* Schedule */
@font-face {
  font-family: "Maharlika";
  src: url("../assets/fonts/maharlika.ttf");
}

.schedule {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #051a2a;
}

.schedule-header {
  display: inline;
  position: relative;
  font-family: "Maharlika", Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
}

.schedule-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1rem;
  background-image: url(../assets/images/dots-horizontal.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 102%;
}

#schedule-root {
  font-family: "Poppins", sans-serif;
}

.date-container {
  position: relative;
}

.date {
  position: relative;
  background: linear-gradient(108.65deg, #02223b 5.42%, #313131 98.64%);
  font-size: 40px;
  color: #ffffff;
  border: 1px solid #56b3ed;
  border-radius: 65px;
  width: fit-content;
  z-index: 2;
}

.date-line {
  display: none;
  position: absolute;
  z-index: 1;
}

.schedule-items {
  position: relative;
}

.timeline .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1px;
  background: #c4c4c4;
  width: 55%;
}

.timeline .circle {
  background: #56b3ed;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  margin: 10%;
  border: 2px solid #0e76bc;
}

.schedule-item {
  color: #ffe3e3;
  letter-spacing: 0.2px;
  line-height: 16px;
  background: linear-gradient(180deg, #0e76bc 0%, #56b3ed 100%);
  border-radius: 13px 0 13px 13px;
}

.schedule-item-header {
  font-size: 22px;
}

.schedule-item-description {
  font-size: 14px;
}

@media (max-width: 1400px) {
  .date {
    font-size: 35px;
  }
}

@media (max-width: 1200px) {
  .date {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .date {
    font-size: min(25px, 6vw);
  }
}

@media (max-width: 768px) {
  .date {
    font-size: min(20px, 2.5vw);
  }

  .schedule-item-header {
    font-size: 18px;
  }

  .schedule-item-description {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .about__left__gallery_image {
    width: 62%;
    margin: 0;
  }

  .date {
    font-size: min(20px, 4vw);
  }

  .schedule-header {
    font-size: 40px;
  }

  .schedule-items-container {
    padding: 0;
  }

  .schedule-item-header {
    font-size: 16px;
  }

  .date-line {
    position: absolute;
    left: -3%;
    right: -3%;
    top: 4.3rem;
    display: block;
    height: 2px;
    background: #e0e0e0;
  }

  .timeline .line {
    width: 70%;
  }
}

/* End of Schedule */

/* FAQ */

.toggle-title {
  position: relative;
  display: block;
  border-top: 1px solid #f5f0f0;
  margin-bottom: 6px;
}

.toggle-title h3 {
  font-size: 20px;
  margin: 0px;
  line-height: 1;
  cursor: pointer;
  font-weight: 200;
}

.toggle-inner div {
  max-width: 100%;
}

.toggle-title .title-name {
  display: block;
  padding: 25px 25px 14px;
  color: #56b3ed;
}

.toggle-title a i {
  font-size: 22px;
  margin-right: 5px;
}

.toggle-title i {
  position: absolute;

  width: 24px;
  height: 24px;
  margin: 20px;
  right: 0;
}

.faqcontainer {
  padding-top: 20px;
  padding-bottom: 30px;
  width: 100%;
  margin: auto;
  color: #56b3ed;
}

.faq {
  max-width: 100%;
  background-color: #051a2a;
  padding-left: 2rem;
  padding-right: 2rem;
}

.faq-heading {
  color: white;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 59px;
  line-height: 88px;
}

.panel {
  /* display: none; */

  max-height: 0 !important;
  transition: max-height 1s ease-out;
  /* color: white; */
  overflow: hidden;
  padding-right: 10px;
  padding-left: 25px;
  margin: -7px 0 6px;
  transition-delay: -0.6s !important;

  /* transition-duration: .1s; */
  overflow: hidden !important;
}

.panel p {
  height: 0%;
}

.panel-active {
  max-height: 1000px !important;

  transition: max-height 1s ease-in;

  padding-right: 10px;
  padding-left: 25px;
  margin: -7px 0 6px;
  overflow: hidden !important;
}

.accordion {
  border: none;

  outline: none;
}

/* faq ends */

/* footer starts */

.cittic-logo {
  width: 120px;
}

.site-footer {
  background-color: #0b0d17;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: white;
}

.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}

.site-footer hr.small {
  margin: 20px 0;
}

.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

.site-footer a {
  color: #737373;
}

.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  display: block;
}

.footer-links a {
  color: #737373;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block;
}

.site-footer .social-icons {
  text-align: right;
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d;
}

.copyright-text {
  margin: 0;
}

@media (max-width: 991px) {
  .site-footer [class^="col-"] {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe;
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}

.social-icons a.facebook:hover {
  background-color: #3b5998;
}

.social-icons a.twitter:hover {
  background-color: #00aced;
}

.social-icons a.linkedin:hover {
  background-color: #007bb6;
}

.social-icons a.dribbble:hover {
  background-color: #ea4c89;
}

@media (max-width: 767px) {
  .faq-heading {
    font-size: 30px;
    line-height: 50px;
  }

  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}

/* footer ends */

/* team starts */
.team-title {
  padding-bottom: 5%;
  padding-top: 4px;
  font-size: 40px;
}

.team-section {
  background-color: #051a2a;
  color: white;
  height: 100%;
  /* margin-top: 100px; */
  padding-top: 120px;
}

.card-wrap {
  display: flex;
  justify-content: space-around;
}

.frame {
  margin-bottom: 30px;
  height: 100%;
  font-size: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.frame a {
  color: white;
  transition: all cubic-bezier(0.73, -0.04, 0.14, 1.34);
  transition-duration: 0.5s;
}

/* team ends */
