/* Importing fonts */

@font-face {
  font-family: gentona-bold;
  src: url("/assets/fonts/Gentona\ Bold.otf");
}

@font-face {
  font-family: gentona-medium;
  src: url("/assets/fonts/Gentona\ Medium.otf");
}

@font-face {
  font-family: gentona-thin;
  src: url("/assets/fonts/Gentona\ Thin.otf");
}

@font-face {
  font-family: gentona-book;
  src: url("/assets/fonts/Gentona\ Book.otf");
}
@font-face {
  font-family: avenir-bold;
  src: url("/assets/fonts/AvenirNextLTPro-Bold.otf");
}
@font-face {
  font-family: avenir-italic;
  src: url("/assets/fonts/AvenirNextLTPro-It.otf");
}
@font-face {
  font-family: avenir-regular;
  src: url("/assets/fonts/AvenirNextLTPro-Regular.otf");
}

html {
  font-size: 14.5px;
}

* {
  box-sizing: border-box;
}

/* landing page styling starts */

.about-landing-section {
  position: relative;
}

.landing-section-img {
  height: 45vh;
}

.landing-section-img img {
  height: 100%;
}

.navbar {
  width: 100%;
  padding: 0.5rem 3rem;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar .navbar-brand {
  display: flex;
  align-items: center;
}

.navbar .navbar-brand img {
  width: 140px;
}

.navbar .navbar-nav .nav-item {
  margin-right: 1rem;
}

.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.navbar .navbar-nav .nav-item .nav-link {
  font: 1.2rem gentona-bold;
  position: relative;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.2s ease;
  background: #ed2024;
}

.navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* .navbar .nav-contact {
  display: flex;
  align-items: center;
  margin-right: 4rem;
}

.navbar .nav-contact .icon-border {
  display: inline-block;
  width: 3.375rem;
  height: 3.375rem;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-right: 0.625rem;
  cursor: pointer;
  box-sizing: content-box;
  padding: 0.1875rem;
  text-decoration: none;
}

.navbar .nav-contact i {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  background-color: #ed2024;
  border-radius: 50%;
}

.navbar .nav-contact .nav-contact-info a {
  display: block;
  font: 1.125rem gentona-medium;
} */

.navbar .navbar-toggler {
  font-size: 2.6rem;
  color: #fff;
  border: none;
  padding: 0;
}

.navbar-nav {
  margin-left: auto;
}

.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
  box-shadow: none;
}

/* .landing-section-img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  background-color: rgba(255, 255, 255, 0.27);
} */

.landing-section-title {
  position: absolute;
  left: 5rem;
  bottom: 2rem;
  /* padding: 0 0 2rem 5rem; */
}

.landing-section-title h1 {
  color: #fff;
}

.landing-section-title h1,
.our-team-title h2 {
  font: 3.125rem gentona-bold;
  /**/
  position: relative;
  padding-bottom: 0.375rem;
}

.landing-section-title h1::after,
.our-team-title h2::after {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 0.21875rem;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0.1rem;
  background-color: #ed2024;
}

/* landing section styling ends */
/* cell section styling starts */

.cell-section {
  margin-top: 7.25rem;
}

.cell-img {
  height: 100%;
}

.cell-img img {
  max-width: 19rem;
  width: 100%;
}

.cell-section-content {
  margin-left: -4rem;
}

.cell-section-content p {
  font: 1.5rem gentona-book;
  margin-top: 2.3rem;
  padding-left: 0.625rem;
  /**/
  position: relative;
}

/* .cell-section-content p::before,
.cell-section-content p::after {
  content: "";
  display: inline-block;
  width: 14%;
  height: 2px;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #ed2024;
} */

