/*
Theme Name: BLUEPRINT INTERACTIVE Theme
Author: Blueprint Interactive
Author URI: https://blueprintinteractive.com
Description: Blueprint Interactive Custom Theme.
Version: 1.0
License: GNU General Public License



/* -------------------------------------------------------------- */
* {
  /* font-family: 'Mukta', sans-serif; */
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
  margin: 0;
  padding: 0;
}

body {
  display: block !important;
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}
/* -------------------------------------------------------------- */
/* Animate CSS
-------------------------------------------------------------- */

.fade-in-from-left {
  opacity: 0;
  animation-timing-function: ease-out;
  -webkit-transform: translateX(-15px);
  -moz-transform: translateX(-15px);
  -o-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade-in-from-left.animated {
  animation-name: fade-from-left;
  animation-duration: 0.5s;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@keyframes fade-from-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }

  45% {
    opacity: 0.5;
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fade-in-from-bottom {
  opacity: 0;
  animation-timing-function: ease-out;
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -o-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}

.fade-in-from-bottom.animated {
  animation-name: fade-from-bottom;
  animation-duration: 1s;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@keyframes fade-from-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fade-in-from-right {
  opacity: 0;
  animation-timing-function: ease-out;
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -o-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
}

.fade-in-from-right.animated {
  animation-name: fade-from-right;
  animation-duration: 0.5s;
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@keyframes fade-from-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -o-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }

  90% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

/* all */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mukta", sans-serif !important;
  font-weight: 700;
  margin: 20px 0;
}

ul,
ol {
  margin: 20px 0 20px auto;
  width: 95%;
}

p,
ol li,
ul li {
  /* color: #1E1E1E; */
  color: #122e56;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin: 20px 0;
}

a {
  transition: all 0.5s ease;
}

/* footer */
footer {
  border-radius: 20px;
  background: #122e56;
  margin: 20px auto;
  padding: 30px 3%;
  width: 98%;
}

footer .top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
}

footer .bottom {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  padding-top: 30px;
}

footer .footer-logo {
  width: 118px;
}

footer .contact-wrap {
  width: 300px;
}

footer .social-wrapper {
  width: 175px;
}

footer .social-wrapper {
  text-align: right;
}

footer .social-wrapper a {
  margin: 0 5px;
}

footer .menu-wrap {
  text-align: center;

  width: 100%;
}

footer a {
  text-decoration: none;
}

ul.nav {
  list-style: none;
  margin: 10px 0;
}

ul.nav li {
  display: inline-block;
  margin: 0 10px;
}

ul.nav li a {
  border-bottom: 2px solid transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  padding-bottom: 5px;
}

.footer-logo img {
  height: auto;
  width: 118px;
}

footer svg {
  height: 32px;
  width: 32px;
}

ul.nav li a:hover {
  color: #71deff;
  border-bottom: 2px solid #71deff;
}

footer .hover {
  transition: all 0.5s ease;
  fill: #fff;
}

footer a:hover .hover {
  fill: #71deff;
}

footer p {
  color: #fff;
  font-size: 15px;
  margin: 2px 0;
}

footer p a {
  color: #fff;
}

footer p a:hover {
  color: #71deff;
}

footer .bottom-left p {
  display: inline-block;
  margin: 10px;
}

/* header */
.site-header {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 15px 0;
  position: relative;
  text-align: center;
  width: 97%;
  /* overflow-x: hidden; */
  max-width: 100%;
}

.site-header .left {
  align-items: center;
  display: flex;
}

.site-header .social-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-evenly;
}

.site-header .logo {
  display: block;
}

.site-header .logo:hover {
  transform: scale(0.9);
}

.site-header ul.nav {
  display: inline-block;
}

.site-header .social-wrapper a {
  margin: 0 5px;
}

.site-header .social-wrapper svg {
  height: 32px;
  width: 32px;
}

