* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
.font-weight-700{
    font-weight:700;
}

body {
  background-color: #EAE7E2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height:100%;
}

/*logo style*/
.logo-container {
  text-align: center;
  color: white;
}

.logo-text {
  margin: 0;
}

.tagline {
  font-family: 'Arial', sans-serif;
}

.highlight-text {
  font-weight: bold;
  color: yellow;
}

.lightbulb-icon {
  width: 40px;
  vertical-align: middle;
}




.container_login {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  width: 90vw;
  height: 90vh;
  max-width: 100%;
  min-height: 480px;
}

.container_login p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  margin: 10px 0;
  margin-bottom: 20px;
}

.container_login span {
  font-size: 12px;
}

.container_login a {
  color: #333;
  font-size: 13px;
  text-decoration: none;
  margin: 15px 0 10px;
}

.container_login button {
    
  background-color: #202020;
  color: #fff;
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 10px;
  cursor: pointer;
}

.container_login button.hidden {
  background-color: transparent;
  border-color: #fff;
}

.container_login form {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.container_login input {
  background-color: #eee;
  border: none;
  margin: 8px 0;
  padding: 10px 15px;
  font-size: 13px;
  border-radius: 8px;
  width: 100%;
  outline: none;
}

.form-container {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
}

.sign-in {
  left: 0;
  width: 50%;
  z-index: 2;
}

.container_login.active .sign-in {
  transform: translateX(100%);
}

.sign-up {
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}

.container_login.active .sign-up {
  transform: translateX(100%);
  opacity: 1;
  z-index: 5;
  animation: move 0.6s;
}

@keyframes move {

  0%,
  49.99% {
    opacity: 0;
    z-index: 1;
  }

  50%,
  100% {
    opacity: 1;
    z-index: 5;
  }
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  border: 1px solid #ccc;
  border-radius: 20%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 3px;
  width: 40px;
  height: 40px;
}

.toggle-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
  border-radius: 150px 0 0 100px;
  z-index: 1000;
}

.container_login.active .toggle-container {
  transform: translateX(-100%);
  border-radius: 0 150px 100px 0;
}

