/* Default CSS */
@font-face {
  font-family: brevia;
  src: url(https://use.typekit.net/af/1018ce/000000000000000077359a13/30/l?subset_id=2&fvd=n3&v=3) format("woff2"), url(https://use.typekit.net/af/1018ce/000000000000000077359a13/30/d?subset_id=2&fvd=n3&v=3) format("woff"), url(https://use.typekit.net/af/1018ce/000000000000000077359a13/30/a?subset_id=2&fvd=n3&v=3) format("opentype");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  font-display: auto;
}

:root {
  --white-color: #FFFFFF;
  --black-color: #000000;
  --main-color: #add8e6;

  --navLinks-color: #000000;

  --buttonBg-color: #7877e6;
  --button-color: #ffffff;
  --buttonHover-color: #6563d3;

  --border-color: #000000;
  --title-color-1: #000000;
  --title-color-2: #ffffff;
  --title-color-3: #6563d3;
  --paragraph-color: #000000;
  --linear-gradient-home: linear-gradient(135deg, #5e8ba1 50%, #4a91e0 50%);
  --input-color: #000000;
  --input-bg: #fafafa;
  --input-border: #A9A9A9;
  --errorMsg-color: #ffffff;
  --errorMsg-bg: #ce2c30;
  --submissionMessage-color: #008000;

  --board-bg: #f4f4f3;

  --footer-bg: #7877e6;
  --footer-color: #ffffff;

  --poppins-font: 'Poppins', sans-serif;
  --brevia-font: brevia;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--poppins-font);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
}

.myContainer {
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 1040px) {
  .myContainer {
    width: 100%;
    padding: 0 20px;
  }
}

/* 
<---------All Pages Navbar Start---------->
<---------All Pages Navbar Start---------->
<---------All Pages Navbar Start---------->
*/
/* CSS */
/* Navbar */
/* Navbar */
/* Navbar */
.navBar {
  position: relative;
  z-index: 9999;
}

/* Center Menu Large Device Visible  */
.navBar-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: transparent;
}

/* Open Menu Button */
#toggler {
  display: none;
}

#toggler button {
  position: relative;
  display: block;
  cursor: pointer;
  width: 60px;
  height: 30px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border: none;
  background: transparent;
}

#toggler .bar-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 1rem;
  background: var(--black-color);
}

#toggler .bar-line.bgImage-barLine {
  background: var(--white-color);
}

#toggler .bar-line:nth-child(1) {
  top: 0px;
}

#toggler .bar-line:nth-child(2) {
  top: 0.8rem;
  width: 50% !important;
}

#toggler .bar-line:nth-child(3) {
  top: 1.5rem;
}

.navBar-container .nav-logo a {
  transition-timing-function: ease;
  transition-duration: 0.6s;
  transition-delay: 0.025s;
  font-size: 25px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: 700;
  text-transform: uppercase;
}

.navBar-container .nav-logo.bgImage-logo a {
  color: var(--white-color);
}

.navBar-container .nav-logo a span {
  color: var(--main-color);
}

/* Responsive Logo */
@media screen and (max-width: 520px) {
  .navBar-container .nav-logo a {
    font-size: 20px;
    line-height: 25px;
  }
}

/* Logo Responsive */
.nav-items ul li {
  display: inline;
  padding: 10px;
}

.nav-items ul li a {
  color: var(--navLinks-color);
  position: relative;
  padding: 5px 0;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  font-weight: 600;
}

.nav-items.bgImage-link ul li a {
  color: var(--white-color);
}

.nav-items ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.17rem;
  background: var(--navLinks-color);
  left: 0;
  bottom: 0;
  transform-origin: 0% 100%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-items.bgImage-link ul li a:after {
  background: var(--white-color);
}

.nav-items ul li a:hover::after {
  transform: scaleX(1);
}

.nav-items.bgImage-link ul li a:hover::after {
  transform: scaleX(1);
}

.nav-items ul li a.navActive::after {
  color: var(--main-color);
  transform: scaleX(1);
}

.nav-items.bgImage-link ul li a.navActive::after {
  color: var(--main-color);
  transform: scaleX(1);
}

/* Mobile Menu CSS */
/* Mobile Menu CSS */
/* Mobile Menu CSS */

