*,
::after,
::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--theme-font-family);
  font-weight: 400;
  color: var(--theme-white-color);
  background-color: var(--theme-white-color);
  overflow-x: hidden;
}

html,
body {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/SofiaPro-Black.eot');
  src: url('../fonts/SofiaPro-Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SofiaPro-Black.woff2') format('woff2'),
    url('../fonts/SofiaPro-Black.woff') format('woff'),
    url('../fonts/SofiaPro-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/SofiaPro-SemiBold.eot');
  src: url('../fonts/SofiaPro-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SofiaPro-SemiBold.woff2') format('woff2'),
    url('../fonts/SofiaPro-SemiBold.woff') format('woff'),
    url('../fonts/SofiaPro-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/SofiaPro.eot');
  src: url('../fonts/SofiaPro.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SofiaPro.woff2') format('woff2'),
    url('../fonts/SofiaPro.woff') format('woff'),
    url('../fonts/SofiaPro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/SofiaPro-Light.eot');
  src: url('../fonts/SofiaPro-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SofiaPro-Light.woff2') format('woff2'),
    url('../fonts/SofiaPro-Light.woff') format('woff'),
    url('../fonts/SofiaPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/*Theme Color=================*/
:root {
  --theme-color: #19279f;
  --theme-skyblue-color: #20ccd8;
  --theme-black-color: #000000;
  --theme-white-color: #ffffff;
  --theme-gray-color: #4a4a4a;
  --theme-gray-light-color: #b0b0b0;
  --theme-font-family: "Sofia Pro";
  --theme-para-font-family: "Alice";
}

.noscroll {
  overflow: hidden;
  height: 100vh;
}

.layout_padding {
  padding: 100px 0;
}

a.give_btn {
  background-color: transparent;
  transition: background-color 170ms ease-out, color 170ms ease-out;
  box-shadow: none;
  border: 2px solid var(--theme-color);
  color: rgb(227, 114, 99);
  border-radius: 300px;
  padding: 8px 18px;
  margin: 0.618em 0.45em;
  display: inline-block;
  vertical-align: middle;
}

a.give_btn:hover {
  background: var(--theme-color);
  color: var(--theme-white-color);
}

a.cmn_btn {
  background-color: transparent;
  transition: background-color 170ms ease-out, color 170ms ease-out;
  box-shadow: none;
  border: 2px solid var(--theme-skyblue-color) !important;
  font-family: var(--theme-font-family) !important;
  text-decoration: none !important;
  color: var(--theme-skyblue-color);
  border-radius: 300px;
  padding: 13px 26px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

a.cmn_btn:hover {
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
}

button.cmn_btn {
  background-color: transparent;
  transition: background-color 170ms ease-out, color 170ms ease-out;
  box-shadow: none;
  border: 2px solid var(--theme-skyblue-color) !important;
  font-family: var(--theme-font-family) !important;
  text-decoration: none !important;
  color: var(--theme-skyblue-color);
  border-radius: 300px;
  padding: 13px 26px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

button.cmn_btn:hover {
  background: var(--theme-skyblue-color);
  color: var(--theme-white-color);
}

a.cmn_btn2 {
  background-color: var(--theme-skyblue-color);
  border: 2px solid var(--theme-skyblue-color) !important;
  color: var(--theme-white-color);
  transition: background-color 170ms ease-out, color 170ms ease-out;
  box-shadow: none;
  border-radius: 300px;
  padding: 13px 26px;
  margin: 0em;
  display: inline-block;
  vertical-align: middle;
}

a.cmn_btn2:hover {
  background: transparent;
  border: 2px solid var(--theme-white-color);
  color: var(--theme-white-color);
}

a.cmn_btn3 {
  background-color: var(--theme-skyblue-color);
  border: 2px solid var(--theme-skyblue-color) !important;
  color: var(--theme-white-color);
  transition: background-color 170ms ease-out, color 170ms ease-out;
  box-shadow: none;
  border-radius: 300px;
  padding: 13px 26px;
  margin: 0em;
  display: inline-block;
  vertical-align: middle;
}

a.cmn_btn3:hover {
  background: transparent;
  border: 2px solid var(--theme-skyblue-color);
  color: var(--theme-skyblue-color);
}

a.search-btn {
  color: var(--theme-gray-color);
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading-container h1 {
  font-family: var(--theme-font-family);
  color: var(--theme-color);
  font-size: 30px;
  font-weight: 900;
}

.heading-container h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-gray-color);
}

.heading-container h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-gray-color);
}

.heading-container h5 {
  font-size: 18px;
  color: var(--theme-black-color);
  font-weight: 600;
  margin-top: 15px;
  font-family: var(--theme-para-font-family);
}

.heading-container p {
  font-size: 18px;
  color: var(--theme-gray-color);
  margin-top: 15px;
}

.heading-container a {
  color: var(--theme-skyblue-color);
  font-size: 22px;
  text-decoration: none;
  font-family: var(--theme-para-font-family);
  border-bottom: 1px solid var(--theme-skyblue-color);
}

.heading-container a:hover {
  color: var(--theme-color);
}

.heading-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.heading-container ul li {
  color: var(--theme-gray-color);
  font-size: 17px;
  background: url(../images/ArrowRight2-Bulk-60px.svg);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: -5px center;
  padding-left: 22px;
  margin-top: 10px;
  font-family: var(--theme-para-font-family);
}

.heading-container-2 h1 {
  font-family: var(--theme-font-family);
  color: var(--theme-white-color);
  font-size: 30px;
  font-weight: 900;
}

.heading-container-2 h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-white-color);
}

