#home {
    background: #f9f9fa;
}


.about{
    padding-bottom: 3rem;
    background: #ffffff;
}

.about .column{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about .column .image{
}

.about .column .image img {
    width: 100%;
    max-width: 532px;
    max-height: 370px;
}

.about .column .content{
    flex:1 1 40rem;
}

.about .column .content h3{
	font-size: var(--font-size-medium);
    color:#666;
}

.about .column .content p{
	font-size: var(--font-size-small);
    color:#666;
    text-align: justify;
}

.about .column .content .buttons a:last-child{
    margin-left: 2rem;
}
.column .content a.btn {
    position: sticky;
    bottom: 20px;
}

#newsletter{
	background: linear-gradient(-170deg, var(--complementary-color), #e14516);
}
.newsletter{
    text-align: center;
    padding:5rem 1rem;
    margin: 6rem 0px;
}

.newsletter h3{
    color:#fff;
	font-size: var(--font-size-large);
    text-transform: uppercase;
}

.newsletter p{
    color:#fff;
	font-size: var(--font-size-medium);
    margin:2rem auto;
}

.newsletter form{
    display: flex;
    max-width: 70rem;
    border:.2rem solid #fff;
    padding:.5rem;
    border-radius: 5rem;
    margin:2rem auto;
    height:5.5rem;
}

.newsletter form input[type="text"],
.newsletter form input[type="email"]{
    padding:0 2rem;
	font-size: var(--font-size-medium);
    background:none;
    width:100%;
    color:#fff;
    text-transform: none;
    background:none;
}

.newsletter form input[type="email"]::placeholder{
    color:#eee;
}

.newsletter form input[type="submit"]{
    background:#fff;
    width:20rem;
	font-size: var(--font-size-medium);
    border-radius: 5rem;
    cursor: pointer;
}

.newsletter form input[type="submit"]:hover{
    color:var(--complementary-color);
}





/*

MAIN AREA HEADER

*/

#main-area__header{
	height: var(--header-height);
	background-image: linear-gradient(to bottom, rgb(136 136 136 / 30%), rgb(255 255 255 / 20%)),url(../src/home_header_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
    background-size: cover;
	-moz-box-shadow: inset 0 -22px 7px -13px #ffffff;
	-webkit-box-shadow: inset 0 -22px 7px -13px #ffffff;
	box-shadow: inset 0 -22px 7px -13px #ffffff;
}

#main-area__header div{
	display: flex;
    flex-direction: column;
    justify-content: center;
}
#brand{
	height: var(--header-height);
    color: #183351;
}
#brand-name{
	font-size: var(--font-size-large);
    font-weight: bold;
    border-bottom: 3px solid white;
    max-inline-size: max-content;
    margin-bottom: 0.3em;
}
#brand-description{
    color: #183351;
    font-weight: bold;
}
.wr-desc{
    text-align: center;
	font-size: var(--font-size-small);
}
img{
	height: auto;
}

/*

LOGO design

*/
.logo-design{
    height: 600px;
	position: relative;
	margin-bottom: 200px;
	background: url("../src/home_header_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.header-main-container{
	position: relative;
    height: 100%;
    margin: 0px auto;
    max-width: 1600px;
}
#logo{
	animation: show_content 1.8s ease-in-out;
	animation-fill-mode: both;
	opacity: 0;
}
.logo-design .brand{
	position: absolute;
    bottom: -50px;
    right: 150px;
	font-size: var(--font-size-medium);
    width: 300px;
    animation-delay: 0.6s;
	animation-duration: 1.8s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-name: show_brand;
	animation-fill-mode: both;
	opacity: 0;
	font-weight: bold;
	font-variant-caps: all-small-caps;
}
.logo-design .desc{
	position: absolute;
    left: 0;
    bottom: -150px;
	font-size: var(--font-size-small);
    width: 620px;
    margin-bottom: 100px;
    text-align: left;
    animation-delay: 0.9s;
	animation-duration: 1.8s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-name: show_content;
	animation-fill-mode: both;
	opacity: 0;
	margin-left: 20px;
	font-variant-caps: all-small-caps;
    font-weight: bold;
    letter-spacing: 2px;
}

svg{
	width: 600px;
	height: 600px;
}


#logo g path{
	stroke: var(--main-color);
	stroke-width: 13;
	fill: transparent;
	animation-duration: 6s;
	animation-timing-function: cubic-bezier(0.46, 0.3, 0, 1.14);
	animation-fill-mode: both;
	animation-name: draw;
	-webkit-animation-name: draw;
	filter: drop-shadow(15px 15px 45px #abababab);
}

@keyframes draw {
	0%, 66% {
	    stroke-dasharray: 750;
	    stroke-dashoffset: 20;
	}

	33% {
	    fill: #141643cc;
	    stroke-dasharray: 50;
	    stroke-dashoffset: 500;
	}
	100%{
	    fill: var(--main-color);
	}
}

@-webkit-keyframes @keyframes draw{
	0%, 66% {
	    stroke-dasharray: 750;
	    stroke-dashoffset: 20;
	}

	33% {
	    stroke-dasharray: 50;
	    stroke-dashoffset: 500;
	}
	100%{
	    fill: #141643cc;
	}
}

@keyframes show_content {
	100%{
		opacity: 1;
		bottom: 0;
	}
}
@keyframes show_brand {
	100%{
		opacity: 1;
		bottom: 70px;
	}
}

@keyframes show_bg{
	100%{opacity: 0.6;}
}


/*

DIVIDER

*/
.divider{
	display: flex;
	align-items: center;
    align-content: center;
    flex-direction: row;
    margin: 5em auto;
}
.divider__line {
    background: var(--main-color);
    height: 0.1em;
    width: 100%;
}
.divider__img{
	margin: 1em;
	width: 100px;
	height: 50px;
	padding: 0.2em;
	display: flex;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	border: 0.1em solid var(--main-color);
}
.divider__img img{
	margin: auto;
	max-width: 90%;
}