/* Close Mobile Menu */
#closeMobileMenu {
  /* Initially hide the "Close" menu */
  display: none;
  position: absolute;
  top: 20px;
  left: 5%;
  /* Add transition for opacity */
  transition: all 0.5s ease;
}

#closeMobileMenu.expanded {
  /* Show the "Close" menu when the menu is fully expanded */
  display: block;
}

#closeMobileMenu button {
  background: var(--white-color);
  color: var(--black-color);
  padding: 12px 32px 12px 32px;
  border: 1px solid var(--main-color);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

#closeMobileMenu button:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--white-color);
}

/* Clicking Open Menu will open Get Menu  */
#mobile-menu {
  display: none;
  border-radius: 34px;
  background: var(--black-color);
  /* Start at 80% width */
  width: 80%;
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
  top: 0;
  left: 50%;
  /* Center horizontally and move off-screen vertically */
  transform: translateX(-50%) translateY(-100%);
  display: none;
  /* Add width and top transition */
  transition: transform 0.3s ease, width 1s ease, top 1s ease;
  z-index: 99999;
}

#mobile-menu::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}

#mobile-menu.open {
  /* Slide in the menu and drop down by 20px */
  transform: translateX(-50%) translateY(20px);
}

#mobile-menu.expanded {
  /* Expand to 100% width */
  width: 100%;
  /* Move up again */
  top: -20px;
  border-radius: 0;
}

.getMenu-items {
  width: 90%;
  margin: auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 60px;
}

.getMenu-items #getMenu-container {
  display: none;
  width: 100%;
  padding: 60px 0px;
}

.getMenu-items #getMenu-container.expanded {
  display: block;
}

.getMenu-items #getMenu-container a {
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  color: var(--white-color);
  text-transform: uppercase;
  padding: 15px 0;
  border-bottom: 1px solid var(--white-color);
  display: block;
  transition: all 0.4s ease-in-out;
}

.getMenu-items #getMenu-container a:first-child {
  border-top: 1px solid var(--white-color);
}

.getMenu-items #getMenu-container a:hover {
  color: var(--main-color);
}

.getMenu-items #getMenu-container a.navActive {
  color: var(--main-color);
}

/* Navbar Responsive Section */
@media screen and (max-width: 992px) {
  .nav-items {
    display: none;
  }

  #toggler {
    display: block;
  }
}


@media screen and (max-width: 468px) {
  #mobile-menu {
    width: 90%;
  }

  .getMenu-items #getMenu-container a {
    font-size: 22px;
    line-height: 29px;
  }

  .getMenu-items #getMenu-container a img {
    width: 30px;
  }

  #toggler button {
    padding: 7px 30px;
  }
}

@media screen and (max-width: 400px) {
  .getMenu-items #getMenu-container a {
    font-size: 18px;
    line-height: 27px;
  }
}

/* 
<---------All Pages Navbar End---------->
<---------All Pages Navbar End---------->
<---------All Pages Navbar End---------->
*/

/* 
Home Page Start 
Home Page Start 
Home Page Start 
 */
/* Banner Section */
/* Banner Section */
/* Banner Section */
.banner-section {
  background: var(--linear-gradient-home);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: -62px;
}

/* .banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
} */

.banner-section .banner-container {
  position: relative;
  text-align: center;
  z-index: 5;
}

.banner-section .banner-container h1 {
  font-size: 50px;
  line-height: 60px;
  color: var(--title-color-2);
  text-transform: capitalize;
}

.banner-section .banner-container h1 span {
  color: var(--main-color);
  display: block;
  font-size: 30px;
  line-height: 35px;
}

/*Banner Section Responsive */
@media screen and (max-width: 600px) {
  .banner-section .banner-container h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .banner-section .banner-container h1 span {
    font-size: 25px;
    line-height: 30px;
  }
}

@media screen and (max-width: 480px) {
  .banner-section .banner-container h1 {
    font-size: 30px;
    line-height: 35px;
  }

  .banner-section .banner-container h1 span {
    font-size: 20px;
    line-height: 25px;
  }
}

/* Learn Details Section */
/* Learn Details Section */
/* Learn Details Section */
.learn-details {
  padding-top: 60px;
  background: var(--white-color);
  margin-bottom: 40px;
}

