/* Корневая переменная (на всякий случай, если не подключена) */
:root {
  --blue-dark: #012456;
  --white: #fff;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-weight: 300;
    font-size: 1.05rem;
    color: #222;
}
  *{
      font-family: "Poppins", sans-serif;

 ]

  }
header{
    background: #f9f9f9;
}
img{
    width: 100%;
    display: block;
}

.banner-wrapper{
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.6rem 0rem !important;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    min-height: 100vh;
        padding-top: 25vh;

}
.navbar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.navbar-brand span{
    margin-left: 0.4rem;
    color: #222;
    font-weight: 700;
    font-size: 2rem;
}
.nav-icons{
    display: flex;
    align-items: center;
}
.nav-icons a:last-child{
    margin-left: 1rem;
    display: block;
    color: #222;
}
.banner-content{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    justify-content: center;
}
.banner-left h2{
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.2;
}
.banner-left span{
    display: block;
    font-size: 4.4rem;
}
.banner-left p{
    margin: 1.6rem 0;
    line-height: 1.7;
}
.banner-left button{
    background: #222;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.65rem 2rem;
    border: 3px solid #222;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.banner-left button:hover{
    background: #fff;
    color: #222;
    border-color: #222;
}
.banner-left button:focus{
    outline: 0;
}
.color-content{
    margin-top: 3.2rem;
}
.color-content h3{
    text-transform: uppercase;
    font-size: 1.6rem;
}
.color{
    width: 35px;
    height: 35px;
    background: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 12px;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.color-black{
    background-color: #242424;
}
.color-blue{
    background-color: #085ea0;
}
.color-yellow{
    background-color: #c0b50d;
}
.color-red{
    background-color: #8b0516;
}
.color-white{
    background-color: #ededed;
}
.color:hover{
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.active-color{
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.color-groups{
    padding: 1rem 0;
    display: flex;
}

/* Media Queries */
@media screen and (max-width: 992px){
    .navbar{
        padding-bottom: 3rem;
    }
    .banner-content{
        grid-template-columns: 100%;
        text-align: center;
    }
    .banner-left h2{
        font-size: 2rem;
    }
    .banner-left span{
        font-size: 2.8rem;
    }
    .color-groups{
        display: flex;
        justify-content: center;
    }
    .color:last-child{
        margin-right: 0;
    }
}
/*Tabs*/


#exTab1 .tab-content {
  color : white;
  background-color: #428bca;
  padding : 5px 15px;
}

#exTab2 h3 {
  color : white;
  background-color: #428bca;
  padding : 5px 15px;
}

/* remove border radius for the tab */

#exTab1 .nav-pills > li > a {
  border-radius: 0;
}

/* change border radius for the tab , apply corners on top*/

#exTab3 .nav-pills > li > a {
  border-radius: 4px 4px 0 0 ;
}

#exTab3 .tab-content {
  color : white;
  background-color: #428bca;
  padding : 5px 15px;
}




/* Стили вкладок */
.nav-tabs {
  border-bottom: none;
  gap: 12px;
}

