/**
 * Website Name: Corimec
 * Author: Patrick Pereira
 * Author URI: https://patrickpereirak.github.io/
 * Version: 1.0
 */


/**
 * CONTENTS
 *
 * RESET
 * FONTS
 * GLOBALS
 * HEADER
 * HERO
 * ABOUT
 * PRODUCTS
 * SOLUTIONS
 * INFO
 * SECTORS
 * CONTACT
 * FOOTER
 */





/*----------------------------------------------------------------------------*\
  #RESET
\*----------------------------------------------------------------------------*/

/**
 * Minified by jsDelivr using clean-css v4.2.3.
 * Original file: /npm/modern-normalize@1.1.0/modern-normalize.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
*,::after,::before{box-sizing:border-box}html{-moz-tab-size:4;tab-size:4}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}body{font-family:system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji'}hr{height:0;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}
/*# sourceMappingURL=/sm/b8ae781793ee4eb86edef3f2a2ac43a5575d063ed8cd287d7553f9f1b2776616.map */





/*----------------------------------------------------------------------------*\
  #FONTS
\*----------------------------------------------------------------------------*/

@font-face {
  font-family: FuturaBT;
  src: url('/fonts/futura-bold-bt.ttf');
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: FuturaBT;
  src: url('/fonts/futura-md-bt-medium.ttf');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Alata;
  src: url('/fonts/Alata-Regular.ttf');
  font-display: swap;
}





/*----------------------------------------------------------------------------*\
  #GLOBALS
\*----------------------------------------------------------------------------*/

:root {
  --white: #ffffff;
  --yellowBg: #efe115;
  --blueBg: #2963a5;
  --blueDarkBg: #041524;
  --blueDark: #1c4572;
  --blueLight: #2965a6;
  --yellow: #efe216;
  --radius: 5px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: FuturaBT, Arial, Helvetica, sans-serif;
  font-size: 16px;
}

img {
  width: 100%;
  display: block;
}

h1, h2, h3 {
  font-style: italic;
}

.divider {
  width: 100%;
  max-width: 100%;
  height: 2px;
  border: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin: 0;
}

a {
  text-decoration: none;
}



/*----------------------------------------------------------------------------*\
  #HEADER
\*----------------------------------------------------------------------------*/

.header {
  width: 100%;
  margin: auto 0;
  padding: 1.4rem 0;
  background: var(--white);
}

.logo {
  max-width: 160px;
}





/*----------------------------------------------------------------------------*\
  #HERO
\*----------------------------------------------------------------------------*/

.hero {
  background-image: url('/images/bg-hero.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
  padding: 1rem 0;
}

.hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: start;
  padding-top: 4rem;
}

.hero-title {
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 2.8rem;
  color: var(--yellow);
  font-weight: bold;
  margin-bottom: 1.4rem;
}

