
:root {
--core-primary:   #518fba;                    /* primary        */
--core-rgb-prim:  rgba(64, 114, 148, 0.5);    /* primary rgbs   */
--core-bg-medium: #213b4d;                    /* primary medium */
--core-bg-dark:   #121f29;                    /* primary dark   */

--core-bg-gray1:  #f8f8f8;  /* gray light  */
--core-bg-gray2:  #b9baba;  /* gray medium */
--core-bg-gray3:  #434545;  /* gray dark   */

--core-text:      #f6f6f6;  /* bg text */

--core-radius:    0px;
--core-radius-sm: 0px;
--core-radius-lg: 20px;

--core-img-1:     url(/web_core/top/images/img1.jpg);
--core-gradient:  linear-gradient(  rgba(64, 114, 148, 0.2), rgba(0, 0, 0, 0)  );
}

.dark-mode {
  background-color: var(--core-bg-dark);
  color: #ffffff;
}

body.dark-mode a:not(.alpha-btn) {color: var(--core-text);}
.dark-mode .box-icon-modern-icon {color: var(--core-text);}
.dark-mode .box-comment-text     {color: var(--core-text);}
.dark-mode .contacts-modern-icon {color: var(--core-text);}
.dark-mode .owl-next             {color: var(--core-text);}
.dark-mode .owl-prev             {color: var(--core-text);}

.dark-mode .bg-gray-100         {background-color: var(--core-bg-medium);}
.dark-mode .section-login       {background-color: var(--core-bg-medium);}
.dark-mode .form-input          {background-color: var(--core-bg-gray1);}
.dark-mode .background-custom-1 {background-color: var(--core-bg-dark);}

.dark-mode .overlay-bg::before  {background-color: rgba(64, 114, 148, 0.1);}


.overlay-bg {
  position: relative;   /* Ensure the pseudo-element is positioned relative to this element */
  z-index: 1;           /* Ensure the content stays above the overlay */
}
.overlay-bg::before {
  content:  "";         /* Required for pseudo-elements */
  position: absolute;   /* Position the overlay over the section */
  z-index:  -1;         /* Place overlay behind the content */
  top:    0;
  left:   0;
  width:  100%;
  height: 100%;
  background: var(--core-gradient);
}

.page-bg-img {
  background: var(--core-img-1) no-repeat center center;
  background-size: cover;
}
.page-bg-video {

}


.preloader {
  position: fixed;
  z-index:  10000;
  left:   0;
  top:    0;
  bottom: 0;
  right:  0;
  transition:  .3s all ease;
/*transition:  opacity 0.3s ease-out;*/
  color:       var(--core-bg-gray1);
  display:     flex;
  justify-content: center;
  align-items:     center;
  padding: 20px;

/*background: var(--core-primary);*/
  background: var(--core-gradient),  var(--core-img-1) no-repeat center center;
  background-size: cover;
}
.preloader.loaded {opacity: 0;  visibility: hidden;}
.preloader-body   {text-align: center;}
.preloader-body p {position: relative; right: -8px;}
* + .preloader-title {margin-top: 20px;}

.cssload-spinner {
  display:   flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin:   auto;
  width:  100px;
  height: 100px;
}

.cssload-cube {
  background-color: var(--core-bg-gray1);
  width:  15px;
  height: 15px;
  margin-left:   10px;
  margin-bottom: 10px;
  animation: cssload-cubemove 4.6s infinite ease-in-out;
}
.cssload-cube1  { animation-delay: 0.23s;}
.cssload-cube2  { animation-delay: 0.46s;}
.cssload-cube3  { animation-delay: 0.69s;}
.cssload-cube4  { animation-delay: 0.23s;}
.cssload-cube5  { animation-delay: 0.46s;}
.cssload-cube6  { animation-delay: 0.69s;}
.cssload-cube7  { animation-delay: 0.92s;}
.cssload-cube8  { animation-delay: 0.46s;}
.cssload-cube9  { animation-delay: 0.69s;}
.cssload-cube10 { animation-delay: 0.92s;}
.cssload-cube11 { animation-delay: 1.15s;}
.cssload-cube12 { animation-delay: 0.69s;}
.cssload-cube13 { animation-delay: 0.92s;}
.cssload-cube14 { animation-delay: 1.15s;}
.cssload-cube15 { animation-delay: 1.38s;}

@keyframes cssload-cubemove {
  35% { transform: scale(0.005); }
  50% { transform: scale(1.7);   }
  65% { transform: scale(0.005); }
}

.grp-tools {
  position: fixed;
  display:  flex;
  z-index:  1100;
  top:      0;
  right:    455px;
  padding: 0 10px 0 8px;
  border-radius:    var(--core-radius);
  background-color: var(--core-primary);
  align-items:      center;  /* Ensures vertical alignment */
}
.icon-btn {
  display: flex;
  border:  none;
  color:   var(--core-text);
  padding: 0;
  cursor:  pointer;
  padding: 0 7px 0 7px;
  align-items: center;  /* Align icons vertically */
  background:  none;
}
@media (max-width: 576px) {
  .grp-tools {
    right:         75px;
    border-radius: 0;
  }
  .icon-btn {
    font-size:   10px;  /* Smaller icon size on mobile */
    margin-left: 10px;  /* Reduced margin between buttons */
    padding:     0;
  }
}

.btn-bg-w {
  visibility:       visible; 
  animation-name:   fadeInUp;
  padding:          0 8px 0 8px;
  background-color: white;
  border-radius:    var(--core-radius);
/*border-radius:    var(--core-radius) var(--core-radius) 0 0; */
/*background-color: white; */
}

.client-pic {
 background-color: var(--core-bg-gray1);
 border-radius: var(--core-radius);
}

.img-box {
  border-radius: var(--core-radius);
  overflow: hidden;
}

.section-login {
  background-color: var(--core-bg-medium);
}
.boot-frm{
  background-color: white; 
  background-color: var(--core-bg-gray1);
  border-radius:    var(--core-radius-sm);
}

.fs8  {font-size:  8px;}
.fs10 {font-size: 10px;}
.fs12 {font-size: 12px;}
.fs14 {font-size: 14px;}
.fs16 {font-size: 16px;}
.fs18 {font-size: 18px;}
.fs20 {font-size: 20px;}
.fs22 {font-size: 22px;}
.fs24 {font-size: 24px;}
.fs26 {font-size: 26px;}
.fs28 {font-size: 28px;}


.info-w-page {
  min-height:       100vh;
  display:          flex;
  flex-direction:   column;
  justify-content:  center;
  align-items:      center;
  text-align:       center;
  background-color: #f8f9fa;
}
.logo {
  max-width:     100px;
  margin-bottom: 20px;
}
.info-w-content {
  max-width:   600px;
}
