:root
{
    --main-color: #EDEDED;
    --contrast-color: #E22B2B;
    --back-color: #D9D9D9;
    --font-normal: calc(1rem + .25vw);
    --font-medium: calc(1rem + 1vw);
    --font-big: calc(2rem + 1vw);
    scroll-behavior: smooth;   
}


.whatsapp
{
    background: #25d366;
	color: white;
	position: fixed;
	bottom: 2%;
	left: 2%;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
    z-index: 99999;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
    
}

#whatsapp .whatsapp i
{
    font-style: normal;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}


body
{
    margin: 0;
    padding: 0;
    background-color: var(--back-color);
    scroll-behavior: smooth;   
    font-family: 'Poppins', sans-serif;
}

.container
{
    width: 80%;
    margin: 0 auto;
}


header
{
    width: 100%;    
    background-color: var(--main-color);

}

nav
{
    display: flex;
    justify-content: space-between;    
    align-items: center;
    
    padding-top: 1%;
    padding-bottom: 1%;
    background-color: var(--contrast-color);
    border-bottom: 1px solid darkred;
}



.center-tittle
{
    text-align: center;
    font-size: var(--font-big)
    
}

#logo
{
    width: 11vw;
    height: auto;
   
}

.bar1, .bar2, .bar3 
{
    width: 35px;
      height: 5px;
      background-color: #333;
      margin: 6px 0;
      transition: 0.4s;
   
}

.change .bar1 {
      -webkit-transform: rotate(-45deg) translate(-9px, 6px);
      transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
      -webkit-transform: rotate(45deg) translate(-8px, -8px);
      transform: rotate(45deg) translate(-8px, -8px);
}

#banner
{
    display: flex;
    align-content: center;
    justify-content: center;    
    max-height: 90vh;
        
}

#banner-container
{
    position: relative;
}

#hambuerguer-icon
{
    position: relative;
    z-index: 200;
}

#menu
{    
    display: none;
    position: absolute;
    width: 100%;
    right: 27.5vw;
    z-index: 102;
    transition: .2s ease;
    opacity: 0;
}

#hambuerguer-icon.change #menu
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    opacity: 1;
}   

#menu a
{
    text-decoration: none;
    list-style: none;
    text-align: center;
    color: white;
    font-size: var( --font-normal);
    border: 1px solid white;
    z-index: 3;
    
}


#menu li
{    
    background-color: var(--contrast-color);
    width: 30vw;
    height: 10vh;
    font-size: var( --font-normal);
    height: auto;
    padding: 5% 0;
}

#menu li:hover
{
    font-size: calc(var(--font-medium) - 10px);
    border: 2px solid white;
}

#menu-content
{
    width: 80%;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}


.fixed-top
{
    position: fixed;
    z-index: 1000;    
    transition: 0.3s;
    
    margin:auto;
    align-content: center;
    top: 0; /* or whatever position is desired */
    left: 0;
    right: 0;
}

.half
{    
    width: 50%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;   
    justify-content: center;    
}

.half:nth-child(1)
{
    /*background-image: url(../image/banner-bg.png);  */
    background-size: cover;
    background-position: center;
}

.half:nth-child(2)
{
    background-color: darkslategray;
    padding: 10vh 0;
    
}

#banner-img
{
    width: 70%;
    z-index: 100;
    /* opacity: 100; */
    position: absolute;
    /*   top: 30%;  */
    height: 100%;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -200%, 0);
	}
	50%
	{
	    opacity: 1;
	}
	
	100% {
		
		transform: none;
	}
}