.learn-details p {
  font-size: 18px;
  line-height: 23px;
  color: var(--paragraph-color);
  font-weight: 500;
  text-align: center;
}

.learn-details .button-container {
  padding-top: 100px;
  text-align: center;
}

.learn-details .button-container a {
  padding: 1.2em 2.004em;
  letter-spacing: .1em;
  font-size: 18px;
  line-height: 23px;
  color: var(--button-color);
  border-radius: 16px 0;
  background: var(--buttonBg-color);
  transition: all 0.3s ease-in-out;
  font-family: var(--brevia-font);
}

.learn-details .button-container a:hover {
  background: var(--buttonHover-color);
}

/* Section Responsive */
@media screen and (max-width: 768px) {}

/* 
Home Page End 
Home Page End 
Home Page End 
 */


/* 
 Services Page End
 Services Page End
 Services Page End
  */
/* Services Section */
/* Services Section */
/* Services Section */
.services-section {
  background: var(--white-color);
  padding: 60px 0;
}

.services-section .services-container {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.services-section .services-details .info {
  margin: 60px 0;
}

.services-section .services-details p {
  font-size: 18px;
  line-height: 30px;
  color: var(--paragraph-color);
  font-weight: 400;
  text-align: left;
}

.services-section .services-details .title {
  font-size: 55px;
  line-height: 65px;
  color: var(--title-color-1);
  font-weight: 600;
  text-align: center;
}

.services-section .services-details .services-list {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.services-section .services-details .services-list ul {
  list-style-type: disc;
  padding-top: 30px;
  padding-left: 20px;
}

.services-section .services-details ul li p {
  font-size: 18px;
  line-height: 30px;
  color: var(--paragraph-color);
  font-weight: 400;
  text-align: left;
}

.services-section .services-details .note {
  font-size: 18px;
  line-height: 30px;
  color: var(--paragraph-color);
  font-weight: 600;
  text-align: left;
  margin: 100px 0;
  padding: 100px 0;
}

.services-details .button-container {
  margin: 100px 0;
  padding: 100px 0;
  text-align: center;
}

.services-details .button-container a {
  padding: 1.2em 2.004em;
  letter-spacing: .1em;
  font-size: 18px;
  line-height: 23px;
  color: var(--button-color);
  border-radius: 16px 0;
  background: var(--buttonBg-color);
  transition: all 0.3s ease-in-out;
  font-family: var(--brevia-font);
}

.services-details .button-container a:hover {
  background: var(--buttonHover-color);
}

/*Services Section Section Responsive */
@media screen and (max-width: 768px) {
  .services-section .services-details .title {
    font-size: 30px;
    line-height: 40px;
  }
}

/* 
Services Page End
Services Page End
Services Page End
  */



/* 
 Start-Here Page Start
 Start-Here Page Start
 Start-Here Page Start
  */
/* Start Form Section */
/* Start Form Section */
/* Start Form Section */
.start-form {
  padding: 60px 0;
  background: var(--white-color);
}

.start-form .form-container {
  width: 100%;
  max-width: 870px;
  margin: auto;
  padding: 0 20px;
}

.start-form .form-container .title {
  font-size: 55px;
  line-height: 65px;
  color: var(--title-color-1);
  font-weight: 600;
  text-align: center;
}

.start-form .form-container .title-info {
  font-size: 18px;
  line-height: 30px;
  color: var(--paragraph-color);
  font-weight: 400;
  text-align: center;
  padding-top: 20px;
}

/* Form */
.startForm-container {
  padding-top: 100px;
}

.startForm-container .input-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-family: var(--brevia-font);
}

.startForm-container p.label-text {
  font-size: 18px;
  line-height: 25px;
  color: var(--black-color);
}

.startForm-container .label-text span,
.startForm-container label.label-text span {
  color: #A9A9A9;
}

.startForm-container .input-fill {
  margin-top: 30px;
  font-family: var(--brevia-font);
}

.startForm-container label.label-text {
  font-size: 18px;
  line-height: 25px;
  color: var(--black-color);
  font-weight: 600;
}

.startForm-container .label-text2 {
  font-size: 16px;
  line-height: 30px;
  color: #444;
  padding: 10px 0;
}

.startForm-container .input-fill input,
.startForm-container .input-fill textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--input-color);
  padding: 10px;
  height: 58px;
  margin-top: 10px;
  font-size: 18px;
  line-height: 25px;
}

