/*!
Theme Name: Economy Readers
Theme URI: https://www.economyreaders.com
Author: GWT
Author URI: http://genesiswtech.com/
Description: This is Economic Readers Guide Book.
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: Economy Readers
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --lato--font: "Lato", sans-serif;
  --poppins--font: "Poppins", sans-serif;
  --primary--color: #f38342;
  --dark--color: #272727;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

::-moz-selection {
  color: var(--primary--color);
  background-color: var(--dark--color);
}

::selection {
  color: var(--primary--color);
  background-color: var(--dark--color);
}

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

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

p {
  font-family: var(--poppins--font);
  line-height: 27px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--lato--font);
}

a {
  font-family: var(--lato--font);
}

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

ul,
p,
a,
ol {
  padding: 0;
  margin: 0;
}
.show-mobile {
  display: none !important;
}
.hide-mobile {
  display: block !important;
}
.section {
  padding-top: 45px;
  padding-bottom: 45px;
}
.section-t {
  padding-top: 45px;
}
.section-header {
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark--color);
}
.section-header h2.primary-head {
  color: var(--primary--color);
}
.section-header p {
  font-size: 16px;
  line-height: 26px;
  color: #333;
}
.site-header {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sticky-header.uk-sticky.uk-active {
  background-color: #fff;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.site-branding {
  padding: 12px 0;
}
.main-navigation > div > ul {
  margin: 0;
  padding: 0;
  line-height: normal;
  list-style: none;
}

.main-navigation {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.main-navigation > div > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  gap: 35px;
}
.main-navigation > div > ul > li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}
.main-navigation > div > ul > li::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--primary--color);
  left: 0;
  bottom: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-navigation > div > ul > li:hover::after {
  width: 100%;
}
.main-navigation > div > ul > li:hover > a,
.uk-offcanvas-bar .main-navigation > div > ul > li > a:hover {
  color: var(--primary--color);
}
.main-navigation > div > ul > li > a {
  color: var(--dark--color);
  transition: all 0.3s ease;
  font-weight: 600;
}
.uk-offcanvas-bar .main-navigation > div {
  width: 100%;
}
.uk-offcanvas-bar .main-navigation > div > ul {
  gap: 0;
  flex-direction: column;
  padding: 20px 15px;
  padding-bottom: 0;
}
.uk-offcanvas-bar .main-navigation > div > ul > li > a {
  color: #fff;
  font-size: 15px;
}
.uk-offcanvas-bar .main-navigation > div > ul > li:first-child {
  padding-top: 0;
}
.uk-offcanvas-bar .main-navigation > div > ul > li:last-child {
  border-bottom: 0;
}
.uk-offcanvas-bar .main-navigation > div > ul > li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.uk-offcanvas-bar .main-navigation > div > ul > li::after {
  width: 0;
  height: 0;
}

.main-navigation > div > ul > li > ul {
  position: absolute;
  top: 130%;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #ffffff;
  width: 235px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  padding-bottom: 15px;
  padding-top: 15px;
  -webkit-box-shadow: 0 5px 15px #00000038;
  box-shadow: 0 5px 15px #00000038;
  z-index: 9999999;
}

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

.main-navigation > div > ul > li > ul > li > a {
  display: block;
  padding: 10px 15px;
  color: #111;
  font-size: 16px;
}

.site-header-right {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
.site-header-right .social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header-right a {
  color: var(--dark--color);
  font-size: 16px;
  transition: all 0.3s ease;
  margin-left: 15px;
  cursor: pointer;
}
.site-header-right a:hover {
  color: var(--primary--color);
}
.site-header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.searchbtn {
  padding-left: 10px;
  margin-left: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
}

.hamburger i {
  cursor: pointer;
  color: var(--dark--color);
  font-size: 16px;
}
/*homepage*/
.home-bannersection {
  background-color: var(--dark--color);
  position: relative;
}
.home-bannerwrapper {
  display: flex;
  padding: 70px 0;
  align-items: center;
  position: relative;
}

