@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@font-face {
  font-family: "Garet-Book";
  src: url("../fonts/Garet-Book.ttf");
}
@font-face {
  font-family: "Inter-Light";
  src: url("../fonts/Inter-Light.otf");
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/Inter-Regular.otf");
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/Inter-Bold.otf");
}
@font-face {
  font-family: "Times-NR-MT-Regular";
  src: url("../fonts/Times-NR-MT-Regular.otf");
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter-Regular";
  color: black;
}

body {
  -webkit-animation: body-fadein 1s; /* Safari 4+ */
  -moz-animation: body-fadein 1s; /* Fx 5+ */
  -o-animation: body-fadein 1s; /* Opera 12+ */
  animation: body-fadein 1s; /* IE 10+, Fx 29+ */
}

@-webkit-keyframes body-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes body-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes body-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes body-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
*:focus {
  outline: none !important;
}

button,
a,
.btn {
  text-decoration: none;
  -webkit-transition: 0.3s ease all; /* For Safari 3.1 to 6.0 */
  transition: 0.3s ease all;
}
button:hover, button:focus,
a:hover,
a:focus,
.btn:hover,
.btn:focus {
  text-decoration: none;
  -webkit-transition: 0.3s ease all; /* For Safari 3.1 to 6.0 */
  transition: 0.3s ease all;
}