@keyframes fadeInLef {
	0% {
		opacity: 0;
		transform: translate3d(200%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(-200%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

/*

#banner-img path:nth-child(1)
{
    animation: fadeInDown forwards 1s ease-in-out;
    animation-delay: .5s;
    
}

#banner-img path:nth-child(2)
{
    animation: fadeInRight 1.2s ease;
    animation-delay: .1s;
}

#banner-img path:nth-child(3)
{
    animation: fadeInLef 1s ease;
    animation-delay: .3s;
}
*/


#slide-container
{
    width: 100%;
    height: 100%;
}

.slider
{
    width: 100%;
    height: 100%;    
    background-size: cover;
    background-position: center;
    position: absolute;
    opacity: 0;
    z-index: 0;
    color: transparent;
    animation: imageAnimation 18s linear infinite 0s; 
}

.slider:nth-child(1)
{
    background-image: url(../image/banner-bg.webp);
    
}

.slider:nth-child(2)
{
    background-image: url(../image/bannder-3.webp);
    animation-delay: 6s; 
}

.slider:nth-child(3)
{
    background-image: url(../image/bannder-4.webp);
    animation-delay: 12s; 
}


@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    8% { opacity: 1; animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}

#product-container
{
    display: flex;
    flex-wrap: wrap;    
    align-content: center;
    justify-content: center;
}


.card
{
    position: relative;
    width:15vw;
    height: 15vw;
    padding: 1%;
    margin: 1%;        
}
.card svg
{       
   
    stroke-dasharray: 10000;     
    stroke: white;    
    stroke-width: 2%;
    stroke-miterlimit: 22.9256;
    fill:  #e22b2b00;
    animation: dash 1s forwards ease, fill forwards  1s ease;
    animation-delay: 0s, 1s;
    
}

.card img
{
    position: absolute;
    width: 80%;
    top: 20%;
    left: 12%;
    opacity: 0;
    animation: fade-in forwards 1s ease;
    animation-delay: 1.5s;
        
}

@keyframes fade-in
{
    to
    {
        opacity: 1;
    }
}


@keyframes dash
{   
    from
    {
        stroke-dashoffset: 10000;        
    }

    to{
       
         stroke-dashoffset: 0;   
    }
  
}



@keyframes fill
{
    0%
    {
      fill:  #e22b2b00
    }
    
    100%
    {
        fill: var(--contrast-color);
    }
}


.product svg
{
    
    fill: none;
    stroke: #fefefe;
    stroke-width: 33.28;
    stroke-miterlimit: 22.9256;
    width: 100%;
    height: 100%;
    margin: auto;
    stroke-dasharray: 10000;
    stroke-dashoffset: 2;
    animation: loopsvg 2s ease alternate infinite;
}

@keyframes loopsvg 
{
    from {
        stroke-dashoffset: 10000;
    }
    to {
        stroke-dashoffset: 1460;
    }  

}



h3
{
    font-size: var(--font-medium);
    color: white;
}

#services
{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding-bottom: 3%;
    text-align: center;
    
}

#services p
{
    width: 70%;
    margin: 0;
    word-break:normal;
    text-align: justify;
    text-justify: inter-word;
    padding: 0 3%;
    color: white;
    font-size: var(--font-normal);
}

.service-card
{
    width: 41%;
    padding: 0 2.5%;
    padding-bottom: 5%;
    transition: .1s ease-in;
    background-color: darkred;
    border: 1px solid;
    border-color: var(--main-color);  
        
}

.service-card:hover
{
    background-color: darkred;
    transform: scale(1.1);
    z-index: 3;
    -webkit-box-shadow: -1px 7px 7px 4px rgba(0,0,0,0.26); 
    box-shadow: -1px 7px 7px 4px rgba(0,0,0,0.26);
}



.service-card a
{
    padding: 3% 5%;
    background-color: red;
    text-decoration: none;
    color: white;
}

.service-card a:hover
{
    transform: scale(1.1);
}

.image-text
{
    display: flex;
    padding-bottom: 5%;
    
}

#services div img
{
    width: 25%;
    height: 25%;
}

#orcamento
{
    background-color: var(--contrast-color);    
    text-align: center;
    position: relative;
}

#animated-square
{
    stroke-dasharray: 10000;
    stroke-dashoffset: 17;
    animation: dash 2s ease alternate infinite;
    width: 80%;
    height: 65%;
    padding: 1%;
}

@keyframes dash 
{
    from {
        stroke-dashoffset: 10000;
    }
    to {
        stroke-dashoffset: 0;
    }  

}

#orcamento-id
{
    position: absolute;
    top: 40%;
    left: 36%;
    padding: 2%;
    width: 25vw;
    background-color: white;
    transition: .1s ease-in;
    text-decoration: none;
    font-size: var( --font-normal);
    text-decoration: none;
    color: black;
}

#orcamento-id:hover
{
    background-color: black;
    color: white;
    transform: scale(1.1);    
}

#about-us
{
    display: flex;
    flex-wrap: wrap;
}


#about-us-text
{
    width: 30vw;
    padding: 4%;
    margin: 0; 
    text-align: justify;
    text-justify: inter-word;
    font-size: var(--font-normal)
        
}

#about-us-text p
{
    margin-bottom: 5vh;
    text-indent: 1.5em;
}

#about-us-services a
{
    text-decoration: none;
    background-color: var(--contrast-color);
    padding: 3% 3%;
    color: white;
    margin: auto;
    font-size: var(--font-medium);
    cursor: pointer;
    display: block;
    width: 20%;
    text-align: center;
}

#about-us-services a:hover
{
    transform: scale(1.1);   
    color: black;
}

#about-us-img
{
    width: 34vw;
    padding: 5%;
    margin: 0;
    height: auto;
    
}

#about-us-img img
{
    width: 100%;
    height: auto;
}

#about-us-services
{
    width: 100%;
}


#int-desktop
{
    display: block;
}

#int-mobile
{
    display: none;
}

#instagram
{
    padding-top: 4em;
    margin-top: -4em
}

footer
{
    min-height: 20vh;
    background-color: #171717;
    color: white;
    text-align: center;
}

footer div
{
    width: 30%;
    margin: 0 auto;
    padding: 5% 0 2% 0;
}

footer div img
{
    width: 100%;
    
}

footer p
{
    padding: 2% 0;
    margin: 0;
}

footer a
{
    color: white;
    text-decoration: none;
}

footer a:hover
{
    color: #009EE0;
}

#icons-area
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--contrast-color);
}

.icons
{
    padding: 10% 10% 10% 10%;
}

.icons:hover
{
    transform: scale(1.1);
    
}

.icons i
{
    
    font-size: calc(3rem + 1vw);
    color: white;    
    
}


@media (max-width: 719px) and (orientation: portrait)
{
    #logo
    {
        width: 30vw;
    }
    
    #menu
    {
        width: 90vw;
        margin: 0 auto;
        right: 0;
        height: 30vh;
            
    }
    
    #menu a
    {
        border: 1px solid white;
    }
    
    #menu li
    {
        width: 99vw;
        
    }
    
    #banner-img
    {
        /* top: 27%; */
    }
    
    .half
    {
        width: 100%;
    }
    
    #banner
    {
        max-height: none;
        flex-wrap: wrap;
    }
    
    .half:nth-child(1)
    {
        height: 90vh;
    }
    
    .card
    {
        width: 40vw;
        height: 40vw;
    }
    
    .service-card
    {
        width: 100%;
    }
    
    .image-text
    {
        flex-direction: column-reverse;
        align-items: center;
    }
    
    #services div img
    {
        width: 51%;
        padding-bottom: 10%;
    }
    
    #orcamento
    {
        height: 80vh;
    }
    
    #animated-square
    {
        height: 90%;
        padding-top: 8%;
    }
    
    #about-us
    {
        flex-wrap: wrap-reverse;
        justify-content: center;
    }
    
    #about-us-text
    {
        width: 100%;
        text-align: center;
    }
    
    #icons-area
    {
        flex-direction: column;
    }
    
    
    #int-desktop
    {
        display: none;
    }
    
    #int-mobile
    {
        display: block;
    }
    
    footer p
    {
        padding: 7% 0;
        font-size: var(--font-normal);
    }
}

.active-animation
{
    transform:  translateX(0) !important;
    opacity: 1 !important;
}

.invisible-margin
{
     padding-top: 4em;
     margin-top: -4em;
}

/***************************************************
 * Generated by SVG Artista on 2/1/2023, 9:18:51 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 15749.44140625px;
    stroke-dasharray: 15749.44140625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 15749.44140625px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 15749.44140625px;
    stroke-dasharray: 15749.44140625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 15749.44140625px;
  }
}

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(226, 43, 43);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(226, 43, 43);
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
                       animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
          animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
               animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 75578.09375px;
    stroke-dasharray: 75578.09375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 75578.09375px;
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 75578.09375px;
    stroke-dasharray: 75578.09375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 75578.09375px;
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
                       animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
          animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
               animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 75578.09375px;
    stroke-dasharray: 75578.09375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 75578.09375px;
  }
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 75578.09375px;
    stroke-dasharray: 75578.09375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 75578.09375px;
  }
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(32, 30, 30);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(32, 30, 30);
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
                       animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
          animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
               animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 5076.583984375px;
    stroke-dasharray: 5076.583984375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5076.583984375px;
  }
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 5076.583984375px;
    stroke-dasharray: 5076.583984375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5076.583984375px;
  }
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
                       animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
          animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
               animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 3080.548828125px;
    stroke-dasharray: 3080.548828125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3080.548828125px;
  }
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 3080.548828125px;
    stroke-dasharray: 3080.548828125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3080.548828125px;
  }
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
                       animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
          animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
               animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 4421.80126953125px;
    stroke-dasharray: 4421.80126953125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4421.80126953125px;
  }
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 4421.80126953125px;
    stroke-dasharray: 4421.80126953125px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4421.80126953125px;
  }
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
                       animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
          animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
               animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 3651.07177734375px;
    stroke-dasharray: 3651.07177734375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3651.07177734375px;
  }
}

@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 3651.07177734375px;
    stroke-dasharray: 3651.07177734375px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3651.07177734375px;
  }
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

.svg-elem-7 {
  -webkit-animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both,
                       animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
          animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both,
               animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 3329.994873046875px;
    stroke-dasharray: 3329.994873046875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3329.994873046875px;
  }
}

@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 3329.994873046875px;
    stroke-dasharray: 3329.994873046875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3329.994873046875px;
  }
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

.svg-elem-8 {
  -webkit-animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both,
                       animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
          animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both,
               animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 3910.494140625px;
    stroke-dasharray: 3910.494140625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3910.494140625px;
  }
}

@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 3910.494140625px;
    stroke-dasharray: 3910.494140625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3910.494140625px;
  }
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

.svg-elem-9 {
  -webkit-animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both,
                       animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
          animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both,
               animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 3651.1201171875px;
    stroke-dasharray: 3651.1201171875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3651.1201171875px;
  }
}

@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 3651.1201171875px;
    stroke-dasharray: 3651.1201171875px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3651.1201171875px;
  }
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

.svg-elem-10 {
  -webkit-animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both,
                       animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
          animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both,
               animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
}

@-webkit-keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 2891.599853515625px;
    stroke-dasharray: 2891.599853515625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2891.599853515625px;
  }
}

@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 2891.599853515625px;
    stroke-dasharray: 2891.599853515625px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2891.599853515625px;
  }
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(254, 254, 254);
  }
}

.svg-elem-11 {
  -webkit-animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both,
                       animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
          animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both,
               animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

#banner-container svg
{
    
}

.preload
{
    display: none;
}

.display-block
{
    display: block;
}

.unhide
{
    display: block;
}

    