/*
Theme Name: BBDC Landing
Text Domain: bbdc
Author: REAL
Version: 1.0
*/


:root{

	--color-white-sky: #e9ebf3;
  --color-black-carbon: #262a15;


  --color-blue-bright: #03a9f4;
  --color-purple-light: #bcc0ec;


	--color-gray: #747582;
  --color-gray-dark: #424242;
	--color-white: #eeeeee;
  --color-black: #181818;


	--content-long-width: 1447px;
	--content-width-small: 1200px;
  --content-width: 1290px;


  --footer-height: 140px;
  --header-height: 120px;



  --font-size-h1: 80px;
  --font-size-h2: 60px;
  --font-size-h3: 30px;
  --font-size-h4: 25px;

	--font-size-text: 22px;
  --font-size-text-small: 16px;
  --font-size-text-micro: 14px;


  --border-radius-1: 16px;

}


@media screen and (max-width: 767px){
    :root{
      --font-size-text: 20px;
      --font-size-text-small: 16px;

      --font-size-h1: 60px;
      --font-size-h2: 40px;
      --font-size-h3: 25px;
      --font-size-h4: 22px;
    }
}

body,
html{
  background-color: white;
  overflow: unset;
}


@font-face {
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Ancizar Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,h2,h3,h4,
.title-h1, .title-h2, .title-h3, .title-h4{
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--color-black-carbon);
  font-size: var(--font-size-h1);
  line-height: 1.1;
  font-family: 'Golos Text';
  font-weight: 700;
  margin-bottom: 32px;
}
h1, .title-h1{
  font-size: var(--font-size-h1);
}
h2, .title-h2{
  font-size: var(--font-size-h2);
}
h3, .title-h3{
  font-size: var(--font-size-h3);
}
h4, .title-h4{
  font-size: var(--font-size-h4);
}
p, p *, .text, .link, li{
  font-family: "Ancizar Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
  color: var(--color-black-carbon);
  font-size: var(--font-size-text);
  line-height: 1.6;
  margin-bottom: 20px;
}
li{
  margin-bottom: 0;
}
b{
   font-weight: 800;
}

.link{
  position: relative;
}
.link::before{
  content: "";
  position: absolute;
  bottom: -32%;
  margin: auto;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 0;
  height: 1.7px;
  transition: all 0.1s;
  background-color: var(--color-3);
}
.link.invert::before{
  background-color: var(--color-white);
}
.link:hover::before{
  max-width: 100%;
}


@media screen and (max-width: 767px){
  
}




/*buttons*/


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 10px 40px;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.1s;
    text-decoration: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    font-family: "Golos Text", sans-serif;
    box-shadow: 0 0 5px #0003;
    color: var(--color-white-sky);
    background-color: var(--color-blue-bright);
    border: solid 2px var(--color-blue-bright);
}
.button span{
  z-index: 2;
  position: relative;
  text-align: center;
}
.button:hover,
.button.selected{
  background-color: rgba(0,0,0,0);
  color: var(--color-blue-bright);
}


.button.button-secondary{
   background-color: rgba(0,0,0,0);
   border: solid 2px var(--color-black);
   color: var(--color-black);
}
.button.button-secondary:hover,
.button.button-secondary.selected{
   background-color: var(--color-black);
   color: var(--color-white-sky);
}








/*animations*/
@keyframes fadeOut {
      0% {
          opacity: 1;
      }
      100% {
          opacity: 0;
      }
}
@keyframes fadeIn {
      0% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes line-move {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}


/*spaces*/

.content-title{
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
  }
.content-title .section-title{
    color: var(--color-blue-bright);
    width: 40%;
}
.content-title .sub-title{
    width: 60%;
    padding-left: 40px;
  }
@media screen and (max-width: 756px){
  .content-title{
    padding-top: 120px;
    padding-bottom: 60px;
    flex-direction: column;
    align-items: center;
  }
  .content-title .section-title,
  .content-title .sub-title{
    width: 100%;
    text-align: center;
    padding-left: 0px;
  }
}