/* 
 Theme Name: Carport Planet
 Theme URI: noveo.pl
 Author: noveo.pl
 Author URI: noveo.pl
 Description: Custom theme
 Version: 1.0 
*/

@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    src: url(fonts/Poppins/Poppins-Regular.ttf);
}
@font-face {
    font-family: 'Poppins';
    font-weight: 600;
    src: url(fonts/Poppins/Poppins-Medium.ttf);
}

html{
    font-size: 10px;
}
body{
    font-family: 'Poppins', sans-serif;
    margin: 0px;
    padding: 0px;
    font-weight: 400;
    position: relative;
    background-color: #FFF;
}
.wrapper{
    width: 1248px;
    margin: auto;
    max-width: 95%;
}
.wrapper_min{
    max-width: 90%;
    /*max-width: 824px;*/
    width: 1248px;
    margin: auto;
}
.wrapper_full{
    width: 100%;
    max-width: 1920px;
    margin: auto;
}
.sec_outher{
    margin-bottom: 96px;
}
.min_outher{
    margin-bottom: 6px;
}

p{
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3.1rem;
    margin: 0px;
    margin-bottom: 24px;
    color: #808080;
}
.min p,
.min li{
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.8rem;
    color: #808080;
}
.min p strong,
.min li strong{
    font-weight: 600;
    color: #383838;
}
a{
    text-decoration: none;
    color: black;
}
a.show_form{
    cursor: pointer;
}
h1,
.h1{
    font-size: 6.4rem;
    font-weight: 600;
    line-height: 7.3rem;
    color: #383838;
    margin: 0px;
    margin-bottom: 24px;
}
h2,
.h2{
    font-size: 4.8rem;
    font-weight: 600;
    line-height: 5.5rem;
    color: #383838;
    margin: 0px;
    margin-bottom: 24px;
}
h3,
.h3{
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 3.2rem;
    margin: 0px;
    margin-bottom: 12px;
    color: #2A2A27;
}
.min h3,
.min .h3{
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.5rem;
    color: #383838;
}
h4,
.h4{
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 100%;
    display: inline-block;
    color: #0194DE;
    padding: 0px 12px;
    padding-bottom: 8px;
    margin: 0px;
    margin-bottom: 48px;
    position: relative;
}
h4::after,
.h4::after{
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #E3E3E3;
}
h5,
.h5{
    line-height: 100%;
    font-size: 2.4rem;
    font-weight: 500;
    color: #2A334A;
    margin: 0px;
    margin-bottom: 24px;
}

input, textarea, select{
    outline: 0px;
}

.button_box{
    display: inline-flex;
    align-items: center;
    color: #FFF;
    background-color: #0194DE;
    padding: 18px 24px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 100%;
    transition-duration: 0.4s;
    border: 0px;
    cursor: pointer;
}
.button_box:hover{
    background-color: #007FBF;
}
.button_box.loading::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    border: 3px solid #0194DE;
    border-top-color: #FFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
.button_box.second_style{
    color: #0194DE;
    background-color: transparent;
    padding: 0px;
    padding-bottom: 12px;
    position: relative;
}
.button_box.second_style::after{
    content: '';
    background-color: #0194DE;
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

@keyframes fade-in {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 24px, 0);
      transform: translate3d(0, 24px, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
}
.fade-in-element{
    animation: fade-in 0.8s;
}
.hidden{
    opacity: 0;
}

::-webkit-scrollbar {
    width: 4px; 
}
::-webkit-scrollbar-track {
    background: #EDEEEF;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb {
    background: #0194DE;
    border-radius: 6px; 
}
::-webkit-scrollbar-thumb:hover{
    background: #007FBF;
}
@-moz-document url-prefix() {
    *{
        scrollbar-width: thin;
        scrollbar-color: #242528 #EDEEEF;
    }
}