/*!
Theme Name: National Press Club Nepal
Theme URI: https://www.hjfn.org.np
Author: Genesis Web Technology
Author URI: https://www.genesiswtech.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Health Forum
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #0f74a7;
  --secondary-color: #2b9fd9;
}

a,
a:hover,
a:active {
  color: none;
  text-decoration: none;
}

h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: "Noto Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  font-family: "Noto Sans", sans-serif;
  line-height: 28px;
}

body {
  font-family: "Noto Sans", sans-serif;
  /* background: #f8f8f8; */
}

.site-branding {
  padding: 20px 0;
}

.top-header {
  font-size: 12px;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
  color: #333;
}

.site-header {
  z-index: 2;
  background: #fff;
  position: relative;
}

.uk-sticky-fixed .site-branding img {
  width: 200px;
}

.dates i {
  margin-right: 5px;
}

.socials {
  /* margin-right: 20px; */
  margin-top: 10px;
  margin-bottom: 10px;
}

.socials a {
  display: inline-block;
  font-size: 20px;
  margin-left: 9px;
  color: #333;
}

.custom-logo {
	max-width: 150px;
}

.socials a:hover {
  color: var(--primary-color);
}

.top-title {
  color: var(--primary-color);
  font-weight: 600;
  width: 100%;
  margin: 0;
}

.main-navigation {
  background: var(--secondary-color);
  box-shadow: 0 6px 8px #00000014;
}

.main-navigation > div > div > ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.main-navigation > div > div > ul > li {
  list-style: none;
  margin-left: 25px;
}

.main-navigation > div > div > ul > li > a {
  display: block;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 0;
  position: relative;
  text-transform: uppercase;
}

/* .main-navigation>div>div>ul>li>a:hover {
	color: var(--primary-color);
} */

.main-navigation > div > div > ul > li.menu-item-has-children > ul {
  position: absolute;
  top: 150%;
  left: 0;
  margin: 0;
  list-style: none;
  width: 230px;
  background: var(--secondary-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  z-index: 5;
  padding: 0;
}

.main-navigation > div > div > ul > li.menu-item-has-children > ul ul {
  position: absolute;
  top: 0;
  left: 150%;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 300px;
  background: var(--secondary-color);

  opacity: 0;
  visibility: hidden;
}

.main-navigation > div > div > ul > li.menu-item-has-children > ul ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  font-size: 14px;
  align-items: center;
  padding: 11px;
  border-bottom: 1px solid #ffffff17;
  border-top: 1px solid #0000001f;
}

.main-navigation > div > div > ul > li.menu-item-has-children > ul > li {
  position: relative;
}

.main-navigation > div > div > ul > li.menu-item-has-children > ul > li:hover {
  background: #ffffff0d;
}

.main-navigation > div > div > ul > li.menu-item-has-children > ul > li > a {
  color: #fff;
  display: block;
  padding: 6px 25px;
  border-bottom: 1px solid #ffffff17;
  border-top: 1px solid #0000001f;
}

.main-navigation > div > div > ul > li.menu-item-has-children > ul > li > a {
  color: #fff;
  text-decoration: none;
  display: flex;
  font-size: 14px;
  align-items: center;
  padding: 11px;
  padding-left: 16px;
  border-bottom: 1px solid #ffffff17;
  border-top: 1px solid #0000001f;
}

.main-navigation > div > div > ul > li.menu-item-has-children > ul > li:first-child > a {
  border-top: none;
}

.main-navigation > div > div > ul > li.menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.main-navigation > div > div > ul > li.menu-item-has-children ul > li:hover ul {
  opacity: 1;
  visibility: visible;
  left: 100%;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.main-navigation > div > div > ul > li.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}

.main-navigation > div > div > ul > li.menu-item-has-children .dropdown-toggle {
  position: absolute;
  right: -3px;
  top: 20px;
  color: #fff;
}

.main-navigation > div > div > ul > li.menu-item-has-children > ul > li.menu-item-has-children .dropdown-toggle {
  position: absolute;
  right: 10px;
  top: 13px;
  color: #ffff;
}

