@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary: #2f59d8;
  --text-color: #89939e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* common-css-start */

html {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif !important;
  overflow-x: hidden;
}

p,
ul,
span {
  color: var(--text-color);
  line-height: 1.7;
}

ul {
  margin: 0;
  padding: 0 0 20px 20px;
  list-style: none;
}

ul li {
  position: relative;
}

ul li:before {
  content: "";
  width: 6px;
  height: 10px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  display: block;
  transform: rotate(45deg);
  position: absolute;
  right: calc(100% + 8px);
  top: 8px;
}

a {
  color: var(--primary);
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.underline-heading {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 5px;
}

.underline-heading::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 50px;
  height: 3px;
  left: 0;
  top: calc(100% + 2px);
  background-color: var(--primary);
  transition: 0.3s;
}

.section-bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #00000070;
  transition: 0.3s;
}

.section-bg > * {
  position: relative;
  z-index: 100;
}

.card {
  padding: 15px;
  border: 2px solid transparent;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
  border-radius: 15px;
}

.card:hover {
  border: 2px solid var(--primary);
}

.card .card-img-top {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.card .card-img-top-2 {
  height: 300px;
} 
/* common-css-end */

/* header-css-start */

header {
  height: 56px;
}

header .navbar{
    position: fixed;
    width: 100%;
    z-index: 10000;
    background-color: #fff;
}

header .navbar-nav {
  gap: 30px;
}

header .navbar-nav a {
  padding: 0 !important;
  position: relative;
  transition: 0.3s;
  font-weight: 600;
}

header .navbar-nav a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  top: calc(100% + 2px);
  background-color: var(--primary);
  transition: 0.3s;
}

header .navbar-nav a.active,
header .navbar-nav a:hover {
  color: var(--primary) !important;
}

header .navbar-nav a.active::before,
header .navbar-nav a:hover::before {
  width: 100%;
  transition: 0.3s;
}

.offcanvas-header .btn-close {
  filter: invert(0);
}

.navbar-toggler {
  box-shadow: none !important;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

/* header-css-end */

/* footer-css-start */

footer {
  background: #263238;
  padding: 50px 0;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.footer-copyright {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #6c757d;
}

.footer-links > h5 {
  color: #fff;
  font-weight: 600;
  padding: 0 0 10px;
  margin: 0 0 20px;
  position: relative;
}

.footer-links > h5::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 50px;
  height: 3px;
  left: 0;
  top: calc(100% + 0px);
  background-color: var(--primary);
  transition: 0.3s;
}

.footer-links > ul {
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links > ul li:before {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  opacity: 80%;
}

.footer-links > ul li a {
  color: #fff;
  text-decoration: none;
}

/* footer-css-end */

/* page-css-start */

.homepage-video {
  height: calc(100vh - 56px);
  position: relative;
}

.homepage-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.global-section {
  background-image: url("../images/global-bg-img.png");
}

.fostering-growth {
  background-image: url("../images/fostering-growth.png");
}

.contact-section {
  background-image: url("../images/contact.jpg");
}

.form-container {
  background: #0000008c;
  padding: 30px;
  border-radius: 20px;
}

.form-container .form-label {
  color: #fff;
  display: block;
  padding: 0 0 5px;
  font-size: 14px;
}

.form-container .form-control {
  background: #ffffff4d;
  border: none;
  color: #fff;
  font-size: 14px;
  padding: 12px 10px;
  box-shadow: none;
  outline: none;
}

.form-container .form-control::placeholder {
  color: #fff;
  opacity: 80%;
  font-size: 14px;
}

/* page-css-end */

/* responsive-css-start */

@media screen and (max-width: 1024px) {
  .ptb-100 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .homepage-video {
    height: auto;
  }

  header .navbar-nav a {
    width: fit-content;
  }
}

@media screen and (max-width: 820px) {
  .card .card-img-top-2 {
    height: 100%;
  }
}
/* responsive-css-end */