.site-header .social-wrapper a .hover {
  transition: all 0.5s ease;
}

.site-header .social-wrapper a:hover .hover {
  fill: #71deff;
}

.site-header .btn {
  border-radius: 40px;
  border: 2px solid #122e56;
  background: rgba(113, 222, 255, 0.15);
  color: #122e56;
  display: inline-block;
  font-weight: 600;
  padding: 12px 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.site-header .btn.donate {
  background-color: #ab093c;
  border-color: transparent;
  color: #fff;
}

.site-header .btn:hover {
  background-color: #71deff;
  color: #122e56;
}

.site-header .logo img {
  margin: 0 auto;
  min-width: 120px;
  max-width: 140px;
  transition: all 0.5s ease;
  width: 100%;
}

.site-header ul.nav li {
  margin: 5px;
}

.site-header ul.nav li a {
  border: none !important;
  color: #122e56;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 7px;
}

.site-header ul.nav li a:hover {
  background: #71deff;
}

/* MOBILE NAV */
.container {
  cursor: pointer;
  float: right;
  right: 5%;
  position: absolute;
  top: 20px;
  z-index: 10;
  display: block;
  display: none;
}

.header-nav {
  display: none;
  margin-top: 65px;
}

.bar1,
.bar2,
.bar3 {
  background-color: #ab093c;
  height: 5px;
  margin: 6px 0;
  transition: all 0.4s;
  width: 35px;
}

.change .bar1 {
  -webkit-transform: rotate(45deg) translate(8px, 8px);
  transform: rotate(45deg) translate(8px, 8px);
  background-color: #ab093c;
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(-45deg) translate(8px, -7px);
  transform: rotate(-45deg) translate(8px, -7px);
  background-color: #ab093c;
}

.mobile-nav {
  background-color: #71deff;
  background-color: #fff;
  display: block;
  display: none;
  left: -1%;
  padding: 50px 5% 30px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 102%;
  z-index: 2;
}

.mobile-nav-logo {
  display: block;
  margin: 0 auto 30px;
  max-width: 200px;
}

.mobile-nav-logo img {
  height: auto;
  width: 100%;
}

.mobile-nav ul.menu li {
  display: block;
  margin: 20px auto;
}

.mobile-nav .social-wrapper {
  display: block;
  margin: 10px auto;
}

.mobile-nav a {
  text-decoration: none;
}

.mobile-nav ul.nav li {
  display: block;
}

.mobile-nav .mobile-btns {
  margin-bottom: 20px;
}

.mobile-nav .mobile-btns a {
  display: block;
  margin: 20px auto;
  max-width: 250px;
  width: 100%;
}

/* basic page */
.hero-wrapper {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  margin: 20px auto;
  padding: 200px 5% 100px;
  text-align: center;
  width: 98%;
}

.hero-inner {
  margin: 0 auto;
  max-width: 1100px;
  width: 90%;
}

.hero-wrapper h1 {
  color: #fff;
  text-align: center;
  font-size: 90px;
  font-style: normal;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.92px;
  text-transform: uppercase;
}

.single-post .hero-wrapper h1 {
  font-size: 65px;
  text-transform: none;
}

.single-post .inner {
  max-width: 1100px;
}

.single-post .hero-inner {
  width: 95%;
}

.hero-wrapper h2 {
  color: #eee;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.inner {
  margin: 50px auto;
  max-width: 900px;
  width: 95%;
}

.inner h1,
.inner h2,
.inner h3,
.inner h4,
.inner h5,
.inner h6 {
  color: #122e56;
  font-size: 44px;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: -0.88px;
}

.inner a {
  border-bottom: 1px solid #122e56;
  color: inherit;
  padding: 2px;
  text-decoration: none;
}

.inner a:hover {
  background-color: #122e56;
  /* color: #AB093C; */
  color: #fff;
}

/* homepage */
.home-section {
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 20px;
  padding: 20px 20px 40px;
  text-align: center;
  /* background: rgba(18, 46, 86, 0.90); */
}

.dark-section-wrapper {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 15px;
  grid-auto-rows: 1fr;
  /* grid-template-rows: 2fr; */
  margin: 20px auto;
  width: 98%;
}

.dark-section-wrapper .home-section:first-of-type {
  grid-row: 1 / 3;
}

.support-section-wrapper.home-section,
.text-section-wrapper.home-section {
  position: relative;
}

.support-section-wrapper.home-section .inner,
.text-section-wrapper.home-section .inner {
  position: absolute;
  position: relative;
  top: 50%;
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  transform: translateY(-50%);
  width: 90%;
  width: 100%;
}

.support-section-wrapper.home-section h2 {
  color: #fff !important;
}

.light-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto;
  width: 98%;
}

