/* v.1 
by Ahmed Said
*/


/* import Font */
@import url('https://fonts.googleapis.com/css?family=Changa:400,700');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@font-face {
    font-family: 'OldEgyptGlyphs';
    src:  url('../fonts/OldEgyptGlyphs.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/OldEgyptGlyphs.ttf')  format('truetype'); /* Safari, Android, iOS */
    
  }

/* All Style */
body{overflow-x: hidden; }
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #f95e3f;
  }
  ::-moz-placeholder { /* Firefox 19+ */
    color: #f95e3f;
  }
  :-ms-input-placeholder { /* IE 10+ */
    color: #f95e3f;
  }
  :-moz-placeholder { /* Firefox 18- */
    color: #f95e3f;
  }

  input::placeholder, 
  textarea::placeholder {
    color:  #555 !important;
    font-weight: bold;
  }


  /* preloader */
  .page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999999;
    background-color: #fff;
  }
  
  .preloader__item {
    content: "";
    display: block;
    position: absolute;
    background-color: #fd5433;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    z-index: 999;
  }
  
  .preloader__item1 {
    animation-name: orbit-top-left;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-delay: 0s;
  }
  
  .preloader__item2 {
    animation-name: orbit-top-right;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-delay: 0s;
  }
  
  .preloader__item3 {
    animation-name: orbit-down-left;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-delay: 0s;
  }
  
  .preloader__item4 {
    animation-name: orbit-down-right;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-delay: 0s;
  }
  
  @keyframes orbit-top-left {
    0% {
      transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
    }
    20% {
      transform: rotate3d(0, 0, 1, 0deg) translate3d(150%, 150%, 0);
    }
    80% {
      transform: rotate3d(0, 0, 1, 360deg) translate3d(150%, 150%, 0);
    }
    100% {
      transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0);
    }
  }
  @keyframes orbit-top-right {
    0% {
      transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
    }
    20% {
      transform: rotate3d(0, 0, 1, 0deg) translate3d(150%, -150%, 0);
    }
    80% {
      transform: rotate3d(0, 0, 1, 360deg) translate3d(150%, -150%, 0);
    }
    100% {
      transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0);
    }
  }
  @keyframes orbit-down-left {
    0% {
      transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
    }
    20% {
      transform: rotate3d(0, 0, 1, 0deg) translate3d(-150%, -150%, 0);
    }
    80% {
      transform: rotate3d(0, 0, 1, 360deg) translate3d(-150%, -150%, 0);
    }
    100% {
      transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0);
    }
  }
  @keyframes orbit-down-right {
    0% {
      transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
    }
    20% {
      transform: rotate3d(0, 0, 1, 0deg) translate3d(-150%, 150%, 0);
    }
    80% {
      transform: rotate3d(0, 0, 1, 360deg) translate3d(-150%, 150%, 0);
    }
    100% {
      transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0);
    }
  }
  
  
  /* preloader End */


*{outline: none; scrollbar-width: none;}
.oldegypt
{
    font-family: 'OldEgyptGlyphs';
}
.gold{color: gold;}

