@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  scroll-padding-top: 66px;
}

/* container start here */
.container {
  max-width: 1330px;
  padding: 0px 15px;
}

.snap-container {
  height: 100vh;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;

}

.snap-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.snap-section {
  min-height: 100vh;
  scroll-snap-align: start;
  position: relative;
  padding: 0;
  box-sizing: border-box;
  /* transition: box-shadow 0.3s ease; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.snap-section img {
  max-height: 55vh;
  height: auto;
  width: auto;
}

.snap-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  width: 90%;
  background-color: #ccc;
  transition: transform 0.5s ease;
}

.section-1 .gap-5 {
  gap: 114px !important;
}

.snap-section.scrolled-in::after {
  transform: translateX(-50%) scaleX(1);
}

.content {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.content.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-1,
.section-3,
.section-4 {
  background-color: #E7E7E7;
}

.arrow-button {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: black;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.navbar {
  position: sticky;
  background-color: #E7E7E7;
  cursor: pointer;
}

.bannerdiv img {
  min-width: 860px;
  min-height: 207px;
}

.bannerdiv-paragraph p {
  font-size: 48px;
  line-height: 40px;
}

.mail-form {
  background-color: #ED1C24;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leadership-tab .leadership-span {
  width: 179px;
  height: 48px;
  border: 1px solid black;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 400;
}

.section-2 .section2-paragraph {
  color: #ED1C24;
  font-size: 44px;
  line-height: 48px;
}

.section-2 .section2-inner-paragraph,
.section-3 .section3-inner-paragraph {
  font-size: 18px;
}

.section-2 .detail-div,
.section-3 .detail-div {
  line-height: 10px;
}

.section-3 .section3-inner-paragraph {
  text-align: end;
}

.form-image-div img {
  width: 526px;
  height: 110px;
}

.section-4 .form-contact-number {
  font-size: 64px;
}

.section-4 form label {
  font-size: 18px;
}

.section-4 form input.form-control,
.section-4 form select.form-control {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 10px 16px;
  height: 42px;
}

.section-4 form textarea.form-control {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 10px 16px;
}

.section-4 form textarea {
  resize: none;
}

.section-4 .checkbox-paragraph {
  font-size: 18px;
}

.Copyright {
  font-size: 18px;
}

.section-4 form .submitBtn {
  background-color: black;
  color: white;
  border: none !important;
  box-shadow: none !important;
  font-size: 18px;
  padding: 10px 174px;
}

.drop-down {
  position: relative;
}

.drop-down .selected a {
  background: #fff no-repeat scroll right center;
  display: flex;
  padding-right: 0;
  width: 100%;
  border-radius: 0;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: #828282;
  padding: 8px 16px;
  height: 42px;
  align-items: center;
  justify-content: space-between;
}

.drop-down.open span {
  transform: rotate(180deg);
}

.drop-down .option {
  position: relative;
}

.drop-down .options ul {
  background: #fff none repeat scroll 0 0;
  display: none;
  list-style: none;
  padding: 0px 0px;
  position: absolute;
  width: 100%;
  z-index: 2000;
}

.drop-down .options ul li {
  border-top: 1px solid #E7E7E7;
}

.drop-down .options ul li a {
  display: block;
  text-decoration: none;
  color: #0D0D0D;
  font-family: Roboto;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  padding: 13px 16px;
}

.drop-down .selected span.value,
.drop-down .options span.value {
  display: none;
}


.drop-down .options ul li a:hover {
  background: #0000;
  color: #000;
  transition: 0.2s ease;
}

/* checkbox */
/* Hide the native checkbox */
.custom-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  display: inline-flex;
  align-items: center;
}

.custom-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  background-color: #f1f1f1;
  border: 1px solid #0D0D0D;
  border-radius: 0;
  transition: 0.2s ease;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 8px;
  height: 14px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Hover effect */
.custom-checkbox:hover .checkmark {
  border-color: #0D0D0D;
}

/* Checked background */
.custom-checkbox input[type="checkbox"]:checked+.checkmark {
  background-color: #E7E7E7;
  border-color: #000;
}

.mobile-mail-icon {
  display: none;
}

.slanted-d {
  font-style: italic;
  color: #ED1C24;
}

.arrow-div img {
  cursor: pointer;
}

.mail-form {
  cursor: pointer;
}

.mail-form img {
  height: 30px;
  width: 37.5px;
}

.navbar-white {
  background-color: white;
}

.section-4 form input::placeholder,
.section-4 form textarea::placeholder {
  color: #828282;
}

