@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

html,
body {
  margin: 0px;
  height: 100%;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #006380 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

.bg-blue {
  background-color: #006380;
}


/* Button CSS */
.hover-btn{
  margin-top: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 16px;
  border-radius: 999px;
  border: 2px solid #006380 !important;
  font-family: system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  background: #006380;
  overflow: hidden;
  z-index: 0;
}

/* background fill animation */
.hover-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s ease;
  z-index: -1;
}

.hover-btn:hover::before{
  transform: scaleX(1);
}

.hover-btn span {
  position: relative;
  z-index: 1;
  transition: color .35s ease;
}

.hover-btn__icon,
.hover-btn1 .hover-btn__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #006380;
  transition: background .35s ease, color .35s ease, transform .35s ease;
  z-index: 1;
  display: none;
}

.hover-btn:hover span {
  color: #006380;
}

.hover-btn:hover .hover-btn__icon {
  background: #006380;
  color: #fff;
  transform: translateX(0) rotate(-35deg);
}

.hover-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}



.white-hover-btn.hover-btn {
  background: #fff;
  color: #006380;
}

.white-hover-btn .hover-btn__icon {
  color: #fff;
  background: #006380;
}


.white-hover-btn.hover-btn:hover,
.white-hover-btn.hover-btn::before {
  color: #fff;
  background: transparent;
  border-color: #fff !important;
}

.white-hover-btn.hover-btn:hover span {
  color: #fff;
}

.white-hover-btn.hover-btn:hover .hover-btn__icon {
  background: #fff;
  color: #006380;
}

/* White button */
.hover-btn.white {
  color: #006380;
  background: #fff;
  border: 2px solid #fff !important;
}

.hover-btn.white::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #006380;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s ease;
  z-index: -1;
}

.hover-btn.white:hover::before {
  transform: scaleX(1);
}

.hover-btn.white .hover-btn__icon {
  background: #006380;
  color: #fff;
}

.hover-btn.white:hover span {
  color: #fff;
}

.hover-btn.white:hover .hover-btn__icon {
  background: #fff;
  color: #006380;
  transform: translateX(2px) rotate(-35deg);
}


.btn-download {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 24px;
border-radius: 999px;
font-family: system-ui, sans-serif;
font-size: 16px;
font-weight: 500;
border: none;
cursor: pointer;
color: #fff;
background: #006380; /* base color */
overflow: hidden;
z-index: 0;
transition: color .35s ease;
}

/* background fill animation */
.btn-download::before {
content: "";
position: absolute;
inset: 0;
background: #fff;
border-radius: inherit;
transform: scaleX(0);
transform-origin: right center;
transition: transform .35s ease;
z-index: -1;
}

.btn-download:hover::before {
transform: scaleX(1);
}

.btn-download:hover {
color: #006380;
}


/* Button Css */

body .container {
  max-width: 100%;
  width: 85%;
}

/* section css */

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  vertical-align: middle;
  color: #016481;
  margin-bottom: 25px;
}

.section-para {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  vertical-align: middle;
  color: #757577;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* section css */


/* Scroll animation style */
.section-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.appear {
  opacity: 1;
  transform: translateY(0);
}

/* You can customize globally */
[data-aos="fade-left"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"] {
  transform: translateX(50px);
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-down"] {
  transform: translateY(-50px);
}


/* Scroll animation style */


/* Mail error & success css */
.message {
  display: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: bold;
}

.message.success {
  color: #28a745;
  display: block;
}

.message.error {
  color: #dc3545;
  display: block;
}

/* Mail error & success css */


.division-filter-section .arrow {
    background: #f8fafa;
}

.division-filter-section .top-corner, 
.division-filter-section .bottom-corner {
    background-color: #f8fafa;
    background: #f8fafa;
}


@media (max-width:1025px) {
  .section-title {
    font-size: 30px;
  }

  .section-para {
    font-size: 15px;
  }
}

@media (max-width:600px) {
  .section-title {
    font-size: 22px;
  }

  .section-para {
    font-size: 14px;
  }

  body .container {
    margin: auto;
  }
}