a,a:hover,a:focus{text-decoration: none;color: white;}
.section-header{font: 700 32px/30px 'Raleway';color: #f95e3f; text-align: center;text-transform: uppercase;}
.section-subheader{font: 400 25px/60px 'Changa';color: #000000; text-align: center;text-transform: capitalize;}
.oldegypt-title{ background: url("../img/background/oldegypt-title.png") no-repeat;background-size: cover; width: 77px;height: 640px; display: inline;float: left; font-family: 'OldEgyptGlyphs'; padding: 45px 0px 0; }
.oldegypt-title ul {margin-top: 51px;}
.oldegypt-title ul li{    font-weight: bold;font-size: 23px;padding: 10px 0px;display: block;text-align: center;}
.smalltitle{display: none; background: url("../img/background/oldegypt-title.png") no-repeat;background-size: 100% 100%; width: 40px;height: 150px; position: absolute;font-family: 'OldEgyptGlyphs'; padding: 5px 0px 0; left: 30%; margin-top:-81px ;text-align: center}
.other-side{width: calc(100% - 100px);display: inline; position: absolute;}

/*ScrollBar*/
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #f95e3f;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #d45839;
}


/* Menu Nav */
.menu
{
    position: fixed;
    top: 10px;
    padding: 10px;
    right: 10px;
    z-index: 999999999;
}
.menu-toggle {
    width: 40px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
  }
  .menu-toggle.on .one {
    -moz-transform: rotate(45deg) translate(7px, 7px);
    -ms-transform: rotate(45deg) translate(7px, 7px);
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    transform: rotate(45deg) translate(7px, 7px);
  }
  .menu-toggle.on .two {
    opacity: 0;
  }
  .menu-toggle.on .three {
    -moz-transform: rotate(-45deg) translate(8px, -10px);
    -ms-transform: rotate(-45deg) translate(8px, -10px);
    -webkit-transform: rotate(-45deg) translate(8px, -10px);
    transform: rotate(-45deg) translate(8px, -10px);
  }
  
  .one,
  .two,
  .three {
    width: 100%;
    height: 5px;
    background: #f95e3f;
    margin: 6px auto;
    backface-visibility: hidden;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  
  nav ul {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
    list-style: none;
    margin: 4em auto;
    text-align: center;
  }
  nav ul.hidden {
    display: none;
  }
  nav ul a {
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    text-decoration: none;
    color: white;
    font-size: 3em;
    line-height: 1.5;
    width: 100%;
    display: block;
  }
  nav ul a:hover,
  .scrollspy li.current{
    background-color: rgba(0, 0, 0, 0.5);
  }

  
  .menu-section.on {
    z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    padding: 0;
    right: 0;
  }
  



/* Style Section 1 */
.section1-header
{
  background-color: #FAC53A;
    /* background: url('../img/background/section1.png') no-repeat;
    background-size: cover; */
    min-height: 650px;
    height: 100vh;
}

.content1
{
    margin: 30vh auto;
    text-align: center
}


.header1
{
    font: 700 29px/29px 'Changa';
    color:#f95e3f;
}
.myname
{
    display: block;
    font: 700 29px/29px 'Changa';
    color:#ffffff;
    transition: all 2s ease-in-out;
}


.jobtitle
{
    display: block;
    font: 400 14px/29px 'Changa';
    color:#ffffff;
}

.img-section1 img
{
  width: 100%;
}

.more-about
{
    width: 130px;
    cursor: pointer;;
    margin: 0 auto;
    margin-top: 25px;
    display: block;
    font: 400 16px/29px 'Changa';
    color:#ffffff;
    border: 2px solid #000000;
    border-radius: 5px;
    border-bottom: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.more-about::before
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    position: relative;
    top: 45px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-animation: arrow-movement 2s ease-in-out infinite;
    animation: arrow-movement 2s ease-in-out infinite;
}


.more-about::after
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-animation: arrow-movement2 2s ease-in-out infinite;
    animation: arrow-movement2 2s ease-in-out infinite;
}


@-webkit-keyframes arrow-movement {
    0% {
      opacity: 0;
      /* top: 45%; */
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes arrow-movement {
    0% {
      opacity: 0;
      /* top: 45%; */
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }


  @-webkit-keyframes arrow-movement2 {
    0% {
      opacity: 1;
      /* top: 45%; */
    }
    70% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes arrow-movement2 {
    0% {
      opacity: 1;
      /* top: 45%; */
    }
    70% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }


  /* Style Section2 About */
.section2-about
{
    padding: 70px 0 60px;
}


.personal-img { width: 150px; margin: 0 auto;}
.personal-img img{border-radius: 50%; width: 100%; }
.personal-bio
{
    font: 400 16px/29px 'Open Sans';
    color: #000000;
    padding-top: 25px;
}
.pio-info {padding: 50px 0;font:400 15px/30px 'Open Sans'; color: #929191;text-align: center;}
.pio-info a {color: #929191;}
.pio-info label
{
    color: #000000;
    margin-top: 25px;
    display: block;
}

.icon-size{font-size: 20px;}
.marg-top{margin-top: 25px;}

.social-list li
{
    padding: 6px;
    width: 25px;
    line-height: 15px;
    height: 25px;
    border-radius: 50%;
}

.social-list li i  {color: #ffffff;}


.social-list .facebook{background-color:#4e598f;}
.social-list .messenger{background-color:#4e598f;}
.social-list .twitter{background-color: #65a2d9;}
.social-list .linkedin{background-color: #3f73af;}
.social-list .whatsapp{background-color: #75b73b;}

.social-list .whatsapp{display: none;}

/* Style Section3 Skills */
.section3-skills
{
    padding: 60px 0;
}

.tooltip{ 
    position: absolute;
    float:right;
  }
  .tooltip > .tooltip-inner {background-color: #eebf3f; padding:5px 15px; color:rgb(23,44,66); font-weight:bold; font-size:13px;}
  .popOver + .tooltip > .tooltip-arrow {	border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid #eebf3f;}
 
  .progress{
    border-radius:0;
    overflow:visible;
  }
  .progress-bar{
     background:rgb(23,44,60); 
    -webkit-transition: width 1.5s ease-in-out;
    transition: width 1.5s ease-in-out;
  }

  .progressText
  {
    font: 400 16px/29px 'Changa';
    color: #f95e3f;
    text-transform: uppercase;
  }
  .percentage-skills
  {
    font: 400 15px/17px 'Changa';
    color: #f95e3f;
    margin-left: -65px;
  }


  /* Style Section4 Experience */
.section4-experience
{
    padding: 80px 0 60px;
    background: url(../img/background/section4.webp) no-repeat;
    background-size: 100% 100%;
    display: flow-root;
    background-attachment: fixed;
    -webkit-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    -moz-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
}


.timeline {
    list-style: none;
}
.timeline > li {
    margin-bottom: 60px;
}

/* for Desktop */
@media ( min-width : 640px ){
    

    .timeline > li {
        overflow: hidden;
        margin: 0;
        position: relative;
    }
    .timeline-date {
        width: 110px;
        float: left;
        margin-top: 20px;
    }
    .timeline-content {
        width: 75%;
        float: left;
        border-left: 3px #b9b9a5 solid;
        padding-left: 30px;
        margin-left: 20px;
    }
    .timeline-content:before {
        font-family: 'OldEgyptGlyphs';
        font-weight: bold;
        content: 'p';
        width: 12px;
        height: 12px;
        color: #f95e3f;
        position: absolute;
        left: 120px;
        top: 24px;
        border-radius: 100%;
    }
}


/*Style Section 5 */

.section5-portfolio
{
    padding: 80px 0 150px;
    background: url(../img/background/section5.webp) no-repeat;
    background-size: 100% 100%;
    display: flow-root;
    background-attachment: fixed;
    -webkit-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    -moz-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);

}

.type
{
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #ffffff;
    margin-top: 30px;
    position: relative;
    background-attachment: fixed;
    -webkit-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    -moz-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);

}


.portofolio-img
{
    position: absolute;

    height: 100%;
    width: 100%;
}
.portofolio-img img {
    width: 100%;
    height: 100%;
    transition: All 0.3s ease-in-out;
}


.type:hover .portofolio-img img
{
    transform: scale(1.2);
}

.portofolio-details
{
    position: absolute;
    background-color: #000000a3;
    height: 100%;
    width: 100%;
    padding: 30px;
    text-align: center;
    right: 101%;
    transition: all 0.5s ease-in-out;
}

.type:hover .portofolio-details
{
    right: 0;
}

.web-title{
  font: 700 25px/29px 'Changa';
  color: #ffffff;
    text-transform: capitalize;
}

.web-input
{

    border-color: #ff493d;

}

span.web-slogan {
    color: #ff493d;
    font-family: 'Changa';
}

/*End Style Section5 portfolio */



/*Style section6 Services*/
.section6-services
{
    padding: 80px 0 60px;
    /*background: url(../img/background/section5.webp) no-repeat;*/
    /*background-size: 100% 100%;*/
    display: flow-root;
    /*background-attachment: fixed;*/
    -webkit-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    -moz-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);

}

.service-icon {
    font-size: 60px;
    text-align: center;
    color: #f95e3f;
}
.service-title {
    font: 700 25px/30px 'Changa';
    text-align: center;
}

.service-details {
    font: 400 12px/30px 'Changa';
    text-align: center;
}

.services-carousel .item {
    margin-top: 50px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #f95e3f;
}

/*Style section6 Services End*/


/* Style Section 7 Customer FeedBack */
.section7-feedback
{
    padding: 80px 0 60px;
    /*background: url(../img/background/section5.webp) no-repeat;*/
    /*background-size: 100% 100%;*/
    display: flow-root;
    background-color: #FAC53A;
    /*background-attachment: fixed;*/
    -webkit-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    -moz-box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
    box-shadow: 0px 0px 24px -1px rgba(166,164,166,1);
}

.merg
{
    background-color: transparent;
    border: unset;
  
    box-shadow: unset;
    border-radius: unset;
    border-bottom: 2px solid #ffff;
}
.form-register .label
{
    font: 600 16px/25px 'Changa';
    color: #ffff;
}

#SubmetForm
{
    text-align: center;
}

.loader
{
    width: 130px;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 25px;
    font-size: 35px;
    display: block;
    text-align: center;
    transition: all 0.5s ease-in-out;
    -webkit-animation: loader-rotate 2s linear infinite;
    animation: loader-rotate 2s linear infinite;
}



@keyframes loader-rotate {
    0% {
        -webkit-transform: rotate(0);
            transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);  
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);   
    }
  }
  
@-webkit-keyframes loader-rotate {
    0% {
        -webkit-transform: rotate(0);
            transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);  
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);   
    }
  }


  .form {
    padding: 20px 15px;
}

.message
{
    position: fixed;
    top: 0;
    left: 10px;
    opacity: 1;
    transition: all 0.8s ease-in-out;
 
}

.Message-success,Message-error
{
    
    transition: all 0.8s ease-in-out;
}

.required{color: #f95e3f;font-size: 12px;}

/* Style Section 7 Customer FeedBack End */


/* Footer */
.section8-footer{
    
    padding: 80px 0;
}

.footer-icon {
    font-size: 40px;
    text-align: center;
    color: #f95e3f;
}
.footer-title {
    font: 700 20px/30px 'Changa';
    text-align: center;
}

.footer-details {
    font: 400 12px/30px 'Changa';
    text-align: center;
}



.footer-social-listlist li
{
    padding: 6px;
    width: 25px;
    line-height: 15px;
    height: 25px;
    border-radius: 50%;
}

.footer-social-list li i  {color: #ffffff;}


.footer-social-list .facebook{background-color:#4e598f;}
.footer-social-list .messenger{background-color:#4e598f;}
.footer-social-list .twitter{background-color: #65a2d9;}
.footer-social-list .linkedin{background-color: #3f73af;}
.footer-social-list .whatsapp{background-color: #75b73b;}

/* Footer End*/



/* Scroll to top */
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #f95e3f; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
    background-color: rgb(23,44,60); /* Add a dark-grey background on hover */
}
/* Scroll to top End */


section, .section8-footer {
    overflow-x: hidden;
}

#main-nav-wrap> ul > li > a {
    text-transform: capitalize;
}



.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}




.color {
    position: absolute;
    color: #f1f1f1;
    left: -107px;
    top: 12px;
    border: 2px solid #f1f1f1;
    padding: 20px;
    transition: all 0.5s ease-in-out;
    border-radius: 20%;
        background-color: #f1f1f1;
    color: #000;
}




/*.color:after {*/
    /* content: ''; */
    /* position: absolute; */
    /* border-left: 5px; */
/*    content: '';*/
/*    font-family: "FontAwesome";*/
/*    font-family: 'Font Awesome 5 Free';*/
/*    font-weight: 900;*/
/*    content: "\f013";*/
/*    display: inline-block;*/
/*    position: absolute;*/
/*    right: -5px;*/
/*    top: 5%;*/
/*    width: 0;*/
/*    height: 0;*/
/*    font-size: 40px;*/
/*    color: #f1f1f1;*/
    /* border-left: 25px solid #e21212; */
    /* border-top: 25px solid #69474700; */
    /* border-right: 25px solid #ee131300; */
    /* border-bottom: 25px solid #94dc0900; */
/*    clear: both;*/
/*    cursor:pointer;*/
/*}*/



/*.color:hover:after{*/
/*    left: 10px;*/
/*}*/



span.settingIcon {
    position: absolute;
    left: 110px;
    display: block;
    color: #f95e3f;
    font-size: 25px;
    width: 50px;
    top: 10px;
    z-index: 999999999999;
    cursor: pointer;
}


.color.showsetting {
     left:11px;
}




.halloween {
    width: 150px;
    margin: 12px auto;
    position: absolute;
       right: 29%;
    left: 28%;
}


path#eyeright,path#eyeleft,polygon#Mouth {
     transition: all 0.8s ease-in-out;
      animation: halloweenaAnimation 2.5s ease infinite;
}


@keyframes halloweenaAnimation {
 0% { fill: white;     transform: scale(1,1.0); }
  25% { fill: white; transform: scale(1,1.1); }
   50% { fill: white; transform: scale(1,1.1); }
   100% { fill: black;  transform: scale(1,1.0); }
}




.halloween2 {
    position: absolute;
    width: 83px;
     left: 50px;
    top: -111px;
    column-fill: #ffff;
}

.halloween2 svg {
    width: 150px;
}



path#h {  animation: halloweenaAnimation 2s ease infinite; }
path#a {  animation: halloweenaAnimation 2s ease infinite; }
path#l1 {  animation: halloweenaAnimation 2s ease infinite; }
path#l2 {  animation: halloweenaAnimation 2s ease infinite; }
path#o {  animation: halloweenaAnimation 2s ease infinite; }
path#w {  animation: halloweenaAnimation 2s ease infinite; }
path#e1 {  animation: halloweenaAnimation 2s ease infinite; }
path#e2 {  animation: halloweenaAnimation 2s ease infinite; }
path#n {  animation: halloweenaAnimation 2s ease infinite; }


@keyframes halloweenaAnimation2 {
 0% { fill: white;}
   100% { fill: black;  }
}



.pb-5 {
    padding-bottom: 130px;
}