@import url('//fonts.googleapis.com/css?family=Montserrat');
* {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
h2 {
  margin:0;
}
/* Body */
$body-background: linear-gradient(to left, #a55eea, #45aaf2);
$radius : 20px;
$table-padding : 20px;
$break-small: 320px;
$break-large: 1200px;

$primary: #4b7bec;
$echo: #f7b731;
$pro: #26de81;
$business: #a55eea;

@mixin transition($time, $property) {
  -webkit-transition: $time $property ease;
  -ms-transition: $time $property ease;
  transition: $time $property ease;
}

/* Card Themes - Start */

.basic {
  .pricing-header {
    background-color: $primary;
  } 
  .price-circle {
    border: 10px solid $primary;
    transition: all .4s;
  }
  &:hover {
    .price-circle {
      border-width: 5px;
    }
  }
  .buy-now {
     {
      background-color: #Ea4c89 !important;
      padding: 10px 16px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
      }
    }
}
.echo {
  .pricing-header {
    background-color: $echo;
  } 
  .price-circle {
    border: 10px solid $echo;
    transition: all .4s;
  }
  &:hover {
    .price-circle {
      border-width: 5px;
    }
  }
  .buy-now {
     {
      background-color: #Ea4c89 !important;
      padding: 10px 16px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
        box-shadow: 1px 3px 5px rgba(0, 0, 0, .4);
      }
    }
}
.pro {
  .pricing-header {
    background-color: $pro;
  }
  .price-circle {
    border: 10px solid $pro;
    transition: all .4s;
  }
  &:hover {
    .price-circle {
      border-width: 5px;
    }
  }
  .buy-now {
     {
        background-color: #Ea4c89 !important;
        padding: 10px 16px;
        border-radius: 8px;
        text-decoration: none;
        display: inline-block;        
       
        box-shadow: 1px 3px 5px rgba(0, 0, 0, .4);
      }
    }
}
.business {
  .pricing-header {
    background-color: $business;
  }  
  .price-circle {
    border: 10px solid $business;
    transition: all .4s;
  }
  &:hover {
    .price-circle {
      border-width: 5px;
    }
  }
  .buy-now {
     {
      
        background-color: #Ea4c89 !important;
        padding: 10px 16px;
        border-radius: 8px;
        text-decoration: none;
        display: inline-block;     

        box-shadow: 1px 3px 5px rgba(0, 0, 0, .4);
      }
    }
}
/* Card Themes - End */

body {
  background-image: url(https://pngimage.net/wp-content/uploads/2018/06/flat-design-background-png-3.png);
  background-size:     cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: 20px;
}
  
.container {
  max-width: 1200px;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.column {
  flex: 25%;
  padding: 10px;
  width: calc(33.3% - 30px);
  box-sizing: border-box;
  
  @media screen and (max-width: 980px) {
    flex: 50%;
    display: block;
  }
  @media screen and (max-width: 700px) {
    flex: 100%;
    display: block;
  }
}

.pricing-card {
  @include transition(0.4s, background-color);
  height: 600px;
  background-color: white;
  -moz-border-radius: $radius;
  -webkit-border-radius: $radius;
  border-radius: $radius;
  position: relative;
  transition: all .4s;
  &:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
  }
  
  .popular {
    position: absolute;
    top: 0;
    right: 5%;
    width: auto;
    padding: 10px;
    border-bottom-left-radius: $radius;
    border-bottom-right-radius: $radius;
    background-color: #eb3b5a;
    color: white;
    font-size: 12px;
    z-index: 1;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }
  .badge-box {
    padding:0 40px;
    margin-top: 80px;
    span {
      display: inline-block;
      border:1px solid $primary;
      padding: 4px 12px;
      border-radius: 25px;
      overflow: hidden;
      color: $primary;
    }
  }
  
  .pricing-header {    
    width: 100%;
    height: 150px;
    position: relative;
    border-radius: $radius $radius 0 0;
    -webkit-border-radius: $radius $radius 0 0;
    -moz-border-radius: $radius $radius 0 0;
    border-bottom: 20px solid $primary;
    
    border-radius: $radius $radius 150px 150px;
    -webkit-border-radius: $radius $radius 150px 150px;
    -moz-border-radius: $radius $radius 150px 150px;
    
    
    .plan-title {
      font-size: 24px;
      color: white;
      position: relative;
      top: 25%;
    }
    
    .price-circle {
      width: calc(33.3% - 30px);
      width: 120px;
      height: 120px;
      border-radius: 100%;
      left: calc(50% - 60px);
      top: 60%;
      background-color: white;
      position: absolute;
      //box-shadow: 1px 3px 5px rgba(0, 0, 0, .4);
      .info {
        display: block;
        font-size: 12px;
        font-weight: bold;
        color: gray;
      }
      
      .price-title {
        display: block;
        font-size: 28px;
        padding: 28px 0 0;
        font-weight: bold;
        small{
          font-size: 18px;
        }
      }      
    }
    h2 {
      position: relative;
      top: 40%;
      color: #fff;
    }
  }  
  
  ul {
    margin:10px 0 0 0;
    padding: 0;
    li {
      list-style-type: none;
      display: block;
      padding: 15px 0 15px 0;
      margin: 0;
      border-bottom: 1px solid #f2f2f2;
    }
  }
  .buy-button-box {
    width: 100%;
    float: left;
    margin-top: 30px;
   
    
    .buy-now {
      text-decoration: none;
      color: rgb(255, 255, 255);
      padding: 10px 30px;
      border-radius: $radius;
      background-color: #405de6;
      margin-top: 20px;
    }
  }  
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}



.gallery {
  display: flex;
  justify-content: space-around;
  margin: 20px -10px; /* Adjust the margin value to reduce space between photos */
}

.photo {
  cursor: pointer;
  margin: 0 10px; /* Adjust the margin value to reduce space between photos */
}

.photo img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.photo-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.close-button:hover {
  color: #ccc;
}



/* Default styles for video gallery */
.video-gallery-container {
  width: 100%;
  max-width: 800px; /* Adjust max-width as needed */
  margin: 0 auto;
}

.video-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.video-container {
  width: calc(50% - 10px); /* Adjust width as needed for larger screens */
  margin-bottom: 20px;
  position: relative;
}

.video-container:nth-child(odd) {
  margin-right: 20px;
}

.video-container video {
  width: 100%;
  height: auto;
}
/* Play and close buttons */
.play-button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 1;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 3px 6px; /* Adjust padding as needed */
  cursor: pointer;
  z-index: 1;
  font-size: 14px; /* Adjust font size as needed */
}

/* Media queries for mobile responsiveness */
@media screen and (max-width: 600px) {
  .video-container {
      width: 100%;
      margin-right: 0;
  }
}