@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');
:root {
  --white: #fff;
  --black: #000;
  --blue: #0d4263;
  --gray: #818181;
  --light-gray: #d1d1d1;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  /* set the header height here */
  scroll-margin-top: 110px;
}
a,
a:hover {
  text-decoration: none;
}

img,
picture,
svg{
  height: auto;
}
img,
picture,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}
input,
textarea,
select,
button {
  font-family: inherit;
}

/* set nice colors here */
::selection {
  background-color: var(--black);
  color: var(--white);
}

html {
  /* set font family */
  font-family: "Montserrat", sans-serif; 
  font-size: 16px;
  font-weight: 400;
}
.site-content {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  width: 100%;
  /* set container width */
  max-width: 1200px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.upper {
  text-transform: uppercase;
}

.relative {
  position: relative;
}

strong,
.bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}
.white {
  color: var(--white);
}
.blue {
  color: var(--blue);
}
.p14 {
 font-size: 14px;
}
.p16 {
 font-size: 16px;
}
.p18 {
 font-size: 18px;
}
.p20 {
 font-size: 20px;
}
.p30 {
 font-size: 30px;
}
.p70 {
 font-size: 70px;
}
.mt20 {
  margin-top: 20px;
}
.mb20 {
  margin-bottom: 20px;
}
.mt50 {
  margin-top: 50px;
}
.mt100 {
  margin-top: 100px;
}
.mb50 {
  margin-bottom: 50px;
}
.right-text {
  text-align: right;
}

.center-text {
  text-align: center;
}

.white {
  color: var(--white);
}
.black {
  color: var(--black);
}
.black-bg {
  background-color: var(--black);
}
.set-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
}
.main-menu {
  gap: 2rem;
  align-items: center;
  display: flex;
  list-style-type: none;
  justify-content: center;
}
.main-menu-link {
  color: var(--gray);
  font-size: .85rem;
  font-weight: 700;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid transparent;
  transition: all 0.5s;
  text-transform: uppercase;
  display: flex;
  gap: .5rem;
}
.main-menu-link:hover {
  color: var(--blue);
}

.menu-toggle,
.menu-burger {
  display: none;
}
.menu-burger {
  fill: var(--blue);
  border: 2px solid var(--blue);
  padding: 10px;
  border-radius: 8px;
  z-index: 3;
  flex-direction: column;
  gap: 3px;
}
.menu-burger .line {
  width: 16px;
  height: 2px;
  min-width: 16px;
  border-radius: 100px;
  background-color: var(--blue);
  transition: all 300ms ease-in-out;
}
.menu-burger.active .line:nth-child(2) {
  opacity: 0;
}

.menu-burger.active .line:first-child {
  transform: rotate(45deg) translate(4px, 4px);
  transform-origin: 50% 50%;
}

.menu-burger.active .line:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
  transform-origin: 50% 50%;
}
.menu-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header {
	z-index: 9999;
	background-color: white;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	-webkit-box-shadow: 0px 10px 2px -8px rgba(0,0,0,0.27);
	-moz-box-shadow: 0px 10px 2px -8px rgba(0,0,0,0.27);
	box-shadow: 0px 10px 2px -8px rgba(0,0,0,0.27);
}
.site-footer {
	background-color: var(--blue);
	padding-top: 4rem;
}
.footer-wrapper {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 2rem;
	padding: 1rem;
}
.footer-menu {
	list-style-type: none;
}
.footer-menu li a {
	color: white;
	text-decoration: none;
	margin-bottom: 10px;
	display: flex;
    gap: 0.5rem;
}
.home-banner {
	margin-top: 7rem;
}
.swiper-pagination.homeSwiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal  {
	bottom: -30px;
}
.homeSwiper img {
	width: 100%;
}

.home-about-us {
	display: grid;
    gap: 2rem;
    grid-template-columns: 3fr 1fr;
	align-items: center;
	padding: 1rem;
}
.home-about-us img {
	width: 100%;
}
.footer-bottom {
	background-color: black;
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
	gap: .5rem;
}
.footer-bottom a {
	color: var(--white);
	text-decoration: none;
}
.home-cta-wrapper {
	padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #f3f3f3;
}
.home-cta {
	background-color: white;
    padding: 2rem;
    border: 1px solid #efefef;
	position: relative;
	display: flex;
    gap: 2rem;
}  
.home-cta::after {
	content: '';
    background-image: url(/wp-content/uploads/2024/08/shadow-cta.webp);
    width: 100%;
    display: block;
    height: 100px;
    position: absolute;
    bottom: -100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.cta-button {
	background-color: var(--blue);
    color: white;
    width: 100%;
    max-width: 340px;
    border-radius: .5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 1rem;
}
.home-cta p {
	font-size: 22px;
}
.legal {
	padding: 1rem;
}
.legal h2,
.legal h1 {
	color: var(--blue);
	margin-bottom: 20px;
	font-size: 30px;
}
.legal p {
	margin-bottom: 20px;
	font-size: 18px;
}
.legal ul {
	padding-left: 30px;
}
.page-content p {
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 0 1rem;
}
.page-content p:first-of-type {
    margin-top: 20px;
}
.wp-block-table td {
	border: none;
}
.contact-form .wpcf7-form-control-wrap input {
	width: 100%;
    height: 40px;
    border: 1px solid #dddddd;
    padding: 5px;
    border-radius: 3px;
	margin-bottom: 10px;
}
.contact-form .wpcf7-form-control-wrap textarea {
	width: 100%;
    height: 200px;
    border: 1px solid #dddddd;
    padding: 5px;
    border-radius: 3px;
    margin-bottom: 10px;
    color: gray;
}
.contact-form .wpcf7-submit {
    background-color: var(--blue);
    color: white;
    max-width: 340px;
    border-radius: .5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 4rem;
    border: 1px solid var(--blue);
	cursor: pointer;
}