.cell-section-content p::after {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

/* cell section styling ends */
/* our team section styling start */

.our-team-section {
  margin-top: 5rem;
}

.our-team-cards-wrapper {
  margin-top: 3rem;
}

.our-team-title h2 {
  font: 2.5rem gentona-bold;
}

.our-team-title h2::after {
  width: 8rem;
}

.our-team-card {
  position: relative;
  cursor: pointer;
}

.our-team-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0) 50%
  );
  transition: 0.2s ease;
}

.our-team-card:hover::after {
  background-image: unset;
  background-color: rgba(0, 0, 0, 0.4);
}

.our-team-card-content,
.our-team-card-overlay-content {
  padding: 0 0 1.875rem 1.6rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transition: 0.2s ease;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.our-team-card-overlay-content {
  height: 100%;
  padding: 1rem;
  opacity: 0;
  text-align: center;
}

.our-team-card:hover .our-team-card-content {
  opacity: 0;
}

.our-team-card:hover .our-team-card-overlay-content {
  opacity: 1;
}

.our-team-card-content h3,
.our-team-card-overlay-content h3 {
  font: 2rem gentona-medium;
  /**/
  color: #fff;
}

.our-team-card-content p,
.our-team-card-overlay-content p {
  font: 1.1rem gentona-book;
  /**/
  color: #fff;
}

.our-team-card-overlay-content a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  margin-top: 1rem;
}

.our-team-card-overlay-content a i {
  font-size: 2rem;
}

.carosuel-wrapper {
  display: none;
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

.carousel-prev-btn {
  margin-right: 1rem;
}

.carousel-next-btn {
  margin-left: 1rem;
}

.carousel-prev-btn button,
.carousel-next-btn button {
  padding: 0 6px;
  border: none;
  background: transparent;
}

.carousel-next-btn i,
.carousel-prev-btn i {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 50%;
}

/* our team section styling ends */

.our-team-container {
  margin-top: 3.75rem;
}

/* .owl-carousel {
  position: relative;
}

.owl-carousel .owl-nav button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-prev {
  left: 0;
  margin-left: -2.5rem;
}

.owl-carousel .owl-nav button.owl-next {
  right: 0;
  margin-right: -2.5rem;
}

.owl-carousel .owl-nav button.owl-prev::after {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25rem;
}

.owl-carousel .owl-nav button.owl-next::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25rem;
}

.owl-carousel .owl-nav button span {
  display: none;
} */

/* footer styling starts*/

footer {
  margin-top: 6.25rem;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65)
    ),
    url("/assets/images/footer.webp");
  background-size: cover;
  background-position: center;
  padding: 5rem 2.5rem 5rem 2.5rem;
}

.footer-logo img {
  width: 110px;
}

footer .footer-icons a {
  margin-right: 1.5rem;
  color: #000;
  text-decoration: none;
}

footer .footer-icons a:nth-child(4) {
  margin-right: 0;
}

footer .footer-icons i {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.25rem;
  line-height: 2.625rem;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}

footer .footer-content {
  margin-top: 3.375rem;
}

footer ul {
  margin: 0;
}

footer ul li {
  list-style: none;
  padding: 0;
}

footer ul li a {
  text-decoration: none;
}

footer .footer-contact {
  padding: 0;
}

footer .footer-contact li,
footer .footer-contact li a {
  color: #fff;
  font: 1.2rem gentona-book;
}

footer .footer-contact-info li {
  line-height: 1.25rem;
}

footer .footer-contact li:nth-child(2) {
  margin: 0.8rem 0 0.3rem 0;
}

footer .footer-contact li:nth-child(2) a,
footer .footer-contact li:nth-child(3) a {
  color: #ed2024;
}

footer .footer-links li:nth-child(2),
footer .footer-links li:nth-child(3),
footer .footer-links li:nth-child(4) {
  margin-top: 1.1rem;
}

footer .footer-links li a,
footer .footer-mailbox li:nth-child(1) {
  font: 1.2rem gentona-medium;
  color: #fff;
}

footer .footer-mailbox li:nth-child(2) {
  display: flex;
  margin-top: 0.375rem;
}

