@font-face {
  font-family: 'Roma';
  src: url('../fonts/Roma_regular.otf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roma';
  src: url('../fonts/Roma_SemiBold.otf');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roma';
  src: url('../fonts/Roma_Bold.otf');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Base Styles */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

body.home {
  margin: 0;
}

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

.site-main {
  min-height: calc(100vh - 200px);
}

body {
  font-family: 'Roma';
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  color: #000000;
}

/* Container CSS */

.container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px
}

@media only screen and (min-width:576px) {
  .container {
    max-width: 540px;
  }
}

@media only screen and (min-width:768px) {
  .container {
    max-width: 720px;
  }
}

@media only screen and (min-width:992px) {
  .container {
    max-width: 960px;
  }

  .offcanvas-bg {
    display: none;
  }

  .for-mobile {
    display: none;
  }
}

@media only screen and (min-width:1200px) {
  .container {
    max-width: 1140px;
  }

  .about-section .container,
  .contact-form-section .container {
    max-width: 1170px;
  }
}

@media only screen and (min-width:1400px) {
  .container {
    max-width: 1248px;
  }

  .header-main .container,
  .site-footer .container {
    max-width: 1380px;
  }

}

/* Global Headings */
section {
  padding: 75px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roma';
  color: #000000;
  font-weight: 300;
  margin: 0 0 15px 0;
}

h1,
.h1 {
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  font-weight: 700;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #000000;
  font-weight: 400;
  margin-bottom: 15px;
}

h3,
.h3 {
  font-size: 26px;
  line-height: 1.35;
  color: #000000;
}

h4,
.h4 {
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
}

h6,
.h6 {
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
}


p {
  font-size: 22px;
  line-height: 1.46;
  color: #000000;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 16px;
  word-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}

p a,
li a {
  color: #243F76;
  text-decoration-color: #243F76;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

p a:hover,
li a:hover {
  color: #C2912E;
  text-decoration-color: #C2912E;
}

a {
  transition: all 0.3s ease-in-out;
}

a:focus-within {
  outline: none;
}

ul li,
ol li {
  font-size: 22px;
  line-height: 1.5;
  color: #000000;
  font-weight: 400;
}

ul:not(:last-child),
ol:not(:last-child) {
  margin-bottom: 30px;
}

ul li:not(:last-child),
ol li:not(:last-child) {
  margin-bottom: 10px;
}

ul,
ol {
  margin-left: 0;
  padding-left: 25px;
}

.error-404-section {
  padding: 100px 20px;
  text-align: center;
}

.error-404-section .container .error-description {
  max-width: 700px;
  margin: 0 auto 40px;
}

.error-code {
  margin-bottom: 20px;
  font-size: 100px;
  color: #C2912E;
  font-weight: 700;
}

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

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

.error-content {
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.error404 .site-main {
  min-height: calc(100vh - 570px);
}

/* 404 css End */


/* Buttons */
.btn,
.btn-outline,
.input[type="submit"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 9px 20px;
  text-decoration: none;
  font-size: 21px;
  line-height: 1;
  text-transform: capitalize;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  border-color: #C2912E;
  color: #ffffff;
  background: #C2912E;
  border-radius: 30px;
}

.btn:hover,
.wpcf7-form .wpcf7-submit:hover,
button[type="submit"]:hover,
.btn:visited {
  background: #243F76;
  border-color: #243F76;
  color: #fff;
}

.wpcf7-not-valid-tip {
  font-size: 16px;
  margin-top: 10px;
  margin-left: 8.5px;
}

.footer-form .wpcf7-form .newsletter-form .wpcf7-not-valid-tip {
  color: #ff9595;
}

.footer-form .wpcf7-form .wpcf7-form-control-wrap {
  margin: 0;
}

.wpcf7-response-output {
  font-size: 14px;
  line-height: 1.3;
}

.wpcf7 form .wpcf7-response-output {
  padding: 10px;
}

span.wpcf7-not-valid-tip:not(:nth-child(2)) {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  border-left: 3px solid #46b450;
  background: #35ca432b;
  font-size: 16px;
  padding: 15px 10px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;

  border: none;
  border-left: 3px solid #ffb900;
  background: #ffbb0034;
  font-size: 16px;
  padding: 15px 10px;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

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

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

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

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

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

.archive .news-insight-section .wrapper .row:not(:last-child) {
  margin-bottom: 40px;
}

/* Header */

.home .header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.header-main {
  padding: 29px 0px;
  width: 100%;
  background: #243F76;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.home .header-main {
  padding: 29px 0px;
  background-color: transparent;
  z-index: 9999;
}

header.sticky-header .header-main {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  background: #243F76;
}

header .header-main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/header-bg.png") no-repeat center center / cover;
  opacity: 0.74;
  z-index: -1;
  mix-blend-mode: overlay;
}

.home .header-main::before {
  opacity: 0;
}

.home header.sticky-header .header-main::before {
  opacity: 1;
}

.header-main .header_row,
.header-row .header_menu {
  display: flex;
  justify-content: space-between;
}

.home header.sticky-header .header-main .header_row {
  align-items: center;
}

.header-main .site-branding {
  width: 20%;
  display: inline-flex;
  align-items: center;
}

.header_menu {
  width: 67.5%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-navigation {
  width: 100%;
}

.home .header_menu .header-navigation .inner-page-text {
  display: none;
}

.header_menu .header-navigation .inner-page-text {
  display: block;
  margin-top: 60px;
}

.header_menu .header-navigation h3 {
  font-family: "Roma", serif;
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: clamp(24px, 3vw, 32px);
  color: #ffffff;
}

.sticky-header .header_menu .header-navigation .inner-page-text {
  margin-top: 40px;
}

.header-navigation .menu {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.site-branding img.custom-logo {
  max-width: 260px;
  width: 100%;
}

.sticky-header .site-branding img.custom-logo {
  max-width: 160px;
}

.home footer .site-branding img.custom-logo,
footer .site-branding img.custom-logo {
  max-width: 130px;
}

.header_menu ul {
  list-style: none;
}

.header_menu ul li:not(:last-child) {
  margin-right: 35px;
}

.header_menu ul li {
  margin: 0;
}

.header_menu ul li a {
  font: normal normal normal 18px/36px Arial;
  line-height: 2;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  letter-spacing: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.header_menu ul li a:focus-within {
  outline: none;
}

.header_menu ul li:hover a {
  color: #e5e5e5;
}

.header_menu ul li.active a {
  color: #e5e5e5;
}

.header_menu ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  width: 0;
  height: 1px;
  background: #e5e5e5;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.header_menu ul li:hover a::before,
.header_menu ul li.current-menu-item a::before,
.header_menu ul li.active a::before {
  width: 100%;
}

header.sticky-header .header-main .custom-logo {
  object-fit: contain;
}

header.sticky-header .site-branding a.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.header_menu .sidebar-header,
.site-header .menu_toggle {
  display: none;
}

/* Footer Css start */
.site-footer {
  background: #2f4a7a;
  color: #fff;
  padding: 30px 20px 30px;
}

.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer .footer-left {
  max-width: 610px;
  width: 51%;
}

.site-footer .footer-right {
  width: 50%;
  text-align: right;
}

.footer-left .info-block h2 {
  margin-bottom: 10px;
  color: #FFFFFF;
  font: normal normal bold 36px / 43px Roma;
  letter-spacing: 0px;
  text-transform: capitalize;
}

.footer-left .info-block p {
  margin-bottom: 20px;
  font: normal normal normal 22px / 26px Roma;
  letter-spacing: 0px;
  color: #FFFFFF;
  max-width: 540px;
  margin-bottom: 25px;
}

.footer-form .wpcf7-form .newsletter-form {
  position: relative;
  width: 100%;
}

footer .footer-form .wpcf7 input[type="email"].wpcf7-form-control {
  padding: 5px 15px;
  border-radius: 20px;
  border: none;
  outline: none;
  background: #fff;
  height: 40px;
  padding-right: 115px;
  color: #000;
  font-size: 16px;
  width: 100%;
}

.footer-form input[type="submit"] {
  background: #C2912E;
  color: #fff;
  border: none;
  padding: 12px 25px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  font: normal normal normal 13px/16px Roma;
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  width: 103px;
}

.footer-form input[type="submit"]:hover {
  background: #000000;
  color: #fff;
}

.footer-form .wpcf7-form p .wpcf7-spinner {
  position: absolute;
  right: -60px;
  top: 8px;
}

.footer-right img {
  max-width: 230px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-wrapper {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}

.footer-copy p {
  font: normal normal normal 12px/20px Roma;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.footer-copy p span {
  padding-left: 15px;
}

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

.footer-links a {
  font: normal normal normal 12px / 16px Roma;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-links a:not(:last-child) {
  margin-right: 40px;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #e5e5e5;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 29.6%;
}

.footer-social {
  display: flex;
  align-items: center;
}

.footer-social a {
  text-decoration: none;
  line-height: 0;
}

.footer-social a:not(:last-child) {
  margin-right: 20px;
}

.footer-social a img {
  max-width: 25px;
  transition: all 0.3s ease-in-out;
}

.footer-social a:hover img {
  opacity: 0.7;
}

/* Footer changes 02-sep-2026 Start */
.site-footer .footer-top {
  flex-direction: row-reverse;
  width: 20%;
}

.site-footer .footer-top .footer-right {
  text-align: left;
}

.footer-bottom {
  flex-direction: column;
}

.site-footer .footer-bottom {
  width: 70%;
  margin-bottom: 10px;
}

/* Footer changes 02-sep-2026 End */

/* Footer Css End */

/* Single page Css Start */
.site-main .post-navigation {
  margin: 40px 0 0 0;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links a,
.post-navigation .nav-links a span {
  font-size: 20px;
  line-height: 1.4;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
}

.post-navigation .nav-links a span {
  display: block;
}

.search .site-main h1.page-title {
  margin-bottom: 40px;
}

.search article h2.entry-title a {
  text-decoration: none;
}


.search .site-main {
  padding: 60px 0;
}

.search article h2.entry-title {
  font-size: 26px;
  font-weight: 600;
}

.search article:not(:last-child) {
  margin-bottom: 40px;
}

.search article .entry-summary {
  margin: 0;
}

/* Single page Css End */

/* Responsive */
@media (max-width: 1280px) {

  h1,
  .h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .header_menu ul li a {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .site-branding img.custom-logo {
    max-width: 180px;
  }

  h1,
  .h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  h2,
  .h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  h3,
  .h3 {
    font-size: 24px;
    line-height: 1.35;
  }

  h4,
  .h4 {
    font-size: 20px;
    line-height: 1.4;
  }

  h5,
  .h5 {
    font-size: 18px;
    line-height: 1.5;
  }

  h6,
  .h6 {
    font-size: 16px;
    line-height: 1.5;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
  }

  .btn,
  .btn-outline,
  .input[type="submit"] {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .pb-100 {
    padding-bottom: 60px;
  }

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

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

  .section-title.border-bottom {
    margin-bottom: 30px;
  }

  .footer-wrapper .right-block .copyright p,
  .footer-wrapper .contact-links a {
    font-size: 18px;
  }

  .footer-wrapper .right-block .footer-column h3 {
    font-size: 24px;
  }

  .footer-column-wrapper {
    justify-content: flex-start;
    gap: 40px;
  }

  .footer-wrapper .right-block .footer-column a {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .home .header-main .inner-page-text {
    display: none;
  }

  section {
    padding: 50px 0;
  }

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

  .header_menu .header-navigation h3 {
    text-align: center;
  }

  .header-main .site-branding {
    width: 35%;
  }

  .home .site-branding img.custom-logo {
    max-width: 140px;
  }

  body.menu-open .offcanvas-bg {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform .8s ease, opacity .3s ease;
    -webkit-transition: opacity .3s ease, -webkit-transform .8s ease;
    transition: opacity .3s ease, -webkit-transform .8s ease;
    -o-transition: transform .8s ease, opacity .3s ease;
    transition: transform .8s ease, opacity .3s ease;
    transition: transform .8s ease, opacity .3s ease, -webkit-transform .8s ease;
    opacity: 1
  }

  .offcanvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0 0 0 / 20%);
    height: 100vh;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transition: -webkit-transform .8s ease, opacity 6s ease;
    -webkit-transition: opacity 6s ease, -webkit-transform .8s ease;
    transition: opacity 6s ease, -webkit-transform .8s ease;
    -o-transition: transform .8s ease, opacity 6s ease;
    transition: transform .8s ease, opacity 6s ease;
    transition: transform .8s ease, opacity 6s ease, -webkit-transform .8s ease;
    opacity: 0;
    z-index: 1
  }

  .close-btn.menu_toggle:hover svg {
    transform: rotate(90deg);
  }

  .menu_toggle svg {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }

  .menu_toggle svg path {
    stroke: #fff;
  }

  .menu_toggle:hover svg path {
    stroke: rgba(255, 255, 255, 0.5);
  }

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

  .header_menu .sidebar-header {
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .site-header .close-btn.menu_toggle {
    position: absolute;
    right: -10px;
    top: -20px;
    left: auto;
    height: 30px;
    background: #fff;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .close-btn.menu_toggle svg path {
    fill: #000;
    stroke-width: 2px;
    stroke: #000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }

  .close-btn.menu_toggle svg {
    width: 18px;
    height: 18px;
  }

  .close-btn.menu_toggle:hover svg path {
    fill: #000000;
  }

  .menu_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
  }

  .menu_toggle svg {
    width: 30px;
    height: 30px;
  }

  .sidebar-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
  }

  .menu-open {
    overflow: hidden;
  }

  .header_menu {
    position: fixed;
    right: 0;
    width: 100%;
    top: 0;
    height: 100%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    overflow: auto;
    z-index: 3;
    background: #243F76;
    max-width: 300px;
    padding: 30px;
  }

  .menu-open .header_menu {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    background: #243F76;
  }

  .header-navigation .menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 50px;
  }

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

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

  h1,
  .h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  h2,
  .h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  h3,
  .h3 {
    font-size: 24px;
    line-height: 1.35;
  }

  h4,
  .h4 {
    font-size: 20px;
    line-height: 1.4;
  }

  h5,
  .h5 {
    font-size: 18px;
    line-height: 1.4;
  }

  h6,
  .h6 {
    font-size: 18px;
    line-height: 1.5;
  }

  p {
    font-size: 18px;
    line-height: 1.4;
  }

  ul li,
  ol li {
    font-size: 18px;
    line-height: 1.4;
  }

  .header_menu ul li:not(:last-child) {
    margin: 0 0 15px 0;
  }

  .btn,
  .btn-outline,
  .input[type="submit"] {
    font-size: 14px;
  }

  .btn-outline {
    border-width: 2px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .home .header-main {
    padding: 10px 0;
  }

  .header-main {
    padding: 10px 0;
  }

  header .site-branding img.custom-logo,
  .sticky-header .site-branding img.custom-logo {
    max-width: 100px;
  }

  .header_menu .header-navigation .inner-page-text {
    display: none;
  }

  header.sticky-header .header-main {
    padding: 15px 0;
  }

  .header-main .inner-page-text {
    margin: 20px 0 15px;
  }

  .header-main .inner-page-text h3 {
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    margin: 0;
  }

  .sticky-header .header-main .inner-page-text {
    display: none;
  }

  .site-footer .footer-left {
    width: 100%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: none;
  }

  .site-footer .footer-left .info-block h2 {
    font: normal normal bold 26px / 32px Roma;
  }

  .site-footer .footer-left .info-block p {
    font: normal normal normal 18px / 24px Roma;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer {
    padding: 30px 20px;
  }

  .footer-right img {
    max-width: 150px;
  }

  .footer-copy p span {
    display: block;
    padding: 0;
  }

  .site-footer .footer-top {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .site-footer .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    margin: 0;
  }

  .site-footer .footer-right,
  .site-footer .footer-top .footer-right {
    text-align: center;
    width: 100%;
  }

  .site-footer .footer-bottom-right {
    width: 100%;
    justify-content: center;
    flex-direction: column-reverse;
    display: none;
  }

  .site-footer .footer-copy {
    margin-top: 10px;
  }

  .site-footer .footer-social a img {
    max-width: 20px;
  }

  .site-footer .footer-bottom-right .footer-links {
    margin-top: 15px;
  }

  .comment-navigation .nav-links,
  .posts-navigation .nav-links,
  .post-navigation .nav-links a,
  .post-navigation .nav-links a span {
    font-size: 16px;
    line-height: 1.4;
    display: inline-block;
    vertical-align: top;
  }

  .search .site-main h1.page-title {
    margin-bottom: 30px;
  }

  .search .site-main h1.page-title {
    font-size: 26px;
  }

  .search article h2.entry-title {
    font-size: 20px;
  }

  .search .site-main {
    padding: 50px 0;
  }

  .error-content {
    max-width: 100%;
  }

  .error-code {
    line-height: normal;
    font-size: 70px;
  }

  .footer-form .wpcf7-form p .wpcf7-spinner {
    position: absolute;
    right: 0;
    margin: 0;
  }

  .site-footer .footer-top,
  .site-footer .footer-bottom {
    width: 100%;
  }

  .site-footer .footer-top .footer-right {
    text-align: center;
  }
}

@media (max-width: 767px) {

  .header_menu ul li a {
    font-size: 14px;
  }

  .cf7sr-g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}