@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
/* TYPOGRAHPY */
img {
  max-width: 100%;
}

p {
  font-size: 18px;
  line-height: 28px;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0 0 15px 0;
}

.content_wrapper {
  padding-top: 350px;
}
@media (max-width: 768px) {
  .content_wrapper {
    padding-top: 250px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
    line-height: 30px;
  }
  h2 {
    font-size: 20px;
    line-height: 28px;
  }
  h3 {
    font-size: 20px;
    line-height: 24px;
  }
  h4 {
    font-size: 18px;
    line-height: 22px;
  }
  h5,
  h6,
  a,
  p,
  button,
  input,
  textarea,
  li {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 15px 0;
  }
  li {
    margin-bottom: 0;
  }
}
/* GENERAL STYLING */
* {
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif !important;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.ventura_btn {
  font-size: 14px;
  line-height: 18px;
  padding: 13px 32px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  background: #e11f28;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ventura_navbar_logo_menu a {
  margin-bottom: 0;
}

.ventura_navbar_logo_menu a img {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-colored {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.logo-white {
  opacity: 1;
}

.ventura_navbar.scrolled .logo-colored {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.ventura_navbar.scrolled .logo-white {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

/* HEADER AND FOOTER */
.ventura_navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid white;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.ventura_navbar .ventura_navbar_logo_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ventura_navbar .ventura_navbar_logo_menu .ventura_logo {
  width: 200px;
}
.ventura_navbar .ventura_navbar_logo_menu .ventura_logo img {
  width: 200px;
}
.ventura_navbar .ventura_navbar_logo_menu a {
  position: relative;
}
.ventura_navbar .ventura_menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ventura_navbar .ventura_menu li {
  margin-right: 45px;
}
.ventura_navbar .ventura_menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-bottom: 0;
}
.ventura_navbar .ventura_menu li a:hover {
  color: #e11f28;
}
.ventura_navbar .ventura_hamburger {
  display: none;
}
.ventura_navbar.scrolled {
  background: white;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.1) 0px 2px 8px -2px;
}
.ventura_navbar.scrolled ul {
  display: flex;
  list-style: none;
}
.ventura_navbar.scrolled ul li a {
  color: black;
}

@media (max-width: 768px) {
  .ventura_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    padding: 0;
    height: 60px;
  }
  .ventura_navbar .ventura_navbar_logo_menu .ventura_logo {
    width: 100px;
  }
  .ventura_navbar .ventura_navbar_logo_menu .ventura_logo img {
    width: 100px;
  }
  .ventura_navbar .ventura_menu {
    position: fixed;
    top: 60px;
    left: 0;
    height: 0;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    pointer-events: none;
    overflow: hidden;
    padding: 0 25px;
  }
  .ventura_navbar .ventura_menu li {
    margin-bottom: 15px;
  }
  .ventura_navbar .ventura_menu li a {
    color: black;
  }
  .ventura_navbar .ventura_menu li:first-child {
    margin-top: 20px;
  }
  .ventura_navbar .ventura_menu.active {
    height: calc(100vh - 60px);
    pointer-events: auto;
    opacity: 1;
  }
  .ventura_navbar .ventura_hamburger {
    display: block;
    cursor: pointer;
  }
  .ventura_navbar .ventura_hamburger span {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: white;
    margin-bottom: 4px;
    display: block;
    transition: all 0.3s ease-in-out;
  }
  .ventura_navbar .ventura_hamburger span:first-child {
    width: 20px;
  }
  .ventura_navbar .ventura_hamburger span:nth-child(2) {
    width: 25px;
  }
  .ventura_navbar .ventura_hamburger span:last-child {
    margin-bottom: 0;
  }
  .ventura_navbar.scrolled .ventura_hamburger span {
    background: black;
  }
}
.ventura_footer {
  padding: 30px;
  background: #1f1e1e;
}
.ventura_footer p {
  color: white;
  text-align: center;
  font-weight: bold;
}

/* COMPONENTS */
.banner_layout {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, rgba(225, 31, 40, 0.75), rgba(20, 20, 20, 0.75)), url("/images/banner-bg.jpg") center center/cover no-repeat;
  background-blend-mode: overlay;
  z-index: 1;
  overflow: hidden;
}
.banner_layout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.banner_layout .banner_layout_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100vh - 144px);
  margin-top: 144px;
}
.banner_layout .banner_layout_content_actions {
  display: flex;
  justify-content: center;
}
.banner_layout h1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: bold;
  margin-bottom: 15px;
}
.banner_layout h3 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 15px;
  opacity: 0.8;
  font-weight: bold;
}
.banner_layout p {
  font-size: 18px;
  line-height: 24px;
  opacity: 0.8;
  font-weight: bold;
}
.banner_layout h1, .banner_layout h3, .banner_layout p {
  color: white;
  text-align: center;
}
.banner_layout > * {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .banner_layout a {
    margin-bottom: 0px;
  }
  .banner_layout h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .banner_layout h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .banner_layout p {
    font-size: 16px;
    line-height: 20px;
  }
}
.about_us_section {
  padding-top: 80px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(210, 20%, 98%) 100%);
}
.about_us_section h1 {
  text-align: center;
}
.about_us_section p {
  color: rgb(103, 111, 126);
}
.about_us_section .about_us_section_top_content {
  margin-bottom: 48px;
}
.about_us_section .about_us_section_top_content h2 {
  margin-bottom: 48px;
  font-weight: bold;
  text-align: center;
}
.about_us_section .about_us_section_top_content p {
  margin-bottom: 24px;
}
.about_us_section .about_us_items {
  margin-bottom: 48px;
}
.about_us_section .about_us_box {
  background: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.1) 0px 2px 8px -2px;
  padding: 24px;
  height: 100%;
  margin-bottom: 16px;
}
.about_us_section .about_us_box svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.about_us_section .about_us_box p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
.about_us_section .about_us_box.gradient {
  background: linear-gradient(135deg, #e11f28 0%, #f03a47 50%, #ff8a8a 100%);
}
.about_us_section .about_us_box.gradient h4, .about_us_section .about_us_box.gradient p {
  color: white;
}

@media (max-width: 768px) {
  .about_us_section {
    padding-top: 80px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(210, 20%, 98%) 100%);
  }
  .about_us_section h1 {
    text-align: center;
  }
  .about_us_section p {
    color: rgb(103, 111, 126);
  }
  .about_us_section .about_us_section_top_content {
    margin-bottom: 48px;
  }
  .about_us_section .about_us_section_top_content h2 {
    margin-bottom: 48px;
    font-weight: bold;
    text-align: center;
  }
  .about_us_section .about_us_section_top_content p {
    margin-bottom: 24px;
  }
  .about_us_section .about_us_items {
    margin-bottom: 48px;
  }
  .about_us_section .about_us_box {
    padding: 16px;
    height: auto;
    margin-bottom: 16px;
  }
  .about_us_section .about_us_box svg {
    margin-bottom: 12px;
  }
}
.categories_section {
  padding-top: 100px;
}
.categories_section .categories_section_title {
  margin-bottom: 128px;
}
.categories_section .categories_section_title h2 {
  color: rgb(43, 48, 59);
  font-weight: bold;
  margin-bottom: 16px;
}
.categories_section .categories_section_title p {
  color: rgb(103, 111, 126);
}
.categories_section .categories_section_title h2, .categories_section .categories_section_title p {
  text-align: center;
}
.categories_section .category_item {
  margin-bottom: 140px;
}
.categories_section .category_item img {
  border-radius: 10px;
}
.categories_section .category_item .category_item_content {
  margin-top: 15px;
}
.categories_section .category_item .category_item_content h2 {
  color: rgb(43, 48, 59);
  font-weight: bold;
}
.categories_section .category_item .category_item_content p, .categories_section .category_item .category_item_content ul {
  font-size: 18px;
  line-height: 28px;
  color: rgb(103, 111, 126);
}
.categories_section .category_item .category_item_content ul {
  margin-bottom: 25px;
  margin-left: 25px;
}
.categories_section .category_item .category_item_content li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}
.categories_section .category_item.reverse .row {
  flex-direction: row-reverse;
}