.uk-offcanvas-bar > div > ul > li {
  position: relative;
}

.uk-offcanvas-bar > div > ul > li.menu-item-has-children > ul > li > a {
  display: block;
  padding: 7px 24px;

  border-top: 1px solid #ffffff0a;
  border-bottom: 1px solid #0000002b;
}

.uk-offcanvas-bar > div > ul > li.menu-item-has-children > ul > li:first-child > a {
  border-top: 0;
}

.uk-offcanvas-bar > div > ul > li.menu-item-has-children span {
  position: absolute;
  right: 0;
  cursor: pointer;
  z-index: 5;
  top: 0;
  width: 50px;
  height: 50px;
  background: #ffffff0d;
  line-height: 50px;
  text-align: center;
}
.uk-offcanvas-bar > div > ul > li.menu-item-has-children > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #ffffff0d;
  display: none;
}

.uk-offcanvas-bar > div > ul > li.menu-item-has-children > ul > li > a:hover {
  background: #00000021;
}

.uk-offcanvas-bar > div > ul > li.menu-item-has-children > ul ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #ffffff0d;
  display: none;
}

.uk-offcanvas-bar > div > ul > li.menu-item-has-children > ul > li {
  position: relative;
}

.uk-offcanvas-bar > div > ul > li.menu-item-has-children > ul > li.menu-item-has-children .dropdown-toggle {
  position: absolute;
  right: 11px;
  cursor: pointer;
  z-index: 5;
  top: 12px;
}

.uk-offcanvas-bar > div > ul > li.menu-item-has-children > ul li a {
  display: block;
  padding: 7px 24px;

  border-top: 1px solid #ffffff0a;
  border-bottom: 1px solid #0000002b;
}

/* .current-menu-item a {
	color: var(--primary-color);
} */

.btn {
  font-family: "Noto Sans", sans-serif;
  background: var(--secondary-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  text-transform: none;
  line-height: normal;
}

.btn-rounded {
  font-family: "Noto Sans", sans-serif;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  text-transform: uppercase;
}

.btn:hover {
  opacity: 0.8;
  color: #fff;
}

.btn svg {
  margin-left: auto;
  font-size: 20px;
  vertical-align: middle;
  font-weight: bold;
}

.btn-black {
  background: #353535;
}

.hamburger-menu {
  cursor: pointer;
  padding: 7px 0;
  margin-left: 20px;
  display: flex;
  margin-left: auto;
}

.hamburger-menu a {
  font-size: 30px;
  color: var(--primary-color);
  margin-right: 20px;
}

.uk-offcanvas-bar {
  padding: 0;
}

.uk-offcanvas-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uk-offcanvas-bar > div > ul > li {
  border-bottom: 1px solid #0000001f;
  border-top: 1px solid #ffffff1f;
  position: relative;
}

.uk-offcanvas-bar > div > ul > li > a {
  padding: 12px 20px;
  display: block;
  font-size: 16px;
}

.responsive-logo {
  text-align: center;
  padding: 20px;
}

.hero-banner {
  padding-top: 200px;
  padding-bottom: 400px;
  position: relative;
}

.hero-banner .img-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-banner .img-bg img {
  min-width: 100%;
  object-fit: cover;
  min-height: 100%;
}

.hero-banner .img-bg img {
  width: 100%;
  height: 100%;
}

.banner-text {
  padding: 70px 70px 70px 110px;
  background: #ffffffc4;
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.main-title h3 {
  font-size: 50px;
  position: relative;
}

.main-title-2 h3 a {
  color: #000;
}

.banner-text .main-title h3::before {
  content: "";
  position: absolute;
  top: 34px;
  left: -65px;
  width: 55px;
  height: 2px;
  background: #000;
  display: block;
}

.client {
  padding: 40px 0;
  margin: 0 0 100px 0;
  background: #fff;
  box-shadow: 0 3px 4px #00000017;
}

.clients {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 60px;
}

.client-wrapper {
  text-align: center;
}

.our-services {
  padding: 40px 0;
}

.meeting-section {
  background: #d5e6f0;
}

.meeting-section h3 {
  margin: 0;
}

.meeting-date {
  font-size: 13px;
  letter-spacing: 0.4px;
  color: #242424;
  margin-bottom: 14px;
}

.news-item .news-wrapper {
  background: #eee;
  padding: 20px;
  position: relative;
}

.img-wrapper {
  position: relative;
}

.img-wrap {
	width: 100%;
	height: 100%;
}

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

.cat-head {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  background: var(--primary-color);
  display: inline-block;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
}

.main-title-2 h3 {
  font-size: 40px;
}

.main-title-medium {
  font-size: 30px;
  margin: 0;
}

.services-types > a {
  display: block;
  height: 462px;
}

.services-types img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.owl-item.active.center .services-types > a {
  height: 564px;
}

.owl-item.active {
  margin-top: 50px;
}

.owl-item.active.center {
  margin: 0;
}

.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-dot {
  width: 16px;
  height: 3px;
  background: #c9cdd3 !important;
  margin-right: 9px;
}

.owl-dot.active {
  background: var(--primary-color) !important;
}

.services-types {
  position: relative;
}

.overlay-content {
  position: absolute;
  padding: 25px;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding-bottom: 22px;
  color: #fff;
}

.services-types::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to bottom, #0000 30%, rgba(0, 0, 0, 0.66) 100%);
}

.news-wrapper .main-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.title h3 a {
  color: #fff;
}

.our-blogs {
  padding: 60px 0;
  background: #eeeeee;
}

.post-user {
  position: relative;
}

.post-user span {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  margin-top: 20px;
  padding-left: 60px;
  color: #4d5b6c;
}

.post-user span::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 46px;
  height: 1px;
  background: #4d5b6c;
  display: block;
}

