<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --background-color: #f8f8f4;
  --background-color-2: #cff0f5;
  --background-color-3: #fff;
  --btn-bg: #ebf5f5;
  --background-color-wiki: #fff;
  --text-color: #444444;
  --titles-color: #004767;
  --shadow-1: rgba(127, 137, 161, 0.25);;
  --bible-bg: #f9fcfd;
  --green: #8efa89;
  --bs-border-color: #ccc;
  --table-bg: #fff;
  --text-table: #004767;
  --bg-thead-table: #004767;

  --text-table-top: #fff;
  
  
  --text-table-2: #004767;
  --bg-thead-table-2: #eaeeef;

  --background-color-mobile: #fff;

  --nav-text: #185470;

  --highlight-bg: yellow;
  
  
}

.dark-mode {
  --btn-bg: #0f4047;
  --background-color-2: #0f4047;
  --background-color-3: #0f4047;
  /* --background-color-wiki: #11242d; */
  --background-color-wiki: #081820;
  --text-color: #cecece !important;
  --titles-color: #0086c4;
  --shadow-1: rgba(1, 151, 215, 0.25);
  --bible-bg: #051b24;
  --bs-border-color: rgba(7, 180, 207, 0.54);
  --green: #0ad800;
  --table-bg: #0f294745;
  
  --text-table: #00bcff;
  --bg-thead-table: #050c4a;
  
  --text-table-2: #cbd3d7;
  --bg-thead-table-2: #187288;
  --text-table-top: #00bcff;
  --background-color-mobile: #0f4047;
  --nav-text: #e2e2e2;
  
  --highlight-bg: #187288;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: var(--text-color);
  /* background-color: #dbe8e5; */
  /* background-color: #e8e8db4d; */
  background-color: var(--background-color);
  /* background-color: #fffef5; */
  position: relative;
}

/* html, body{
  overflow-x: hidden;
} */

a {
  text-decoration: none;
  color: #47adb6;
}

a:hover {
  color: #8ec4dd;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: var(--titles-color);
}

table, td{
  background-color: var(--table-bg) !important;
  color: var(--text-color) !important;
}

table a{
  color: var(--text-table) !important;
}

#main {
  margin-top: 50px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 998;
  background: #47adb6;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #86c0da;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.2s ease;
  z-index: 1050;
  /* transition: all 0.5s; */
  padding: 12px 0;
  /* background: rgba(103, 176, 209, 0.8); */
}

#header.header-transparent {
  background: rgba(35, 92, 119, 0.4);
  /* border-bottom: 1px solid #87888890; */
  box-shadow: 2px 3px 7px 3px rgba(0, 0, 0, 0.162);
}


/* 123 */
#header.header-scrolled {
  /* background: rgba(55, 142, 181, 0.9); */
  background-color: white;
  color: #002d5a !important;
  padding: 10px;
}

#header.header-scrolled .navbar a.scrollto{
  color: #185470;
}
#header.header-scrolled a span{
  color: #185470;
}


#header.header-scrolled a i{
  color: var(--nav-text);
}

#header.header-scrolled .mobile-nav-toggle{
  color: var(--text-table-2);
}

#header .logo span {
  font-size: 20px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-transform: uppercase;
  color: #fff;
}

#header.header-scrolled .logo span{
  color: #185470;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}

@media (max-width: 768px) {
  #header.header-scrolled {
    padding: 15px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  position: static;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  margin-left: 10px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover&gt;a {
  /* background: rgba(8, 115, 255, 0.2); */
  background: rgba(35, 92, 119, 0.192);
  color: white;
  /* color: goldenrod !important; */
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 10px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
  color: var(--titles-color);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover&gt;a {
  color: #47adb6;
}

.navbar .dropdown:hover&gt;ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin: 0;
  padding: 10px;
  display: block;
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li strong {
  color: #47ADB6;
  display: block;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover&gt;a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
  padding: 8px 10px;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #47adb6;
}

.navbar .megamenu:hover&gt;ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover&gt;ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover&gt;ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43, 111, 142, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--background-color-mobile);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--text-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover&gt;a {
  color: #47adb6;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover&gt;a {
  color: #47adb6;
}

.navbar-mobile .dropdown&gt;.dropdown-active {
  display: block;
}

.navbar-mobile .megamenu ul li a,
.navbar-mobile .megamenu ul li:hover&gt;a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
}