.contact_section {
  background: linear-gradient(135deg, hsl(234, 12%, 97%), hsl(0, 0%, 100%));
  padding-top: 64px;
  padding-bottom: 64px;
}
.contact_section .ventura_contact_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.1) 0px 2px 8px -2px;
  padding: 24px;
  height: 100%;
  color: black;
  text-decoration: none;
}
.contact_section .ventura_contact_box svg {
  width: 36px;
  height: 36px;
}
.contact_section .ventura_contact_box h4 {
  margin-bottom: 0;
}

.ventura_section_title {
  text-align: center;
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 36px;
}
.ventura_section_title .evma_section_title_subtitle {
  color: #e11f28;
}

.ventura_navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid white;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.ventura_navbar .ventura_navbar_logo_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ventura_navbar .ventura_navbar_logo_menu .ventura_logo {
  width: 200px;
}
.ventura_navbar .ventura_navbar_logo_menu .ventura_logo img {
  width: 200px;
}
.ventura_navbar .ventura_navbar_logo_menu a {
  position: relative;
}
.ventura_navbar .ventura_menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ventura_navbar .ventura_menu li {
  margin-right: 45px;
}
.ventura_navbar .ventura_menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-bottom: 0;
}
.ventura_navbar .ventura_menu li a:hover {
  color: #e11f28;
}
.ventura_navbar .ventura_hamburger {
  display: none;
}
.ventura_navbar.scrolled {
  background: white;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.1) 0px 2px 8px -2px;
}
.ventura_navbar.scrolled ul {
  display: flex;
  list-style: none;
}
.ventura_navbar.scrolled ul li a {
  color: black;
}