footer .footer-mailbox li:nth-child(2) button[type="submit"] {
  border: none;
  border-radius: 0 0.25rem 0.25rem 0;
  overflow: hidden;
}

footer .footer-mailbox li:nth-child(2) input[type="email"] {
  width: 12.4rem;
  border: none;
  outline: none;
  border-radius: 0.25rem 0 0 0.25rem;
  height: 2.8125rem;
  padding: 0 1rem;
}

footer .footer-mailbox li:nth-child(2) i {
  color: #fff;
  width: 3.125rem;
  height: 2.8125rem;
  background-color: #f87375;
  line-height: 2.8125rem;
  text-align: center;
  cursor: pointer;
}

/* footer styling ends */
/* Media query for tablets ipads portrait mode */

@media screen and (max-width: 1200px) {
  .cell-section-content {
    margin-left: 0;
  }

  .cell-section-content p {
    margin-top: 1.4rem;
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 13px;
  }

  .our-team-card-content h3,
.our-team-card-overlay-content h3 {
  font-size: 1.5rem;
}

.our-team-card-content p,
.our-team-card-overlay-content p {
  font: .7rem gentona-book;
}

.our-team-card-overlay-content a {
  margin-top: 1rem;
}

.our-team-card-overlay-content a i {
  font-size: 1rem;
}

  .cell-section-content p {
    margin-top: 2.1rem;
  }

  .navbar .navbar-brand img {
    width: 130px;
  }

  .navbar .nav-contact {
    margin-right: 1rem;
  }

  .navbar .navbar-nav .nav-item {
    margin-right: 0.3rem;
  }

  .landing-section-img {
    height: unset;
  }

  .cell-section-content p::before {
    width: 13%;
  }
  
  .footer-icons {
    margin-left: 1.5rem;
  }

  footer .footer-links li a,
  footer .footer-mailbox li:nth-child(1),
  footer .footer-contact li,
  footer .footer-contact li a {
    font-size: 1.3rem;
  }
}

/* Media query for tablets lanscape mode */

@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 10px;
  }

  .navbar .navbar-brand img {
    width: 110px;
  }

  .landing-section-img {
    height: unset;
  }

  .cell-section-content p {
    margin-top: 2rem;
    font-size: 1.3rem;
  }

  .cell-section-content p::before {
    width: 8%;
  }

  .our-team-card-content h3,
  .our-team-card-overlay-content h3 {
    font-size: 1.2rem;
  }
  
  .our-team-card-content p,
  .our-team-card-overlay-content p {
    font: .7rem gentona-book;
  }
  
  .our-team-card-overlay-content a {
    margin-top: 1rem;
  }
  
  .our-team-card-overlay-content a i {
    font-size: 1rem;
  }

  .owl-carousel .owl-nav button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .owl-carousel .owl-nav button.owl-next {
    margin-right: -30px;
  }

  .owl-carousel .owl-nav button.owl-prev {
    margin-left: -30px;
  }

  footer .footer-logo img {
    width: 90px;
  }

  footer .footer-links li a,
  footer .footer-mailbox li:nth-child(1),
  footer .footer-contact li,
  footer .footer-contact li a {
    font-size: 1.1rem;
  }

  footer .footer-links li a,
  footer .footer-mailbox li:nth-child(1),
  footer .footer-contact li,
  footer .footer-contact li a {
    font-size: 1.3rem;
  }

  footer .footer-icons {
    margin-left: 2rem;
  }
}

/* Media query for small devices(Mobile devices) */