.navbar-mobile .megamenu ul li a:hover,
.navbar-mobile .megamenu ul li .active,
.navbar-mobile .megamenu ul li .active:hover {
  color: #47adb6;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  /* width: 100%; */
  height: 100vh;
  /* background-color: #04254436 !important;
  background: url("../images/background-phone.png") top center; */
  /* background-size: cover; */
  #background-color: #04254436 !important;
  #background: url("../images/background-phone.png") top center;
  #background-size: cover;
  position: relative;
  margin-bottom: -90px;
}


/*.show-image{
  //display: none;
}*/

.show-image h2{
  font-size: 18px;
  line-height: 24px;
  padding: 0 30px;
}


#hero-phone{
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #04254436 !important;
    background: url("../images/background-phone.png") top center;
    background-size: cover;
    position: relative;
    margin-bottom: -90px;
}


#hero-phone .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero-phone h1 {
  margin: 0 0 10px 0;
  /* margin-top: ; */
  font-size: 80px;
  font-weight: 700;
  line-height: 96px;
  text-transform: uppercase;
  color: #fff;
  padding: 20px 0;
  /* text-shadow: -1px 0 2px #2f4d5a; */
}

#hero-phone h2 {
  color: #fff;
  /* margin-bottom: 50px; */
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  /* text-shadow: -1px 0 2px #2f4d5a; */
}

#hero-phone .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#hero-phone .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}



/* linear-gradient(0deg, #79c0fa31, transparent);" */

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  /* margin-top: ; */
  font-size: 80px;
  font-weight: 700;
  line-height: 96px;
  text-transform: uppercase;
  color: #fff;
  padding: 20px 0;
  /* text-shadow: -1px 0 2px #2f4d5a; */
}

#hero h2 {
  color: #fff;
  /* margin-bottom: 50px; */
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  /* text-shadow: -1px 0 2px #2f4d5a; */
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}



.goldtextcss {
  color: #eec407; /*if no support for background-clip*/
  /* background: -webkit-linear-gradient(transparent, transparent),
  -webkit-linear-gradient(top, rgb(240, 202, 33) 0%, rgb(235, 193, 8) 26%, rgba(226,186,120,1) 35%, rgb(197, 160, 36) 45%, rgb(236, 193, 0) 61%, rgb(94, 77, 2) 100%); */
  background: -webkit-linear-gradient(transparent, transparent), -webkit-linear-gradient(top, rgb(33 240 224) 0%, rgb(56, 163, 216) 26%, #47adb6 35%, rgb(45, 175, 226) 45%, #47adb6 61%, rgb(0, 62, 207) 100%);
  background: -o-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Times New Roman', Times, serif;
  font-size: 40px !important;
  font-weight: 300  !important;
  }



  .gold-color {
    /* background: linear-gradient(to bottom, #cfc09f 22%,#634f2c 24%, #cfc09f 26%, #cfc09f 27%,#ffecb3 40%,#3a2c0f 78%);  */
    background: linear-gradient(to bottom, #d5b23d 22%,#d5b23d 24%, #d5b23d 26%, #d5b23d 27%,#ffda6b 40%,#5e440e 78%);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
font-family: 'Playfair Display', serif !important;
    position: relative  !important;
	text-transform: uppercase;	
	font-size: 120px !important;
	margin: 0  !important;
	font-weight: 500  !important;
}

.gold-color:after {
    background: none  !important;
    content: attr(data-heading)  !important;
    left: 0  !important;
	top: 0  !important;
    z-index: -1  !important;
    position: absolute !important;
    text-shadow: 
		-1px 0 1px #c6bb9f, 
		0 1px 1px #c6bb9f, 
		5px 5px 10px rgba(0, 0, 0, 0.4),
		-5px -5px 10px rgba(0, 0, 0, 0.4);
}


.text-blue{
  color: #042544 !important;
}


@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 65px !important;
    line-height: 56px;
  }

  
#hero h2 {
  padding: 0 30px;
}

#hero{
  background-color: #04254436 !important;
  background: url("../images/background-phone.png") top center;
  background-size: cover;
  position: relative;
/* 
  margin-bottom: -90px !important; */
}

/*.show-video{
  display: none;
}*/

