/*   
    ACH Soluions CSS v1.0   
    thatweb.co   //   Dec 2022   //   achsolutions.co.uk
*/

html{
    font-size: 14px;
}
body{
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color:#fff;
}

a{
    color:#2890ad;
    text-decoration: none;
    font-weight: 400;
}
a:not(.btn):hover{
    color:#2890ad;
    text-decoration: underline;
}
.logo{
    max-width:200px;
}
.sticky-top{
    top:1rem;
}
.device-identifier{
    position: fixed;
    bottom: 0.5rem;
    left: 0.5rem;
    padding: 0.1rem 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 2px;
    z-index: 10000;
    color: #fff;
    font-size: .5rem;
    background-color:#00000090;
}
.cookie-popup{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    padding:2rem 0;
    background-color: rgba(34,34,34,.95);
    border-top:3px solid white;
    color:white;
    font-size: .8rem;
}

.flex-center{
    display:flex;
    align-items:center;
    justify-content:center;
}
section{
    padding:2rem 0;
    display:flex;
    align-items:center;
    justify-content:center;
}
.cover{
    padding:0;
    position: relative;
    min-height: 20vh;
    max-height: 100vh;
    width:100%;
    overflow: hidden;
}
.cover-content{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    padding:1rem;
}
.cover picture img{
}
.cover .logo{
    width:350px;
    max-width: 80%;
}
.icon{
    display: inline-block;
    width:60px;
    margin-bottom:2rem;
    margin-right:2rem;
    transition: all .2s ease-out;
}
.icon:last-child{
    margin-right:0;
}
.icon:hover{
    transform: scale(1.1);
    transition: all .5s cubic-bezier(0.480, 0.010, 0.000, 1.635);
}
.bg-light{
    background-color: #f7f7f7!important;
}
.btn{
    border:0;
    border-radius: 100rem;
    padding: .6rem 1.5rem;
}


.text-primary{
    color:#2890ad!important;
}
.btn-primary{
    background-color:#2890ad;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background-color:#37aecf!important;
}


.btn-secondary{
    background-color:#592579;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active{
    background-color:#7832a3!important;
}
.text-secondary{
    color:#592579!important;
}
label{
    font-weight: 600;
}
.required label:before{
    content:"*";
    color:red;
    margin-right:.25rem;
}
.form-control{
    border:1px solid #eee;
}
footer{
    padding:2rem 0;
    font-size: .85rem;
}
footer a{
    text-decoration: none;
    color:#6c757d;
}
footer a:hover{
    text-decoration: underline;
    color:#592579;
}

.twc-link{
    color:#ccc;
    padding:.25rem 0;
}
a.twc-link:hover{
    color:#999;
    text-decoration: none;
}


.text-bg-grad {
    text-align: center;
    background: linear-gradient(90deg, #2890ad 20%, #592579 40%, #592579 60%, #2890ad 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s linear infinite;
}



@keyframes shine {
    to {
        background-position: -200% center;
    }
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


 hr.brand{
    width: 100px;
    margin: 0 auto 1.5rem auto;
    border-width: 3px;
    border-color: #592579;
    opacity: 1;

 }
 hr.white{
    border-color: #fff;
 }







.chevron-wrapper{
    position: absolute;
    bottom: 100px;
}
.chevron {
    position: absolute;
    width: 3.5rem;
    height: .65rem;
    opacity: 0;
    transform: scale(0.3);
    -webkit-animation: move-chevron 3s ease-out infinite;
    animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
    -webkit-animation: move-chevron 3s ease-out 1s infinite;
    animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    -webkit-animation: move-chevron 3s ease-out 2s infinite;
    animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before, .chevron:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: rgba(255,255,255,.1);
}

.chevron:before {
    left: 0;
    transform: skewY(30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
}

@-webkit-keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(1.5rem);
    }
    66.6% {
        opacity: 1;
        transform: translateY(3rem);
    }
    100% {
        opacity: 0;
        transform: translateY(5rem) scale(0.5);
}
}

@keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(1.5rem);
    }
    66.6% {
        opacity: 1;
        transform: translateY(3rem);
    }
    100% {
        opacity: 0;
        transform: translateY(5rem) scale(0.5);
    }
} 














/*   -  -  -  -   R E S P O N S I V E    -  -  -  -  */



/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    html{
        font-size: 16px;
    }
    .cookie-popup{
        font-size: .9rem;
    }
    section{
        min-height:80vh;
        padding:10rem 0;
    }
    .cover .logo{
        width: 50%;
    }
    label{
        text-align: right;
    }
    .icon{
        width:100px;
        margin-bottom:0;
        margin-right:5rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .icon{
        width:150px;
        margin-right:5rem;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    
}

