@import "./normalize.css";
@import "./fonts.css";
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus{
  outline: 2px dotted #de2e54;
  outline-offset: 3px;
}

html {
  height: 100%;
}

ul,
ol {
  list-style: none;
}

h2,h3{
    font-family: "Open Sans Condensed",sans-serif;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  display: flex;
  object-fit: cover;
}

body {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 150%;
  height: 100%;
  color: #444;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
  /* width: 1400px;
  margin-left: auto;
  margin-right: auto; */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Open Sans condensed", Arial, Helvetica sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid transparent;
}

/* Header */
.header,
.footer {
  padding-top: 24px;
  padding-bottom: 24px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo-text {
  font-family: Open Sans;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #222222;
}

.site-logo:hover .site-logo-text {
  color: #de2e54;
}

.site-logo:active {
  opacity: 0.6;
}

.sitenav-list {
  display: flex;
  gap: 32px;
}

.sitenav-link {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #222222;
}

.sitenav-link:hover {
  color: #de2e54;
}

.sitenav-link:active {
  opacity: 0.6;
}

.header-btn{
    background-color: #de2e54;
    color:#ffffff;
}

.header-btn:hover {
  background-color: #ffffff;
  border-color: #de2e54;
  color: #de2e54;
}

.header-btn:active {
  opacity: 0.6;
  background-color: #de2e54;
  color: #ffffff;
}

/* MAIN */
.hero {
  background-color: #0eb4c1;
  color: #ffffff;
  padding-top: 29px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  width: 100%;
  max-width: 500px;
}

.hero-title {
  font-size: 36px;
  line-height: 43.2px;
  margin-bottom: 16px;
}

.hero-description {
  width: 100%;
  max-width: 440px;
  line-height: 27px;
  font-size: 18px;
  margin-bottom: 36px;
}

.hero-btn {
    background-color: #de2e54;
    color:#ffffff;
}

.hero-btn:hover{
    background-color: rgba(222,46,84,0.8);
}

.hero-btn:active{
    background-color: rgba(222,46,84,0.6);
}

/* SERVICES SECTION */
.services {
    padding-top: 120px;
    padding-bottom: 120px;
}
.services-container {
    width: 100%;
    max-width: 864px;
    margin-bottom: 60px;
}
.services-title {
    font-size: 36px;
    margin-bottom: 56px;
    text-align: center;
    color:#000000;
}
.services-list {
    display: flex;
    flex-direction: column;
    gap:80px;
}
.services-item {
    display: flex;
    gap: 64px;
    align-self: center;
}
.services-image {
    border-radius: 24px;
    box-shadow: 0px 12px 24px -8px #006B744D;

}
.services-content {
}
.services-item-title {
    margin-bottom: 24px;
    font-size: 24px;
}
.services-item-description {
}

.service-btn-wrapper{
    display: flex;
    justify-content: center;
}

/* CTA SECTION */

.cta {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color:#0eb4c1;
    color: #ffffff;
   
}
.cta-container {
    display: flex;
     flex-direction: column;
    align-items: center;
}

.cta-title {  
    font-size: 36px;
    margin-bottom: 40px;
}
.cta-buttons-wrapper {
    display: flex;
    gap: 40px;
}
.btn {
}
.cta-btn {
    color: #ffffff;
    border-color: #ffffff;
}

.cta-btn:hover {
    color: #ffffff;
    border-color: #de2e54;
    background-color: #de2e54;
}

.cta-btn:active{
    opacity: 0.6;
}
/* FOOTER */
.footer {
  background-color: #222222;
}

.footer .site-logo-text,
.footer .sitenav-link {
  color: #ffffff;
}

.footer .site-logo:hover .site-logo-text,
.footer .sitenav-link:hover {
  color: #de2e54;
}

.footer .site-logo:active .site-logo-text,
.footer .sitenav-link:active {
  color: #ffffff;
}
