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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 1.125rem;
  color: var(--primary-color);
  line-height: 30px;
}

:root {
  --primary-color: #002d72;
  --secondary-color: #fff;
  --dark-gray: #232323;
}

p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 28.8px;
}

li {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 28.8px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}
a:hover {
  color: var(--dark-gray);
}

.py-100 {
  padding: 100px 0;
}

li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.125rem;
}

img {
  width: 100%;
  height: 100%;
}

h1,
h2 {
  font-weight: 600;
  color: #002d72;
}

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

h2 {
  font-size: 2.375rem;
  line-height: 48px;
}

h3 {
  font-size: 1.5rem;
  line-height: 48px;
  font-weight: 600;
}

header,
main,
section,
footer {
  float: left;
  width: 100%;
}

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

.primary-btn a {
  background-color: #002d72;
  color: #fff;
  display: inline-block;
  padding: 16px 24px 16px 24px;
  font-size: 0.938rem;
  border-radius: 4px;
  font-weight: 400;
  line-height: 18px;
  transition: all 0.36s ease-in-out;
  position: relative;
  z-index: 1;
}
.primary-btn a::after {
  content: " ";
  position: absolute;
  width: 0;
  background-color: #fff;
  height: 100%;
  top: 0;
  left: 0;
  color: #002d72;
  z-index: -1;
  opacity: 0;
  transition: width 0.36s ease-in-out;
  border: 1px solid #002d72;
}
.primary-btn a:hover {
  color: #002d72;
}
.primary-btn a:hover::after {
  opacity: 1;
  width: 100%;
}

.icon-box {
  width: 40px;
  height: 40px;
  display: inline-flex;
  background-color: #002d72;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

header {
  transition: top 1s ease-in-out;
  padding: 20px 0;
}
header.fixed {
  position: fixed;
  width: 100%;
  top: -100px;
  background: #fff;
  z-index: 6;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
  transition: top 1s ease-in-out;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
header nav .collspan .contact-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 10px;
}

.sec-hero {
  width: 100%;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sec-hero .sec-inner .sec-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.sec-hero .sec-inner .sec-header p {
  width: 100%;
  max-width: 60%;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.sec-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 1rem;
}
.sec-header h3 {
  color: var(--dark-gray);
}
.sec-header p {
  text-align: center;
}

.about-sec-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
}
.about-sec-inner .sec-header p {
  width: 100%;
  max-width: 60%;
  font-size: 1.2rem;
  font-weight: 400;
}
.about-sec-inner .about-us-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  align-items: stretch;
  gap: 4rem;
  flex-wrap: wrap;
}
.about-sec-inner .about-us-inner .about-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 30px;
  width: 40%;
}
.about-sec-inner .about-us-inner .about-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
.about-sec-inner .about-us-inner .about-right h3:nth-of-type(2) {
  color: var(--dark-gray);
}
.about-sec-inner .about-us-inner .about-right .about-right-img {
  margin: 8px 0;
}
.about-sec-inner .about-us-inner .about-right .contact-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 16px;
}
.about-sec-inner .about-us-inner .about-right .contact-menu li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.5rem;
}
.about-sec-inner .about-us-inner .about-right .contact-menu li a {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 28.8px;
}

.gallery-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.gallery-grid .gallery-img {
  display: flex;
  flex-basis: 25%;
  position: relative;
  transition: all 0.36s ease-in-out;
}
.gallery-grid .gallery-img::after {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 246, 246, 0.56);
  opacity: 1;
  transition: all 0.36s ease-in-out;
}
.gallery-grid .gallery-img:hover::after {
  opacity: 0;
}

.sec-page-title.jurix-pages {
  padding-top: 100px;
}

.sec-page-content {
  padding-bottom: 100px;
}

footer {
  padding: 32px 0 16px 0;
}
footer .footer-inner {
  border-bottom: 0.5px solid #c6c6c6;
  padding-bottom: 32px;
}
footer .footer-inner .foot-logo a {
  display: inline-block;
}
footer .btm-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding-top: 32px;
}
footer .copy-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 2rem;
}
footer .copy-menu li {
  display: inline;
}
footer .copy-menu li a:hover {
  color: var(--dark-gray);
}

.jurix-pages h1 {
  margin-bottom: 30px;
}

.sec-page-content p {
  margin-bottom: 16px;
}
.sec-page-content .wp-block-heading {
  margin: 7px 0 16px 0;
}
.sec-page-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.sec-page-content ul li {
  list-style-type: disc;
}

.error404 section .sec-page- .py-100 {
  padding: 0;
  margin-bottom: 30px;
}
.error404 section p {
  margin-bottom: 30px;
}

#pull-top {
  position: fixed;
  bottom: 45px;
  right: 9px;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  line-height: 21px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-align: center;
  background-color: var(--primary-color);
  padding: 10px 0;
  z-index: 9999;
  color: var(--secondary-color);
  display: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  h2 {
    font-size: 1.875rem;
    line-height: 19.2px;
  }
  .py-100 {
    padding: 70px 0;
  }
  .sec-hero .sec-inner .sec-header p {
    max-width: 81%;
  }
  .sec-hero {
    height: 600px;
  }
  .sec-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 1rem;
    align-items: flex-start;
  }
  .sec-header p {
    text-align: left;
  }
  .about-sec-inner {
    gap: 1rem;
  }
  .about-sec-inner .sec-header p {
    max-width: 100%;
  }
  .about-sec-inner .about-us-inner {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .about-sec-inner .about-us-inner .about-left {
    padding-top: 0;
    width: 100%;
    gap: 1rem;
    align-items: flex-start;
  }
  .gallery-grid .gallery-img {
    flex-basis: 50%;
  }
  .sec-page-title.jurix-pages {
    padding-top: 60px;
  }
  .sec-page-content {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.625rem;
    line-height: 44px;
  }
  h3 {
    font-size: 1.3rem;
    line-height: 28px;
  }
  .py-100 {
    padding: 30px 0;
  }
/*   h1 {
    font-size: 1.3rem;
    line-height: 24px;
  } */
  .sec-hero .sec-inner .sec-header p {
    width: 100%;
    max-width: 100%;
  }
  .sec-page-title.jurix-pages {
    padding-top: 30px;
  }
  .sec-page-content {
    padding-bottom: 30px;
  }
}
@media (max-width: 576px) {
  p {
    font-size: 1rem;
    line-height: 24px;
  }
  h2 {
    line-height: 31.2px;
  }
  footer .btm-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 16px;
  }
  footer .footer-inner {
    padding-bottom: 16px;
  }
  footer .footer-inner .foot-logo {
    text-align: center;
  }
  .primary-btn a {
    padding: 12px 14px;
    font-size: 0.875rem;
  }
  .sec-hero {
    height: 500px;
  }
  .sec-hero .sec-inner .sec-header {
    gap: 1rem;
  }
  .gallery-grid .gallery-img {
    flex-basis: 100%;
  }
}