@media (max-width: 575px) {
  html {
    font-size: 11px;
  }

  .cell-img img {
    width: 13rem;
  }

  .cell-section-content {
    margin-left: -1rem;
  }

  .cell-section-content p {
    font-size: 1.2rem;
    margin: 8px -20px 0 0px;
    margin-top: 1.3rem;
  }

  .navbar {
    padding: 0.2rem 1rem;
  }

  .navbar .navbar-brand img {
    width: 100px;
  }

  .navbar .navbar-nav .nav-item .nav-link,
  .navbar .nav-contact .nav-contact-info a {
    font-family: gentona-medium;
    font-size: 1.5rem;
    display: inline-block;
  }

  .navbar .navbar-nav .nav-item {
    margin-top: 0.6rem;
    margin-right: 0;
  }

  .navbar .nav-contact .nav-contact-info a {
    font-size: 1.4rem;
  }

  .navbar .nav-contact {
    justify-content: center;
    margin-right: unset;
    margin-top: 10px;
  }

  .landing-section-title {
    left: 3rem;
    bottom: .5rem;
    /* padding: 0 0 1rem 2rem; */
  }

  .landing-section-title h1 {
    font-size: 2.3rem;
  }

  .landing-section-title h1::after {
    width: 5rem;
  }

  .our-team-container {
    display: none;
  }

  .wrapper {
    padding: 0 2.8rem;
  }

  .landing-section-img {
    height: unset;
  }

  .our-team-cards-wrapper {
    display: none;
  }

  .carosuel-wrapper {
    display: block;
    margin-top: 4rem;
  }

  .our-team-card-content p,
  .our-team-card-overlay-content p {
    font: 1.3rem gentona-book;
    /**/
    color: #fff;
  }

  footer {
    padding: 3.5rem 2.8rem 3.5rem 2.8rem;
  }

  .footer-links-wrapper {
    margin: 2.6rem 0 1.4rem 0;
  }

  footer .footer-icons {
    margin-top: 1.5rem;
  }

  footer .footer-icons a {
    margin-right: 1rem;
  }

  footer .footer-content {
    margin-top: 2.375rem;
  }
}

/***************************************************************/

/* @media (max-width: 320px) {
  .cell-img img {
    width: 7.625rem;
    margin-left: -30px;
  }

  .cell-section-content p {
    font-size: 1rem;
    margin: 10px -38px 0 20px;
  }

  .cell-section-content p::before {
    width: 15%;
  }
} */

/* @media (min-width: 321px) and (max-width: 420px) {
  .cell-img img {
    width: 7.625rem;
    margin-left: -30px;
  }

  .cell-section-content p {
    font-size: 1.2rem;
    margin: 8px -40px 0 0px;
  } 

  .cell-section-content p::before {
    width: 10%;
  }
} */

/* @media (min-width: 321px) and (max-width: 420px) {
  .cell-img img {
    width: 7.625rem;
    margin-left: -30px;
  }

  .cell-section-content p {
    font-size: 1.2rem;
    margin: 8px -40px 0 0px;
  }

  .cell-section-content p::before {
    width: 13%;
  }
} */
/* 
@media (min-width: 416px) and (max-width: 470px) {
  .cell-img img {
    width: 7.625rem;
    margin-left: -20px;
  }

  .cell-section-content p {
    font-size: 1.26rem;
    margin: 8px -20px 0 0px;
  }

  .cell-section-content p::before {
    width: 11%;
  }
} */

@media screen and (max-width: 520px) {
  .cell-img img {
    /* max-width: 12.625rem; */
    width: 27vw;
    margin-left: -10px;
  }

  .cell-section-content {
    margin-left: -1rem;
  }

  .cell-section-content p {
    font-size: 2.5vw;
    /* margin: 8px -20px 0 0px; */
    margin: 0;
    margin-top: 1.5vw;
  }

  .cell-section-content p::before {
    width: 14%;
  }
}

/* @media (min-width: 500px) and (max-width: 575px) {
  .cell-img img {
    width: 7.625rem;
    margin-left: -30px;
  }

  .cell-section-content p {
    font-size: 1.5rem;
    margin: 8px -20px 0 0px;
  }

  .cell-section-content p::before {
    width: 20%;
  }
} */

/***************************************************************/