.section-2 .leadership-arrow {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  cursor: pointer
}

.section-1 .dynamic-mail {
  position: absolute;
  right: 20px;
  bottom: 10px;
  cursor: pointer
}

.section-1 .dynamic-arrow-div {
  position: absolute;
  left: 50%;
  bottom: 30px;
  cursor: pointer
}

.section-2 .leadership-mail {
  position: absolute;
  right: 20px;
  bottom: 60px;
  cursor: pointer
}

.section-3 .contact-mail {
  position: absolute;
  right: 20px;
  bottom: 10px;
  cursor: pointer
}

.section-3 .section3-arrow-div {
  position: absolute;
  left: 50%;
  bottom: 50px;
  cursor: pointer
}

.section-3 .Copyright {
  position: absolute;
  left: 0px;
  bottom: 25px;
}

.section-4 .form-div-arrow {
  position: absolute;
  left: 50%;
  bottom: 118px;
  cursor: pointer
}

.small-envelope-icon:hover {
  color: #ED1C24;
  font-size: large;
}

.navbar-toggler {
  border: none;
}

.section-2 .section2-inner-paragraph .section-name {
  font-size: 18px;

}
.section-3 .section3-content-inner{
  display: flex;
  justify-content: end;
  align-items: end;
}
.small-envelope-icon{
  cursor: pointer;
}
.leadership-img-div img{
  max-width:auto;
  max-height: auto;
  object-fit: contain;
}
/* media screen  start  here */
@media (min-width: 1280px) and (max-width: 1400px) {
  .mob-hide {
    position: absolute;
    bottom: 50px;
    top: auto;
    width: 100%;
    height: 100px;
  }

   .section-2,
   .section-4 {
    padding-top: 12px;
    justify-content: flex-start;
  }

  .section-2 .leadership-arrow {
    left: 50%;
    bottom: -80px;
    transform: translateX(-50%);
    cursor: pointer
  }

  .section-2 .leadership-mail {
    right: 20px;
    bottom: -98px;
    cursor: pointer
  }

  .section-3 .contact-mail {
    right: 20px;
    bottom: 20px;
    cursor: pointer
  }

  .section-3 .section3-arrow-div {
    position: absolute;
    left: 50%;
    bottom: 40px;
    cursor: pointer
  }

  .section-3 .Copyright {
    position: absolute;
    left: 0px;
    bottom: 20px;
  }

  .bannerdiv img {
    min-width: auto;
    min-height: 200px;
    width: 100%;
    max-width: 77%;
    margin: 0;
  }

  .section-4 .form-div-arrow {
    position: absolute;
    left: 50%;
    bottom: -68px;
    cursor: pointer;
  }

  .section-4 .form-contact-number {
    font-size: 58px;
  }

  .form-image-div img {
    width: 526px;
    height: 108px;
  }
}

@media(max-width: 1280px) {
  .section-1 .gap-5 {
    gap: 30px !important;
    padding-top: 0 !important;
  }

  .bannerdiv img {
    min-width: auto;
    min-height: 200px;
    width: 100%;
    max-width: 77%;
    margin: 0;
  }

  .bannerdiv-paragraph p {
    font-size: 30px;
    line-height: 40px;
  }

  .section-2 .section2-paragraph {
    font-size: 30px;
    line-height: 40px;
  }

  .section-4 .form-contact-number {
    font-size: 40px;
  }

}