/* Кнопки вкладок */
.nav-tabs .nav-link {
  background-color: var(--white);
  color: var(--blue-dark);
  padding: 10px 20px;
  font-weight: 500;
  border: none;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Наведение */
.nav-tabs .nav-link:hover {
  background-color: #f0f4ff;
  color: var(--blue-dark);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Активная вкладка */
.nav-tabs .nav-link.active {
  background-color: var(--blue-dark);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Контейнер с контентом */
.tab-content {
  border: 1px solid #ddd;
  border-top: none;
  padding: 25px;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
:root {
        --yellow-primary: #EECF2F;
        --blue-text: #0F2A71;
        --white: #fff;
        --black: #000;
        --blue-overlay: #0E4088;
        --blue-dark: #012456;
        --yellow-consult: #f7d900;
        --yellow-hover: #ffe600;
        --blue-promo-border: #002c60;
        --blue-hover-text: #001833;
        --beige-text: #fff;
        --brown-card: #c47328;
        --dark-red: #8b0000;
        --link-color: #552026;
        --focus-border: #a51a28;
        --marquee-bg: #111;
        --carousel-button: #2f2f2f;
        --header-bg: #012456;
      }

      .table thead {
        background-color: #e31e24;
        color: white;
      }

      .note {
        font-size: 0.9rem;
        color: #555;
        margin-top: 10px;
      }

      /* Стилизация вкладок */
      .nav-tabs {
        border-bottom: none;
        gap: 12px;
      }

      .nav-tabs .nav-link {
        background-color: var(--white);
        color: var(--blue-dark);
        padding: 10px 20px;
        font-weight: 500;
        border: none;
        border-radius: 10px 10px 0 0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      .nav-tabs .nav-link:hover {
        background-color: #f0f4ff;
        color: var(--blue-dark);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      }

      .nav-tabs .nav-link.active {
        background-color: var(--blue-dark);
        color: var(--white);
        font-weight: 600;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
      }

      .tab-content {
        border: 1px solid #ddd;
        border-top: none;
        padding: 25px;
        background-color: #fff;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      }
      /*Custom*/
      .header {
    background-color: rgb(1 36 86 / 90%) !important;
}
.banner-left {
  display: flex;
  flex-direction: column;
  justify-content: center; /* выравнивание по вертикали */
  height: 100%; /* убедись, что есть высота */
}
.blue-text {
    color: var(--blue-dark);
}
ul.list-unstyled {
  color: var(--blue-dark);
}
.product-fix{
    margin-left: 0 !important;
}
nav.navbar.navbar-expand-lg.header
 {
    position: fixed;
        max-width: 100vw;
    overflow: visible;

    /*Hero test*/
}
.hero-single
 {
    max-height: 10vh;
    padding-bottom: 11vh;
    margin-top: 0;
    background: var(--blue-dark);
    width: 100vw !important;
    margin-bottom: 11vh;
    position: relative;
    top: 15vh;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(1 36 86 / 54%);
    z-index: 1;
    max-height: 54vh;
}
.banner-wrapper{
    margin-top: 10vh;
}
.hero-single h1 
 {
    font-size: 2rem;
    color: #fff;
    z-index: 99999;
    position: relative;
    justify-content: center;
    text-align: left;
    top: 3.5vh;
}
/*typing*/
*{
  padding:0;
  margin:0;
}
body{
  background-color: #042F36;
}
.wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20%;
}
.title {
  width: 21ch;
  color: white;
      font-family: "Poppins", sans-serif;
  font-size: 40px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 4px solid var(--yellow-primary);
  padding-right: 10px;
  animation: flashing-border 0.75s step-end infinite,
    printed-text 5s steps(23);
}
@keyframes flashing-border {
  0% {
    border-color: var(--yellow-primary);
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: var(--yellow-primary);
  }
}

@keyframes printed-text {
  from {
    width: 0;
  }
 }
 /*Slinovo*/
 .banner-right
 {
    position: relative;
    left: 11vw;
}
.title-single {
    margin-bottom: 1vh;
    padding-bottom: 0;
    margin-top: 14%;
}
.banner-right img{
  position: relative;
  left: 4vw;
}
.single-card-button{
  width: 200px !important;
}
.pencil-yellow-single::before
 {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: 20%;
    transform: translateX(-51%);
    width: 60%;
    height: 21px;
    background-color: #fdc500;
    border-radius: 10px 0 0 10px;
}
section#single-cards
 {
    margin-top: 10vh;
}
button.form_btn.btn.btn-yellow.btn-lg.w-100.txt-blue {
    background-color: var(--yellow-primary);
    color: var(--blue-dark);
}
.banner-right {
    position: relative;
    left: -2vw !important;
    max-width: 100%;
    top: 11vh;
}
a.btn.btn-warning.mt-2.px-4.check-btn.single-card-button {
    width: 100px;
    position: relative;
    left: 7vw;
    top: 2vh;
    font-weight: 500 !important;
}
.banner-right {
  position: relative;
  left: 8vw !important;
}

.banner-right img
 {
    position: relative;
    left: -2vw;
    max-width: 100%;
}
h4.single-subtitle
 {
    color: var(--blue-dark);
    margin-top: 3vh;
    font-weight: 400;
    font-size: 2.3rem;
    margin-bottom: -5vh;
}
@media only screen and (max-width: 600px) {
      .banner-wrapper {
        margin-top: 20vh !important;
    }
    .hero-single {
  
    width: 71vw;
}
.hero-single h1 {
    font-size: 1.7rem;
}
.pencil-yellow-single::before {
    content: "";
    position: absolute;
    left: 6rem;
    bottom: 3%;
    transform: translateX(-51%);
    width: 70%;
    height: 13px;
    background-color: #fdc500;
    border-radius: 10px 0 0 10px;
}
a.btn.btn-warning.mt-2.px-4.check-btn.single-card-button {
    width: 100px;
    position: relative;
    left: 31vw;
    top: 4vh;
    font-weight: 500 !important;
}
section#contact {
    height: 115vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 42%;
}
}
a.btn.btn-warning.mt-2.px-4.check-btn{
  border: none !important
}
a.dropdown-item
 {
    color: var(--yellow-primary);
}