.home-bannersection::after {
  content: " ";
  background-image: url("./assets/img/dollar.png");
  width: 150px;
  height: 150px;
  position: absolute;
  right: 45px;
  bottom: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  -webkit-animation: rotate 10s reverse linear infinite;
  animation: rotate 10s reverse linear infinite;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
.category-section ul {
  display: flex;
  gap: 15px;
  list-style: none;
  align-items: center;
}
.category-section.bg-primary ul li {
  background-color: var(--primary--color);
}
.category-section.bg-primary ul li a {
  color: #222;
}
.category-section ul li {
  padding: 4px 20px;
  border-radius: 18px;
  background-color: #fff;
}
.category-section ul li a {
  color: var(--primary--color);
  font-size: 15px;
  font-weight: 700;
}
.banner-rightsection h1 {
  font-weight: 700;
  color: #fff;
  font-size: 40px;
  margin: 15px 0;
}

.banner-rightsection p {
  color: #fffc;
  font-size: 17px;
}
.blog-img,
.zoom-img,
.top-img {
  overflow: hidden;
}
.blog-img:hover img,
.zoom-img:hover img,
.top-img:hover img {
  transform: scale(1.09);
}
.zoom-img img,
.top-img img {
  transition: all 0.3s ease;
}
.blog-img img {
  width: 100%;
  transition: all 0.3s ease;
  height: 100%;
  object-fit: cover;
}
.blog-content h3 {
  font-size: 17px;
  margin-top: 15px;
  color: #222;
  font-weight: 600;
  transition: all 0.3s ease;
}
.blog-content h3:hover {
  color: var(--primary--color);
}
.blog-content p {
  margin: 8px 0;
  color: #444;
  line-height: 24px;
  font-size: 14px;
}

.readmore {
  font-weight: 600;
  position: relative;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--dark--color);
}
.readmore:hover {
  color: var(--primary--color);
}
.readmore::after {
  content: "\f061";
  font-family: "FONT AWESOME 6 Free";
  font-weight: 900;
  font-family: 16px;
  color: var(--primary--color);
  position: absolute;
  top: 0px;
  right: 4px;
  opacity: 0;
  transition: all 0.3s ease;
}
.readmore:hover::after {
  opacity: 1;
  right: -15px;
}

.latest-section {
  background-color: #eeeeee;
}
.each-latestcontainer {
  background-color: #fff;
  padding: 15px 22px;
}
.each-latestcontainer h2 {
  color: var(--primary--color);
  position: relative;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  display: inline-block;
}
.each-latestcontainer h2::after {
  content: " ";
  width: 40%;
  height: 2px;
  position: absolute;
  bottom: -14px;
  left: 0;
  background-color: var(--dark--color);
}
.each-latestcontainer ul {
  list-style: none;
}
.each-latestcontainer ul li:first-child {
  padding-top: 0;
}
.each-latestcontainer ul li {
  padding: 12px 0;
  border-bottom: 1px solid #eeeeee;
}

.each-latestcontainer ul li a {
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #111;
}
.each-latestcontainer ul li a:hover {
  color: var(--primary--color);
}
.each-latestcontainer ul li:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.eachlecture {
  position: relative;
  max-height: 450px;
}
.eachlecture > a:not(.overlay-icon) {
  position: relative;
  display: block;
  z-index: 1;
  height: 350px;
}
.overlay-content {
  position: absolute;
  z-index: 3;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000000);
  flex-direction: column;
  align-items: center;
}
.overlay-text {
  text-align: center;
  width: 100%;
  padding: 25px 45px;
}
.overlay-text h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.overlay-text p {
  color: #fffd;
  font-size: 15px;
  margin-top: 10px;
  line-height: 20px;
  font-weight: 400;
}

.overlay-icon {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.overlay-icon i {
  color: #ff2626;
  font-size: 50px;
}

.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  padding: 15px !important;
  color: #fff;
  font-size: 30px;
}
.uk-offcanvas-close {
  top: 12px;
  right: 18px;
  color: #000 !important;
}
.uk-offcanvas-bar {
  padding: 0;
  width: 280px;
}
.uk-offcanvas-content {
  display: flex;
  flex-direction: column;
  height: 80%;
  padding-bottom: 15px;
  justify-content: space-between;
}
.offcanvas-logo {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}
/*homepage*/

