/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
/*-----------------
    # Typography
-----------------*/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500;600;700&family=Kalam:wght@300;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*-----------------
    # Typography
-----------------*/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500;600;700&family=Kalam:wght@300;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
:root {
  --main-color-one: #5922f2;
  --main-color-two: #000565;
  --secondary-color: #5922f2;
  --heading-color: #000000;
  --paragraph-color: #727777;
  --heading-font: "Barlow Semi Condensed", sans-serif;
  --heading-font-02: "Kalam", cursive;
  --body-font: "Roboto", sans-serif;
  --animate-delay: 0.3s;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 14px;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-image: linear-gradient(125deg, #DD131A 0%, #1c1f34 100%);
  border-radius: 10px;
}

h1 {
  font-size: 48px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}

h3 {
  font-size: 24px;
  line-height: 1.0833333333;
}

h4 {
  font-size: 20px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #5922f2;
  font-family: var(--heading-font);
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
  line-height: 24px;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--paragraph-color);
}

.copyright-area-inner a {
  color: #abfff6;
  text-decoration: none;
}

.copyright-area-inner a:hover {
  color: #5922f2;
}

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

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

code {
  color: #061cde;
}

.dark-bg {
  background-color: #111d5c;
}

.section-bg-1 {
  background-color: #f4f7fc;
}

.check-list-02 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list-02 li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list-02 li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "\f00c";
  color: var(--main-color-one);
}

.error {
  color: #dc3545 !important;
}

.logo-wrapper .logo {
  padding-left: 60px;
}