.heading-container-2 p {
  color: var(--theme-white-color);
  font-size: 17px;
  margin-top: 15px;
  font-family: var(--theme-para-font-family);
}

.heading-container-2 p:first-child {
  margin-top: 0;
}

.heading-container-2 p a {
  color: var(--theme-white-color);
  font-weight: 600;
  cursor: pointer;
}

.heading-container-2 p a:hover {
  opacity: 0.8;
}

.heading-container-2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.heading-container-2 ul li {
  color: var(--theme-white-color);
  font-size: 17px;
  background: url(../images/ArrowRight2-Bulk-60px.svg);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: -5px center;
  padding-left: 22px;
  margin-top: 10px;
  font-family: var(--theme-para-font-family);
}

.heading-container-3 h1 {
  font-family: var(--theme-font-family);
  color: var(--theme-gray-color);
  font-size: 40px;
  font-weight: 600;
}

.heading-container-3 h2 {
  font-family: var(--theme-font-family);
  color: var(--theme-skyblue-color);
  font-size: 30px;
  font-weight: 600;
}

.heading-container-3 h3 {
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color);
}

.heading-container-3 h4 {
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-skyblue-color);
  text-transform: uppercase;
}

.heading-container-3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.heading-container-3 ul li {
  color: var(--theme-gray-color);
  font-size: 17px;
  background: url(../images/ArrowRight2-Bulk-60px.svg);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: -5px -3px;
  padding-left: 22px;
  margin-top: 10px;
  font-family: var(--theme-para-font-family);
}

/* .heading-container-3 a{
  color: var(--theme-color);
  font-size: 16px;
  font-family: var(--theme-para-font-family);
  border-bottom: 1px solid rgba(227,114,98,.3);
}
.heading-container-3 a:hover{
  opacity: 0.8;
} */
.heading-container-3 p {
  font-size: 16px;
  color: var(--theme-gray-color);
  margin-top: 15px;
}

.heading-container-4 h1 {
  font-family: var(--theme-font-family);
  color: var(--theme-gray-color);
  font-size: 40px;
  font-weight: 600;
}

.heading-container-4 h3 {
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
}

.heading-container-4 a {
  color: var(--theme-skyblue-color);
  font-size: 16px;
  font-family: var(--theme-para-font-family);
  border-bottom: 1px solid var(--theme-skyblue-color);
}

