* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #f0f0f0;

  font-family: "Raleway", Arial, Helvetica, sans-serif;
  font-size: 14px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased !important;
}

/* HEADER 1 */
.header1 {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 3px solid #c3c1c1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 9rem;
  z-index: 999;
  transition: background-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.header1.fixed {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 1px 7px 14px -3px rgba(0, 0, 0, 0.6);
  transition: background-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.header1 ul {
  width: 60%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header1 .logo {
  width: 30%;
  display: flex;
  justify-content: center;

  align-items: center;
}
.header1 .logo img {
  max-width: 90%;
}
.header1 ul .fa-house {
  color: #005b7f;
  font-size: 1.3rem;
}
.header1 ul .fa-house:hover {
  color: #ffffff;
}
.header1 li a {
  text-decoration: none;
  color: #000e00;
  font-weight: 500;
  font-size: 1.1em;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin: 0 1rem;
}
.header1 ul li {
  width: 15%;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in;
  position: relative;
}
.header1 li .line {
  position: absolute;
  left: 10px;
  bottom: -10px;
  background-color: #0652dd;
  width: 0; /* Initial width set to 0 */
  height: 5px;
  transition: all 0.4s ease-in;
  cursor: pointer;
  z-index: 9;
}

.header1 #navbar li:hover .line {
  width: 80%;
}

.header1 img {
  width: 70%;
  height: auto;
  cursor: pointer;
}

/* MAIN 1 */
.main {
  width: 100%;
  color: #fff;
  background: rgb(74, 132, 241);
  font-weight: 100;
  padding: 60px 9% 10% 9%;
  box-sizing: border-box;
  font-family: monospace;
  cursor: pointer;
}

.main .sectn_title {
  width: 100%;
  margin: 2rem;
  text-align: center;
}

.main .sectn_title .title {
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.main .sectn_title .sub_title {
  color: rgb(169, 164, 164);
  font-size: 1.3em;
}

.main .boxes-wrapper {
  margin-top: 4rem;
  width: 100%;
  padding: 1rem 1rem;
  text-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}

.main .boxes-wrapper .box {
  width: calc(80% / 3);
  height: 150px;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.4rem;
  color: rgb(36, 36, 36);
  box-shadow: -3px 9px 5px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -3px 9px 22px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -3px 9px 5px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.8 ease-in;
}

.main .box .title {
  font-size: 1.5rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1rem;
}

.main .explore {
  cursor: pointer;
  transition: all 0.3s ease-in;
  /* padding: 0.5rem; */
  border-radius: 5px;
}
.main .explore a {
  text-decoration: none;
  color: rgb(36, 36, 36);
  font-size: 1.3em;
}

/* BOX SCROLL TO VIEW */
.main .box.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s ease-in-out;
}
.main .box.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition: all 1s ease-in-out;
}
.main .box:nth-child(2) {
  transition-delay: 200ms;
}
.main .box:nth-child(3) {
  transition-delay: 400ms;
}
/* BOX ZOOM */

.main .box:hover,
.main .box:focus {
  transform: scale(1.2);
  transition: 0.8s ease-in;
  z-index: 10;
  background-color: #0652dd;
  color: #fff;
}
/*  */
/*  */
/* MAIN 2 */
.main2 {
  margin: 0 0 7rem 0;
  max-width: 100%;
  height: 400px;
  background: #0652dd url(../../images/slider_img/counter-bg.png) no-repeat 0 0;
  background-size: cover;
  font-weight: 700;
  padding: 3rem 20rem;
  box-sizing: border-box;
  font-family: monospace;
  color: #ececec;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main2 .counter {
  font-size: 3rem;
}
.main2 p {
  font-size: 1.3rem;
}
.main2 .sub-title {
  display: block;
  margin-top: -15px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 200;
  margin-bottom: 2.5rem;
}

.main2 .desc {
  width: 80%;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 2px;
}

.main2 .more {
  width: 15%;
  font-size: 1.2em;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 2rem;
  background-color: #005b7f;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
.main2 .more:hover {
  background-color: #004e6d;
}
.main2 .tax_box .icon-container {
  width: 20%;
  margin: 0 auto;
  margin-right: 15px;
}
.main2 .tax_box .icon {
  width: 60px;
  height: 60px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.main2 .tax_box .icon i {
  color: green;
  font-size: 1.3rem;
}
.main2 .tax_box {
  width: 60%;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin: 2em auto;
}
.main2 .tax_box .tax_title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

/* MAIN 3 */
.main3 {
  margin: 2rem 0 1rem 0;
  max-width: 100%;
  padding: 0 11rem;
  box-sizing: border-box;
}
.main3 .main3_header {
  max-width: 100%;
  text-align: center;
}
.main3 .main3_header h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
.main3 .main3_header p {
  font-size: 1.5rem;
  margin-top: 2.5rem;
}

/* MAIN 4 */
.main4 {
  margin: 2rem 0;
  width: 100%;
  text-align: center;
  padding: 1rem 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}

.slider-section {
  overflow: hidden;
  width: 100%;
  margin: 20px auto;
}

.slide3 .box-win {
  padding: 2% 10%;
  height: auto;
  margin-right: 5%;
  display: flex;
  align-items: start;
  margin-bottom: 24px;
  border-radius: 50px;
  background-color: rgb(74, 132, 241);
  -webkit-transition: all 0.5s ease;
  transition: all 0.6s ease;
  color: #fff;
  cursor: pointer;
}
/*  */
.slides-box {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide3 {
  flex: 0 0 100%;
}

img {
  margin-top: 2%;
  margin-bottom: 2%;
  width: 25%;
}
.btn-wrapper {
  width: 100%;
  text-align: center;
}
.prevBtn-box,
.nextBtn-box {
  cursor: pointer;
  padding: 10px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #0652dd;
  color: #fff;
  font-weight: bold;
  margin: 0 5px;
}
.main4 .box .desc {
  margin: 0 auto 2.5rem auto;
  width: 40%;
  font-size: 1em;
}

/*FOOTER */
.footer {
  width: 100%;
  background: #3e4551;
  padding: 2rem 10rem;
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 10%;
}
.footer .footer-decs {
  margin-top: 5%;
  width: 70%;
  font-size: 1.1em;
}
.address *,
.about_us * {
  color: #ececec;
}

.footer .about_us {
  flex-basis: 30%;
  align-items: start;
}
.footer .address-wrapper {
  flex-basis: 35%;
  align-items: start;
}

.footer .address-wrapper ul {
  margin-top: 3%;
}

.footer .footer-links h6 {
  color: #ffffff;

  font-size: 1.2em;
}
.footer .footer-links a {
  text-decoration: none;
  color: #e1dbdb;
  display: block;
  font-size: 1em;
  margin-bottom: 10px;
  transition: all 0.3s ease-in;
}

.footer .footer-links a:hover {
  color: #0652dd;
}

.footer .line {
  background-color: #0652dd;
  width: 100px; /* Initial width set to 0 */
  height: 5px;
  transition: all 0.4s ease-in;
  cursor: pointer;
  z-index: 9;
  margin: 0px 0px 8% 0px;
}
.footer #footer-navbar {
  padding-top: 20%;
}
.footer #footer-navbar li {
  list-style: none;
}
.footer .cir {
  width: 50px;
  height: 50px;
  border: 1.5px solid #0652dd;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 1em 1em;
}

.footer .cir a {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  margin-top: 5px;
}
.footer .cir i {
  font-size: 1.2em;
  transition: all 0.3s ease-in;
}

.footer h4 {
  color: #ff9;
  font-size: 1.5em;
  line-height: 1.2;
  margin-left: 10px;
}
.footer-links p {
  color: #e1dbdb;
}
.footer h4 i {
  margin-right: 0.6em;
  font-size: 0.8em;
}
.footer .time {
  color: #ffffff;
  font-size: 0.8em;
}

.footer .copy {
  width: 100%;
  text-align: center;
  padding: 0.9em;
  background: rgb(55, 56, 59);

  color: #ffffff;
}

/* MOBILE */
.mobile {
  display: none;
}
