/* Variables
======================*/
/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: #c69a1b !important;
  color: #fff !important;
}

::-webkit-scrollbar {
  background-color: #1d336c;
  width: 10px;
  height: 5px;
  opacity: 1;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

::-webkit-scrollbar-track {
  background-color: #1d336c;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

::-webkit-scrollbar-thumb {
  background: #c69a1b;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

body {
  font-family: "Cabinet Grotesk", sans-serif;
  overflow: hidden;
  width: 100%;
  font-weight: normal;
  position: relative;
  text-align: start;
  background-color: #ffffff;
  color: #0d1a10;
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Cursor
=========================*/
.cursor {
  z-index: 9999;
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: #c69a1b;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  pointer-events: none;
  -webkit-transition: 0.3s, none, linear;
  -moz-transition: 0.3s, none, linear;
  -ms-transition: 0.3s, none, linear;
  -o-transition: 0.3s, none, linear;
  transition: 0.3s, none, linear;
  transition-property: background-color, width, height;
}
@media (max-width: 991px) {
  .cursor {
    display: none !important;
  }
}

/* Main Button
=======================*/
.main_btn {
  color: #ffffff;
  background-color: #c69a1b;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  line-height: 50px;
  padding: 0 16px;
  border: 0;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding-inline-end: 12px;
}
.main_btn i {
  margin-inline-start: 8px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ffffff;
  color: #c69a1b;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
}
.main_btn:hover {
  background-color: #1d336c;
  color: #ffffff;
}
.main_btn:hover i {
  color: #1d336c;
}

/* Section
======================*/
section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 991px) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  section {
    padding: 25px 0;
  }
}

.section_title {
  position: relative;
  line-height: 30px;
  margin: 0 0 50px;
}
.section_title h3 {
  font-size: 38px;
  color: #1d336c;
  font-weight: 900;
  margin: 0;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.section_title p {
  color: #0d1a10;
  display: block;
  font-size: 20px;
  margin: 16px 0 0;
}
@media (max-width: 575px) {
  .section_title h3 {
    font-size: 24px;
  }
  .section_title p {
    font-size: 14px;
    line-height: 20px;
  }
}

.preloader {
  position: fixed;
  z-index: 999999;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader .lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader .lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.preloader .lds-spinner div::after {
  content: " ";
  display: block;
  position: absolute;
  top: 5px;
  left: 35px;
  width: 5px;
  height: 20px;
  border-radius: 20%;
  background: #1d336c;
}

.preloader .lds-spinner div:nth-child(1) {
  transform: rotate(0);
  animation-delay: -1.1s;
}

.preloader .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.preloader .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.preloader .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.preloader .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.preloader .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.preloader .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.preloader .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.preloader .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.preloader .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.preloader .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.preloader .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Header
==========================*/
header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  min-height: 80px;
  margin: auto;
  width: 100%;
  max-width: 1140px;
  z-index: 9998;
  padding: 15px 0;
  background-color: #ffffff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
}
@media (max-width: 991px) {
  header {
    top: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    min-width: 100%;
    background-color: #ffffff;
  }
}
header.move {
  top: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  min-width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
header .logo {
  z-index: 9998;
  color: #1d336c;
  font-size: 20px;
  line-height: 50px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  header .logo {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
header .logo img {
  margin: 0;
  min-width: 40px;
  height: 40px;
  object-fit: contain;
  margin-inline-end: 8px;
}
header .btns {
  z-index: 9998;
}
header .btns .main_btn {
  padding-inline-end: 12px;
}
header .btns .main_btn i {
  margin-inline-start: 8px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 575px) {
  header .btns .main_btn {
    padding: 0;
    width: 50px;
    text-align: center;
  }
  header .btns .main_btn i {
    margin: auto;
  }
  header .btns .main_btn span {
    display: none;
  }
}
header .btns .menu_btn {
  padding: 0;
  border: 0;
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  display: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #1d336c;
  margin-inline-start: 10px;
}
@media (max-width: 991px) {
  header .btns .menu_btn {
    display: inline-block;
  }
}
header .navbar {
  min-height: 50px;
  width: 100%;
  margin: -50px auto auto;
  padding: 0;
}
header .navbar ul a {
  line-height: 40px;
  font-size: 16px;
  color: #0d1a10;
  margin: 0 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
}
header .navbar ul a:hover, header .navbar ul a.active {
  color: #c69a1b;
}
@media (max-width: 991px) {
  header .navbar {
    margin: 0;
    background-color: #1d336c;
    height: 100%;
    min-height: auto;
    max-height: 440px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
  header .navbar ul {
    display: block !important;
    text-align: start;
    padding: 15px 40px;
  }
  header .navbar ul li {
    display: block;
  }
  header .navbar ul li a {
    margin: 0;
    color: #ffffff;
  }
}

.page_head {
  background: url(../images/hero.png) no-repeat center top;
  background-size: cover;
  position: relative;
  padding: 190px 0 70px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .page_head {
    padding: 120px 0 30px;
    background-position: center center;
  }
}
@media (max-width: 575px) {
  .page_head {
    padding: 100px 0 20px;
    background-position: center center;
  }
}
.page_head h3 {
  color: #ffffff;
  font-weight: 900;
  margin: 0 0 15px;
  font-size: 36px;
  text-transform: capitalize;
}
.page_head li {
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
}
.page_head a {
  display: inline-block;
  color: #c69a1b;
  padding-inline-end: 10px;
  margin-inline-end: 10px;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.page_head a::before {
  content: "";
  position: absolute;
  inset-inline-end: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
}

/* Forms
========================*/
.form-group {
  position: relative;
  margin-bottom: 25px;
  text-align: start;
}

label {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 10px;
  text-align: start;
  color: #0d1a10;
}
label.big {
  margin-bottom: 15px;
  font-size: 18px;
}

sup {
  color: #1d336c;
}

.form-control {
  text-align: start;
  width: 100%;
  color: #0d1a10 !important;
  background-color: #ffffff;
  border: 1px solid rgba(13, 26, 16, 0.2);
  margin: 0;
  padding: 0 25px;
  line-height: 50px;
  height: 50px;
  font-size: 16px;
  outline: 0;
  font-weight: normal;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.form-control:hover, .form-control:focus {
  outline: 0;
  background-color: #ffffff;
  border: 1px solid rgba(13, 26, 16, 0.2);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  resize: none;
  min-height: 140px !important;
  padding: 15px !important;
  line-height: 25px;
}

.main {
  position: relative;
  height: 100vh;
  padding: 140px 0;
}
@media (max-width: 767px) {
  .main {
    height: auto;
  }
}
@media (max-width: 575px) {
  .main {
    padding: 110px 0;
  }
}
.main::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 100%;
  height: 100%;
  background: url(../images/hero.png) no-repeat center;
  background-size: cover;
  margin: auto;
  z-index: -1;
}
.main .container-fluid {
  position: relative;
}
.main ul {
  margin: 32px auto 0;
  width: 100%;
  max-width: 768px;
}
@media (max-width: 575px) {
  .main ul {
    display: none !important;
  }
}
.main ul li {
  min-width: 25%;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  color: #ffffff;
}
@media (max-width: 767px) {
  .main ul li {
    letter-spacing: 1px;
    font-size: 18px;
  }
}

.intro {
  position: relative;
  z-index: 99;
}
.intro h1 {
  font-weight: 900;
  font-size: 72px;
  line-height: 70px;
  color: #ffffff;
  margin: 0 auto;
  letter-spacing: 2px;
  text-transform: capitalize;
}
.intro h2 {
  font-size: 52px;
  line-height: 38px;
  margin: 32px auto 0;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}
.intro p {
  margin: 32px auto 0;
  font-size: 28px;
  line-height: 38px;
  color: #ffffff;
}
.intro .main_btn {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .intro h1 {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: 1px;
  }
  .intro h2 {
    font-size: 38px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .intro h1 {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;
  }
  .intro h2 {
    font-size: 22px;
    margin-top: 16px;
  }
  .intro p {
    margin: 16px auto 0;
    font-size: 18px;
    line-height: 28px;
  }
  .intro .main_btn {
    margin-top: 16px;
  }
}

.scroll-btn {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  color: #ffffff;
  text-transform: capitalize;
  font-size: 16px;
  width: 110px;
  height: 20px;
  text-align: center;
  letter-spacing: 1px;
}
.scroll-btn:hover {
  color: #ffffff;
}
.scroll-btn::before, .scroll-btn::after {
  content: " ";
  height: 40px;
  width: 12px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  margin: auto;
  opacity: 25%;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.scroll-btn::after {
  opacity: 1;
  height: 20px;
  width: 4px;
  top: 0;
  animation: move 1s ease-in-out alternate infinite;
}

@-webkit-keyframes move {
  0% {
    top: -45px;
  }
  100% {
    top: -35px;
  }
}
@keyframes move {
  0% {
    top: -45px;
  }
  100% {
    top: -35px;
  }
}
.about_img {
  width: 100%;
  height: 570px;
  background: #1d336c;
  -webkit-border-radius: 260px;
  -moz-border-radius: 260px;
  border-radius: 260px;
  overflow: hidden;
  margin: auto;
  padding: 32px 0px 0;
}
.about_img::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 260px;
  height: 100px;
  background: url(../images/dots.png) no-repeat center;
  margin: auto;
  z-index: 99;
}
.about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 998;
}
@media (max-width: 991px) {
  .about_img {
    max-width: 420px;
    margin-bottom: 32px;
  }
}
@media (max-width: 575px) {
  .about_img {
    max-width: 220px;
    height: 270px;
  }
  .about_img::before {
    display: none;
  }
}

.about_content {
  padding-inline-start: 32px;
}
.about_content h3 {
  font-size: 42px;
  line-height: 38px;
  margin: 16px auto 0;
  letter-spacing: 1px;
  color: #1d336c;
  font-weight: bold;
  text-transform: capitalize;
}
.about_content p {
  margin: 16px auto 0;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.5px;
}
.about_content .main_btn {
  margin-top: 32px;
}
.about_content span {
  font-weight: bold;
  color: #c69a1b;
  font-size: 24px;
  display: block;
}
@media (max-width: 575px) {
  .about_content h3 {
    font-size: 28px;
    line-height: 30px;
  }
  .about_content p {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0;
  }
  .about_content .main_btn {
    margin-top: 16px;
  }
  .about_content span {
    font-size: 16px;
  }
}

.features {
  background-color: #f6f6f6;
}

.feature_item {
  padding: 28px;
  background-color: #ffffff;
  text-align: center;
  width: 33.33%;
}
.feature_item .icon {
  width: 124px;
  height: 124px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 16px;
  background-color: rgba(29, 51, 108, 0.1);
}
.feature_item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature_item h3 {
  color: #1d336c;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 32px;
  margin: 24px auto;
  letter-spacing: 1px;
}
.feature_item p {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  text-align: justify;
}
.feature_item:nth-child(2) {
  background-color: #c69a1b;
  -webkit-border-radius: 50px 50px 0 0;
  -moz-border-radius: 50px 50px 0 0;
  border-radius: 50px 50px 0 0;
  padding-top: 48px;
}
.feature_item:nth-child(2) h3,
.feature_item:nth-child(2) p {
  color: #ffffff;
}
.feature_item:nth-child(2) .icon {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 575px) {
  .feature_item {
    padding: 16px;
  }
  .feature_item h3 {
    font-size: 18px;
    line-height: 25px;
    margin: 16px auto;
    letter-spacing: 0;
  }
  .feature_item p {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .features_list {
    flex-direction: column;
  }
  .features_list .feature_item {
    width: 100%;
  }
  .features_list .feature_item p {
    text-align: center;
  }
  .features_list .feature_item:nth-child(2) {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
}

.principle_img {
  margin: 24px auto;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

.principle_item {
  margin: 24px auto;
}
.principle_item h3 {
  color: #1d336c;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 36px;
  line-height: 35px;
  margin: 24px auto;
  letter-spacing: 1px;
}
.principle_item p {
  margin: 0;
  font-size: 24px;
  line-height: 35px;
  text-align: justify;
}
@media (max-width: 575px) {
  .principle_item h3 {
    font-size: 28px;
    line-height: 30px;
    margin: 16px auto;
  }
  .principle_item p {
    font-size: 16px;
    line-height: 25px;
  }
}

.row-reverse {
  flex-direction: row-reverse;
}

.hero_section {
  background-color: #1d336c;
}
.hero_section img {
  width: 50%;
  height: 610px;
  object-fit: cover;
}
.hero_section .hero_content {
  width: 50%;
  padding: 100px 70px;
}
@media (max-width: 1279px) {
  .hero_section .hero_content {
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .hero_section .hero_content {
    padding: 50px 30px;
  }
}
.hero_section h3 {
  font-size: 48px;
  line-height: 45px;
  margin: 0 0 32px;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: bold;
  text-transform: capitalize;
}
.hero_section p {
  margin: 16px auto 0;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.hero_section .main_btn {
  background-color: #ffffff;
  color: #c69a1b;
  margin-top: 32px;
}
.hero_section .main_btn i {
  background-color: #c69a1b;
  color: #ffffff;
}
@media (max-width: 991px) {
  .hero_section {
    flex-direction: column;
  }
  .hero_section img {
    width: 100%;
    height: 320px;
  }
  .hero_section .hero_content {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .hero_section h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 16px;
  }
  .hero_section p {
    margin: 8px auto 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
  }
}

.blogs {
  background-color: #f6f6f6;
}

.blog_item {
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  overflow: hidden;
}
.blog_item .cover {
  width: 100%;
  height: 290px;
  overflow: hidden;
  display: block;
}
.blog_item .cover img {
  -webkit-transition: 0.4s transform linear;
  -moz-transition: 0.4s transform linear;
  -ms-transition: 0.4s transform linear;
  -o-transition: 0.4s transform linear;
  transition: 0.4s transform linear;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_item .content {
  background-color: #ffffff;
  padding: 24px;
}
.blog_item .date {
  margin-bottom: 16px;
  font-size: 14px;
  color: #1d336c;
  display: inline-block;
}
.blog_item .date i {
  margin-inline-end: 5px;
}
.blog_item h3 {
  color: #1d336c;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
.blog_item p {
  color: #0d1a10;
  opacity: 75%;
  margin: 16px auto;
  font-size: 16px;
}
.blog_item:hover .cover img {
  -webkit-transform: scale(1.1) rotate(3deg);
  -moz-transform: scale(1.1) rotate(3deg);
  -ms-transform: scale(1.1) rotate(3deg);
  -o-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}
@media (max-width: 575px) {
  .blog_item h3 {
    font-size: 16px;
  }
  .blog_item p {
    margin: 8px auto;
    font-size: 14px;
  }
}

.blog_details {
  padding: 32px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background-color: #ffffff;
}
.blog_details img {
  margin: 16px auto;
  width: 100%;
  height: 340px;
  object-fit: cover;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.blog_details .date {
  opacity: 85%;
  font-size: 16px;
  display: inline-block;
}
.blog_details .date i {
  margin-inline-end: 5px;
}
.blog_details h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 16px 0;
  color: #1d336c;
}
.blog_details h4 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
}
.blog_details p {
  color: #0d1a10;
  margin: 16px auto;
  font-size: 18px;
}
@media (max-width: 575px) {
  .blog_details {
    padding: 16px;
  }
  .blog_details img {
    height: auto;
  }
  .blog_details h3 {
    font-size: 22px;
  }
  .blog_details h4 {
    font-size: 18px;
  }
  .blog_details p {
    font-size: 14px;
  }
}

/* Contact
=======================*/
.contact {
  background-color: #f6f6f6;
}
.contact h3 {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  text-transform: capitalize;
  line-height: 30px;
  color: #1d336c;
}
.contact > .row {
  max-width: 1140px;
  margin: auto;
}
.contact .contact_details {
  padding: 50px;
  background-color: #1d336c;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .contact .contact_details {
    padding: 25px;
  }
}
.contact .contact_details h3 {
  color: #ffffff;
}
.contact .contact_details .social {
  margin-top: 24px;
}
.contact .contact_details .social li {
  margin-inline-end: 12px;
}
.contact li {
  margin-bottom: 16px;
}
.contact li i {
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  margin-inline-end: 10px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #1d336c;
  background-color: #ffffff;
}
.contact li a {
  font-size: 18px;
  color: #ffffff;
}
.contact .contact_form {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 50px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .contact .contact_form {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .contact .row {
    margin: auto;
    max-width: 100%;
  }
  .contact .contact_details,
.contact .contact_form {
    padding: 15px 10px;
  }
  .contact .contact_details h3,
.contact .contact_form h3 {
    font-size: 18px;
  }
}

footer {
  background-color: #1d336c;
  color: #ffffff;
}
footer .social {
  background-color: #ffffff;
  position: relative;
}
footer .social .container {
  padding: 32px 15px;
}
footer .social h3 {
  color: #1d336c;
  line-height: 40px;
}
footer .social a {
  background-color: #c69a1b;
  display: block;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-top: 0;
  color: #ffffff;
  margin-inline-start: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
footer .social a::before {
  display: none;
}
footer .social a.up_btn {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #c69a1b;
  color: #ffffff;
}
@media (max-width: 575px) {
  footer .social .col-12 {
    flex-direction: column !important;
  }
}
footer .container {
  padding: 50px 15px 16px;
}
@media (max-width: 991px) {
  footer .container {
    padding-top: 16px;
  }
}
footer h3 {
  margin: 0 0 16px;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  footer h3 {
    margin-top: 32px;
  }
}
footer p {
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.9);
  padding-inline-end: 8px;
}
footer ul {
  padding: 0;
}
footer a {
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  padding-inline-start: 24px;
  margin-top: 4px;
}
footer a:hover {
  color: #ffffff;
}
footer a::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  border: 1px solid #ffffff;
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
footer i {
  margin-inline-end: 8px;
}
@media (max-width: 575px) {
  footer h3 {
    font-size: 18px;
    letter-spacing: 0px;
  }
  footer p {
    font-size: 14px;
    line-height: 20px;
  }
  footer a {
    font-size: 14px;
    padding-inline-start: 18px;
    display: block;
  }
  footer i {
    margin-inline-end: 8px;
  }
}
footer .contact_info a {
  padding: 0;
  margin: 0 0 8px;
}
@media (max-width: 575px) {
  footer .contact_info a {
    display: block;
  }
}
footer .contact_info a::before {
  display: none;
}
footer .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map {
  margin-bottom: -8px;
}

.chat-icon {
  position: fixed;
  inset-inline-end: 40px;
  bottom: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 5px;
  cursor: pointer;
  z-index: 9999;
  background-color: #25d366;
  text-align: center;
  line-height: 65px;
}
.chat-icon a {
  position: relative;
  z-index: 999;
  width: 100%;
  height: 100%;
  text-align: center;
}
.chat-icon i {
  width: 100%;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  border-radius: inherit;
  color: #ffffff;
  font-size: 32px;
}
.chat-icon::after, .chat-icon::before {
  width: 60px;
  height: 60px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.4s, all, linear;
  -moz-transition: 0.4s, all, linear;
  -ms-transition: 0.4s, all, linear;
  -o-transition: 0.4s, all, linear;
  transition: 0.4s, all, linear;
  animation: ripple 2s infinite;
  animation-delay: 0.6s;
}
.chat-icon::after {
  animation-delay: 0.4s;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/*# sourceMappingURL=style.css.map */
