*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
  background-color: #202020;
}
.logo{
  background: white;
  border-radius: 27px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 32px;
}
.sticky-note{
  flex-flow: column;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  bottom: 0;
  z-index: 2;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
/* --------------owl------------- */
.gallery_wrapper {
    background: white;
    border-radius: 36px;
}
.gallery_wrapper ol{
  padding-left: 10px;
}
.gallery_wrapper .item{
  padding: 20px
}
.gallery_wrapper img{
  height: 306px;
  border-radius: 30px;
  margin: 0;
}
.gallery_wrapper h3 {font-size: 22px;margin: 15px 0;}
.gallery_wrapper .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  float: none;
  margin-right: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #DCD9D2;
  transition: all, 0.2s;
}
.gallery_wrapper .owl-nav button.owl-next {
  right: 0;
}
.gallery_wrapper .owl-nav button.owl-prev{
  left: 0;
}
.gallery_wrapper .owl-nav button {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  background: rgb(255 255 255) !important;
}
.gallery_wrapper .owl-dots .owl-dot:hover,
.gallery_wrapper .owl-dots .owl-dot.active,
.gallery_wrapper .owl-dots .owl-dot.selected {
  width: 7px;
  height: 7px;
  background-color: #000000;
}

.gallery_wrapper .owl-dots .owl-dot:hover::before,
.gallery_wrapper .owl-dots .owl-dot.active::before,
.gallery_wrapper .owl-dots .owl-dot.selected::before {
  position: absolute;
  content: "";
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  border-radius: 50%;
  border: 1px solid #000000;
  background-color: transparent;
}

.title {
  font-size: 28px;
  font-weight: 550;
}

.gallery_wrapper .owl-next {
  font-size: 43px !important;
  background: white !important;
  box-shadow: 0px 7px 10px #00000040;
  border-radius: 54%;
  height: 36px;
  width: 36px;
  right: 0;
  /* position: relative; */
}

.gallery_wrapper .owl-prev {
  font-size: 43px !important;
  background: white !important;
  box-shadow: -3px 6px 5px #00000008;
  border-radius: 54%;
  height: 36px;
  width: 36px;
}

.gallery_wrapper .owl-prev span,
.gallery_wrapper .owl-next span {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -5px;
  position: relative;
}
 .pbtn {
  background: #7E47FF;
  color: white;
  font-size: 16px;
  padding: 7px;
  border-radius: 64px;
  width: 100%;
  margin-top: 20px;
  text-align: center;
  cursor: pointer;
}
.pbtn svg{
  width:30px;
  height:30px;
  
}
.pbtn:hover {
  background: #6426f6;
}
.main-text h3 {
  font-size: 22px;
  font-weight: 400;
  margin-top: 1px;
  color: white;
}

.main-text small {
  font-size: 19px;
  display: block;
  margin: 24px 0 10px;
  color: white;
}
.box  {
  background: #7E47FF;
  border-radius: 36px;
  padding: 15px;
  color:white
}
.box1  {
  background: #ffffff;
  border-radius: 36px;
  padding: 0px;
  color:rgb(119, 117, 117)
}
.social-media{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;padding-left: 0;
}
.social-media li{
  list-style: none;
  background: #ffffff;
  color: rgb(19, 19, 19);
  width: 42px;
  height: 42px;
  margin: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.social-media li:hover{
background: #6b2ff7;
cursor: pointer;
color:white
}
@media screen and (max-width: 767px) {
 .logo  img{
  width:80px
 }
}

