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

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  background-repeat: repeat;
}

@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #131313;
}

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

img,
video,
iframe,
.container,
section,
div {
  max-width: 100%;
  overflow-x: hidden;
}

* {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

/*======== BREAKPOINTS ========*/
@media (max-width: 1536px) {
}

@media (max-width: 1280px) {
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
}

@media (max-width: 640px) {
}

@media (max-width: 475px) {
}

/*======== CONTAINER ========*/
.container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1536px) {
  .container {
    max-width: 1250px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1000px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 750px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: 460px;
  }
}

@media (max-width: 475px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

/*======== Headings ========*/
.heading-reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}

h1 {
  font-size: 54px;
  font-weight: 600;
  color: #131313;
  font-family: "Outfit", sans-serif;
  line-height: 1.3;
}

h1 span{
  color: #1B4AAF;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  color: #131313;
  font-family: "Outfit", sans-serif;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  color: #131313;
  font-family: "Outfit", sans-serif;
}

span.sm {
  font-size: 17px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  color: #1B4AAF;
  width: fit-content;
}

h4 {
  font-size: 18px;
  color: #131313;
  font-weight: 700;
}

h5 {
  font-size: 16px;
}

p {
  color: #393939;
  font-size: 18px;
}

p.sm {
  font-size: 16px;
}

p b {
  font-weight: 600;
}

section.space {
  padding-top: 100px;
}
section.space-sm {
  padding-top: 64px;
} 

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

@media (max-width: 1536px) {
  h3 {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
}

@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 16px;
  }

  p.sm {
    font-size: 15px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1rem;
  }
}

@media (max-width: 475px) {
  h1 {
    font-size: 28px;
  }
}

/*======== BUTTONS ========*/
.btn {
  padding: 16px 24px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  border-radius: 2px;
  width: fit-content;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
}

.btns-row {
    display: flex;
    gap: 24px;
}

.btn-primary {
  color: #fff;
  background-color: #1B4AAF;
  border: transparent;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.btn-primary:hover {
  background-color: #143e96;
}

.btn-secondary {
  color: #1B4AAF;
  background-color: #fff;
  border: transparent;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.btn-secondary:hover {
  background-color: #ebe7f3;
}

.btn-secondary-outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary-outline:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.btn-simple {
  color: #1B4AAF;
  font-weight: 500;
}

@media (max-width: 475px) {
  .btn {
    padding: 12px 20px;
  }

  .btns-row {
    flex-direction: column;
    gap: 16px;
  }

  .btns-row .btn {
    width: 100%;
  }
}