/**
  |============================
  | include css partials with
  | default @import url()
  |============================
*/
/* Common styles */
@import url('./reset.css');

:root {
  --font-family: 'Rubik', sans-serif;
  --second-family: 'Inter', sans-serif;
  --third-family: 'Open Sans', sans-serif;
  --font3: 'Montserrat', sans-serif;
}
body {
  font-family: var(--third-family);
  background-color: black;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  background: #44488a;
  padding: 20px 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 800;
  font-size: 36px;
  line-height: 105%;
  color: #fff;
  transition: 250ms color ease-in-out;
}
a:hover,
.menu-item a:hover, .nav-item a:hover {
  color: #e9c2ff;
}
.menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.menu-item a , .nav-item a{
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: #b1b5ff;
  transition: 250ms color ease-in-out;
}

.burger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 30px;
  position: relative;
}

.burger-menu span {
  background-color: #ffffff;
  height: 3px;
  width: 100%;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
    z-index: 10;
  }
  .logo {
    font-size: 30px;
  }
  .menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-250%);
    transition: transform 0.4s ease-in-out;

    z-index: 5;
    gap: 10px;
  }

  .menu-item {
    padding: 10px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #ddd;
  }

  .menu.active {
    transform: translateY(0);
  }
  
}

.wrap {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1300px;
  margin: 50px auto;
  position: relative;
}
.info,
.offers {
  border: 1px solid #1d1f47;
  border-radius: 20px;
  padding: 20px;
  background: #44488b;
}
.info {
  width: 60%;
  min-width: 800px;
  position: sticky;
  top: 20px;
}
@media(max-width:1261px){
  .info{
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    min-width: 320px;
  }
  
}
.offers {
  width: 35%;
  min-width: 420px;
}
@media(max-width:1261px){
  
  .offers{
    width: 100%;
    min-width: 320px;
  }
}
.info-title {
  font-weight: 800;
  font-size: 34px;
  line-height: 105%;
  color: #fff;
  margin-bottom: 10px;
}
.text {
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #b1b5ff;
  margin-bottom: 10px;
}
.info-subtitle {
  font-weight: 600;
  font-size: 28px;
  line-height: 105%;
  color: #fff;
  margin-bottom: 10px;
}
.info-img {
  margin-bottom: 20px;
  width: 100%;
}
.card {
  border-radius: 15px;
  padding: 20px;
  background: #151958;
  margin-bottom: 20px;
  text-align: center;
}
.stars {
  color: #fff600;
}
.card img {
  border-radius: 20px;
  margin-bottom: 20px;
}
.card-bonus {
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
.card-rate {
  font-weight: 800;
  font-size: 24px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.card a {
  display: inline-block;
  border-radius: 5px;
  padding: 12px 42px;
  width: 100%;
  
  background: #ff3c00;
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  transition: background 250ms ease-in-out;
}
.card a:hover {
  background: #d33100;
}
.footer{
  background: #44488a;
  padding: 20px 0;
}
.diskl-title{
font-weight: 600;
font-size: 28px;
line-height: 105%;
color: #ff0000;
margin-bottom: 20px;
}
.footer-diskl{
  padding: 20px;
  background: #0b0c1d;
  border-radius: 20px;
  border: solid 2px red;
  margin-bottom: 20px;
}
.regulator{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.regulator-item{
  padding: 10px;
  
}

.nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.case-title {
font-weight: 800;
font-size: 34px;
line-height: 105%;
text-transform: capitalize;
text-align: center;
color: #fff;
margin-bottom: 10px;
}
.case-subtitle {
  
font-style: italic;
font-weight: 700;
font-size: 28px;
line-height: 105%;
color: #fff;
margin-bottom: 10px;
}
.case{
  background: #44488a;
  border-radius: 20px;
  padding: 20px;
  margin: 50px auto;
}