@media (max-width: 768px) {
  .ventura_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    padding: 0;
    height: 60px;
  }
  .ventura_navbar .ventura_navbar_logo_menu .ventura_logo {
    width: 100px;
  }
  .ventura_navbar .ventura_navbar_logo_menu .ventura_logo img {
    width: 100px;
  }
  .ventura_navbar .ventura_menu {
    position: fixed;
    top: 60px;
    left: 0;
    height: 0;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    pointer-events: none;
    overflow: hidden;
    padding: 0 25px;
  }
  .ventura_navbar .ventura_menu li {
    margin-bottom: 15px;
  }
  .ventura_navbar .ventura_menu li a {
    color: black;
  }
  .ventura_navbar .ventura_menu li:first-child {
    margin-top: 20px;
  }
  .ventura_navbar .ventura_menu.active {
    height: calc(100vh - 60px);
    pointer-events: auto;
    opacity: 1;
  }
  .ventura_navbar .ventura_hamburger {
    display: block;
    cursor: pointer;
  }
  .ventura_navbar .ventura_hamburger span {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: white;
    margin-bottom: 4px;
    display: block;
    transition: all 0.3s ease-in-out;
  }
  .ventura_navbar .ventura_hamburger span:first-child {
    width: 20px;
  }
  .ventura_navbar .ventura_hamburger span:nth-child(2) {
    width: 25px;
  }
  .ventura_navbar .ventura_hamburger span:last-child {
    margin-bottom: 0;
  }
  .ventura_navbar.scrolled .ventura_hamburger span {
    background: black;
  }
}
.banner_layout {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, rgba(225, 31, 40, 0.75), rgba(20, 20, 20, 0.75)), url("/images/banner-bg.jpg") center center/cover no-repeat;
  background-blend-mode: overlay;
  z-index: 1;
  overflow: hidden;
}
.banner_layout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.banner_layout .banner_layout_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100vh - 144px);
  margin-top: 144px;
}
.banner_layout .banner_layout_content_actions {
  display: flex;
  justify-content: center;
}
.banner_layout h1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: bold;
  margin-bottom: 15px;
}
.banner_layout h3 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 15px;
  opacity: 0.8;
  font-weight: bold;
}
.banner_layout p {
  font-size: 18px;
  line-height: 24px;
  opacity: 0.8;
  font-weight: bold;
}
.banner_layout h1, .banner_layout h3, .banner_layout p {
  color: white;
  text-align: center;
}
.banner_layout > * {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .banner_layout a {
    margin-bottom: 0px;
  }
  .banner_layout h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .banner_layout h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .banner_layout p {
    font-size: 16px;
    line-height: 20px;
  }
}
.about_us_section {
  padding-top: 80px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(210, 20%, 98%) 100%);
}
.about_us_section h1 {
  text-align: center;
}
.about_us_section p {
  color: rgb(103, 111, 126);
}
.about_us_section .about_us_section_top_content {
  margin-bottom: 48px;
}
.about_us_section .about_us_section_top_content h2 {
  margin-bottom: 48px;
  font-weight: bold;
  text-align: center;
}
.about_us_section .about_us_section_top_content p {
  margin-bottom: 24px;
}
.about_us_section .about_us_items {
  margin-bottom: 48px;
}
.about_us_section .about_us_box {
  background: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.1) 0px 2px 8px -2px;
  padding: 24px;
  height: 100%;
  margin-bottom: 16px;
}
.about_us_section .about_us_box svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.about_us_section .about_us_box p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
.about_us_section .about_us_box.gradient {
  background: linear-gradient(135deg, #e11f28 0%, #f03a47 50%, #ff8a8a 100%);
}
.about_us_section .about_us_box.gradient h4, .about_us_section .about_us_box.gradient p {
  color: white;
}

@media (max-width: 768px) {
  .about_us_section {
    padding-top: 80px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(210, 20%, 98%) 100%);
  }
  .about_us_section h1 {
    text-align: center;
  }
  .about_us_section p {
    color: rgb(103, 111, 126);
  }
  .about_us_section .about_us_section_top_content {
    margin-bottom: 48px;
  }
  .about_us_section .about_us_section_top_content h2 {
    margin-bottom: 48px;
    font-weight: bold;
    text-align: center;
  }
  .about_us_section .about_us_section_top_content p {
    margin-bottom: 24px;
  }
  .about_us_section .about_us_items {
    margin-bottom: 48px;
  }
  .about_us_section .about_us_box {
    padding: 16px;
    height: auto;
    margin-bottom: 16px;
  }
  .about_us_section .about_us_box svg {
    margin-bottom: 12px;
  }
}
.categories_section {
  padding-top: 100px;
}
.categories_section .categories_section_title {
  margin-bottom: 128px;
}
.categories_section .categories_section_title h2 {
  color: rgb(43, 48, 59);
  font-weight: bold;
  margin-bottom: 16px;
}
.categories_section .categories_section_title p {
  color: rgb(103, 111, 126);
}
.categories_section .categories_section_title h2, .categories_section .categories_section_title p {
  text-align: center;
}
.categories_section .category_item {
  margin-bottom: 140px;
}
.categories_section .category_item img {
  border-radius: 10px;
}
.categories_section .category_item .category_item_content {
  margin-top: 15px;
}
.categories_section .category_item .category_item_content h2 {
  color: rgb(43, 48, 59);
  font-weight: bold;
}
.categories_section .category_item .category_item_content p, .categories_section .category_item .category_item_content ul {
  font-size: 18px;
  line-height: 28px;
  color: rgb(103, 111, 126);
}
.categories_section .category_item .category_item_content ul {
  margin-bottom: 25px;
  margin-left: 25px;
}
.categories_section .category_item .category_item_content li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}
.categories_section .category_item.reverse .row {
  flex-direction: row-reverse;
}

.contact_section {
  background: linear-gradient(135deg, hsl(234, 12%, 97%), hsl(0, 0%, 100%));
  padding-top: 64px;
  padding-bottom: 64px;
}
.contact_section .ventura_contact_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(8, 70, 170, 0.1) 0px 2px 8px -2px;
  padding: 24px;
  height: 100%;
  color: black;
  text-decoration: none;
}
.contact_section .ventura_contact_box svg {
  width: 36px;
  height: 36px;
}
.contact_section .ventura_contact_box h4 {
  margin-bottom: 0;
}

.ventura_section_title {
  text-align: center;
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 36px;
}
.ventura_section_title .evma_section_title_subtitle {
  color: #e11f28;
}
