:root {
  --main: #0071B8;
  --main2: #DF195C;
  --black: #000;
  --light-black: #000;
  --gray: #D9D9D9;
}

body {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--black);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 20px;
}

h2,
h3,
h4,
h5 {
  color: var(--main);
}

p {
  margin-bottom: 20px;
}

ul {
  padding-left: 25px;
}

li {
  margin-bottom: 5px;
}

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

.row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.col-1-4 {
  width: 30%;
}

.col-1-6 {
  width: 70%;
}

.btn {
  display: inline-block;
  background-color: var(--main2);
  border: 1px solid var(--main2);
  color: #fff;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 1em;
  font-weight: 500;
  transition: all 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-space-between {
  justify-content: space-between;
}

.align-items-baseline {
  align-items: baseline;
}

.text-center {
  text-align: center;
}

hr {
  border-top: red;
}

section {
  margin-bottom: 50px;
  margin-top: 50px;
}

/* Header */
#header {
  position: absolute;
  z-index: 99;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 0px;

}

/* nav {
    background: #fff;
    border-bottom: 1px solid #ddd;
    font-family: Arial, sans-serif;
  } */

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav>ul.menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--main2);
}

/* ====== Dropdown ====== */
nav ul li {
  position: relative;
  margin: 0;

}

nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav ul li .dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #ddd;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.25s ease;
  z-index: 100;
}

nav ul li:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav ul li .dropdown li a {
  padding: 5px 8px;
  color: var(--black);
  /* white-space: nowrap; */
  font-size: 14px;
  line-height: 18px;
}

nav ul li .dropdown li a:hover {
  background: #f5f5f5;
  color: var(--main2);
}

/* Hero */
#hero {
  position: relative;
  background-color: var(--main);
  background-image: url(img/bg.png);
  background-position: center;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

#hero .herro__wrap__content h1 {

  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-size: 86px;
  line-height: 85px;
  text-align: center;
  text-transform: uppercase;

  color: #FFFFFF;
}

#hero .herro__wrap__content p {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 43px;
  line-height: 52px;
  color: #FFFFFF;
}

#hero .herro__wrap__content .btn {
  font-size: 18px;
}

#ornament {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

/* About */
#about .col-2 {
  align-self: stretch;
}

#about .col-2:nth-child(2) {
  padding: 70px 0 0px 0;
}

#about .mobile {
  display: none;
}
.about__img {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--main);
  background-image: url(img/about.png);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-top: 70px;
  text-align: center;
}

.about__img svg {
  position: absolute;
  width: 101%;
  height: auto;
  top: -10px;
  left: 0;
}

.about__img h2 {
  color: #fff;
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-size: 31px;
  line-height: 41px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 10px;

}

/* Contact */
#contact .col-1-4 {
  padding: 50px 0;
}

#contact .col-1-6 {
  align-self: stretch;
}

#contact iframe {
  height: 100%;
}

#contact h2 {

  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 300;
  font-size: 44px;
  line-height: 51px;
  color: var(--main);
  margin-bottom: 50px;
}

#contact address {
  font-style: normal;
}

#contact address .address {
  font-size: 18px;
}

#contact address section {
  margin: 0;
}

#contact address h3 {
  font-size: 18px;
}

#contact address a {
  color: var(--main2);
}

/* Bullets */
#bullets ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px
}

#bullets ul li {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 21px;
  line-height: 26px;
  color: var(--main);
  padding: 10px;
  margin: 0;
  border: 1px solid var(--gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px
}


/* Footer */
#footer {
  padding-bottom: 50px;
  margin-top: 50px;
}

#footer .row {
  align-items: flex-start;
}

#footer .col-2 {
  /* display: flex;
    flex-direction: column; */
}

#footer .col-2:nth-child(2) {
  text-align: right;
  /* justify-content: flex-end;
    align-items:flex-end; */
}

#footer .col-2 p {
  margin-bottom: 0;
}

#footer .col-2:nth-child(2) .in {
  display: inline-block;
}

#footer img {
  margin-bottom: 10px;
  display: block;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: end;
}

#footer ul li {
  margin: 0;
  padding: 0;
}

#footer ul li a {
  font-size: 14px;
}

#footer ul li a:hover {
  color: var(--main2);
}

#footer .f-brand a {
  display: inline-block;
}






/* Responsive examples */
@media (max-width: 768px) {
  .row {
    flex-wrap: wrap;
    gap: 20px;
  }

  section {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .col-1,
  .col-2,
  .col-1-4,
  .col-1-6 {
    width: 100%;
  }

  /* Header */
  #header .h-brand img {
    max-width: 150px;
    height: auto;
  }
  nav a {
    padding: 0;
    font-size: 12px;
  }
  nav a svg{
    width: 12px;
  }
  /* Hero */
  #hero {
    height: 70vh;
  }

  #hero .herro__wrap__content {
    margin-top: 100px;
  }

  #hero .herro__wrap__content h1 {
    font-size: 41px;
    line-height: 48px;
  }

  #hero .herro__wrap__content p {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .herro__wrap__content br {
    display: none;
  }

  /* About */
  #about .col-2:nth-child(2) {
    padding: 0;
  }

  #about  .about__img {
    padding: 70px 10px 50px 10px;
  }

  #about .about__img h2 {
    font-size: 24px;
    line-height: 28px;
  }

  #about .mobile {
    display: block;
  }

  #about .desktop {
    display: none;
  }

  /* bullets */
  #bullets {
    margin: 20px 0;
  }

  #bullets ul {
    gap: 5px;
  }
  #bullets ul li svg{
    width: 12px;
    height: auto;
  }

  #bullets ul li {
    font-size: 14px;
    padding: 5px;
  }

  /* contact */
  #contact h2 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 28px;
    
  }

  #contact .col-1-4 {
    padding: 0px;
  }

  #contact address {
    text-align: center;
  }

  #contact iframe {
    min-height: 300px;
  }

  /* footer */
  #footer {
    text-align: center;
  }

  #footer .row {
    justify-content: center;
  }

  #footer .col-2:nth-child(2) {
    text-align: center;
  }

  #footer .f-brand {
    text-align: center;
  }
  #footer .f-brand img{
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
  }

  #footer ul {
    justify-content: center;
    gap: 5px
  }

}