@media(max-width: 991px) {

  .container {
    padding: 0 1rem;
  }

  .bannerdiv-paragraph p {
    font-size: 40px;
    line-height: 32px;
  }

  .bannerdiv img {
    min-width: 460px;
    min-height: 160px;
  }

  .arrow-button {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .Copyright {
    font-size: 14px;
    text-align: center;
  }

  .snap-container {
    height: auto;
    scroll-snap-type: none;
    scroll-behavior: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: auto;
  }

  .snap-section {
    height: auto;
    scroll-snap-align: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* .container.mt-4.mob-hide {
  display: none;
} */
  .snap-section .h-75 {
    height: auto !important;
  }

  .content {
    opacity: 1;
    transform: unset;
    transition: opacity 3s ease-out, transform 3s ease-out;
  }

  .content.visible {
    opacity: 1;
    transform: unset;
  }

  html,
  body {
    scroll-behavior: auto;
    overflow: auto;
    scroll-padding-top: 30px;
  }

  .mob-hide {
    padding-bottom: 30px !important;
  }

  p.section2-inner-paragraph.mobile-mt {
    margin-top: 30px;
  }

  .mobile-mail-icon {
    position: fixed;
    bottom: 60px;
    right: 50px;
    width: 80px;
    height: 80px;
    z-index: 9999;
    cursor: pointer;
    text-align: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;


  }

  .mobile-mail-icon img {
    width: 60%;
    height: auto;
  }

  .section-1 .mob-hide,
  .section-2 .mob-hide {
    display: none;
  }

  .section-3 .Copyright {
    display: block;
    position: absolute;
    left: 0px;
    bottom: -10px;
  }

  .section-3 .arrow-div {
    display: none !important;
  }

  .section-3 .mail-form {
    display: none !important;
  }
  .section-3 .section3-inner-paragraph {
  text-align: left;
}
.section-3 .section3-content-inner{
  display: flex;
  justify-content: left;
  align-items: left;
}
}

@media(max-width: 767px) {
    .section-4 form .submitBtn {
        background-color: black;
        color: white;
        border: none !important;
        box-shadow: none !important;
        font-size: 18px;
        padding: 10px 134px;
    }

  .container {
    padding: 0 1rem;
  }

  .bannerdiv-paragraph p {
    font-size: 22px;
    line-height: 32px;
  }

  .bannerdiv img {
    min-width: 318px;
    min-height: 110px;
    margin: 0 auto;
  } 

  /* .bannerdiv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  } */

  .arrow-button {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .Copyright {
    font-size: 14px;
    text-align: center;
    position: relative;
    top: -40px;
  }

  .mobile-unset {
    position: unset !important;
  }

  .mail-form {
    width: 50px;
    height: 50px;
  }

  /* .snap-section {
     padding-top: 25px !important;
   } */

  .bannerdiv-paragraph p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
  }

  .section-1 .gap-5 {
    gap: 20px !important;
  }

  .mail-form img.img-fluid {
    width: 25px;
    height: 25px;
    aspect-ratio: 1/1;
  }

  .snap-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .section-2 {
    padding-top: 60px !important;
  }

  .mob-hide {
    padding-bottom: 15px !important;
    margin-top: 15px !important;
  }

  .snap-section .pt-5 {
    padding-top: 20px !important;
    gap: 25px !important;
  }

  .bannerdiv-paragraph {
    width: 100%;
  }

  .leadership-tab {
    display: flex;
    width: 100%;
  }

  .leadership-tab .leadership-span {
    width: auto;
    height: 41px;
  }

  .section-2 .section2-paragraph {
    font-size: 20px;
    line-height: 1.4;
  }

  p.section2-inner-paragraph {
    margin-bottom: 10px;
    margin-top: 15px;
    font-size: 16px !important;
  }

  p.section2-last-paragraph {
    padding-bottom: 20px;
  }

  .detail-div.mt-4 {
    margin-top: 0px !important;
  }

  p.section2-inner-paragraph+small {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-4 .gap-3 {
    gap: 0 !important;
  }

  .section-3 .bannerdiv+.align-items-end {
    align-items: center !important;
    justify-content: center !important;
  }

  .section-3 .section3-inner-paragraph {
    line-height: 16px;
  }

  .section-4 .pt-5,
  .section-4 {
    padding-top: 55px !important;
  }

  .section-4 .form-contact-number {
    font-size: 30px;
    line-height: 1.4;
  }

  form.mt-5 {
    margin-top: 0px !important;
  }

  .section-4 form label {
    font-size: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-weight: 400;
  }

  .section-4 form .submitBtn {
        background-color: black;
        color: white;
        border: none !important;
        box-shadow: none !important;
        font-size: 18px;
        padding: 10px 134px;
    }

  .section-4 form .submitBtn-div {
    text-align: center;
  }

  .mobile-mail-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 9999;
    cursor: pointer;
  }

  .mobile-mail-icon img {
    width: 100%;
    height: auto;
  }



  .half-width-offcanvas {
    width: 60% !important;
  }

  .small-envelope-icon {
    display: flex;
  }

  .section-1 .bannerdiv-main-section {
    margin-bottom: 148px !important;
  }

  .section-2 .leadership-img-div {
    max-height: 55vh;
    display: flex;
  }

  .section-1 .mob-hide,
  .section-2 .mob-hide {
    display: none;
  }

  .section-3 .Copyright {
    left: 0% !important;
    margin-top: 90px;
  }
  .section-4 .form-div-arrow{
    display: none!important;
  }
.leadership-img-div img{
max-width: 280px!important;
max-height: 380px!important;
}
}