/*footer*/
.site-footer {
  position: relative;
  overflow: hidden;
}
.footer-section {
  position: relative;
  background-color: #191e24;
}
.footer-section::after {
  content: " ";
  background-image: url(assets/img/book.png);
  background-repeat: no-repeat;
  width: 85px;
  position: absolute;
  bottom: 0;
  transform: rotate(15deg);
  left: 5%;
  filter: brightness(0) invert(1);
  height: 85px;
  background-size: contain;
  opacity: 0.1;
  z-index: 5;
}
.site-footer::before,
.site-footer::after {
  content: " ";
  width: 400px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.01) 80%, transparent);
  position: absolute;
  z-index: 1;
  transform: skewX(45deg) translateX(0%);
}
.shine.site-footer::after,
.shine.site-footer::before {
  animation: slide 1s forwards;
}
@keyframes slide {
  0% {
    transform: skewX(45deg) translateX(-100%);
  }
  100% {
    transform: skewX(45deg) translateX(100%);
  }
}
.site-footer::before {
  top: 0;
  left: 0;
}
.site-footer::after {
  top: 0;
  right: 20%;
}
.footer-wrapper {
  display: grid;
  position: relative;
  z-index: 9;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.site-info {
  grid-column: span 4;
}
.eachlink-container {
  margin-top: 15px;
  grid-column: span 2;
}
.contact-container {
  grid-column: span 4;
}
.site-info p {
  width: 90%;
  line-height: 24px;
  margin: 20px 0;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: #fffd;
}
.uk-offcanvas-bar .social-link {
  justify-content: center;
}
.social-link {
  display: flex;
  gap: 15px;
}
.social-link a {
  color: #fff;
}
.social-link a:hover {
  color: var(--primary--color);
}
.eachlink-container ul {
  list-style: none;
}
.eachlink-container h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
}
.eachlink-container h3::after {
  content: " ";
  position: absolute;
  width: 40%;
  height: 2px;
  background-color: #fffd;
  bottom: -15px;
  left: 0;
}
.eachlink-container ul li i {
  color: #fff;
  margin-right: 15px;
}
.eachlink-container ul li:not(:last-child) {
  padding-bottom: 10px;
}
.eachlink-container ul li a:hover {
  color: var(--primary--color);
}
.eachlink-container ul li a {
  transition: all 0.3s ease;
  color: #fffd;
  font-size: 15px;
  font-weight: 600;
}
.bottom-footer {
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 0;
  position: relative;
  z-index: 9;
}
.bottom-footer p {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}
.bottom-footer a {
  font-weight: 700;
  font-size: 13px;
  color: var(--primary--color);
}
/*footer*/

/*category section*/
.category-list ul {
  list-style: none;
  position: sticky;
  bottom: 0;
  top: 50px;
  padding: 15px;
  background-color: #eeeeee;
}
.category-list ul li:first-child {
  padding-top: 0;
}
.category-list ul li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.category-list ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.category-list ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-list ul li a i {
  transition: all 0.3s ease;
  color: #111;
}
.category-list ul li a span {
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: 600;
  line-height: 20px;
  color: #111;
}
.category-list ul li a:hover i,
.category-list ul li a:hover span {
  color: var(--primary--color);
}
.top-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.top-content .top-img img {
  height: 100%;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}
.top-textcontent h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  transition: all 0.3s ease;
}
.top-textcontent h2:hover {
  color: var(--primary--color);
}
.top-textcontent p {
  font-size: 15px;
  color: #333;
  margin-top: 15px;
}
.all-content-container {
  padding-top: 35px;
}
/*category section*/

/*single page*/
.single-header {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.single-header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}

.single-content p {
  font-size: 17px;
  margin-bottom: 15px;
  color: var(--dark--color);
}
.single-content p strong,
.single-content table strong,
.single-content ol li strong {
  font-family: var(--lato--font);
  font-size: 17px;
  font-weight: 600;
}

.single-content p:last-child {
  margin-bottom: 0;
}
.single-content figcaption {
  text-align: center;
  color: #444;
  font-weight: 600;
  font-size: 15px;
}
.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
  color: var(--primary--color);
  text-decoration: none;
  margin-bottom: 7px;
}

.single-content h1 {
  font-size: 33px;
}
.single-content ol,
.single-content ul {
  margin-bottom: 15px;
  list-style-position: outside;
  padding-left: 15px;
}

.single-content ol li,
.single-content ul li {
  font-size: 17px;
  font-family: var(--lato--font);
  font-weight: 600;
  color: var(--dark--color);
}

.single-content table {
  width: 100%;
  margin-bottom: 15px;
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.single-content table tbody tr {
  text-align: center;
}
.single-content table tbody tr:first-child,
.single-content table thead {
  color: var(--dark--color);
  font-weight: 500;
  font-size: 16px;
  background-color: #eee;
}
.single-content table td {
  padding: 8px 10px;
  font-family: var(--poppins--font);
}
.single-content table tbody tr:not(:first-child) td {
  font-size: 15px;
  color: #222;
  font-weight: 500;
}
.single-content table thead td:not(:last-child),
.single-content table tbody tr td:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

/*single page*/

/*Quotes section*/
.quotes-wrapper {
  position: relative;
}
.quotes-wrapper img {
  width: 65px;
  height: 65px;
}
.quotes-topimg {
  padding: 0 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quotes-topimg img:first-child {
  margin-bottom: -25px;
}
.quotes-bottomimg img,
.quotes-topimg img:first-child {
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.5));
}