.startForm-container .input-fill textarea {
  height: 100px;
}

.startForm-container .input-fill input:focus,
.startForm-container .input-fill textarea:focus {
  outline-width: 2px;
  outline-offset: 2px;
  outline-style: solid;
  outline-color: var(--border-color);
}

.startForm-container .isntSubmit.req-message {
  margin-bottom: 20px;
}

.startForm-container .req-message {
  display: none;
  background: var(--errorMsg-bg);
  font-size: 16px;
  line-height: 20px;
  color: var(--white-color);
  padding: 10px;
  align-items: center;
  gap: 20px;
}

.startForm-container .req-message i {
  font-size: 18px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 1px solid var(--white-color);
  text-align: center;
  border-radius: 50%;
}

/* Checkbox Field */
.startForm-container .checkbox-fill {
  margin-top: 30px;
  font-family: var(--brevia-font);
}

.startForm-container .checkbox-fill .label-text {
  margin-bottom: 10px;
  font-weight: 600;
}


.startForm-container .checkbox-fill label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black-color);
  font-size: 17px;
  line-height: 25px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.startForm-container .checkbox-fill input {
  width: 0;
  height: 0;
  opacity: 0;
}

.startForm-container .checkbox-fill label>span {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color);
  transition: all .3s;
}

.startForm-container .checkbox-fill input:checked+label>span {
  width: 16px;
  height: 16px;
  line-height: 16px;
  background: var(--black-color);
  animation: bounce 250ms;
  position: relative;
  border: none;
  text-align: center;
}

.startForm-container .checkbox-fill input:checked+label>span::before {
  content: '\f00c';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 12px;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  33% {
    transform: scale(.7);
    background: #444;
  }

  100% {
    transform: scale(1);
  }
}

.startForm-container .button-container {
  padding-top: 30px;
}

.startForm-container .button-container button {
  padding: 1.2em 2.004em;
  letter-spacing: .1em;
  font-size: 18px;
  line-height: 23px;
  color: var(--button-color);
  border-radius: 16px 0;
  background: var(--buttonBg-color);
  transition: all 0.3s ease-in-out;
  border: none;
  font-family: var(--brevia-font);
  cursor: pointer;
}

.startForm-container .button-container button:hover {
  background: var(--buttonHover-color);
}

.start-form .startSubmit-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  width: 100%;
  max-width: 500px;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-family: var(--brevia-font);
  display: none;
}

.start-form .startSubmit-message p {
  font-size: 18px;
  line-height: 25px;
  color: var(--black-color);
  font-weight: 600;
}

/*Start Form Section Responsive */
@media screen and (max-width: 768px) {
  .start-form .form-container .title {
    font-size: 30px;
    line-height: 40px;
  }

  .start-form .form-container .input-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 530px) {
  .start-form .form-container .title {
    font-size: 25px;
    line-height: 35px;
  }
}

/* 
 Start-Here  Page End
 Start-Here  Page End
 Start-Here  Page End
  */




/* 
 FAQ Page Start
 FAQ Page Start
 FAQ Page Start
  */
/* Faq Section */
/* Faq Section */
/* Faq Section */
.faq-section {
  padding: 60px 20px;
  background: var(--white-color);
}

.faq-container .faq-title {
  font-size: 55px;
  line-height: 65px;
  color: var(--title-color-1);
  font-weight: 600;
  text-align: center;
}

.faq-container .accordion-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-top: 60px;
}


.faq-container .accordion:first-child {
  border-top: 1px solid #A9A9A9;
}

.faq-container .accordion {
  border-bottom: 1px solid #A9A9A9;
  padding: 20px 0;
}

.faq-container .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.faq-container .accordion-question {
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: var(--title-color-1);
  transition: all 0.3s ease-in-out;
}

.faq-container .accordion-question.accActive {
  font-weight: 600;
}

.faq-container .accordion-icon {
  color: var(--title-color-1);
  font-size: 16px;
  line-height: 20px;
}

