@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --primary:#000000;
    --secondary:rgb(6, 2, 71); 
    --tertiary:#0A96FD;
    --bg:#F6F7F8;
    --text:#0f0e0e;
}
h1{ font-family: "Poppins", sans-serif;color: #fff;
    background: linear-gradient(90deg, #d2b9fa, #7aa7af, #bdbdbd, #dfdad8, #ccc7c2, #d6d6d5);
    background-size: 300%;
    background-position: left;
    background-clip: text;
   -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-bg-animation 10s infinite;
    font-size: 50px;
    text-align: left;
    font-weight: 600;
}
@keyframes text-bg-animation{
    0%{background-position:0% 87%}
    50%{background-position:100% 14%}
    100%{background-position:0% 87%}
}
h2{ font-family: "Mulish", sans-serif;
    font-size: 35px;
    font-weight: 800;
    color: var(--secondary);
}
h2 span{ 
  color: var(--primary);
}

h3{ font-family: "Familjen Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 700;
    padding: 20px 0;}

h4{ font-family: "Familjen Grotesk", sans-serif;}
p{ font-family: "Poppins", sans-serif; font-size: 16px;color: #111;}
a{ font-family: "Mulish", sans-serif; text-decoration: none;text-align: left;}

button{background: var(--tertiary);
    border: none;padding: 7px 20px;color: #fff;font-size: 16px;font-weight: 600;border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(228, 91, 91, 0.3) 0px 18px 36px -18px inset;
    transition: 1s ease-in-out;
    animation: butt linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;}
button:hover{
  background: #014b80 ;
}

button:hover a{
  color: #fff; 
}
button a{
 color: #fff;
 font-size: 18px;
}

@keyframes butt {
  from {transform: scale(0.1);}
  to {transform: scale(1);}
}
@media(max-width: 992px){
   h1{font-size: 35px;text-align: center;}
}
@media(max-width: 767px){
   h1{font-size: 30px;}
   h2{font-size: 30px;}
   p{font-size: 14px;}
}
@media(max-width: 450px){
    h1{font-size: 25px;}
   h2{
    font-size: 20px;
  }
   button a{font-size: 14px;}
}
   
/*================================================= banner ===============================================*/
.banner{
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
    -webkit-animation: slidein 50s;
    animation: slidein 100s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;  
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

@-webkit-keyframes slidein {
from {background-position: center; background-size:2000px; }
to {background-position: -50px 0px;background-size:1700px;}
}

@keyframes slidein {
    from {background-position: center; background-size:2000px; }
    to {background-position: -50px 0px;background-size:1700px;}
}

.banner p{
    font-size: 14px;
    color: #fff;
    padding: 20px 5%;
    font-family: "Mulish", sans-serif;
}
.banner p span{
   transition: ease-in-out 0.3s;
}
.banner p span:hover{
    cursor: pointer;
    color: var(--tertiary);
}

.banner p a{
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: ease-in-out 0.3s;
}
.banner p a:hover{
    cursor: pointer;
    color: var(--tertiary);
}
.banner h3{
    font-size: 30px;
    color: #fff;
    padding-left: 5%;
    transition: ease-in-out 0.3s;
}
.banner h3:hover{
    font-size: 31px;
    cursor: pointer;
}
@media(max-width: 767px){
.banner h3{
    font-size: 25px;
    color: #fff;
    padding-left: 5%;
    transition: ease-in-out 0.3s;
}
.banner h3:hover{
    font-size: 26px;
}
}
@media(max-width: 450px){
    .banner{
        height: 150px;
    }
    @-webkit-keyframes slidein {
        from {background-position: right; background-size:1000px; }
        to {background-position: -50px 0px;background-size:700px;}
    }

    @keyframes slidein {
        from {background-position: right; background-size:1000px; }
        to {background-position: -50px 0px;background-size:700px;}
    }
    .banner p{
        font-size: 12px;
    }
    .banner h3{
     font-size: 20px;
     text-align: center;
     padding: 0 ;
    }
    .banner h3:hover{
        font-size: 21px;
    }
}