.quotes-bottomimg img {
  margin-top: -25px;
}
.quotes-topimg img:last-child {
  margin-bottom: -120px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.quotes-topimg h2 {
  text-transform: uppercase;
  font-size: 38px;
  font-weight: 600;
  font-family: var(--poppins--font);
}
.quotes-content {
  padding: 70px;
  text-align: center;
  border-radius: 31px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.quotes-content p {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}
.quotes-content .quotes-author {
  display: inline-block;
  margin-top: 25px;
  font-size: 16px;
  font-style: italic;
  color: #333;
  font-weight: 500;
  position: relative;
}
.quotes-content .quotes-author::before {
  content: " ";
  width: 30%;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  left: -35%;
}
.quotes-bottomimg {
  padding: 0 30px;
  display: flex;
  justify-content: flex-end;
}

/*Quotes section*/

/*404 page*/
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-404 img {
  max-height: 450px;
}
.error-404 .page-header h1 {
  color: #222;
  font-weight: 600;
}
.error-404 .page-content p {
  font-size: 15px;
  color: #333;
}
.error-404 .page-content .search-form {
  margin-top: 15px;
}
.error-404 .page-content input:not([type="submit"]) {
  width: 250px;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--dark--color);
  background-color: #eee;
  font-family: var(--poppins--font);
  padding: 7px 7px;
  font-weight: 500;
  font-size: 14px;
  color: #011;
}
.error-404 .page-content input[type="submit"] {
  padding: 7px 13px;
  outline: none;
  cursor: pointer;
  border: none;
  background-color: var(--primary--color);
  color: var(--dark--color);
  font-size: 15px;
  font-family: var(--poppins--font);
  font-weight: 500;
}
/*404 page*/

/*about us*/
.aboutuspage-content p,
.the-content p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
  line-height: 29px;
  font-weight: 500;
  text-align: center;
}

.the-content p {
  text-align: left;
}
/*about us*/

/*contact us*/
.contactus-head {
  font-size: 30px;
  font-weight: 600;
}
.contactus-infocontainer {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.contactus-infocontainer:last-child {
  border-bottom: 0;
}

.contactus-infocontainer > i {
  color: var(--dark--color);
  font-size: 25px;
}
.contactus-infocontainer .info-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 15px 0;
}
.contactus-infocontainer .info-content h2 {
  font-family: var(--lato--font);
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}
.contactus-infocontainer .info-content .info-label {
  font-size: 16px;
  color: var(--primary--color);
  font-family: var(--lato--font);
  font-weight: 600;
}
.contactus-infocontainer .info-content a {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--poppins--font);
  margin-top: 5px;
  color: #222;
  word-break: break-all;
}

.contactus-infocontainer .info-content .info-sociallinks {
  margin-top: 5px;
}

.contactus-infocontainer .social-link i {
  color: #222;
  font-size: 16px;
  transition: all 0.5s ease;
}
.contactus-infocontainer .social-link a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: all 0.3s ease;
  background-color: #f383423d;
}
.contactus-infocontainer .social-link a:hover {
  background-color: var(--dark--color);
}
.contactus-infocontainer .social-link a:hover i {
  color: var(--primary--color);
}

.contact-formcontainer {
  background-color: #eee;
  border-radius: 8px;
  padding: 25px 35px;
}
.wpcf7 .wpcf7-form p {
  margin-bottom: 15px;
}
.wpcf7 .wpcf7-form p:last-child {
  margin: 0;
}
.wpcf7 .wpcf7-form p label {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  font-style: normal;
}
.wpcf7 .wpcf7-form p label span input {
  background: #fff;
  line-height: 1.5;
  outline: none;
  border: 1px solid #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 50px;
  padding: 20px;
  width: 100%;
  border: none;
  color: #000;
  font-family: var(--poppins--font);
  font-size: 15px;
}
.wpcf7 .wpcf7-form p .wpcf7-submit {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  border: none;
  padding: 12px 14px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-transform: uppercase;
  background: var(--primary--color);
  font-weight: 600;
}
.wpcf7 .wpcf7-form p label span textarea {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  outline: none;
  padding: 20px;
  margin: 5px 1px 3px 0;
  font-family: var(--poppins--font);
  width: 100%;
  border: none;
  height: 130px;
  background: #fff;
  resize: none;
  color: #000;
  font-size: 17px;
  line-height: 1.8;
}
/*contact us*/

.search-container {
  position: absolute;
  z-index: 69;
  bottom: 0px;
  width: fit-content;
  right: 0;
  opacity: 0;
  padding: 15px;
  background-color: #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 7px;
  transition: all 0.3s ease;
  display: none;
}
.search-container input {
  border: none;
  border-radius: 4px;
  outline: none;
  padding: 7px;
  font-family: var(--poppins--font);
}
.search-container.showsearch {
  display: block;
  animation: fadein 0.4s ease normal forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    bottom: 0;
  }
  100% {
    opacity: 1;
    bottom: -45px;
  }
}
.search-container.showsearch input[type="submit"] {
  background-color: var(--primary--color);
  font-family: var(--poppins--font);
  margin-left: 7px;
  cursor: pointer;
}

.search-container.showsearch input:not([type="submit"]) {
  width: 250px;
}

.close-search {
  color: var(--primary--color);
  margin-left: 15px;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 3px;
}

.custom-logo {
  width: 250px;
}

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