.faq-container .accordion-body {
  overflow: hidden;
  height: 0;
  transition: 0.4s ease-in-out;
}

.faq-container .accordion-info {
  padding: 20px 10px;
}

.faq-container .accordion-info p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  padding-top: 20px;
  color: var(--paragraph-color);
}

.faq-container .accordion-info ul {
  padding-top: 10px;
}

.faq-container .accordion-info ul li p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  padding-top: 10px;
  color: var(--paragraph-color);
}

.accordion-info a {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
  color: #0000ff;
}

.accordion-info a:hover {
  text-decoration: none;
}

/* 
 FAQ Page End
 FAQ Page End
 FAQ Page End
  */



/* 
Meet Our Team Page Start
Meet Our Team Page Start
Meet Our Team Page Start
 */
/* Mission Banner */
/* Mission Banner */
/* Mission Banner */
.mission-banner {
  margin: 100px 0;
  padding: 60px 0;
  background: var(--white-color);
}

.mission-banner .mission-container .title {
  font-size: 55px;
  line-height: 65px;
  color: var(--title-color-1);
  font-weight: 600;
  text-align: center;
}

.mission-banner .mission-container .mission-details {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-top: 40px;
}

.mission-banner .mission-container .mission-details p {
  font-size: 18px;
  line-height: 30px;
  color: var(--paragraph-color);
}

/*Mission Section Responsive */
@media screen and (max-width: 768px) {
  .mission-banner .mission-container .title {
    font-size: 35px;
    line-height: 45px;
  }
}




/* Board Section */
/* Board Section */
/* Board Section */
.board-section {
  padding: 60px 0;
  background: var(--white-color);
}

.board-section .title {
  font-size: 55px;
  line-height: 65px;
  color: var(--title-color-3);
  font-weight: 600;
  text-align: center;
}

.board-section .board-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding-top: 60px;
}

.board-section .board-container .board-item {
  background: var(--board-bg);
  padding: 15px;
}

.board-section .board-container .board-item .photo img {
  display: block;
  object-position: 50% 50%;
  height: 100%;
  width: 100%;
  min-height: 100%;
  height: 568px;
  object-fit: cover;
}

.board-section .board-container .board-item .board-details {
  padding: 20px;
}

.board-section .board-container .board-item .board-details .name {
  font-size: 30px;
  line-height: 45px;
  color: var(--title-color-3);
  text-align: center;
}

.board-section .board-container .board-item .board-details .info p {
  font-size: 18px;
  line-height: 30px;
  color: var(--paragraph-color);
  font-weight: 400;
  text-align: center;
  padding-top: 20px;
}

/* Update Section */
/* Update Section */
/* Update Section */
.update-section {
  margin: 60px 0;
  background: var(--white-color);
}

.update-section .update-title {
  font-size: 55px;
  line-height: 65px;
  margin: 100px 0;
  color: var(--title-color-1);
  font-weight: 600;
  text-align: center;
  min-height: 200px;
}

.update-section .update-title span {
  color: var(--title-color-3);
}

/*Board Section Responsive */
@media screen and (max-width: 992px) {
  .board-section .board-container .board-item .photo img {
    height: 368px;
  }
}

@media screen and (max-width: 768px) {
  .board-section .title {
    font-size: 35px;
    line-height: 45px;
  }

  .board-section .board-container {
    grid-template-columns: 1fr;
  }

  .board-section .board-container .board-item .photo img {
    height: 568px;
  }

  .board-section .board-container .board-item .board-details .name {
    font-size: 25px;
    line-height: 35px;
  }

  .update-section .update-title {
    font-size: 35px;
    line-height: 45px;
  }
}

@media screen and (max-width:545px) {
  .board-section .board-container .board-item .photo img {
    height: 368px;
  }

}

@media screen and (max-width:360px) {
  .board-section .board-container .board-item .photo img {
    height: 268px;
  }
}

/* 
Meet Our Team Page End
Meet Our Team Page End
Meet Our Team Page End
 */



/* Contact Page Start */
/* Contact Page Start */
/* Contact Page Start */
/* Contact Section */
/* Contact Section */
/* Contact Section */
.contact-form {
  padding: 60px 0;
  background: var(--white-color);
}