.show-image{
  display: block;
}



  
.goldtextcss {
  color: #eec407; /*if no support for background-clip*/
  /* background: -webkit-linear-gradient(transparent, transparent),
  -webkit-linear-gradient(top, rgb(240, 202, 33) 0%, rgb(235, 193, 8) 26%, rgba(226,186,120,1) 35%, rgb(197, 160, 36) 45%, rgb(236, 193, 0) 61%, rgb(94, 77, 2) 100%); */
  background: -webkit-linear-gradient(transparent, transparent), -webkit-linear-gradient(top, rgb(33 240 224) 0%, rgb(56, 163, 216) 26%, #47adb6 35%, rgb(45, 175, 226) 45%, rgb(28, 174, 219) 61%, rgb(0, 62, 207) 100%);
  background: -o-linear-gradient(transparent, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Times New Roman', Times, serif;
  font-size: 24px !important;
  font-weight: 300  !important;
  /* line-height: 30px; */
  }


  

  .gold-color {
    /* background: linear-gradient(to bottom, #cfc09f 22%,#634f2c 24%, #cfc09f 26%, #cfc09f 27%,#ffecb3 40%,#3a2c0f 78%);  */
    background: linear-gradient(to bottom, #f7d200 22%,#bea03a 24%, #a78107 26%, #b48b03 27%,#ffda6b 60%,#5e440e 78%);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
font-family: 'Playfair Display', serif !important;
    position: relative  !important;
	text-transform: uppercase;	
	/* font-size: 120px !important; */
	margin: 0  !important;
	font-weight: 500  !important;
}

.gold-color:after {
    background: none  !important;
    content: attr(data-heading)  !important;
    left: 0  !important;
	top: 0  !important;
    z-index: -1  !important;
    position: absolute !important;
    text-shadow: 
		-1px 0 1px #c6bb9f, 
		0 1px 1px #c6bb9f, 
		5px 5px 10px rgba(0, 0, 0, 0.4),
		-5px -5px 10px rgba(0, 0, 0, 0.4);
}


  #hero-phone h2 {
    font-size: 18px;
    line-height: 24px;
    padding: 0 30px;
    /* margin-bottom: 30px; */
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  
}

.section-bg {
  background-color: #f4f9fc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  color: #004767;
  z-index: 2;
}


.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f8fbfd;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {

  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: rgba(255, 255, 255, 0.514); */
  z-index: 9;
}

.about .container {
  position: relative;
  z-index: 10;
  
}

.about .content {
  padding: 30px 30px 30px 0;
  
}

.about-bg{
  background-color: #ffffff;
  padding: 20px 50px;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0px 3px 7px 3px rgba(216, 216, 216, 0.492);
}

.about .content h3 {
  font-weight: 700;
  font-size: 54px;
  color: #004767;
  margin-bottom: 10px;
}

.about .content p {
  margin-bottom: 30px;
  text-align: justify;
  font-size: 19px;
}

.about .content .about-btn {
  display: inline-block;
  background: #004767;
  padding: 6px 44px 8px 30px;
  color: #fff;
  border-radius: 0px;
  transition: 0.3s;
  position: relative;
}

.about .content .about-btn i {
  font-size: 18px;
  position: absolute;
  right: 18px;
  top: 9px;
  
}

.about .content .about-btn:hover {
  background: #47adb6;
}

.icon-box{
  width: 100%;
}

.icon-box-2{
  /* width: 100%;    */
  position: relative; 
  width: 400px;
  height: 250px;
  background-color: #f0eee6;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.icon-box-2::after{
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background-image: conic-gradient(transparent, transparent, transparent, #2bff00);

  animation: animate 5s linear infinite;
  animation-delay: -2.5s;
}


.icon-box-2::before{
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background-image: conic-gradient(transparent, transparent, transparent, #00ccff);

  animation: animate 5s linear infinite;
}

.icon-box-2 span{
  position: absolute;
  inset: 2px;
  border-radius: 16px;
  background-color: white;
  /* background: rgb(71, 173, 182); */
    /* background: linear-gradient(139deg, rgba(71, 173, 182, 1) 0%, rgba(18, 56, 91, 1) 100%); */
  z-index: 1;
}

.icon-box-2 a{
  /* display: flex; */
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  color: white;
  font-size: 2em;
}

.icon-box-2 a i{
  font-size: 80px;
  /* color: white !important; */
}

@keyframes animate{
  0%{
      transform: rotate(0deg);
  }100%{
      transform: rotate(360deg);
  }
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #47adb6;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  text-align: justify;
  /* color: #552929; */
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12); */
  box-shadow: 0px 3px 7px 3px rgba(216, 216, 216, 0.492);
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  z-index: 1;
}

.services .icon-box-2 {
  box-shadow: 0px 3px 7px 3px rgba(216, 216, 216, 0.492);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}


.services .icon-box-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 7px 3px rgba(216, 216, 216, 0.492);
  width: 195px;
  height: 175px;
  margin-left: 7px;
  margin-bottom: 10px;
}


.services .icon-box-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid black;
  margin-bottom: 20px;
}

.services .icon {
  margin-bottom: 15px;
  font-size: 40px;
  color: #47adb6;
  margin-bottom: 10px;
}


.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #004767;
}