.logo-wrapper .logo img {
  height: 50px;
  width: 100px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "\f105";
  color: var(--main-color-one);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-navigation .nav-previous > a,
.posts-navigation .nav-previous > a,
.post-navigation .nav-previous > a,
.comment-navigation .nav-next > a,
.posts-navigation .nav-next > a,
.post-navigation .nav-next > a {
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover > a,
.posts-navigation .nav-previous:hover > a,
.post-navigation .nav-previous:hover > a,
.comment-navigation .nav-next:hover > a,
.posts-navigation .nav-next:hover > a,
.post-navigation .nav-next:hover > a {
  color: var(--main-color-one);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.padding-left-0 {
  padding-left: 0;
}

.padding-right-0 {
  padding-left: 0;
}

.gray-bg {
  background-color: #f5f5f5;
}

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

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-top-45 {
  padding-top: 45px;
}

.padding-top-55 {
  padding-top: 55px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-65 {
  padding-top: 65px;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-top-75 {
  padding-top: 75px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-top-85 {
  padding-top: 85px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-top-95 {
  padding-top: 95px;
}

.padding-top-100 {
  padding-top: 100px;
}

.padding-top-105 {
  padding-top: 105px;
}

.padding-top-110 {
  padding-top: 110px;
}

.padding-top-115 {
  padding-top: 115px;
}

.padding-top-120 {
  padding-top: 0px;
}

.padding-top-140 {
  padding-top: 140px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-top-160 {
  padding-top: 160px;
}

.padding-top-190 {
  padding-top: 190px;
}

.padding-top-200 {
  padding-top: 200px;
}

.padding-top-210 {
  padding-top: 210px;
}

.padding-top-260 {
  padding-top: 260px;
}

.padding-top-310 {
  padding-top: 310px;
}

.padding-top-360 {
  padding-top: 360px;
}

.padding-top-390 {
  padding-top: 390px;
}

.padding-top-400 {
  padding-top: 400px;
}

.padding-top-600 {
  padding-top: 600px;
}

.padding-top-640 {
  padding-top: 640px;
}

.padding-top-720 {
  padding-top: 720px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-bottom-35 {
  padding-bottom: 35px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}

.padding-bottom-45 {
  padding-bottom: 45px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-bottom-55 {
  padding-bottom: 55px;
}

.padding-bottom-60 {
  padding-bottom: 10px;
}

.padding-bottom-65 {
  padding-bottom: 65px;
}

.padding-bottom-70 {
  padding-bottom: 0px;
}

.padding-bottom-75 {
  padding-bottom: 75px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-bottom-85 {
  padding-bottom: 85px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-bottom-95 {
  padding-bottom: 95px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}

.padding-bottom-110 {
  padding-bottom: 110px;
}

.padding-bottom-105 {
  padding-bottom: 105px;
}

.padding-bottom-115 {
  padding-bottom: 115px;
}

.padding-bottom-120 {
  padding-bottom: 120px;
}

.padding-bottom-130 {
  padding-bottom: 130px;
}

.padding-bottom-140 {
  padding-bottom: 140px;
}

.padding-bottom-135 {
  padding-bottom: 135px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-bottom-280 {
  padding-bottom: 280px;
}

.padding-bottom-285 {
  padding-bottom: 285px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-bottom-160 {
  padding-bottom: 160px;
}

.padding-bottom-165 {
  padding-bottom: 165px;
}

.padding-bottom-170 {
  padding-bottom: 170px;
}

.padding-bottom-180 {
  padding-bottom: 180px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-bottom-215 {
  padding-bottom: 215px;
}

.padding-bottom-260 {
  padding-bottom: 260px;
}

.padding-bottom-300 {
  padding-bottom: 300px;
}

.padding-bottom-350 {
  padding-bottom: 350px;
}

.padding-bottom-460 {
  padding-bottom: 460px;
}

.margin-top-minus-90 {
  margin-top: -90px;
}

.margin-top-minus-100 {
  margin-top: -100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-top-160 {
  margin-top: 160px;
}

.padding-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.padding-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.padding-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.padding-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.margin-top-10 {
  margin-top: 10px;
}

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

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-55 {
  margin-top: 55px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-top-90 {
  margin-top: 90px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-bottom-120 {
  margin-bottom: 60px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-top-100 {
  margin-bottom: 100px;
}

.margin-top-110 {
  margin-top: 110px;
}

.margin-top-115 {
  margin-top: 115px;
}

.margin-top-120 {
  margin-top: 50px;
}

.min-height-600 {
  min-height: 600px;
}

.overflow-hidden {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.blog-pagination ul li {
  display: inline-block;
}

.blog-pagination ul li + li {
  margin: 0 5px;
}

.blog-pagination ul li {
  display: inline-block;
}

.blog-pagination ul li + li {
  margin: 0 5px;
}

.blog-pagination {
  display: block;
  width: 100%;
}

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

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: block;
  padding: 3px 25px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

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

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

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

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

.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;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
  margin: 0 5px;
  transition: 0.3s ease-in;
}

.wp-link-pages {
  margin-bottom: 30px;
  margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.wp-link-pages span:first-child {
  margin-right: 5px;
}

dl,
ol,
ul {
  padding-left: 15px;
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
}

.post-password-form label {
  font-weight: 600;
  color: #333;
}

.post-password-form input[type=submit] {
  width: 100px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
  background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.5rem !important;
}

.widget {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
}
.widget.two {
  max-height: 550px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.widget.style-01 {
  padding: 0;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget ul li {
  margin: 8px 0;
  display: block;
  -ms-word-wrap: break-word;
  word-break: break-word;
}
.widget ul li + li {
  margin-top: 10px;
}
.widget ul li:before {
  display: none;
}
.widget ul li:last-child {
  margin-bottom: 0;
}
.widget ul li:first-child {
  margin-top: 0;
}
.widget ul li a {
  color: #000;
  transition: all 0.3s ease-in;
}
.widget ul li a:hover {
  color: var(--main-color-one);
}
.widget ul li a.rsswidget {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.widget ul li .rss-date {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}
.widget ul li ul {
  margin-left: 20px;
  margin-top: 10px;
}
.widget ul li ul.sub-menu {
  position: initial;
  visibility: visible;
  opacity: 1;
  background-color: transparent;
  border-top: none;
  box-shadow: none;
  margin-top: 10px;
}
.widget ul li ul.sub-menu li a {
  padding: 0 0 0 10px;
}
.widget ul li ul.sub-menu li a:hover {
  background-color: transparent;
}
.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget h5,
.widget h6,
.widget .widget-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  font-family: var(--body-font);
}
.widget h1.style-01,
.widget h2.style-01,
.widget h3.style-01,
.widget h4.style-01,
.widget h5.style-01,
.widget h6.style-01,
.widget .widget-title.style-01 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 30px;
  position: relative;
  font-weight: 700;
}
.widget h1.style-01:after,
.widget h2.style-01:after,
.widget h3.style-01:after,
.widget h4.style-01:after,
.widget h5.style-01:after,
.widget h6.style-01:after,
.widget .widget-title.style-01:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  height: 60%;
  width: 100%;
  border-left: 5px solid var(--main-color-one);
}
.widget h1.style-02,
.widget h2.style-02,
.widget h3.style-02,
.widget h4.style-02,
.widget h5.style-02,
.widget h6.style-02,
.widget .widget-title.style-02 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 30px;
  position: relative;
  font-weight: 700;
}
.widget h1.style-02:after,
.widget h2.style-02:after,
.widget h3.style-02:after,
.widget h4.style-02:after,
.widget h5.style-02:after,
.widget h6.style-02:after,
.widget .widget-title.style-02:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -34px;
  transform: translateY(-50%);
  height: 60%;
  width: 100%;
  border-left: 5px solid var(--main-color-one);
}
.widget h1.style-03,
.widget h2.style-03,
.widget h3.style-03,
.widget h4.style-03,
.widget h5.style-03,
.widget h6.style-03,
.widget .widget-title.style-03 {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 30px;
  position: relative;
  font-weight: 700;
}
.widget h1.style-03:after,
.widget h2.style-03:after,
.widget h3.style-03:after,
.widget h4.style-03:after,
.widget h5.style-03:after,
.widget h6.style-03:after,
.widget .widget-title.style-03:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  height: 60%;
  width: 100%;
  border-left: 5px solid var(--main-color-one);
}
.widget select {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  position: relative;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
  background-repeat: no-repeat;
  background-position-y: 55%;
  background-position-x: 92%;
  color: var(--paragraph-color);
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .footer-widget {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 40px;
}

.widget.widget_nav_menu ul li.menu-item-has-children:after {
  display: none;
}

.widget ul li,
.comments-area .comment-list li,
.comments-area .comment-list li.comment {
  padding-left: 0;
}

.comments-area .comment-list li:before,
.comments-area .comment-list li.comment:before {
  display: none;
}

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

.widget-nav-menu ul li + li {
  border-top: 1px solid #2c3e88;
}

.widget_search .search-form {
  position: relative;
}
.widget_search .search-form .form-group {
  margin-bottom: 0;
}
.widget_search .search-form .form-group .form-control {
  height: 50px;
  border: 1px solid #D5E0EF;
  border-radius: 4px;
  padding: 0 70px 0 15px;
  background-color: #FFFFFF;
}
.widget_search .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  font-size: 20px;
  color: var(--main-color-one);
  background-color: transparent;
  border-radius: 0 30px 30px 0;
  transition: 0.3s ease-in;
  border: none;
  cursor: pointer;
}
.widget_search .search-form .submit-btn:focus {
  outline: none;
}
.widget_search .search-form .submit-btn:hover {
  background-color: var(--hover-color);
  color: var(--heading-color);
}

.widget_author_meta {
  text-align: center;
}
.widget_author_meta .thumb {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.widget_author_meta .thumb img {
  border-radius: 50%;
}
.widget_author_meta .content .name {
  font-size: 21px;
  font-weight: 700;
}
.widget_author_meta .content .name p {
  font-size: 16px;
  line-height: 26px;
}
.widget_author_meta .content .name ul {
  margin-top: 25px;
}
.widget_author_meta .content .name ul li {
  display: inline-block;
  margin: 0 5px;
}
.widget_author_meta .content .name ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease-in;
}
.widget_author_meta .content .name ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.widget_tag_cloud {
  padding: 30px 30px 25px 35px;
}
.widget_tag_cloud .tagcloud a {
  display: inline-flex;
  justify-content: center;
  padding: 8px 12px;
  text-transform: capitalize;
  border-radius: 2px;
  font-size: 14px !important;
  line-height: 20px;
  font-family: var(--body-font);
  font-weight: 400;
  background: rgb(0, 7, 146);
  margin-right: 5px;
  margin-bottom: 10px;
  color: #7A7A7A;
  border: 1px solid #D5E0EF;
  transition: 0.5s all ease;
}
.widget_tag_cloud .tagcloud a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 30px;
}
.widget_nav_menu ul li {
  margin: 10px 0;
}
.widget_nav_menu ul li:last-child {
  margin-bottom: 0;
}
.widget_nav_menu ul li:first-child {
  margin-top: 8px;
}
.widget_nav_menu ul li a {
  border: none;
}
.widget_nav_menu ul li > ul {
  margin-left: 15px;
}

.widget.widget_archive {
  padding: 28px 30px 30px 34px;
}
.widget.widget_archive ul li:first-child {
  padding-top: 0;
}
.widget.widget_archive ul li + li {
  margin-top: 15px;
}
.widget.widget_archive ul li:last-child {
  border-bottom: none;
}
.widget.widget_archive ul li a i {
  margin-right: 5px;
}

.widget ul.widget_categories li + li {
  margin-top: 15px;
}

.widget_archive ul li {
  padding: 10px 0;
  border-bottom: 1px dashed #D5E0EF;
}
.widget_archive ul li a {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--body-font);
  font-weight: 400;
}
.widget_archive ul li a i {
  color: var(--hover-color);
  position: static;
  font-weight: 900;
  font-size: 15px;
  padding-right: 8px;
}
.widget_archive ul li span {
  float: right;
}

.widget.footer-widget.widget_calendar table {
  margin-bottom: 0;
}

.widget.footer-widget {
  background-color: transparent !important;
  padding: 0;
}
.widget.footer-widget .social-links {
  margin-bottom: 15px;
  position: relative;
  z-index: 99;
}
.widget.footer-widget .social-links a {
  margin-right: 10px;
}
.widget.footer-widget .social-links a .fa-facebook-f {
  color: var(--main-color-two);
  background-color: #fff;
}
.widget.footer-widget .social-links a .fa-facebook-f:hover {
  background-color: var(--main-color-two);
  color: #fff;
}
.widget.footer-widget .social-links a .fa-twitter {
  color: #14171A;
}
.widget.footer-widget .social-links a .fa-twitter:hover {
  background: #14171A;
}
.widget.footer-widget .social-links a .fa-linkedin-in {
  color: #0077b5;
}
.widget.footer-widget .social-links a .fa-linkedin-in:hover {
  background: #0077b5;
}
.widget.footer-widget .social-links a .fa-youtube {
  color: #FF0000;
}
.widget.footer-widget .social-links a .fa-youtube:hover {
  background: #FF0000;
}
.widget.footer-widget .social-links a i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 15px;
  border-radius: 5px;
  transition: 0.3s all ease;
  background-color: #fff;
}
.widget.footer-widget .social-links a i:hover {
  color: #fff;
}
.widget.footer-widget .social-links a i:last-child {
  margin-right: 0;
}
.widget.footer-widget.style-01 {
  border: none;
  padding-top: 70px;
}
.widget.footer-widget.style-01 .widget-title {
  color: var(--heading-color);
}
.widget.footer-widget.style-01 ul li {
  color: var(--heading-color);
}
.widget.footer-widget.style-01 ul li a {
  color: var(--heading-color);
}
.widget.footer-widget.style-01 ul li:hover {
  color: var(--main-color-two);
}
.widget.footer-widget.style-01 ul li:hover a {
  color: var(--main-color-two);
}
.widget.footer-widget ul li a {
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  font-family: var(--body-font);
  position: relative;
}
.widget.footer-widget ul li a:hover {
  transition: 0.5s all;
  color: #95f095;
  margin-left: 8px;
}
.widget.footer-widget .footer-left {
  margin-top: 0px !important;
  margin-left: 30px !important;
}
.widget.footer-widget .widget-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 3px;
  text-transform: capitalize;
  position: relative;
  font-family: var(--body-font);
}
.widget.footer-widget .widget-title .line {
  margin-top: -15px;
  display: block;
}
.widget.footer-widget .widget-title .line .dot {
  display: inline-block;
  height: 3px;
  width: 5px;
  background-color: var(--main-color-one);
}
.widget.footer-widget .widget-title .line .dot.style-02 {
  width: 22px;
}
.widget.footer-widget .widget-title:before {
  display: none;
}
.widget.footer-widget .widget-title p {
  color: #fff;
  font-size: 14px;
}
.widget.footer-widget.widget_tag_cloud .tagcloud {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_tag_cloud .tagcloud a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_recent_comments ul li a:after {
  display: none;
}
.widget.footer-widget.widget_recent_comments ul li a:hover {
  padding-left: 0;
}
.widget.footer-widget.widget_calendar table th {
  border: 1px solid #ddd;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_calendar table th a {
  font-weight: 600;
  text-decoration: underline;
}
.widget.footer-widget.widget_calendar table td {
  border: 1px solid #ddd;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_calendar table td a {
  font-weight: 600;
  text-decoration: underline;
}
.widget.footer-widget .subscribe-form .form-group {
  display: flex;
  margin-bottom: 20px;
}
.widget.footer-widget .subscribe-form .form-group .form-control {
  width: 100%;
  height: 50px;
  border-radius: 4px;
}
.widget.footer-widget .subscribe-form .form-group .form-control::-moz-placeholder {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--body-font);
  text-align: center;
}
.widget.footer-widget .subscribe-form .form-group .form-control::placeholder {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-family: var(--body-font);
  text-align: center;
}
.widget.footer-widget .subscribe-form .submit-btn {
  border: none;
  border-radius: 50px;
  background-color: var(--secondary-color);
  width: 85px;
  height: 55px;
  font-size: 25px;
  color: #fff;
  transition: all 0.5s;
  margin-left: 15px;
  cursor: pointer;
}
.widget.footer-widget .subscribe-form .submit-btn:hover {
  background-color: rgb(0, 7, 146);
  color: var(--main-color-one);
}
.widget.footer-widget .subscribe-form .submit-btn.style-01 {
  background-color: #007bcf;
}
.widget.footer-widget .wp-calendar-nav {
  padding: 8px 0;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-prev {
  color: rgba(255, 255, 255, 0.7);
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-next {
  color: rgba(255, 255, 255, 0.7);
}

.widget ul > li:last-child {
  padding-bottom: 0;
}
.widget img {
  height: auto;
}

.footer-widget.widget_nav_menu ul li a {
  position: relative;
}

.footer-style .footer-area {
  background-color: var(--heading-color);
}

.footer-area .footer-top .footer-widget .menu li ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget_tag_cloud.footer-widget .tagcloud a {
  background-color: var(--main-color-one);
}

.wp-block-calendar caption {
  caption-side: top;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  color: var(--heading-color);
  background-color: #ddd;
}

.widget_calendar caption {
  caption-side: top;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  color: var(--heading-color);
  background-color: #ddd;
}

.wp-block-calendar table th {
  background-color: transparent;
}

.widget_recent_comments ul li {
  position: relative;
}
.widget_recent_comments ul li:before {
  position: static;
  font-family: "Font Awesome 5 Free";
  content: "\f4ad";
  padding-right: 5px;
}

.widget .widget_calendar caption {
  color: var(--paragraph-color);
}

.widget_calendar table td {
  border: 1px solid #ddd;
  padding: 8px;
}
.widget_calendar table th {
  border: 1px solid #ddd;
  padding: 8px;
}

#wp-calendar {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
#wp-calendar th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.widget_recent_comments ul li a {
  text-decoration: underline;
}

.social_share {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
}
.social_share li {
  margin: 0;
  display: block;
  padding-top: 15px;
  text-align: center;
  border-radius: 5px;
  color: var(--main-color-two);
}
.social_share li a:after {
  display: none;
}
.social_share li i {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}
.social_share li.facebook {
  background-color: #fff;
}
.social_share li.twitter {
  background-color: #14171A;
}
.social_share li.instagram {
  background-color: #e4405f;
}
.social_share li a:hover {
  color: var(--secondary-color);
}
.social_share li + li {
  margin-left: 10px;
}

.footer-widget .recent_post_item li.single-recent-post-item + li {
  border-top: initial;
  padding-top: 0;
}

.widget.widget_recent_posts {
  padding: 28px 30px 20px 34px;
}

.recent_post_item {
  margin: 0;
  padding: 0;
  list-style: none;
}
.recent_post_item li {
  display: block;
}
.recent_post_item li + li {
  margin-top: 20px;
}
.recent_post_item li.single-recent-post-item {
  display: flex;
  align-self: flex-start;
  padding-bottom: 10px;
}
.recent_post_item li.single-recent-post-item + li {
  padding-top: 20px;
  border-top: 1px dashed #D5E0EF;
}
.recent_post_item li.single-recent-post-item .thumb {
  width: 70px;
  border-radius: 50%;
  height: 70px;
  margin-right: 15px;
}
.recent_post_item li.single-recent-post-item .thumb a:before {
  display: none;
}
.recent_post_item li.single-recent-post-item .thumb a:hover {
  padding-left: 0;
}
.recent_post_item li.single-recent-post-item .thumb a:after {
  display: none;
}
.recent_post_item li.single-recent-post-item .thumb img {
  border-radius: 4px;
  width: 100%;
}
.recent_post_item li.single-recent-post-item .content {
  flex: 1;
}
.recent_post_item li.single-recent-post-item .content .title {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--body-font);
  font-weight: 700;
  color: var(--heading-color);
}
.recent_post_item li.single-recent-post-item .content .title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  padding-left: 0;
}
.recent_post_item li.single-recent-post-item .content .title a:hover {
  color: var(--main-color-one);
}
.recent_post_item li.single-recent-post-item .content .title a:before {
  display: none;
}
.recent_post_item li.single-recent-post-item .content .title a:after {
  display: none;
}
.recent_post_item li.single-recent-post-item .content .time {
  font-size: 14px;
  line-height: 24px;
  font-family: var(--body-font);
  font-weight: 500;
}
.recent_post_item li.single-recent-post-item .content .time i {
  color: var(--main-color-one);
  padding-right: 5px;
}

.contact_info_list {
  margin: 0;
  padding: 60px 0px 0px;
  list-style: none;
  margin-top: 12px;
}
.contact_info_list .address {
  margin-left: -6px;
}
.contact_info_list li {
  display: block;
}
.contact_info_list li.single-info-item {
  margin-bottom: 20px;
  display: flex;
  align-self: flex-start;
}
.contact_info_list li.single-info-item.style-01 .icon {
  color: var(--main-color-two);
}
.contact_info_list li.single-info-item.style-01 .details {
  padding-left: 40px;
  flex: 1;
}
.contact_info_list li.single-info-item .icon {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 0;
}
.contact_info_list li.single-info-item .icon i.rotate-90 {
  rotate: 90deg;
}
.contact_info_list li.single-info-item .icon.style-01 {
  font-size: 20px;
  margin-left: 5px;
}
.contact_info_list li.single-info-item .details {
  margin-left: 12px;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--body-font);
  font-weight: 400;
  color: #fff;
}
.contact_info_list li.single-info-item .details.style-02 {
  margin-left: 10px;
}

.about_us_widget.style-01 {
  padding-right: 0;
}
.about_us_widget .footer-logo {
  margin-bottom: 20px;
  display: block;
}
.about_us_widget p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-family: var(--body-font);
  font-weight: 400;
  margin-bottom: 15px;
  text-align: justify;
}

.widget-testimonial .icon {
  font-size: 70px;
  line-height: 60px;
  color: var(--main-color-two);
  margin-bottom: 16px;
}
.widget-testimonial p {
  color: #fff;
  line-height: 1.6;
}
.widget-testimonial .author-meta {
  display: flex;
  align-self: flex-start;
  margin-top: 24px;
}
.widget-testimonial .author-meta .thumb {
  margin-right: 20px;
}
.widget-testimonial .author-meta .thumb img {
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
}
.widget-testimonial .author-meta .content {
  flex: 1;
  margin-top: 15px;
}
.widget-testimonial .author-meta .content .name {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.widget-testimonial .author-meta .content .designation {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.widget.widget_media_gallery .gallery {
  margin-bottom: 0;
}

.widget_edus_post_category ul li:hover a {
  background-color: var(--main-color-one);
}
.widget_edus_post_category ul li:hover a .title {
  color: #fff;
}
.widget_edus_post_category ul li .title {
  padding: 0 20px;
  background-color: var(--secondary-color);
  position: relative;
  line-height: 50px;
  font-family: var(--body-font);
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease-out 0s;
}
.widget_edus_post_category ul li .title span {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--hover-color);
  color: #fff;
  transition: all 0.3s ease-out 0s;
}

.about_me_widget .content {
  text-align: center;
}
.about_me_widget .content .thumb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: auto;
}
.about_me_widget .content .thumb img {
  border-radius: 50%;
}
.about_me_widget .content .title {
  font-size: 18px;
  margin-top: 30px;
  font-weight: 700;
}
.about_me_widget .content p {
  padding-top: 10px;
}

.edus-widget-about {
  border: 2px solid #f7f7f7;
}

.about_me_two_widget p {
  font-size: 16px;
  line-height: 26px;
}
.about_me_two_widget .content-wrap {
  display: flex;
  margin-top: 20px;
}
.about_me_two_widget .thumb {
  width: 60px;
  margin-right: 20px;
}
.about_me_two_widget .title {
  font-size: 20px;
  font-weight: 600;
}
.about_me_two_widget .designation {
  color: var(--main-color-one);
}

.widget_edus_service_category.widget {
  padding: 0;
}
.widget_edus_service_category ul li a {
  display: flex;
  background: #f7f7f7;
  align-items: center;
  justify-content: space-between;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
}
.widget_edus_service_category ul li a.active, .widget_edus_service_category ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.widget_edus_service_category ul li a.active span, .widget_edus_service_category ul li a:hover span {
  opacity: 1;
}
.widget_edus_service_category ul li a span {
  opacity: 0;
}
.widget_edus_service_category ul li + li {
  margin-bottom: 10px;
}

.widget.widget_media_image ul li {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.widget.widget_media_image ul li:hover::after {
  opacity: 1;
  visibility: visible;
}
.widget.widget_media_image ul li:hover i {
  opacity: 1;
  visibility: visible;
}
.widget.widget_media_image ul li::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 5px;
  top: 0;
  right: 5px;
  bottom: 0;
  background: rgba(221, 19, 26, 0.4);
  border-radius: 4px;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}
.widget.widget_media_image ul li img {
  max-width: 94px;
  padding: 0px 5px;
}
.widget.widget_media_image ul li i {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}

.edus-service-doct.widget {
  padding: 0;
}
.edus-service-doct .doc-link li a {
  display: flex;
  background: transparent;
  align-items: center;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #f7f7f7;
}
.edus-service-doct .doc-link li a i {
  margin-right: 20px;
  color: #061cde;
}
.edus-service-doct .doc-link li a.active, .edus-service-doct .doc-link li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.edus-service-doct .doc-link li a.active i, .edus-service-doct .doc-link li a:hover i {
  color: #fff;
}
.edus-service-doct .doc-link li + li {
  margin-bottom: 10px;
}

.widget.widget_subscribe {
  background-color: var(--main-color-one) !important;
  padding: 30px 45px;
  border-radius: 0px 0px 10px 10px;
  margin-top: -90px;
  position: relative;
}
.widget.widget_subscribe .header-content {
  text-align: center;
}
.widget.widget_subscribe.political {
  margin-top: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 39px 54px;
  margin-bottom: 80px;
}
.widget.widget_subscribe.political.style-01 {
  position: relative;
  top: -70px;
  margin-bottom: 0;
}
.widget.widget_subscribe.political::after {
  content: none;
}
.widget.widget_subscribe.political::before {
  content: none;
}
.widget.widget_subscribe .footer-form {
  flex: 1;
  margin-right: 20px;
  margin-left: 80px;
}
.widget.widget_subscribe .footer-form .form-group {
  margin-bottom: 0;
}
.widget.widget_subscribe .footer-form .form-group .form-control {
  height: 60px;
  color: #000;
  border-radius: 4px;
}
.widget.widget_subscribe .footer-form .form-group .form-control::-moz-placeholder {
  color: #D6D6D6;
}
.widget.widget_subscribe .footer-form .form-group .form-control::placeholder {
  color: #D6D6D6;
}
.widget.widget_subscribe::after {
  content: "";
  position: absolute;
  border-left: 44px solid transparent;
  border-bottom: 40px solid black;
  border-top: 64px solid transparent;
  top: -64px;
  left: -44px;
  z-index: -1;
}
.widget.widget_subscribe::before {
  content: "";
  position: absolute;
  border-right: 44px solid transparent;
  border-bottom: 40px solid black;
  border-top: 64px solid transparent;
  top: -64px;
  right: -44px;
  z-index: -2;
}
.widget.widget_subscribe .shape-01 {
  width: 80%;
  height: 35px;
  background: var(--main-color-one);
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.19;
}
.widget.widget_subscribe .shape-02 {
  width: 90%;
  height: 35px;
  background: var(--main-color-one);
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.4;
}
.widget.widget_subscribe .shape-03 {
  width: 95%;
  height: 35px;
  background: var(--main-color-one);
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.19;
}
.widget.widget_subscribe .header-content.style-01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.widget.widget_subscribe .header-content .title {
  font-size: 24px;
  list-style: 32px;
  font-family: var(--body-font);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.widget.widget_subscribe .header-content .title.style-01 {
  text-align: left;
  font-size: 40px;
  line-height: 50px;
  font-family: var(--heading-font);
  font-weight: 600;
  max-width: 500px;
  margin-bottom: 0px;
}

.custom-logo-link img,
.site-logo img {
  max-width: 180px !important;
}/*# sourceMappingURL=widgets.css.map */