.contact-form .form-container {
  width: 100%;
  max-width: 870px;
  margin: auto;
  padding: 0 20px;
}

.contact-form .form-container .title {
  font-size: 55px;
  line-height: 65px;
  color: var(--title-color-1);
  font-weight: 600;
  text-align: center;
}

.contact-form .form-container .title-info {
  font-size: 18px;
  line-height: 30px;
  color: var(--paragraph-color);
  font-weight: 400;
  text-align: center;
  padding-top: 20px;
}

/* Form */
.contactForm-container {
  padding-top: 100px;
}

.contactForm-container .input-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-family: var(--brevia-font);
}

.contactForm-container p.label-text {
  font-size: 18px;
  line-height: 25px;
  color: var(--black-color);
}

.contactForm-container .label-text span,
.contactForm-container label.label-text span {
  color: #A9A9A9;
}

.contactForm-container .input-fill {
  margin-top: 30px;
  font-family: var(--brevia-font);
}

.contactForm-container label.label-text {
  font-size: 18px;
  line-height: 25px;
  color: var(--black-color);
  font-weight: 600;
}

.contactForm-container .label-text2 {
  font-size: 16px;
  line-height: 30px;
  color: #444;
  padding: 10px 0;
}

.contactForm-container .input-fill input,
.contactForm-container .input-fill textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--input-color);
  padding: 10px;
  height: 58px;
  margin-top: 10px;
  font-size: 18px;
  line-height: 25px;
}

.contactForm-container .input-fill textarea {
  height: 100px;
}

.contactForm-container .input-fill input:focus,
.contactForm-container .input-fill textarea:focus {
  outline-width: 2px;
  outline-offset: 2px;
  outline-style: solid;
  outline-color: var(--border-color);
}

.contactForm-container .isntSubmit.req-message {
  margin-bottom: 20px;
}

.contactForm-container .req-message {
  display: none;
  background: var(--errorMsg-bg);
  font-size: 16px;
  line-height: 20px;
  color: var(--white-color);
  padding: 10px;
  align-items: center;
  gap: 20px;
}

.contactForm-container .req-message i {
  font-size: 18px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 1px solid var(--white-color);
  text-align: center;
  border-radius: 50%;
}

.contactForm-container .button-container {
  padding-top: 30px;
}

.contactForm-container .button-container button {
  padding: 1.2em 2.004em;
  letter-spacing: .1em;
  font-size: 18px;
  line-height: 23px;
  color: var(--button-color);
  border-radius: 16px 0;
  background: var(--buttonBg-color);
  transition: all 0.3s ease-in-out;
  border: none;
  font-family: var(--brevia-font);
  cursor: pointer;
}

.contactForm-container .button-container button:hover {
  background: var(--buttonHover-color);
}

.contact-form .contactSubmit-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  width: 100%;
  max-width: 500px;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-family: var(--brevia-font);
  display: none;
}

.contact-form .contactSubmit-message p {
  font-size: 18px;
  line-height: 25px;
  color: var(--black-color);
  font-weight: 600;
}

/*Contact Section Responsive */
@media screen and (max-width: 768px) {
  .contact-form .form-container .title {
    font-size: 30px;
    line-height: 40px;
  }

  .contact-form .form-container .input-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 530px) {
  .contact-form .form-container .title {
    font-size: 25px;
    line-height: 35px;
  }
}


/* Contact Page End */
/* Contact Page End */
/* Contact Page End */



/* 
  <-------All Pages Footer Section Start--------->
  <-------All Pages Footer Section Start--------->
  <-------All Pages Footer Section Start--------->
  <-------All Pages Footer Section Start--------->
   */
.footer {
  background-color: var(--footer-bg);
  padding: 60px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-container .left-link a {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  color: var(--footer-color);
}

.footer-container .left-link a span {
  border-bottom: 1px solid var(--footer-color);
}

.footer-container .right-link p {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  color: var(--footer-color);
}

.footer-container .right-link p a span {
  color: var(--footer-color);
  border-bottom: 1px solid var(--footer-color);
}

/* 
  <-------All Pages Footer Section End--------->
  <-------All Pages Footer Section End--------->
  <-------All Pages Footer Section End--------->
   */