.heading-container-4 a:hover {
  opacity: 0.6 !important;
  color: var(--theme-skyblue-color);
}

.heading-container-4 p {
  font-size: 16px;
  color: var(--theme-black-color);
  line-height: normal;
}


#movetop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 15px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  width: 36px;
  height: 36px;
  background: var(--theme-skyblue-color);
  padding: 0;
  line-height: 36px;
  border-radius: 4px;
  transition: 0.3s ease-out;
}

#movetop:hover {
  background: var(--theme-gray-color);
  transform: translate3d(0, -5px, 0);
  -webkit-transform: translate3d(0, -5px, 0);
  transition: 0.3s ease-out;
}

p {
  font-family: var(--theme-para-font-family);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1.6em;
  text-transform: none;
  margin-bottom: 0;
}

a {
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

/*Hero Slider css====================================*/
.hero-section {
  padding: 100px 0;
  background: url(../images/hero-bg.jpg) center center no-repeat;
  background-size: cover;
}

.hero-cont h1 {
  font-family: var(--theme-font-family);
  font-weight: 900;
  font-style: normal;
  font-size: 63px;
  letter-spacing: 0em;
  line-height: 1em;
  text-transform: none;
  color: var(--theme-white-color);
}

.hero-cont h3 {
  font-weight: 600;
  color: var(--theme-color);
  font-style: normal;
  font-size: 15.25px;
  letter-spacing: 0.1em;
  line-height: 1.55em;
  text-transform: uppercase;
}

.hero-cont p {
  font-size: 18px;
  color: var(--theme-white-color);
}

.header_section {
  position: relative;
  z-index: 9999;
}

/*Inner Contact Hero Section css====================================*/
.contact-hero-section {
  padding: 100px 0;
  background: url(../images/contact-hero-bg.jpg) center center no-repeat;
  background-size: cover;
}

/*Inner Healthcare Hero Section css====================================*/
.healthcare-hero-section {
  padding: 100px 0;
  background: url(../images/healthcare-hero-bg.jpg) center center no-repeat;
  background-size: cover;
}


/*About Us==================*/
.detail-box {
  background: var(--theme-white-color);
  padding: 10%;
  margin-left: -42%;
  position: relative;
  z-index: 999;
}

.detail-box-1 {
  border: 1px solid var(--theme-gray-light-color);
  height: 100%;
  padding: 20px;
  background: var(--theme-white-color);
  border-radius: 15px;
}

.detail-box-2 {
  background: var(--theme-white-color);
  padding: 10%;
  margin-right: -42%;
  position: relative;
  z-index: 999;
}

.detail-box-3 {
  background: var(--theme-white-color);
  height: 100%;
  padding: 20px;
  transition: 0.4s;
}

.detail-box-3:hover,
.detail-box-3.active {
  background: #f6f6f6;
}

.detail-box-4 {
  background: var(--theme-white-color);
  height: 100%;
  padding: 0 0 0 20px;
  transition: 0.4s;
}


/*Our Programs===============*/
.programs_section {
  background: var(--theme-color);
}

/*Our Partners================*/
.lft_rgt_bg {
  background: url(../images/biomedical-bg.png) center no-repeat;
  background-size: cover;
  padding: 12%;
  height: 100%;
}

.lft_rgt_bg_1 {
  background: var(--theme-color);
  background-size: cover;
  padding: 12%;
  height: 100%;
}

.lft_rgt_section figure {
  width: 100%;
  height: 100%;
  margin: 0;
}

.lft_rgt_section figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.involved-box-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 15px;
}

.involved-box-icon svg {
  width: 100%;
  height: 100%;
}

.involved-box-icon2 {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px !important;
  border-radius: 60px;
  overflow: hidden;
  margin: auto;
  border: 3px solid var(--theme-skyblue-color);
  padding: 5px;
}

.involved-box-icon2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px;
}

.involved-box-icon2 img:hover {
  opacity: 0.8;
}

.involved-box-icon3 {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 15px !important;
  margin: auto;
}