.light-section-wrapper .home-section {
  /* width: 49%; */
  width: calc(50% - 8px);
}

.home-section h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.88px;
}

.home-section p {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.form-wrapper p.small,
.home-section p.small {
  font-size: 12px;
}

.home-section.dark h2 {
  color: #71deff;
}

.home-section.dark p {
  color: #eee;
}

.home-section.light p {
  /* color: #1E1E1E; */
  color: #122e56;
  /* font-weight: 400; */
}

.home-section .inner {
  margin: 0 auto;
  max-width: 650px;
  width: 90%;
}

.form-wrapper {
  max-width: 400px;
  margin: 50px auto;
}

.form-wrapper input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 40px;
  border: 1px solid #122e56;
  background: #eee;
  color: #122e56;
  padding: 15px;
  margin: 10px auto;
  width: 100%;
}

.form-wrapper textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 40px;
  border: 1px solid #122e56;
  background: #eee;
  color: #122e56;
  padding: 15px;
  margin: 10px auto;
  width: 100%;
  resize: none;
}

.form-wrapper select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 40px;
  border: 1px solid #122e56;
  background: #eee;
  color: #122e56;
  padding: 15px;
  margin: 10px auto;
  width: 100%;

  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 97%;
  background-position-y: 0.8rem;
}

.inner a.blue-btn,
.form-wrapper input[type="submit"] {
  border-radius: 40px;
  border: 2px solid #71deff;
  background: rgba(113, 222, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #eee;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.5s ease;
  text-transform: uppercase;
  max-width: 250px;
  cursor: pointer;
}

.light .form-wrapper input[type="submit"] {
  color: #122e56;
}

/* .single-post-card:nth-of-type(even) a.blue-btn, */
.button-wrapper .white-btn {
  border: 2px solid #fff;
  background-color: #eee;
  border-radius: 40px;
  color: #122e56;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  margin: 0.5% auto;
  padding: 15px;
  text-decoration: none;
  text-transform: uppercase;
  width: 32%;
}

/* .single-post-card:nth-of-type(even) a.blue-btn {
	max-width: 250px;
	min-width: 163px;
	text-align: center;
} */

.inner a.blue-btn {
  display: inline-block;
  font-weight: 600;
  margin-top: 20px;
  padding: 15px 30px;
  text-decoration: none;
}

.light .inner a.blue-btn {
  border: 2px solid #122e56;
  color: #122e56;
}

.page-template-page-news_listing .light .inner a.blue-btn {
  background-color: #122e56;
  color: #eee;
}

.light .inner .single-post-card a.blue-btn:hover {
  background-color: #122e56;
  color: #eee;
}

.page-template-page-news_listing .light .inner a.blue-btn:hover {
  background-color: #eee;
  color: #122e56;
}

/* .single-post-card:nth-of-type(even) a.blue-btn:hover, */
.inner .button-wrapper a.white-btn:hover {
  border: 2px solid #71deff;
  background: rgba(113, 222, 255, 0.15);
  color: #eee;
}

.inner a.blue-btn:hover,
.form-wrapper input[type="submit"]:hover {
  background-color: #71deff;
  color: #122e56;
}

.endorsements-listing-wrapper a {
  background: none;
  border: none;
}

.interior-page .inner {
  min-height: 400px;
}

.org-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.org-inner .single-org {
  margin: 20px auto;
  text-align: center;
  width: 25%;
}

.endorse-wrap h2 {
  padding-left: 40px;
}

.org-inner .single-org img {
  height: 200px;
  max-width: 100%;
  min-height: 100%;
  object-fit: contain;
  width: 200px;
}

.single-quote-wrap {
  margin: 50px 0;
}

.single-quote-wrap .by {
  text-align: right;
}

.endorse-wrap {
  /* background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat !important; */
  /* background-color: rgba(113, 222, 255, 0.15); */
  /* border-radius: 20px; */
  /* border: 2px solid #122E56; */
  padding: 20px 20px 5%;
  text-align: left;
  margin: 50px auto;
}

.endorsements-listing-wrapper .inner {
  max-width: 1200px;
  text-align: left;
}

.news-listing-wrapper .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
}