.services p{
  font-size: 19px;
}

.services .description {
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #47ADB6;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #ffffff;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 14px;
  color: #f9f9f9;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #49788c;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #6e9fb4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(103, 176, 209, 0), rgba(103, 176, 209, 0.152)), url("../images/heaven.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #ecf5f9;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #2f4d5a;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #47adb6;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(103, 176, 209, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(103, 176, 209, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #8ec4dd;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47adb6;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47adb6;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(47, 77, 90, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #d5e9f2;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47adb6;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47adb6;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  border: 4px solid #47adb6;
  box-shadow: 0px 3px 7px 3px rgba(216, 216, 216, 0.492);
}


.team .member:hover .member-info {
  max-height: 300px;
}
.team p{
  font-size: 19px;
}


@media (max-width: 992px) {
  .team .member {
    margin-bottom: 50px;
  }

}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}

.contact .info-box {
  color: #444444;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #47adb6;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f0f7fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.507);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #47adb6;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form label{
  color: #fff;
}



@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(71, 173, 182);
    background: linear-gradient(0deg, rgba(71, 173, 182, 1) 0%, rgba(18, 56, 91, 1) 100%);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-top: -30px;
  margin-bottom: 15px;
  /* background: #b3dee0; */
  /* border-top: 4px solid #47adb6; */
  color: #002d5a;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  color: #fff;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#footer .footer-top .social-links{
    display: flex;

}

#footer .footer-top .social-links i{
  line-height: 0 !important;
}

#footer .footer-top .social-links a {
  font-size: 30px;
  display: block;
  background-color: #00DBDE;
  /* background-image: linear-gradient(90deg, #00DBDE 0%, #143C5E 100%); */
  color: #fff;
  padding: 3px 0;
  margin-right: 7px;
  border-radius: 5px;
  text-align: center;
  width: 60px;
  height: 50px;
  transition: all 300ms ease;
}

#footer .footer-top .social-links .twitter, .facebook, .instagram, .linkedin {
  background-image: linear-gradient(45deg, #143C5E 0%, #00DBDE 100%);
  background-position: 0% -100%;
  background-size: 100% 200%;
}
  

#footer .footer-top .social-links .twitter:hover, .facebook:hover, .instagram:hover, .linkedin:hover {
  /* background-color: #de4a00; */
  /* background-image: linear-gradient(45deg, #143C5E 0%, #00DBDE 100%); */
  /* color: #fff;
  text-decoration: none; */
  background-position: 0% -200%;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #b5d9e9;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #a2cfe3;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47adb6;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #409cc5;
}

#footer .copyright {
  border-top: 1px solid #b3dee0;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}


.text-religion{
  font-family: Georgia, 'Times New Roman', Times, serif !important;
  font-size: 20px;
  vertical-align: middle !important;
}

table .thead-religion th[scope="col"]{
  color: var(--text-table-top);
  background-color: var(--bg-thead-table);
}

table .thead-religion th[colspan="6"]{
  background-color: var(--bg-thead-table-2);
  color: var(--text-table-2);
}

table .my-tr th{
  background-color: var(--bg-thead-table-2);
  color: var(--text-table-2);
}


#section-long h3{
  padding: 0 10px;
}

#section-long p{
  font-size: 19px;
  font-weight: 300;
  text-align: justify;
  padding: 0 10px;
}

#section-long .section-title h2{
  color: white;
}

#section-long .section-title{
  padding: 0 75px;
}

#timer p{
  margin: 0px;
  padding: 0;
}

#timer td{
  color: white;
}

#timer{
  width: 100%;

}

#about-page{
  background-color: white;
}

#about-page h3{
  font-size: 30px;
}

#about-page p{
  text-align: justify;
}

#about-world{
  background-color: white;
}

.wiki-bg{
  background-color: var(--background-color-wiki);
}



@media (max-width: 991px) {

  
  .icon-box-2::after{
    display: none !important;
    animation: none;
  }

  .icon-box-2::before{
    display: none !important;
    animation: none;
  }

  .icon-box-2 span{
    background-color: white;
  }

}
</pre></body></html>