.involved-box-icon3 svg {
  width: 100%;
  height: 100%;
}

.portfolio_section .single-img {
  position: relative;
  width: 100%;
}

.portfolio_section .image {
  display: block;
  width: 100%;
  height: auto;
}

.portfolio_section .img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--theme-skyblue-color);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.portfolio_section .single-img:hover .img-overlay {
  height: 100%;
}

.portfolio_section .text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-family: poppins;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.portfolio_section .text span {
  font-weight: 300;
  text-transform: capitalize;
  font-size: 14px;
}

.better_equipment_section {
  /*background: url(../images/better-equipment-bg.jpg) center center no-repeat;
  background-size: cover;*/
  background: #ffffff;
}


/*Inner Hero Section===================*/
.parallax-slide {}

.content-slide {
  height: 100vh;
  background: var(--theme-color);
}

#parallax1 {
  background: url(../images/iStock-182374988.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}

.inner-hero-cont {
  padding: 80px 0;
}

.inner-hero-cont h1 {
  font-size: 63px;
  line-height: normal;
  font-weight: 900;
  color: var(--theme-white-color);
}

/*Our Team Section=====================*/
.our-team {
  border-bottom: 1px solid rgba(176, 176, 176, .5);
}

.our-team:last-child {
  border-bottom: none;
  padding-bottom: 0 !important;
}

img.bhsa-logo {
  width: 425px;
}

.community-development .owl-carousel .owl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-development .owl-item {
  height: 100%;
}

.community-development .owl-carousel .owl-nav button.owl-prev,
.community-development .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0px;
  background: rgba(0, 0, 0, .50);
  z-index: 55;
  color: #fff;
  font-size: 40px;
  line-height: normal;
  border-radius: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.community-development .owl-carousel .owl-nav button.owl-prev:hover,
.community-development .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--theme-color);
}

.community-development .owl-carousel .owl-nav button.owl-prev span,
.community-development .owl-carousel .owl-nav button.owl-next span {
  position: relative;
  top: -12px;
}

.community-development .owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 0px;
}

.blockquote {
  border-left: 5px solid #dadada;
  padding: 1px 10px 1px 20px;
}

.blockquote p {
  font-family: var(--theme-font-family);
}

/*Newsletter & Prayer Updates=============*/
.newsletter-box {
  background: var(--theme-white-color);
  padding: 15px;
}

.newsletter-box p {
  font-size: 14px;
  font-family: var(--theme-font-family);
}

span.required {
  color: red;
}

input.subscribe {
  clear: both;
  background-color: #aaa;
  border: 0 none;
  border-radius: 4px;
  transition: all 0.23s ease-in-out 0s;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  height: 32px;
  line-height: 32px;
  margin: 0 5px 10px 0;
  padding: 0 22px;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
  width: auto;
}

input.subscribe:hover {
  background: #777;
}

.newsletter-box .form-control:focus,
.contact-area label {
  color: var(--theme-gray-color);
  font-family: var(--theme-para-font-family);
}

.newsletter-box .form-control:focus,
.contact-area .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #e37262;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(227 114 98 / 18%);
}

.newsletter-box .form-check-input:checked {
  background-color: #e37262;
  border-color: #e37262;
}

.form-check-input:focus {
  border-color: #e37262;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(227 114 98 / 18%);
}

.contact-area .form-control {
  background-color: rgb(250, 250, 250);
  border: 1px solid rgb(169, 169, 169);
  border-radius: 0;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  height: auto;
  padding: 10px;
  position: relative;
  width: 100%;
}

.give_section {
  background: var(--theme-color);
  padding-top: 48px;
  padding-bottom: 48px;
}

.search-sec .input-group {
  background-color: #fff;
  border: 1px solid #aaa;
  margin: 0 0 50px;
}

.search-sec .input-group-lg>.form-control {
  border-radius: 0;
  border: 0;
  padding: 1.2rem 1rem;
}