.single-post-card {
  /* background-color: #122E56; */
  background: rgba(113, 222, 255, 0.15);
  border: 2px solid #122e56;
  border-radius: 20px;
  display: inline-block;
  margin: 30px 1%;
  padding: 20px;
  width: 48%;
}

.single-post-card p {
  font-size: 18px;
}

/* .single-post-card:nth-of-type(odd) {
	background-color: #71DEFF;
} */

/* .single-post-card:nth-of-type(even) h4,
.single-post-card:nth-of-type(even) p {
	color: #EEE;
} */

.single-post-card h4 {
  font-size: 25px;
  line-height: 1.5;
}

.single-post-card h4 a {
  border-bottom: 2px solid #122e56;
}

/* .single-post-card:nth-of-type(odd) h4 a {
	border-bottom: 2px solid #122E56;
} */

.person-div {
  display: inline-block;
  vertical-align: top;
  /* margin: 10px 2%;
	width: 45%; */
  margin: 10px 4%;
  width: 41%;
}

.page-template-page-endorsements .hero-wrapper,
.interior-page .hero-wrapper {
  background-color: #122e56;
  padding: 50px 5%;
}

.interior-page .inner .body-wrap {
  width: 100%;
}

.endorsements-listing-wrapper .form-wrapper {
  background: rgba(113, 222, 255, 0.15);
  border: 2px solid #122e56;
  border-radius: 20px;
  max-width: 1200px;
  padding: 50px 5%;
  width: 100%;
}

section.at-inner,
.at-fields {
  background-color: transparent !important;
}

.at .at-fieldset {
  padding: 0 !important;
}

.at-title {
  display: none !important;
}

.at-legal p {
  color: #fff !important;
  font-size: 11px;
}

.at label.at-text {
  margin: 0 !important;
  width: 100% !important;
  flex: auto;
}

.at-markup.UpdateMyProfile {
  display: none !important;
}

.at-submit.btn-at.btn-at-primary {
  border-radius: 40px;
  border: 2px solid #71deff;
  background: rgba(113, 222, 255, 0.15) !important;
  backdrop-filter: blur(5px) !important;
  color: #eee  !important;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.5s ease;
  text-transform: uppercase;
  max-width: 250px;
  cursor: pointer;
  float: none;
  text-shadow: none !important;
}

.at-submit.btn-at.btn-at-primary:hover {
  background-color: #71deff !important;
  color: #122e56 !important;
  text-shadow: none !important;
}

.at label input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 40px !important;
  border: 1px solid #122e56 !important;
  font-family: "Sora", sans-serif !important;
  font-size: 15px !important;
  height: auto !important;
  background: #eee !important;
  color: #122e56 !important;
  padding: 13px !important;
  margin: 10px auto !important;
  width: 100% !important;
}

.form-wrapper input::placeholder {
  font-family: "Sora", sans-serif !important;
}