/* HEADER */

.section__header{
    margin: 200px 6%;
}

.header__circle{
    position: relative;
    z-index: 1;
}

.circle{
    filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.16));
    backdrop-filter: blur(30px);
    --webkit-backdrop-filter: blur(30px);
    background-color: var(--circleColor);
    border-radius: 1150px;
}

.circle__one{
    position: absolute;
    top: -50px;
    right: -140px;
    width: 498px;
    height: 498px;
    background-color: var(--colorSecondary);
}

.circle__two{
    position: absolute;
    top: 100px;
    right: 140px;
    width: 419px;
    height: 419px;
}

.circle__three{
    position: absolute;
    top: 10px;
    right: 370px;
    width: 274px;
    height: 274px;
    background-color: var(--colorMain);
}

.header__content{
    position: relative;
    width: 50%;
    z-index: 2;
}

  /* background: -moz-linear-gradient(#eee, #333)!important;;
    background: -ms-linear-gradient(#eee, #333)!important;
    background: -webkit-linear-gradient(#eee, #333)!important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(238, 238, 238)), color-stop(100%, rgb(51, 51, 51)))!important;
    background: -o-linear-gradient(#eee, #333); */
  /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eee', endColorstr='#333')!important;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eee', endColorstr='#333')"!important; */
  /* background: linear-gradient(#eee, #333)!important; */

.nc_header__title{
    font-weight: bold;
    font-size: 90px;
    line-height: 90px;
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* font-weight: bold;
    font-size: 90px;
    line-height: 90px;
    color: linear-gradient(90deg, rgba(0,220,237,1) 0%, rgba(13,229,173,1) 27%, rgba(32,243,81,1) 66%, rgba(48,255,0,1) 100%); */
}

.nc_header__title span{
    color: var(--colorMain);
}
.main__inlineHeader{
    background: -webkit-linear-gradient(var(--colorMain), #333);
    /* background: -moz-linear-gradient(var(--colorMain), #333);
        background: -ms-linear-gradient(var(--colorMain), #333);
        background: -webkit-linear-gradient(var(--colorMain), #333);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, var(--colorMain)), color-stop(100%, rgb(51, 51, 51)));
        background: -o-linear-gradient(var(--colorMain), #333);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=var(--colorMain), endColorstr='#333');
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=var(--colorMain), endColorstr='#333')";
        background: linear-gradient(var(--colorMain), #333);
    background-clip: text; */
    -webkit-background-clip: text;
}
.p__highlight{
    color: var(--colorDefault)
}

.flex-parent {
    display: flex;
    margin: 3em 0;
    height: 100%;
        /* Add this line */
}

.jc-center {
    justify-content: center;
}

a.margin-right {
    margin-right: 30px;
}

.header__title{
    font-weight: bold;
    font-size: 90px;
    line-height: 90px;
    color: var(--colorMain);
}

.header__title span{
    color: var(--colorDefault);
}

.header__description{
    color: var(--colorText);
    font-weight: normal;
    padding-top: 34px;
}

.header__map {
    padding-top: 80px;
    display: block;
    align-items: center;
    font-weight: 500;
    color: var(--colorMain);
    .caption { text-align: left; }
}

.header__info{
    padding-top: 80px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--colorMain);
}

.header__square{
    width: 60px;
    height: 60px;
    background-color: var(--backgroundSecond);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 23px;
}

.header__arrow{
    padding-top: 90px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #4A4A4A;
}

.header__arrow__icon{
    margin-right: 18px;
}

@media only screen and (max-width: 1100px) {
    .section__header{
        margin: 150px 6%;
    }

    .header__circle{
        opacity: 0.3;
    }

    .header__content{
        width: 100%;
    }

    .header__title{
        word-break: break-word;
        font-size: 44px;
        line-height: 40px;
    }

    .header__description{
        font-size: 15px;
    }

    .header__info{
        padding-top: 60px;
    }

    .header__square{
        width: 50px;
        height: 50px;
        margin-right: 18px;
    }
}