.toggle {
  background-color: #202020;
  height: 100%;
  background: linear-gradient(to left, #202020, #8b8b8b);
  color: #fff;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateX(0);
  transition: all 0.6s ease-in-out;
}

.container_login.active .toggle {
  transform: translateX(50%);
}

.toggle-panel {
  position: absolute;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
  text-align: center;
  top: 0;
  transform: translateX(0);
  transition: all 0.6s ease-in-out;
}

.toggle-left {
  transform: translateX(-200%);
}

.container_login.active .toggle-left {
  transform: translateX(0);
}

.toggle-right {
  right: 0;
  transform: translateX(0);
}

.container_login.active .toggle-right {
  transform: translateX(200%);
}

/* loading icon */

/* HTML: <div class="loader"></div> */
.loader {
  width: 100px;
  height: 40px;
  --g: radial-gradient(farthest-side, #0000 calc(80% - 3px), #000000 calc(100% - 3px) 98%, #0000 101%) no-repeat;
  background: var(--g), var(--g), var(--g);
  background-size: 30px 30px;
  animation: l9 1s infinite alternate;
}

@keyframes l9 {
  0% {
    background-position: 0 50%, 50% 50%, 100% 50%;
  }

  20% {
    background-position: 0 0, 50% 50%, 100% 50%;
  }

  40% {
    background-position: 0 100%, 50% 0, 100% 50%;
  }

  60% {
    background-position: 0 50%, 50% 100%, 100% 0;
  }

  80% {
    background-position: 0 50%, 50% 50%, 100% 100%;
  }

  100% {
    background-position: 0 50%, 50% 50%, 100% 50%;
  }
}



/* hishel indz checkboxs style */

.checkbox-wrapper-28 {
  --size: 25px;
  position: relative;
}

.checkbox-wrapper-28 *,
.checkbox-wrapper-28 *:before,
.checkbox-wrapper-28 *:after {
  box-sizing: border-box;
}

.checkbox-wrapper-28 .promoted-input-checkbox {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.checkbox-wrapper-28 input:checked~svg {
  height: calc(var(--size) * 0.6);
  -webkit-animation: draw-checkbox-28 ease-in-out 0.2s forwards;
  animation: draw-checkbox-28 ease-in-out 0.2s forwards;
}

.checkbox-wrapper-28 label:active::after {
  background-color: #e6e6e6;
}

.checkbox-wrapper-28 label {
  color: #000000;
  line-height: var(--size);
  cursor: pointer;
  position: relative;
}

.checkbox-wrapper-28 label:after {
  content: "";
  height: var(--size);
  width: var(--size);
  margin-right: 8px;
  float: left;
  border: 2px solid #000000;
  border-radius: 3px;
  transition: 0.15s all ease-out;
}

.checkbox-wrapper-28 svg {
  stroke: #000000;
  stroke-width: 3px;
  height: 0;
  width: calc(var(--size) * 0.6);
  position: absolute;
  left: calc(var(--size) * 0.21);
  top: calc(var(--size) * 0.2);
  stroke-dasharray: 33;
}

@-webkit-keyframes draw-checkbox-28 {
  0% {
    stroke-dashoffset: 33;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-checkbox-28 {
  0% {
    stroke-dashoffset: 33;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* color code 
  D5C3C7 en verevi esiminchy
  
*/

.dropstart .dropdown-toggle::before {
  content: none !important;
}

html,
body {
  height: 100%;
}

header {
  width: 100%;
  background: #2c2f44;
}

.content {
  color: #2c2f44;
  flex: 1 0 auto;
  overflow-y: auto;
}

footer {
  flex-shrink: 0;
}

/* price cards style */
/* price cards style */

.price-card {
  background: #f5f5f6;
  padding: 40px 35px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.price-card:before {
  position: absolute;
  content: "";
  top: 0;
  right: -35px;
  width: 88px;
  height: 88px;
  background: #0cc652;
  opacity: 0.2;
  border-radius: 8px;
  transform: rotate(45deg);
}

.price-card:after {
  position: absolute;
  content: "";
  top: 30px;
  right: -35px;
  width: 88px;
  height: 88px;
  background: #0cc652;
  opacity: 0.2;
  border-radius: 8px;
  transform: rotate(45deg);
}

.price-card h2 {
  font-size: 26px;
  font-weight: 600;
}

.price-card .btn {
  font-size: 11px;
  border-radius: 100px;
  padding: 0 25px;
  border: 0;
  color: #fff;
  float: right;
}

.price-card .btn.btn-primary {
  border: 0 !important;
}

.price-card.featured {
  background: #fff;
  border: 1px solid #ebebeb;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.price-card:hover .btn {
  background: #0cc652;
  border-color: #0cc652;
}

p.price span {
  display: inline-block;
  padding: 45px 15px 50px;
  padding-right: 0;
  font-size: 30px;
  font-weight: 600;
  color: #0cc652;
  position: relative;
}

p.price span:before {
  position: absolute;
  content: "\0564\0580\0561\0574"; /* դրամ */
  font-size: 16px;
  top: 25px;
  font-weight: 300;
  left: 0;
}

.pricing-offers {
  padding: 0 0 10px;
}

.pricing-offers li {
  padding: 0 0 16px;
  line-height: 18px;
}

ul li {
  list-style-type: none;
}

.btn.btn-mid {
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  background-color: #52be80;
}

/*checkbox*/
.checkbox-container {
  display: inline-block;
  position: relative;
  cursor: pointer;
  user-select: none;
  padding-left: 35px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ccc;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.checkbox-container input:checked~.checkbox-mark {
  background-color: #000;
}

.checkbox-mark:after {

  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkbox-mark:after {
  display: block;
}

.checkbox-container .checkbox-mark:after {
  left: 8px;
  top: 3px;
  width: 10px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
    .dropdown-item{
        font-size:0.9rem !important;
    }
}

.img_div3{
    width:100%;
}
.img_div3 > img{
    width:100%;
}
.loader_e {
  display: inline-flex;
  gap: 10px;
}
.loader_e:before,
.loader_e:after {
  content: "";
  height: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(farthest-side,#000 95%,#0000) 35% 35%/6px 6px no-repeat
    #fff;
  transform: scaleX(var(--s,1)) rotate(0deg);
  animation: l6 1s infinite linear;
}
.loader_e:after {
  --s: -1;
  animation-delay:-0.1s;
}
@keyframes l6 {
  100% {transform:scaleX(var(--s,1)) rotate(360deg);}
}
#scrollDownButton {
    position: absolute;
    bottom: 15%; /* отступ от нижней границы */
    left: 50%;
    transform: translateX(-50%);
    display: none; /* изначально скрыта */
}

.img_div3{
    width:75%;
    margin:10px auto;
}
.img_div3>img{
    width:100%;
    height:auto;
    object-fit: cover;
}
.img_div2{
    width:75%;
    margin:10px auto;
}
.img_div2>img{
    width:100%;
    height:auto;
    object-fit: cover;
}
.img_div1{
    width:75%;
    margin:10px auto;
}
.img_div1>img{
    width:100%;
    height:auto;
    object-fit: cover;
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #888; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #2c2f44; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}