.search-sec .input-group-lg>.input-group-text {
  padding: .5rem 1rem;
  border-radius: 0;
  background-color: var(--theme-white-color);
}

.search-sec .input-group .fa-solid {
  font-size: 30px;
}

.search-sec .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: inherit;
  outline: 0;
  box-shadow: none;
}

/*We Offer ===========================*/
.offer-card {
  padding: 15px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--theme-gray-light-color);
  height: 100%;
}

.offer-card:hover {
  border: 1px solid var(--theme-skyblue-color);
}

.offer-card h1 {
  font-size: 30px;
  background: var(--theme-skyblue-color);
  margin-bottom: 15px;
  display: inline-block;
  padding: 8px;
  border-radius: 5px;
  line-height: normal;
  width: 50px;
  height: 52px;
}

.offer-card p {
  font-size: 16px;
  color: var(--theme-black-color);
  margin: 0px;
  line-height: normal;
  font-weight: 700;
}

.offer-icon{
  width: 60px;
  height: 60px;
}

.offerslider.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: var(--theme-gray-light-color);
}
.offerslider.owl-theme .owl-dots .owl-dot:hover span {
    height: 15px !important;
    background: var(--theme-color);
}
.offerslider.owl-theme .owl-dots .owl-dot.active span, .offerslider.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--theme-color);
}

/* Frequently Asked Questions section=====================*/
.asked-questions .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}

.asked-questions .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.asked-questions .accordion-button::after {
  transition: all 0.5s;
}

.asked-questions .accordion-button:not(.collapsed) {
  color: var(--theme-white-color);
  background-color: var(--theme-skyblue-color);
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.asked-questions .accordion-body {
  font-family: var(--theme-para-font-family);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* footer section=====================*/
.ftr-top {
  background-color: var(--theme-color);
  padding: 50px 0;
  color: #ffffff;
  position: relative;
}

.ftr-btm {
  background-color: #16228b;
  padding: 10px 0;
  color: #ffffff;
  position: relative;
}

.ftr-btm p {
  font-size: 14px !important;
  color: var(--theme-white-color);
  margin-bottom: 0 !important;
}

.ftr-btm p a {
  font-size: 14px !important;
  color: var(--theme-white-color)
}

.ftr-btm p a:hover {
  color: var(--theme-skyblue-color)
}

.footer_section .about p {
  font-size: 15px;
  line-height: 26px;
  color: #989694;
}

.footer_section h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme-white-color);
  font-family: var(--theme-font-family);
}

.footer_section h3 a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme-white-color);
  font-family: var(--theme-font-family);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer_section h3 a:hover {
  opacity: 0.8;
}

.footer_section a {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-skyblue-color);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer_section a:hover {
  opacity: 0.8;
}

.footer_section .copy p {
  font-size: 14px;
  color: var(--theme-white-color);
  font-family: var(--theme-font-family);
}

.footer_section .copy p a:hover {
  opacity: 0.8;
}

.footer_section .ftr-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 15px;
}

.footer_section .ftr-link ul li {
  float: none;
  margin-bottom: 5px;
}

.footer_section .ftr-link ul li a {
  color: var(--theme-white-color);
  font-family: var(--theme-para-font-family);
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: 0.4s;
}

.footer_section .ftr-link ul li a:hover {
  color: var(--theme-skyblue-color);
}

.footer_section .ftr-contact {
  margin-top: 20px;
}

.footer_section p {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-white-color);
  margin-bottom: 8px;
}

.footer_section .ftr-contact a {
  font-size: 15px;
  color: #989694;
}

.footer_section .social_box {
  margin-top: 15px;
}

.footer_section .social_box a {
  float: left;
  font-size: 16px;
  color: var(--theme-color);
  margin-right: 10px;
  background-color: var(--theme-white-color);
  width: 30px;
  height: 30px;
  line-height: 32px;
  text-align: center;
  border-radius: 30px;
}

.footer_section .social_box a:hover {
  color: var(--theme-white-color);
  background: var(--theme-skyblue-color);
  opacity: 1 !important;
}