/*======================
   01. Theme Base CSS
=========================*/
html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  color: #03243c;
  font-size: 16px;
  letter-spacing: 0.26px;
  font-weight: 400;
  background: #f0fbf4;
  height: unset;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  height: 100vh;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  background: #4cb648;
  background: linear-gradient(45deg, #f9fff9 0%, #e7f5ff 100%);
  z-index: -1;
}

section {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container-fluid {
  padding: 0px;
  height: 100%;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 15px;
}

* {
  box-sizing: border-box;
}

p,
tr td {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.26px;
  line-height: 28px;
  color: #03243c;
  margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  color: #4cb648;
  font-size: 28px;
  font-weight: 500;
}

a {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  display: block;
  margin: 0px;
  color: #03243c;
  font-weight: 500;
  text-transform: capitalize;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
  color: none !important;
}

button {
  cursor: pointer;
  background: transparent;
  border: 0px;
  outline: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

section {
  position: relative;
}

dialog,
figure,
figcaption {
  margin: 0px;
  border: 0px;
  padding: 0px;
  position: relative;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

li {
  display: inline-block;
}

.section_title {
  text-transform: capitalize;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  width: 100%;
  font-size: 38px;
  line-height: 52px;
  font-weight: 700;
  margin-bottom: 40px;
}

.o_zero {
  opacity: 0;
}

.d_none {
  display: none;
}

.color_one {
  color: #17b0c3;
}

.bold_p {
  font-weight: 700;
}

header {
  padding: 15px 40px;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  background: rgb(255, 255, 255);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
header button.menu-button {
  display: none;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: sticky 1s 1;
}
@keyframes sticky {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
header .header_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_area .navmenu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .header_area .navmenu ul li {
  display: inline-block;
  padding: 0px 5px;
  position: relative;
  /* Dropdown style */
  /* Show dropdown on hover */
  /* Show dropdown on click (JS will add this class) */
}
header .header_area .navmenu ul li a {
  padding: 10px 5px;
}
header .header_area .navmenu ul li a i {
  font-size: 26px;
  vertical-align: middle;
  color: #006bb5;
}
header .header_area .navmenu ul li a.dropdown_link i {
  font-size: 14px;
  color: #03243c;
  transition: all 0.2s ease-in-out;
}
header .header_area .navmenu ul li a.dropdown_link:hover i {
  transform: rotate(180deg);
  transition: all 0.2s ease-in-out;
}
header .header_area .navmenu ul li.dropdown-item.active a i {
  transform: rotate(180deg);
  transition: all 0.2s ease-in-out;
}
header .header_area .navmenu ul li.dropdown-item .dropdown {
  visibility: hidden;
  position: absolute;
  top: calc(100% + 30px);
  opacity: 0;
  left: 0;
  background: rgb(255, 255, 255);
  min-width: 260px;
  z-index: 1000;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  transition: all 0.2s ease-in-out;
}
header .header_area .navmenu ul li.dropdown-item .dropdown li {
  padding: 0;
  display: block;
  border-bottom: 1px solid #e9eaee;
}
header .header_area .navmenu ul li.dropdown-item .dropdown li a {
  padding: 12px 10px;
  color: #03243c;
  display: block;
}
header .header_area .navmenu ul li.dropdown-item:hover .dropdown, header .header_area .navmenu ul li.dropdown-item.active .dropdown {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}
header .header_area .navmenu ul li.dropdown-item:hover .dropdown li a, header .header_area .navmenu ul li.dropdown-item.active .dropdown li a {
  transition: all 0.2s ease-in-out;
  display: block;
}
header .header_area .navmenu ul li.dropdown-item:hover .dropdown li a:hover, header .header_area .navmenu ul li.dropdown-item.active .dropdown li a:hover {
  background: #41a13e;
  color: rgb(255, 255, 255);
  transition: all 0.2s ease-in-out;
}
header .header_area .navmenu ul li .show-dropdown {
  display: block !important;
}
header .header_area .navmenu .phone {
  margin-left: 20px;
}
header .header_area .navmenu .phone a {
  background: linear-gradient(45deg, #4cb648 0%, #006bb5 100%);
  padding: 12px 25px;
  color: rgb(255, 255, 255);
  border-radius: 5px;
}

.banner {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  padding-top: 230px;
  background: url("../images/flags-bg.jpg");
  background-size: cover;
  background-position: right center;
  z-index: 2;
}
.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #41a13e;
  background: linear-gradient(90deg, rgba(0, 107, 181, 0.6) 0%, rgba(255, 255, 255, 0) 95%);
  z-index: -1;
}
.banner .banner_area {
  display: flex;
}
.banner .banner_area .banner_content {
  flex: 1;
}
.banner .banner_area .banner_content h1 {
  font-size: 72px;
  line-height: 80px;
  color: rgb(255, 255, 255);
}
.banner .banner_area .banner_content p {
  font-size: 18px;
  line-height: 30px;
  color: rgb(255, 255, 255);
  margin: 20px 0;
}
.banner .banner_area .banner_blank {
  flex: 1;
}

.btn {
  margin-top: 15px 0;
}
.btn a {
  display: inline-block;
  background: #41a13e;
  padding: 14px 35px;
  font-size: 18px;
  border-radius: 5px;
  color: rgb(255, 255, 255);
  transition: all 0.2s ease-in-out;
}
.btn a:hover {
  background: #006bb5;
  transition: all 0.2s ease-in-out;
}

.insurance {
  padding: 100px 0;
}
.insurance .insurance_area {
  display: flex;
  gap: 30px;
}
.insurance .insurance_area .in_item {
  flex: 1;
  border-radius: 10px;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  border: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.insurance .insurance_area .in_item:hover {
  background: rgb(255, 255, 255);
  transition: all 0.2s ease-in-out;
}
.insurance .insurance_area .in_item .in_img img {
  height: 270px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #e9eaee;
}
.insurance .insurance_area .in_item .item_content {
  padding: 20px;
}
.insurance .insurance_area .in_item .item_content h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.big_title {
  padding: 70px 0px 50px;
}
.big_title h1 {
  text-transform: uppercase;
  font-size: 42px;
  line-height: 55px;
  text-align: center;
  color: #006bb5;
}

.who {
  background: rgb(255, 255, 255);
}
.who .who_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.who .who_area .who_content {
  padding: 100px 0;
  flex: 1;
}
.who .who_area .who_content h2 {
  font-size: 36px;
  margin-bottom: 25px;
}
.who .who_area .who_content p {
  font-size: 17px;
  line-height: 30px;
}
.who .who_area .who_content .btn {
  margin-top: 20px;
}
.who .who_area .who_img {
  flex: 1;
  text-align: right;
  max-height: 600px;
}
.who .who_area .who_img img {
  max-height: 600px;
}

.title h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
}

.process {
  padding: 100px 0;
}
.process .process_area {
  display: flex;
  gap: 20px;
  margin-top: 100px;
}
.process .process_area .process_item {
  border-radius: 10px;
  background: linear-gradient(45deg, #4cb648 0%, #006bb5 100%);
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  flex: 1;
}
.process .process_area .process_item .p_num {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100px;
  left: 50%;
  margin-top: -50px;
  position: relative;
  transform: translate(-50%, 0);
  background: #41a13e;
  overflow: hidden;
}
.process .process_area .process_item .p_num h5 {
  width: 100px;
  height: 100px;
  font-size: 50px;
  border-radius: 100px;
  color: rgb(255, 255, 255);
  border: 1px solid #41a13e;
  box-shadow: inset 0 0 0 10px white;
  text-align: center;
  margin-bottom: 0;
}
.process .process_area .process_item .p_content {
  padding: 20px;
}
.process .process_area .process_item .p_content h3 {
  font-size: 24px;
  color: rgb(255, 255, 255);
}
.process .process_area .process_item .p_content p {
  color: rgb(255, 255, 255);
}

.who.why .big_title {
  margin-bottom: 0px;
}
.who.why .who_area .who_img {
  text-align: left;
  flex: unset;
  max-height: 750px;
}
.who.why .who_area .who_img img {
  height: auto;
  max-height: 750px;
}
.who.why .who_area .who_content {
  padding-left: 50px;
  padding-top: 0;
}
.who.why .who_area .who_content .why_inner {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.who.why .who_area .who_content .why_inner .why_item {
  background: rgb(255, 255, 255);
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
.who.why .who_area .who_content .why_inner .why_item:hover {
  background: #006bb5;
  transition: all 0.2s ease-in-out;
}
.who.why .who_area .who_content .why_inner .why_item:hover h3,
.who.why .who_area .who_content .why_inner .why_item:hover p {
  color: rgb(255, 255, 255);
  transition: all 0.2s ease-in-out;
}
.who.why .who_area .btn {
  text-align: center;
  margin-top: 40px;
}

.offer {
  padding: 100px 0;
}
.offer .offer_area {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
.offer .offer_area .offer_item {
  background: linear-gradient(45deg, #4cb648 0%, #006bb5 100%);
  flex: 1;
  padding: 20px 15px;
  border-radius: 8px;
}
.offer .offer_area .offer_item h4 {
  font-size: 22px;
  min-height: 58px;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer .btn {
  margin-top: 40px;
  text-align: center;
}
.offer .btn a {
  background: #006bb5;
}
.offer .btn a:hover {
  background: #41a13e;
}

.serve {
  padding: 100px 0;
}
.serve .serve_area {
  display: flex;
  gap: 40px;
  align-items: center;
}
.serve .serve_area .serve_content {
  flex: 1;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.serve .serve_area .serve_content .serve_item {
  flex: 1;
  background: rgb(255, 255, 255);
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  border-radius: 100px;
  padding: 15px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.serve .serve_area .serve_content .serve_item .icon {
  width: 80px;
  height: 80px;
  background: #006bb5;
  border-radius: 50px;
  line-height: 80px;
  text-align: center;
}
.serve .serve_area .serve_content .serve_item .icon i {
  color: rgb(255, 255, 255);
  font-size: 30px;
  vertical-align: middle;
  width: 100%;
}
.serve .serve_area .serve_content .serve_item p {
  flex: 1;
  padding-right: 20px;
}
.serve .serve_area .serve_img img {
  border-radius: 10px;
}

.company {
  background: rgb(255, 255, 255);
  padding: 100px 0;
}
.company .splide__slide {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.company .splide__slide .splide__slide__container img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
.company .splide__arrow {
  background: #41a13e;
  width: 30px;
  height: 30px;
}
.company .splide__arrow svg {
  fill: rgb(255, 255, 255);
}
.company .splide__arrow--prev {
  position: absolute;
  left: 100px;
}
.company .splide__arrow--next {
  position: absolute;
  right: 100px;
}

.review {
  padding: 100px 0;
}
.review .ti-widget[data-layout-id="13"][data-set-id=light-background] .ti-verified-by-row[data-style="1"] > .ti-inner,
.review .ti-widget[data-layout-id="13"][data-set-id=light-background] .ti-verified-review {
  display: none;
}
.review .ti-widget[data-layout-id="13"][data-set-id=light-background] .ti-review-item > .ti-inner {
  background: rgb(255, 255, 255) !important;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.12);
  border-radius: 10px !important;
}

footer {
  padding: 100px 0;
  background: #006bb5;
}
footer .footer_item {
  text-align: center;
}
footer .footer_item h3 {
  font-size: 26px;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}
footer .footer_item ul li {
  padding: 5px 10px;
}
footer .footer_item ul li a {
  color: rgb(255, 255, 255);
}
footer .footer_item .icon {
  color: rgb(255, 255, 255);
  font-size: 22px;
  margin-top: 20px;
}

#scrollBtn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(255, 255, 255);
  background: linear-gradient(45deg, #4cb648 0%, #006bb5 100%);
  border-radius: 50px;
}
#scrollBtn i {
  font-size: 18px;
  color: rgb(255, 255, 255);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7fff6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.2s ease-in-out;
}

.preloader__spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  border: 4px solid #006bb5;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.preloader__spinner:nth-child(2) {
  width: 60px;
  height: 60px;
  animation-delay: 0.5s;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
/* Hide preloader when it is not active */
.preloader:not(.active) {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}/*# sourceMappingURL=style.css.map */