/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.0.2
*/


.round-animation img {
    animation: spin 8s linear infinite;
    transform-origin: center center;
    will-change: transform;
    transform: translateZ(0);
}


#Subheader {
  padding-block: 25px !important; 
}
#Subheader .title {
  font-size: clamp(45px, 4.2vw, 999px) !important;
  font-weight: 500;
}
#Content {
  padding-top: 0 !important;
}


.portfolio_group {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 40px !important;
}

.portfolio_group > .portfolio-item {
  margin: 0 !important;
  width: 100% !important;
}

.portfolio_group > .portfolio-item .desc {
  padding-bottom: 0 !important;
}

.fw-500 h3 {
  font-weight: 500 !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.mfn-header-menu-burger .icon-wrapper i {
  display: none;
}

.mfn-header-menu-burger .icon-wrapper {
  background: #23201e;
  display: inline-block !important;
  width: 20px !important;
  border-radius: 50%;
  height: 20px !important;
  transition: .3s ease-in-out;
}
.mfn-header-menu-burger:hover .icon-wrapper {
    width: 22px !important;
    height: 22px !important;  
}
.mfn-header-menu-burger {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px;
  flex-direction: row !important;
}
.mfn-header-menu-burger:before {
  content: "Menu" !important;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex !important;  
}

.content_wrapper .section_wrapper,
.section_wrapper, .container, .with_aside .content_wrapper {
 max-width: 95vw !important; 
 padding-left: 0 !important;
 padding-right: 0 !important;
}

.header-stack #Top_bar .logo { padding-left:20px; border-color:#000; }
#Footer { border-top:1px solid #23201e; }

.project-list {
  list-style: none !important;
  margin-left: 0 !important;
  color: #23201e !important;
}
.project-list strong{
  display: block;
}

.project-list li:not(:last-child) {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #23201e;
}

.portfolio-item .desc {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Fade In Up Animation */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
} */

#Footer .widgets_wrapper ,
#Footer .footer_copy ,
.portfolio_wrapper,
#Header_wrapper h1 {
  opacity: 1;
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

footer .mcb-column-inner {
  text-align: center;
}

@media (max-width: 767px) {
  .portfolio-template-default #Subheader {
    padding: 20px 0;
  }
  .portfolio_group {  
    grid-template-columns: 1fr;
    gap: 20px !important;
  }
}