.blog-content .main-title h3 {
  font-size: 30px;
  line-height: 39px;
}

.text-wrapper .main-title h3 a {
  color: #1e2329;
}

.text-wrapper .main-title {
  margin-top: 20px;
}

.col-blog .blog-content {
  display: flex;
  gap: 30px;
}

.col-blog .post-user span {
  margin: 0;
  padding: 0;
}

.col-blog .post-user span::before {
  display: none;
}

.col-blog .main-title {
  margin-top: 10px;
}

.col-blog .main-title h3 {
  font-size: 23px;
  margin: 0;
  line-height: 33px;
}

.col-blog p {
  margin-top: 10px;
}

.col-blog .text-wrapper {
  flex: 2;
}

.col-blog .blog-content > a {
  flex: 1;
}

.col-blog .blog-content {
  margin-bottom: 20px;
}

.col-blog .blog-content:last-child {
  margin: 0;
}

.blog-content img {
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.reach-out-now {
  padding: 70px 0;
  background: #214f01;
}

.reach-out-now .cat-head h3 {
  color: #fff;
  text-transform: uppercase;
}

.reach-out-now .cat-head:before {
  background: #fff;
}

.reach-out-now .main-title h3,
.reach-out-now p {
  color: #fff;
}

.reach-out-now .main-title h3 {
  line-height: 53px;
}

.contact {
  text-align: center;
}

.contact a.number {
  display: block;
  font-size: 35px;
  color: #fff;
  padding: 20px 0;
}

.contact a.btn {
  margin: 0 auto;
}

.site-footer {
  padding: 50px 0 25px 0;
  background: #f1f1f1;
  position: relative;
}

.footer-logo p {
  font-size: 14px;
  color: #000;
}

.footer-logo .custom-logo-link {
  display: inline-block;
  padding: 10px;
  width: auto;
}

.addresses p {
  margin-top: 10px;
  color: #000;
}
.addresses p svg {
  color: var(--primary-color);
}

.quick-links h3 {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  color: #000;
}

.quick-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-links ul li {
  padding-bottom: 10px;
}

.quick-links ul li a {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  color: #000;
}

.quick-links .socials a {
  text-align: center;
  color: var(--secondary-color);
  font-size: 25px;
  margin-right: 15px;
}

.copyright {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px dotted #b6bcbf;
}

.copyright p {
  margin: 0;
  font-size: 14px;
  color: #000;
}

.copyright a {
  color: #000;
}

.quick-links ul li a:hover,
.copyright a:hover {
  color: #ff7c73;
}

.about-us .cat-head h3 {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about-us .cat-head::before {
  top: 23px;
}

.contact-details p {
  margin: 0;
  color: #000;
}

.contact-details p svg {
  margin-right: 5px;
}

.contact-details a {
  color: #000;
}

.contact-details strong {
  margin-bottom: 10px;
  display: block;
  font-size: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  background: #ddd;
  border-radius: 50%;
  height: 40px;
  text-align: center;
  line-height: 39px;
  color: #fff;
}

.social-links a:hover {
  color: var(--primary-color);
}

.top-socials a {
  display: inline-block;
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 15px;
}

.contact-info {
  background: #e6e8ec;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #c6c7cb;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

input::-webkit-input-placeholder {
  text-transform: uppercase;
}

input::-moz-placeholder {
  text-transform: uppercase;
}

input:-ms-input-placeholder {
  text-transform: uppercase;
}

input::-ms-input-placeholder {
  text-transform: uppercase;
}

input::placeholder {
  text-transform: uppercase;
}

.wpcf7-form-control.wpcf7-submit {
  width: 100px;
  background: var(--primary-color);
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 37px;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

iframe {
  width: 100%;
  height: 500px;
}

.services .btn {
  width: 250px;
}

.blogs .author-user {
  padding: 15px;
  background: #eee;
}

.author-user {
  position: relative;
}

.blogs .author-user > div {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  padding-left: 60px;
  color: #4d5b6c;
}

.blogs .author-user > div::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 20px;
  width: 46px;
  height: 1px;
  background: #4d5b6c;
  display: block;
}

.error-404 .btn {
  display: inline-block;
}

.services-post .text-wrapper a {
  display: block;
}

.services-post .text-wrapper h3 {
  margin: 15px 0 0 0;
  font-size: 22px;
}

.services-post .text-wrapper h3 a {
  color: #4d5b6c;
}

.page-numbers {
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 5px;
  border: 1px solid var(--primary-color);
  color: #000;
  border-radius: 5px;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--primary-color);
  color: #fff;
}

.page-numbers.next,
.page-numbers.prev {
  width: auto;
  padding: 0 10px;
}

.blog-details .main-title h3 {
  font-size: 24px;
  line-height: 35px;
  margin: 0;
}

.blog-details .post-user span {
  padding: 0;
}

.blog-details .post-user span:before {
  display: none;
}

.blog-details .main-title {
  margin-top: 10px;
}

.hero-banner .cat-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  text-align: center;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 1;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero-banner .cat-head h3 {
  color: #fff;
  font-weight: 600;
  font-size: 52px;
  text-transform: uppercase;
}

.hero-banner .cat-head::before {
  display: none;
}

.our-team .img-holder {
  height: 250px;
  overflow: hidden;
  padding: 20px;
  width: 250px;
  margin: auto;
  box-shadow: 0 0 7px -2px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}

.our-team img {
  border-radius: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.our-faculty .info h4,
.testimon .info h4,
.our-children .info h4,
.teams .info h4,
.teams .info h3 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 19px;
  margin: 0;
  line-height: 24px;
}

.teams .info h3 {
  color: #49a4db;
  font-size: 17px;
}

.teams .info h3 a {
  color: var(--primary-color);
}

.our-faculty .info p,
.testimon .info p,
.our-children .info p,
.teams .info p {
  /* font-weight: 600; */
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0;
}

.member-org .info p {
  font-size: 14px;
}

.uk-slidenav {
  padding: 10px 15px;
  background: var(--primary-color);
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 22px;
}

.photo-content > a {
  width: 100%;
  color: #000;
}

.photo-content > a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.org-contact p {
  /* font-weight: 600; */
  font-size: 16px;
  line-height: 24px;
  color: #333;
  margin: 0;
}

.org-contact a {
  color: #333;
}

.org-contact h3 {
  margin-bottom: 5px;
}

.widget .widget-title {
  background: var(--primary-color);
  color: #fff;
  font-size: 22px;
  padding: 6px;
}

.widget {
  background: #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

.widget ul li {
  padding: 0 15px;
  margin-bottom: 10px;
}

.widget ul li a {
  color: #000;
}

.intro-wrapper .cat-head {
  display: inline-block;
}

.intro-wrapper .cat-head::before {
  top: 22px;
  left: -60px;
}

.intro-wrapper .cat-head h2 {
  text-transform: uppercase;
  margin: 0;
}

.button--large {
  display: inline-block;
  width: auto;
  color: #fff !important;
}

.main-title-small {
  font-size: 20px;
}

.latest .news-post {
  padding: 15px 0;
}

.latest .news-post > a {
  margin-right: 20px;
}

.latest .news-post .news-wrapper {
  flex: 2;
}

.img-wrapper > a {
  display: block;
  height: 250px;
	width: 100%;
}

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

.main-content {
  padding: 0 50px;
}

.main-content p {
  color: #000000e3;
  line-height: 1.8;
  text-align: justify;
  margin: 25px 0;
  font-size: 22px;
}

.latest .news-post > a {
  width: 100px;
  height: 100px;
}

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

.main-title-1 {
  font-size: 18px;
  margin-bottom: 0;
}

.team-social a {
  display: inline-block;
  color: var(--primary-color);
  margin-right: 5px;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 20px 0;
  margin-right: 20px;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 30%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

.gallery-item a {
  display: block;
  width: 100%;
}

.gallery-item a img {
  width: 100%;
}

.news-head h3 {
  color: #fff;
  background: var(--secondary-color);
  font-family: "Poppins", sans-serif;
  padding: 7px;
  display: inline-block;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.news-head {
  position: relative;
}

.news-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 100%;
  height: 1px;
  background: var(--secondary-color);
}

.news-content h3 {
  margin: 0;
  margin-top: 18px;
}

.news-content p {
  margin: 10px 0 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.news-content a img {
  width: 100%;
}

.photo-content > a {
  display: block;
  margin-bottom: 15px;
}

.board-members > div > div:first-child {
  width: 100%;
  margin-bottom: 20px;
}

.color-green {
  color: var(--primary-color);
}

.color-green:hover {
  color: var(--primary-color);
}

.main-navigation > div {
  display: flex;
  place-items: center;
  position: relative;
}

.search--box a {
  font-size: 30px;
  color: #fff;
}

.uk-search-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  padding: 20px;
  box-shadow: 0 0 15px #00000052;
  text-align: center;
  display: none;
  z-index: 1;
}

.uk-search .uk-form-icon {
  right: 23px;
}

.uk-search-default .uk-search-input {
  background: #fff;
}

.uk-search-default .uk-search-input:focus {
  background: #fff;
}

.news-content > a:first-child {
  display: block;
  height: 250px;
}

.news-content a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-header a {
  color: #1e1e1e;
}

.scroll-top {
  display: block;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.scroll-top:hover {
  color: #fff;
}

.responsive-menu {
  width: 100%;
}

.news-section .meeting-date {
  color: #f44336;
  font-weight: bold;
}

.search--box {
  margin-left: auto;
}

.btn-small {
  width: auto;
}

.uk-dotnav > * > * {
  display: block;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: 0 0;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid rgba(102, 102, 102, 0.4);
  transition: 0.2s ease-in-out;
  transition-property: background-color, border-color;
}

.uk-dotnav > .uk-active > * {
  background-color: var(--primary-color);
  border-color: transparent;
}

.btn-large {
  display: block;
  background: #f1f1f1;
  color: var(--primary-color);
  height: 70px;
  line-height: 47px;
  font-size: 16px;
  font-weight: bold;
  text-transform: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.btn-large:hover {
  background: var(--primary-color);
  color: #fff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.row-wrapper > a {
  margin-bottom: 24px;
}

.members--section {
  background: #d5e6f0;
  margin-top: 40px;
}

.get-membership .main-title-medium h3 {
  margin: 0;
  font-size: 30px;
}

.cta__btn .btn {
  padding: 16px 30px;
}

.president-name-wrapper span {
  display: block;
  color: #333;
  font-size: 20px;
}

.president-name-wrapper img {
  width: 170px;
  height: 170px;
  border-radius: 30px;
}

.addresses {
  position: relative;
}

.cat-head {
  color: #fff;
}

.details > div {
  text-align: right;
}

.president-details h3 strong {
  font-size: 30px;
  text-align: center;
}

.details > div span:first-child {
  padding-top: 20px;
  border-top: 1px solid #333;
  display: inline-block;
}

.press-release strong {
  display: block;
  margin-top: 8px;
}

.press-release a {
  color: #1a3393;
}

.press-title h3 {
  font-size: 30px;
}

.president-details p {
  height: 200px;
  overflow: auto;
}

.news-wrapper a {
  color: var(--secondary-color);
}

.title a {
  color: #1e2329;
}

.intro-wrapper p {
  text-align: justify;
  padding: 20px;
  margin: 0;
}

.president-details h3 {
  text-align: center;
}

.quick-links > div > ul {
  display: grid;
  grid-column-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}

.quick-links form {
  display: flex;
  align-items: center;
}

.quick-links p {
  margin: 0;
  margin-bottom: 5px;
}

.quick-links form p {
  margin-top: 0;
  position: relative;
}

div.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-image: url("../../assets/ajax-loader.gif");
  width: 16px;
  height: 16px;
  border: none;
  padding: 0;
  margin: 0 0 0 4px;
  vertical-align: middle;
  position: absolute;
}

.quick-links .news-head h3 {
  background: #f1f1f1;
  color: #000;
}

.quick-links .news-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 100%;
  height: 1px;
  background: #000;
}

.cta-button p {
  margin: 0;
  margin-right: 10px;
  color: var(--primary-color);
}

.quick-links form p {
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.mc4wp-form-theme input[type="submit"] {
  margin-top: 17px;
}

#menu-item-301 a {
  color: rgba(255, 0, 0, 0.829);
}

.paypal-btn {
  margin-right: 10px;
  display: inherit;
}

.entry-content p {
  margin: 20px 0;
  font-size: 18px;
}

.news-wrapper p {
  margin: 0;
}

.three-column .news-wrapper .main-title {
  margin: 0;
}

.three-column .news-wrapper span a {
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}

.news-item .news-post .img-wrapper > a {
  height: 150px;
  width: 150px;
}

.events {
  background: #eee;
  padding: 20px;
  position: relative;
}

.events .news-post {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #0000007a;
}

.events .news-post:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.events p {
  margin: 0;
  color: var(--secondary-color);
  font-size: 14px;
}

.homeintroblock
{
  background: #f0f0f0;
}

.news-wrapper p {
  margin: 10px 0 0 0;
  font-size: 18px;
  color: #333333;
}


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

.brand-news > div {
  flex: 2;
  padding: 0;
  margin-left: 35px;
}

.brand-news > div:first-child {
  margin: 0;
}

.brand-news .news-title-med {
  font-size: 30px;
}

.category-area .news-post>a {
  display: block;
  height: 70px;
  margin-right: 20px;
  flex: 2;
  width: 98px;

}

.category-area .news-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.category-area .news-wrapper {
  flex: 4;
  margin: 0;
}

.category-area .news-post {
  border-bottom: #CCC solid 1px;
  padding-bottom: 30px;
}


.uk-dates {
  font-size: 14px;
  color: #333333;
  margin-top: 8px;
}

.img-holder > a {
  width: 100%;
  height: 100%;
  display: block;
}

.old-executive .btn {
padding: 12px;
	display: inline-block;
	margin-right: 15px;
}

.old-executive .btn:last-child {
	margin: 0;
}


.old-executive .btn:last-child {
  margin: 0;
}

.entry-content ul li, .entry-content ol li {
  margin-bottom: 7px;
}