.logo {
  font-family: "Times-NR-MT-Regular";
  font-size: 60px;
  display: flex;
  width: 140px;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: black;
}
.logo span {
  display: inline-block;
  width: 1px;
  height: 80px;
  background-color: black;
}
@media screen and (max-width: 599px) {
  .logo {
    font-size: 40px;
    width: 100px;
  }
  .logo span {
    height: 60px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 20px 0px;
  -webkit-transition: 0.3s ease all; /* For Safari 3.1 to 6.0 */
  transition: 0.3s ease all;
}
.header .logo {
  -webkit-transition: 0.3s ease all; /* For Safari 3.1 to 6.0 */
  transition: 0.3s ease all;
}
.header .logo span {
  -webkit-transition: 0.3s ease all; /* For Safari 3.1 to 6.0 */
  transition: 0.3s ease all;
}
.header.fixed {
  -webkit-transition: 0.3s ease all; /* For Safari 3.1 to 6.0 */
  transition: 0.3s ease all;
  background-color: white;
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.header.fixed .logo {
  font-size: 50px;
  width: 130px;
  -webkit-transition: 0.3s ease all; /* For Safari 3.1 to 6.0 */
  transition: 0.3s ease all;
}
.header.fixed .logo span {
  height: 60px;
  -webkit-transition: 0.3s ease all; /* For Safari 3.1 to 6.0 */
  transition: 0.3s ease all;
}
@media screen and (max-width: 599px) {
  .header.fixed .logo {
    font-size: 30px;
    width: 80px;
  }
  .header.fixed .logo span {
    height: 50px;
  }
}
.header .btn-menu {
  position: relative;
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}
.header .btn-menu .line {
  width: 30px;
  height: 1px;
  background-color: white;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .header .btn-menu {
    width: 40px;
    height: 40px;
  }
  .header .btn-menu .line {
    width: 20px;
  }
}

.common-section {
  padding: 120px 0px;
}
.common-section h1 {
  font-family: "Garet-Book";
  font-size: 70px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 50px;
  text-align: center;
}
.common-section h1 span {
  display: block;
}
@media screen and (max-width: 599px) {
  .common-section {
    padding: 50px 0px;
  }
  .common-section h1 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .common-section h1 span {
    display: inline;
  }
}

.banner {
  position: relative;
  background-color: #e8dfd8;
  height: 800px;
}
@media screen and (max-width: 599px) {
  .banner {
    height: 700px;
  }
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../img/banner-img.jpg") no-repeat center;
  background-size: cover;
  background-position: top right;
}
@media screen and (max-width: 599px) {
  .banner::before {
    width: 100%;
    height: 200px;
    top: inherit;
    bottom: 0px;
  }
}
.banner h1 {
  font-family: "Garet-Book";
  font-size: 70px;
  font-weight: bold;
  letter-spacing: 1px;
}
@media screen and (max-width: 599px) {
  .banner h1 {
    font-size: 40px;
  }
}
.banner h3 {
  font-size: 36px;
  letter-spacing: 1px;
  font-family: "Inter-Light";
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  .banner h3 {
    font-size: 24px;
  }
}
.banner .btn-findoutmore {
  margin: 50px 0px 100px;
  font-size: 24px;
  font-family: "Garet-Book";
  font-weight: bold;
  padding: 10px 30px;
  border: 3px solid black;
  border-radius: 0px;
}
@media screen and (max-width: 599px) {
  .banner .btn-findoutmore {
    font-size: 16px;
    padding: 6px 15px;
    margin-top: 20px;
  }
}
.banner .btn-findoutmore:hover {
  background-color: black;
  color: white;
}

.about-us {
  text-align: center;
}
.about-us .logo {
  margin: 0px auto 70px;
}
@media screen and (max-width: 599px) {
  .about-us .logo {
    margin-bottom: 30px;
  }
}
.about-us p {
  line-height: 40px;
  font-size: 24px;
  letter-spacing: 1px;
  font-family: "Inter-Light";
}
.about-us p span {
  display: block;
}
@media screen and (max-width: 599px) {
  .about-us p {
    font-size: 18px;
    line-height: 30px;
  }
  .about-us p span {
    display: inline;
  }
}

.what-we-do {
  background-color: #e8dfd8;
}
.what-we-do .wwd-card {
  position: relative;
  background-color: white;
  padding: 100px 30px 60px;
  margin-top: 50px;
  height: calc(100% - 50px);
}
@media screen and (max-width: 599px) {
  .what-we-do .wwd-card {
    padding: 70px 20px 20px;
    margin-top: 50px;
    margin-bottom: 30px;
    height: auto;
  }
}
.what-we-do .wwd-card .wwd-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
}
.what-we-do .wwd-card h3 {
  text-align: center;
  font-family: "Inter-Bold";
  margin-bottom: 30px;
}
.what-we-do .wwd-card ul {
  font-size: 24px;
}
@media screen and (max-width: 599px) {
  .what-we-do .wwd-card ul {
    font-size: 18px;
  }
}

.happens .happens-bg {
  height: 300px;
  background: url("../img/happens.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .happens {
    padding-bottom: 0px;
  }
}

.collabaration {
  background-color: #e8dfd8;
  text-align: center;
}
.collabaration .logo {
  margin: 0 auto 50px;
}
.collabaration h3 {
  font-family: "Times-NR-MT-Regular";
  text-align: center;
}
.collabaration p {
  font-family: "Times-NR-MT-Regular";
}
.collabaration .first {
  width: 300px;
  margin: 50px auto 50px;
  display: flex;
  justify-content: space-between;
}
.collabaration .second {
  width: 500px;
  margin: 10px auto 50px;
  display: flex;
  justify-content: space-between;
}
.collabaration .third {
  width: 100%;
  display: flex;
  justify-content: center;
}

.concept {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
  font-size: "Garet-Book";
}

.why-choose ul {
  font-size: 30px;
  font-family: "Times-NR-MT-Regular";
  padding-left: 100px;
}
@media screen and (max-width: 599px) {
  .why-choose ul {
    padding-left: 10px;
  }
}
.why-choose .rao-text {
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
}
.why-choose h5 {
  font-family: "Times-NR-MT-Regular";
  font-size: 24px;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  .why-choose ul {
    font-size: 18px;
    padding-left: 50px;
  }
}

.contact-us {
  background-color: #e8dfd8;
}
.contact-us .contact-bg {
  background: url("../img/contact.jpg");
  padding: 50px;
  height: 100%;
}
.contact-us h1 {
  text-align: left;
}
.contact-us h4 {
  font-size: 24px;
  font-weight: bold;
}
.contact-us .address {
  font-size: 18px;
}
.contact-us .email,
.contact-us .phone {
  font-size: 18px;
}
.contact-us .email a,
.contact-us .phone a {
  color: black;
}
.contact-us .email img,
.contact-us .phone img {
  margin-right: 5px;
}
.contact-us .social-media {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .contact-us .contact-bg {
    height: 150px;
    margin-bottom: 30px;
  }
}

.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99;
}
@media screen and (max-width: 599px) {
  .menu {
    width: 100%;
  }
}
.menu .btn-close-menu {
  font-size: 50px;
  color: white;
  margin-left: auto;
  border: none;
  border-radius: 0px;
  display: block;
}
.menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 80%;
}
.menu ul li a {
  font-size: 30px;
  padding: 20px;
  color: white;
  text-transform: capitalize;
}

.find-out-more .modal-dialog .modal-content {
  border-radius: 0px;
}
.find-out-more .modal-dialog .modal-content .form-control {
  border-radius: 0px;
  border: 3px solid black;
}

.modal-btn-footer .btn {
  font-size: 16px;
  padding: 6px 15px;
  border: 3px solid black;
  border-radius: 0px;
}
.modal-btn-footer .btn.btn-submit {
  background-color: black;
  color: white;
}
.modal-btn-footer .btn:hover {
  background-color: black;
  color: white;
}

.form-check-input {
  border-color: black !important;
}

.form-check-input:checked {
  background-color: black;
  border-color: black;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
  background-color: black !important;
}

.modal-header {
  padding-left: 40px;
}
@media screen and (max-width: 599px) {
  .modal-header {
    padding-left: 15px;
  }
}

.modal-body {
  padding: 15px 40px;
}
@media screen and (max-width: 599px) {
  .modal-body {
    padding: 15px;
  }
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

/*# sourceMappingURL=styles.css.map */
