/*
Theme Name: 	Brightboy Child
Theme URI: 		http://themes.brightboy.co.za
Author: 		Brightboy
Author URI: 	https://brightboy.co.za
Description:	Whitelabel child theme for Brightboy
Template:		hello-elementor
Version: 		1.0.1
*/

/* **Table of contents - Desktop **
 
    1. Header & Menu
    2. Forms
    3. Pages 
    4. Buttons and icons
    5. Page Headings & text elements
    6. Animations
    7. Woocommerce
    8. Footer */

/*---------------------------*/
/*- DESKTOP CSS -------------*/
/*---------------------------*/

/* Theme customization starts here
-------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
 * 1. Header & menu
 * --------------------------------------------------------------------------- */

.top-header.elementor-sticky--effects .mainlogo img {
  max-width: 150px !important;
  height: auto;
  transition: all 1s ease-in-out !important;
}

.mainlogo img {
  transition: all 1s ease-in-out !important;
}

.top-header.elementor-sticky--effects {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.top-header {
  transition: background-color 2s ease-in-out !important;
}

.top-header.elementor-sticky--effects > .elementor-container {
  min-height: 80px !important;
}

.top-header > .elementor-container {
  transition: min-height 0.5s ease-in-out !important;
}

.top-header .has-sub-mmenu .sub-menu, .sub-arrow {
  fill: #2370A9;
}

.top-header .elementor-nav-menu--main .loginbutton.menu-item a.elementor-item {
  padding: 10px 33px;
  background: #2370A9;
  transition: 0.4s ease-in-out;
  color: #ffffff;
}

.top-header .elementor-nav-menu--main .loginbutton.menu-item a.elementor-item:hover {
  background: #041E42;
  color: #ffffff;
}

/* ---------------------------------------------------------------------------
 * 2. Forms
 * --------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
 * 3. Pages
 * --------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
 * 4. Buttons and icons
 * --------------------------------------------------------------------------- */

/* Circle Navigation */

.circle-nav-link {
  text-decoration: none; 
  display: inline-flex; 
}

.custom-circle-widget {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-circle-widget-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.circle-nav {
  width: 64px;
  height: 64px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease; /* Smooth movement on hover */
}

.circle-nav:hover {
  transform: translateX(10px); 
}

.arrow-nav {
  width: 32px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  transition: background-color 0.3s ease; 
}

.circle-nav:hover .arrow-nav {
  background-color: #D69A2D;
}

.arrow-nav::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  position: absolute;
  top: -3px;
  right: -1px;
  transform: rotate(45deg);
  transition: border-color 0.3s ease; 
}

.circle-nav:hover .arrow-nav::after {
  border-color: #D69A2D;
}

/* ---------------------------------------------------------------------------
 * 5. Page Headings & text elements
 * --------------------------------------------------------------------------- */
 
/* Main slider */

.slider-heading {
  font-family: 'proxima-nova', sans-serif !important;
  font-weight: 600;
}

.slider-text {
  font-family: 'proxima-nova', sans-serif !important;
  font-weight: 500;
}

/* ---------------------------------------------------------------------------
 * 6. Animations
 * --------------------------------------------------------------------------- */

/* Slider & button hovers */

/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-horizontal:hover,
.hvr-wobble-horizontal:focus,
.hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Card hovers */

/* Panel hovers */

.blockfloat .jet-carousel__item {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.blockfloat .jet-carousel__item:hover,
.blockfloat .jet-carousel__item:focus,
.blockfloat .jet-carousel__item:focus,
.blockfloat .jet-carousel__item:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.blockbkg .jet-carousel__item-inner {
  background-color: #ffffff;
}

.blockfloat {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.blockfloat:hover,
.blockfloat:focus,
.blockfloat:focus,
.blockfloat:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.blockbkg .jet-carousel__item-inner:hover {
  -webkit-box-shadow: 0px 0px 24px 4px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 0px 24px 4px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 24px 4px rgba(0, 0, 0, 0.12);
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blockfloat .jet-carousel-wrap.jet-equal-cols .jet-carousel__item img {
  height: 395px;
  object-fit: cover;
}

/* ---------------------------------------------------------------------------
 * 7. Woocommerce
 * --------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
 * 8. Footer styling
 * --------------------------------------------------------------------------- */

.elementor-element.footerlinks.elementor-icon-list--layout-traditional.elementor-widget-icon-list
  .elementor-icon-list-text {
  transition: 0.3s ease-in-out;
}

.elementor-element.footerlinks.elementor-icon-list--layout-traditional.elementor-widget-icon-list
  .elementor-icon-list-text:hover {
  color: #b4b4b4;
}

a.footermenu {
  transition: 0.4s ease-in-out;
  color: #ffffff;
}

a.footermenu:hover {
  color: #9cb24d;
}

.socialfooter .elementor-social-icon {
  transition: 0.3s ease-in-out;
}

.socialfooter .elementor-social-icon:hover {
  transition: 0.3s ease-in-out;
}


a.footerlink {
  color: #E2E2E2;
  transition: 0.3s ease-in-out;
}

a.footerlink:hover {
  color: #D69A2D;
  transition: 0.3s ease-in-out;
}




/* **Table of contents - Responsive **
 
    1. Header & Menu
    2. Forms
    3. Pages 
    4. Buttons and icons
    5. Page Headings & text elements
    6. Animations
    7. Woocommerce
    8. Footer */

/*--------------------------------------------*/
/*- Responsive CSS Small devices (phones etc)
/*--------------------------------------------*/

@media (max-width: 768px) {
  /* ---------------------------------------------------------------------------
 * 1. Header & menu
 * --------------------------------------------------------------------------- */

  .mobilemenu
    .jet-mobile-menu__item.contactbutton.jet-mobile-menu__item--sub-trigger-item
    .jet-mobile-menu__item-inner
    .jet-menu-label {
    text-transform: none;
    color: #9cb24d;
    border: 1px solid #9cb24d;
    border-radius: 5px;
    padding: 4px 22px;
  }

  /* ---------------------------------------------------------------------------
 * 2. Forms
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 3. Pages
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 4. Buttons and icons
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 5. Page Headings & text elements
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 6. Animations
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 7. Woocommerce
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 8. Footer styling
 * --------------------------------------------------------------------------- */
}

/*--------------------------------------------*/
/*- Larger devices (tablets, 1025px and up)
/*--------------------------------------------*/
@media (max-width: 1025px) {
  /* ---------------------------------------------------------------------------
 * 1. Header & menu
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 2. Forms
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 3. Pages
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 4. Buttons and icons
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 5. Page Headings & text elements
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 6. Animations
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 7. Woocommerce
 * --------------------------------------------------------------------------- */

  /* ---------------------------------------------------------------------------
 * 8. Footer styling
 * --------------------------------------------------------------------------- */
}