.hero-info {
  color: #fefefe;
  letter-spacing: 0;
  font-size: 2rem;
  line-height: 1.7rem;
  font-weight: bold;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.hero-link {
  background: var(--yellowBg);
  color: var(--blueDark);
  border-radius: var(--radius);
  padding: .5rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 50px;
}

.hero-text {
  position: absolute;
  bottom: .1%;
  right: 0;
  left: 0;
  width: 100%;
  font-size: 3.2rem;
  font-style: italic;
  font-weight: bold;
  color: var(--white);
  text-transform: uppercase;
  margin: 10px 0;
  text-align: center;
}






/*----------------------------------------------------------------------------*\
  #ABOUT
\*----------------------------------------------------------------------------*/

.about {
  background: var(--yellow);
  padding: 3rem 0;
  text-align: center;
}

.about-divider {
  background: var(--white);
}

.about-title {
  color: var(--blueDark);
  font-size: 3rem;
  margin-top: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.about-info {
  color: var(--blueLight);
  letter-spacing: 0;
  font-size: 1.8rem;
  line-height: 1.6rem;
  font-weight: bold;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 4rem;
}






/*----------------------------------------------------------------------------*\
  #PRODUCTS
\*----------------------------------------------------------------------------*/

.products {
  background: var(--white);
}

.products-title{
  color: var(--blueDark);
  font-size: 2.6rem;
  line-height: 3rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.products-divider{
  background: var(--yellow);
  margin-bottom: 4rem;
}

.products-list{
  width: 100%;
  display: flex;
  margin-bottom: 4rem;
}

.products-list-divider{
  background: #dddddd;
  margin-bottom: 4rem;
}

.product{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.product-title{
  color: var(--blueDark);
  text-transform: uppercase;
  font-size: 1.8rem;
  font-style: italic;
  margin-top: 0;
}

.product-img{
  max-width: 240px;
}

.product-ul{
  margin: 0;
  padding: 0;
  max-width: 350px;
}

.product-li{
  font-size: .82rem;
  line-height: 1rem;
  margin-bottom: 1rem;
  list-style: none;
  color: var(--blueDark);
  font-family: Alata, Arial, Helvetica, sans-serif;
}

.border-left {
  border-left: 2px solid #dddddd;
}

.products-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.products-link a{
  background: var(--blueDark);
  color: var(--white);
  border-radius: var(--radius);
  padding: .5rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}






/*----------------------------------------------------------------------------*\
  #SOLUTIONS
\*----------------------------------------------------------------------------*/

.solutions {
  background: var(--blueBg);
}

.solutions-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  padding-left: 50px;
}

.solutions-heading{
  width: 60%;
}

.solutions-h-title{
  font-size: 40px;
  color: var(--yellow);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.solutions-h-hr{
  width: 170px;
  background: var(--yellow);
  text-align: left;
  margin-left: 0;
  height: 5px;
}

.solutions-info{
  width: 100%;
  border-left: 2px solid #72aceb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4rem;
}

.solutions-i-title{
  color: var(--yellow);
  font-size: 2.6rem;
  line-height: 3rem;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.solutions-i-list{

  list-style-type: none;
  padding-left: 1em;
  
}

.solutions-i-item{
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.solutions-i-item:before{
  content: "–";
  position: absolute;
  margin-left: -1em;
}






/*----------------------------------------------------------------------------*\
  #INFO
\*----------------------------------------------------------------------------*/

.info {
  background: var(--yellow);
  padding: 3rem 0;
  text-align: center;
}

.info-divider {
  background: var(--white);
}

.info-title {
  color: var(--blueDark);
  font-size: 2.4rem;
  margin-top: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}






/*----------------------------------------------------------------------------*\
  #SECTORS
\*----------------------------------------------------------------------------*/

.sectors {
  background: var(--white);
}

.sectors-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  padding-left: 50px;
}

.sectors-heading{
  width: 60%;
}

.sectors-h-title{
  font-size: 40px;
  color: var(--blueDark);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.sectors-h-hr{
  width: 170px;
  background: var(--yellow);
  text-align: left;
  margin-left: 0;
  height: 5px;
}

.sectors-info{
  width: 100%;
  border-left: 2px solid #dddddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
}

.sectors-i-list{
  list-style-type: none;
  padding-left: 1em;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.s-sector{
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}

.s-sector-img {
  max-width: 50px;
  margin-right: 10px;
}

.s-sector-title {
  color: var(--blueLight);
  font-weight: bold;
  font-size: 1.4rem;
}

.sectors-divider {
  background: #dddddd;
}




/*----------------------------------------------------------------------------*\
  #CONTACT
\*----------------------------------------------------------------------------*/

.contact {
  background: var(--white);
}

.contact-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}

.contact-heading{
  width: 60%;
}

.contact-h-title{
  font-size: 40px;
  color: var(--blueDark);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.contact-h-hr{
  width: 170px;
  background: var(--yellow);
  text-align: left;
  margin-left: 0;
  height: 5px;
}

.contact-info{
  width: 100%;
  border-left: 2px solid #dddddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
}

.contact-i-title{
  color: var(--blueDark);
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.contact-i-form{
  display: flex;
  flex-direction: column;
  color: var(--blueDark);
}

.contact-i-input,
.contact-i-textarea,
.contact-i-button
 {
  color: var(--blueDark);
  background: var(--yellow);
  border: none;
  margin-bottom: 10px;
  padding: .5rem;
  font-weight: 500;
}

.contact-i-input::placeholder,
.contact-i-textarea::placeholder {
  color: var(--blueDark);
}

.contact-i-button {
  background: var(--blueDark);
  color: var(--white);
  font-size: 1.1rem;
}






/*----------------------------------------------------------------------------*\
  #FOOTER
\*----------------------------------------------------------------------------*/

.footer {
  background: var(--blueDarkBg);
  padding: 2rem 0;
}

.footer-wrapper {
  width: 100%;
  max-width: 1170px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  max-width: 160px;
}

.footer-link > a {
  background: var(--yellow);
  color: var(--blueDark);
  border-radius: var(--radius);
  padding: .8rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
}

.footer-social-icons {
  display: flex;
}

.footer-social-link {
  margin-right: 10px;
}

.footer-social-img {
  max-width: 25px;
}

.footer-social-info {
  color: var(--yellow);
  font-size: 1.2rem;
}

.whatsapp {
    background: #25D366;
    color: #fff;
    right: 20px;
    position: fixed;
    bottom: 20px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 100%;
    font-size: 40px;
    
}



/*----------------------------------------------------------------------------*\
  #MEDIA QUERY
\*----------------------------------------------------------------------------*/

@media (min-width: 1600px) {
  .hero-wrapper {
    padding-top: 4rem;
  }

  .hero-title {
    font-size: 4rem;
    line-height: 3.6rem;
    margin-top: 1.5rem;
  }

  .hero-info {
    font-size: 2.4rem;
    line-height: 2rem;
    margin: 0 auto 4rem;
    max-width: 800px;
  }

  .hero-link {
    font-size: 1.4rem;
  }
  
  .hero-text {
    font-size: 3rem;
    margin: 40px 0;
  }
}

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

  .product,
  .products-list,
  .solutions-wrapper,
  .sectors-wrapper,
  .contact-wrapper,
  .footer-wrapper,
  .footer-social
   {
    flex-direction: column;
  }

  .sectors-i-list {
    grid-template-columns: 1fr;
  }

  .solutions-heading,
  .sectors-heading,
  .contact-heading {
    width: 80%;
  }

  .solutions-h-title,
  .sectors-h-title,
  .contact-h-title {
    font-size: 30px;
    text-align: center;
  }

  .solutions-h-hr,
  .sectors-h-hr,
  .contact-h-hr {
    width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-wrapper {
    padding-top: 4rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.8rem;
    margin-top: .5rem;
  }

  .hero-info {
    font-size: 1.6rem;
    line-height: 1.4rem;
    margin: 0 auto 4rem;
  }

  .hero-link {
    font-size: 1.2rem;
  }
  
  .hero-text {
    font-size: 2.4rem;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-info {
    font-size: 1.6rem;
    line-height: 1.4rem;
  }

  .products-title {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  .product {
    align-items: center;
    margin-bottom: 4rem;
  }

  .product-title {
    text-align: center;
    font-size: 2rem;
  }

  .border-left {
    border: none;
  }

  .products-list-divider {
    width: 0;
    height: 0;
    margin: 0;
  }

  .products-list {
    margin-bottom: 0;
  }

  .product-ul {
    max-width: 76%;
  }

  .product-li {
    font-size: .9rem;
  }

  .product-img {
    margin: 0 auto;
  }

  .product-heading {
    display: flex;
    flex-direction: column-reverse;
  }

  .solutions-heading {
    margin-bottom: 2rem;
  }

  .solutions-info {
    border: none;
    padding: 0 2rem;
  }

  .solutions-i-title {
    font-size: 2.2rem;
    line-height: 2.4rem;
    text-align: center;
  }

  .solutions-i-item {
    font-size: 1.2rem;
  }

  .info-title {
    font-size: 2rem;
  }

  .sectors-heading {
    margin-bottom: 2rem;
  }

  .sectors-info {
    border-left: none;
    align-items: center;
    padding: 0 1rem;
  }

  .sectors-i-list {
    padding-left: 0;
  }

  .s-sector {
    margin-bottom: .8rem;
  }

  .s-sector-img {
    max-width: 45px;
  }

  .s-sector-title {
    font-size: 1.3rem;
  }

  .contact-heading {
    margin-bottom: 2rem;
  }

  .contact-info {
    border-left: none;
    padding: 0 1rem;
  }

  .contact-i-title {
    font-size: 1.1rem;
  }

  .footer-logo {
    margin-bottom: 4rem;
  }

  .footer-link {
    margin-bottom: 4rem;
  }

  .footer-social {
    margin-bottom: 2rem;
  }

  .footer-social-info {
    font-size: 1rem;
  }
}

@media (max-height: 700px) {
  .hero-info {
    margin: 0 auto 1rem;
  }

  .hero-wrapper {
    padding-top: 1rem;
  }
}


