@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Viaoda+Libre&display=swap');
:root{
--main-color:#EF2143;
--second-color:#272121;
--white-color:white;
--main-size-title:56px;
--second-size-title:22px;
--p-size:16px;
--padding-section :60px 0px;
--box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2);
--transition: all 0.3s ease;
--overlay:linear-gradient(45deg, rgba(37, 37, 37, 0.7), rgba(7, 8, 8, 0.7));


--color-text: navy;
--color-bg: papayawhip;
--color-bg-accent: #ecdcc0;
--size: clamp(6rem, 1rem + 40vmin, 20rem);
--gap: calc(var(--size) / 14);
--duration: 60s;
--scroll-start: 0;
--scroll-end: calc(-100% - var(--gap));

}

*, *:after, *:before { 
  
  box-sizing: border-box; 
}

.row,.row>*{
  padding-left: 0;
  padding-right: 0;
}

body{
  
  direction: ltr;
  font-family: 'Hind Siliguri', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;
  overflow-x: hidden;
  
}
h1,h2,h3,h4,h5,h6{
  color: white;
}
a:hover{
  color: var(--white-color);
  transition: all 0.3s;
}

p{
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
    
    
}
.title{
  text-align: center;
  color:white;
  position: relative;
  padding: 0px 0px 12px 0px;
  margin: 25px 0px;
}
.title:after {
  position: absolute;
  left: 50%;
  bottom: 0%;
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: var(--main-color);
  transform: translate(-50%,0%)
}

@media (min-width: 1200px) {
  .container{
      min-width: 1200px;
    }
  }
  .animated-button {
    cursor: pointer;
    background: linear-gradient(-30deg, #272121 50%, #000B49 50%);
    padding: 25px 31px;
    margin: 12px;
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    overflow: hidden;
    color: #d4e0f7;
    font-size: 20px;
    letter-spacing: 2.5px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
  }
  
  @media (max-width:575px) {
    .animated-button1 {
     padding: 25px 25px;
     margin-top: 20px;
     margin-left: auto;
     margin-right: auto;
  }
}
.animated-button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8592ad;
  color: var(--white-color);
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button:hover::before {
  opacity: 0.2;
}

.animated-button span {
  position: absolute;
}

.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to left, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#EF2143));
  background: linear-gradient(to top, rgba(8, 20, 43, 0), #EF2143);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#EF2143));
  background: linear-gradient(to right, rgba(8, 20, 43, 0), #EF2143);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#EF2143));
  background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #EF2143);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}


.header {
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: white;
  background-image: url('script_collections/img/h.jpg');
}
.header_fixed{
  width: 100%;
  position: fixed;
  z-index: 9999;
  background: white;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  
}
@media(max-width: 575px) { 
  .header{
        padding: 5px 5px;
      }
    }
    .header23 {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    @media  (max-width: 575px) { 
      .header23{
        padding: 5px;
      }
    }
    @media screen and (max-width:1199px){
      .nav{
        display: none;
      }
    }
    
    .logotip44 {
      display: flex;
      align-content: center;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      
      
    }
    
    .logotip {
      position: relative;
      width: 45px;
      margin-right: 25px;
      margin-left: 25px;
      
    }
    @media (max-width: 575px) { 
      .logotip{
        width: 27px;
      }
    }
    
    .logotip-links23:hover {
      color:  white;
    }
    
    .logotip-links23 {
      display: flex;
      align-items: center;
      color: white;
      font-size: 26px;
      
    }
    @media (max-width: 575px) { 
      .logotip-links23{
        font-size: 16px;
      }
    }
    
    .logotip_box_color {
      color: black;
    }
    
    .logotip_box_color:hover {
      color: black;
    }
    
    .menu-btn {
      width: 27px;
      height: 27px;
      position: relative;
      z-index: 2;
      overflow: hidden;
      
    }
    
    
    @media (min-width: 1200px) {
      .menu-btn{  display: none; }
      
    }
    @media (min-width:1200px) {
      .knopkavmenu{
        display: none;
      }
    }
    .menu-box-mobile {
      margin-top: 45px;
      display: flex;
      flex-direction: column;
      
    }
    
    
    .menu-box-mobile li {
      width: 100%;
      padding: 12px;
      display: inline-block;
      
    }
    
    .span-btn {
      width: 27px;
      height: 2px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color:   white;
      transition: all 0.5s;
    }
    
    .span_btn_colored {
      width: 27px;
      height: 2px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      
      transition: all 0.5s;
      background-color:   white;
    }
    
    .menu-btn span:nth-of-type(2) {
      top: calc(50% - 5px);
    }
    
    .menu-btn span:nth-of-type(3) {
      top: calc(50% + 5px);
    }
    
    
    .menu-btn.active span:nth-of-type(1) {
      display: none;
    }
    
    .menu-btn.active span:nth-of-type(2) {
      top: 50%;
      background-color:   white;
      transform: translate(-50%, 0%) rotate(45deg);
    }
    
    .menu-btn.active span:nth-of-type(3) {
      top: 50%;
      background-color:   white;
      transform: translate(-50%, 0%) rotate(-45deg);
    }
    
    
    .menu {
      z-index: 1;
      position: fixed;
      top: 81px;
      right: 0;
      width: 100%;
      height: 50%;
      padding: 35px;
      background: #fff;
      display:none;
      transition: transform 0.5s;
    }
    
    @media (max-width: 575px) { 
      .menu {
        top: 69px;
      }}
      @media (min-width: 1199px)  { 
        .menu {
          display: none;
        }
      }
      
      
      
      
      
      .menu.active {
        display: flex;
      }
      .menu li {
        list-style-type: none;
      }
      
      
      .menu-list232 {
        display: flex;
        list-style-type: none;
        gap: 27px;
        
        padding: 9px;
      }
      @media (max-width :1199.9px) {
        .menu-list232{  display: none; }}
        .menu-item {
          position: relative;
        }
        
        .link-menu {
          transition: all 0.3s;
          font-size: 11px;
          content: "";
          color:white;
          font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 0;
  }
  
  .link-menu:hover {
    color: white!important;
    font-size: 13px;
    font-weight: 900;
    background: #EF2143;
    box-shadow: 0px 0px 5px 8px #EF2143;
    
  }
  .menu-item_link231 {
    
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-size:  16px;
    line-height: 25px;
  }
  .menu-item_link231:hover{
    color: rgba(255, 255, 255, 0.9);;
  }
  .blacklinktxt{
    color: black;
  }
  .blacklinktxt:hover{
    color: black;
    
  }
  .menu_active {
    color: black;
  }
  
  .sub-menu_list {
    background-color: #fff;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .dropdown:hover .dropdown-content {
    display: block;
    background-color: white;
    color: #4c75a6!important;
  }
  .dropdown-item {
    padding: 1.25rem 1rem;
  white-space: wrap;
  color: black;}
  .dropbtn {
    padding: 0;
    background: none;
    border: none;
    color: white;
  }
  .dropbtn1 {
    padding: 0;
    
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size:  16px;
    background: none;
    border: none;
    color: black;
  }
  @media  (max-width: 575px) {
    .dropdown-item{
      font-size: 11px;
    }
    .dropdown-content{
      left: -80px;
    }
  }
  
  
  .dropbt1:hover{
    color: #4c75a6!important;
  }

  
  .hero-section{
    cursor: default;
  }
  
  .head-title{
    color: white;
    text-align: center;
    padding-top:300px ;
    padding-bottom: 45px;
    
  }
  @media  (max-width: 575px) {
    .head-title{
    font-size:  16px;
  }
}

.head-pos1{
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  gap: 25px;
}
.knopkatelefon{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 27px;
  color: #242424;
  padding: 8px 27px;
  font-weight: 900;
  overflow: hidden;
  letter-spacing: 1px;
  background-color: #228dcb;
  text-transform: capitalize;
  
  
}
.knopkatelefon:hover{
  box-shadow: 0 0 0 0 rgba(0, 40, 120, 0);
  background-position: 0 0;
  color: white;
  
}
@media  (max-width: 575px) {
  .knopkatelefon{
    width: 280px;
    font-size:  16px;
  }
}
.item-img.overlay:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  background: var(--overlay);
}
.item-img:nth-child(1){
  position: relative;
  
  
  max-width: 100%;
  height: 100vh;
  
  background-repeat: no-repeat;
  background-size: cover;
}
.item-img:nth-child(2){
  position: relative;
  
  max-width: 100%;
  height: 100vh;
  
  background-repeat: no-repeat;
  background-size: cover;
}
.item-img:nth-child(3){
  position: relative;
  
  max-width: 100%;
  height: 100vh;
  
      background-repeat: no-repeat;
      background-size: cover;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
      display: none;
    }
    
    .section-hero{
      background-image: url(backgrounds/illustrations_header_6854f08be5d675.65308208.jpg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
    }
    
    .hero-thumb{
      display: flex;
      gap: 35px;
    }
    @media (max-width: 999px) {
      .hero-thumb{
        flex-direction: column;
      }
}
.head-pos1{
  padding-top: 120px;
  padding-bottom: 45px;
  flex:1;
  overflow-x:hidden;
}
@media (max-width: 768px) {
  .head-pos1{
    padding-top: 130px;
    
    
    
  }
}
.head-reason{
  font-size:  16px;
  gap: 25px;
  display: flex;
  flex-direction: column;
}
.head-reason li {
  align-items: center;
  display: flex; 
  gap: 12px;
}
.head-reason  svg{
  color: var(--main-color);
}
.head-reason p {
  color: black;
  font-size:  16px;
  margin: 0;
}
.hero-img-right{
  position: relative;
  padding-top: 110px;
  padding-bottom: 45px;
  flex:1;
  height: auto;
  z-index: 1;
  overflow:hidden;
  
}
@media  (max-width: 768px) {
  .hero-img-right{
    padding-top: 12px;
  }
}
.fonimg{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media  (max-width: 768px) {
  .fonimg{
    width: 100%;
    height: auto;
    
  }
}

@media  (max-width: 575px) {
  .head-title{
    font-size:  16px;
  }
}

.head-pos1{
  overflow: hidden;
  position: relative;
  z-index: 1;
  gap: 25px;
}
.btn-hero{
  width: 340px;
  text-decoration: none;
  display: flex;
  padding: 20px 31px;
  margin: 0 auto;
  color: white!important;
  
}

@media  (max-width: 575px) {
  .btn-hero{
    width: 280px;
    font-size:  16px;
  }
}

.section-reason{
  
  height: auto;
  
  padding: 74px 0px;
  position: relative;
  background-color:  #272121;
}

.contindex{
  position: relative;
  z-index: 1;
}
.reasonsbox{
  display: flex;
  margin: 0px -8px;
  
}
@media (max-width: 767px) {
  .reasonsbox{
    flex-direction: column;
    align-items: center;
    
  }
}
.reasonsthumb{
  padding: 0px 8px;
  display: flex;
  width: 50%;
  align-items: center;
}

@media (max-width: 767px) { 
  .reasonsthumb{width: 100%;}
}
.reasonsthumb img {
  width: 100%;
  object-fit: cover;
}


.title-reason{
  color: white;
}
.reasonul li {
  font-size:  20px;
  color: white;
  display: flex;
  margin: 25px 0px;
  gap: 8px;
  align-items: center;
}
.reasonul svg{
  color: var(--main-color);
  width: 27px;
}

.section-howwork{
  height: auto;
  padding: 74px 0px;
  position: relative;
  background-color: #272121;
}
.title-howwork{
  color: white;
}
.howworkbox{
  display: flex;
  margin: 0px -8px;
}
@media (max-width: 767px) {
  .howworkbox{
    flex-direction: column;
    align-items: center;
    
  }
}
.howworkhumb{
  display: flex;
  width: 50%;
  align-items: center;
  padding: 0px 8px;
}
@media (max-width: 767px) { 
  .howworkhumb{
    width: 100%;
  }
}


.howworkul li {
  font-size:  20px;
  color: white;
  display: flex;
  margin: 25px 0px;
  gap: 8px;
  align-items: center;
}
.howworkul svg{
  color: var(--main-color);
  width: 27px;
}

@media (max-width: 767px) { 
  .howworkhumb{width: 100%;}
}
.howworkhumb img {
  width: 100%;
  object-fit: cover;
}

.partner{
  padding: 45px 0px;
    background-image: url('script_collections/img/h.jpg');
  background-attachment:fixed;
}
.marquee {
  display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	mask-image: linear-gradient(
    var(--mask-direction, to right),
		hsl(0 0% 0% / 0),
		hsl(0 0% 0% / 1) 20%,
		hsl(0 0% 0% / 1) 80%,
		hsl(0 0% 0% / 0)
    );
  }
  
  .partner-block {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .partner-block {
    animation-play-state: running;
	}
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .partner-block {
  flex-direction: column;
}

.marquee--vertical .partner-block {
  animation-name: scroll-y;
}

.marquee--reverse .partner-block {
  animation-direction: reverse;
	animation-delay: -1s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
	}
	to {
		transform: translateX(var(--scroll-end));
	}
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
	}
	to {
    transform: translateY(var(--scroll-end));
	}
}
.Thumbpartner{
  overflow: hidden;
	width: 100%;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--color-text);
}

.marquee img {
  display: grid;
	place-items: center;
	background: var(--color-bg-accent);
  height: 100px;
  width: 250px;
  padding: 27px 35px;
	border-radius: 0.5rem;
}

.marquee--vertical img {
  aspect-ratio: 1;
	width: calc(var(--size) / 1.5);
	padding: calc(var(--size) / 6);
}

.wrapper {
  display: flex;
	flex-direction: column;
	gap: var(--gap);
	margin: auto;
	max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
	height: 100vh;
}

.testimonial-section{
  padding: var(--padding-section);
  background: #272121;
  
}
  .text-center{
    color: var(--white-color);
  }
  .card{
    border-radius: 1rem;
    box-shadow: 0px -12px 0px var(--main-color);
    background-color: white;
  }
  @media(max-width:767px){
    .card{
      margin: 1rem 0.7rem 1rem;
      max-width: 80vw;
    }
  }
  .img-card{
    width: 6.2rem;
    border-radius: 50%;
    margin: 1.3rem auto 1rem auto;
  }
  .col-md-4{
    padding:0  0.5rem;
  }
  .card-title{
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 900;
    font-family: 'IM Fell French Canon SC';
  }
  .card-text{
    text-align: center;
    padding: 1rem 2rem;
    font-size: 16px;
    color: rgb(82, 81, 81);
    line-height: 1.4rem;
  }
  .testi-footer{
    border-top: none;
    text-align: center;
    line-height: 1.2rem;
    padding: 2rem 0 1.4rem 0;
    font-family: 'Varela Round';
  }
  #name{
    font-size: 21px;
    font-weight: 900;
  }
#position{
    font-size: 16px;
  }
  

  .section-article {
    padding: 74px 0;
    background: #272121;
  }
  
 .postcard {
   flex-wrap: wrap;
	 display: flex;
	 box-shadow: 0 5px 25px -12px rgba(0, 0, 0, 0.66);
	 border-radius: 12px;
	 margin: 0 0 2rem 0;
	 overflow: hidden;
	 position: relative;
	 color: #fff;
  }
 .postcard.dark {
   background-color: #18151f;
  }
  .postcard.light {
    background-color: #e1e5ea;
  }
  .postcard .t-dark {
    color: #18151f;
  }
  .postcard a {
    color: inherit;
  }
  .postcard h1, .postcard .h1 {
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.2;
  }
  .postcard .small {
    font-size: 80%;
  }
  .postcard .postcard__title {
    font-size: 1.75rem;
    color: black;
  }
  .postcard .postcard__img {
	 max-height: 180px;
	 width: 100%;
	 object-fit: cover;
	 position: relative;
  }
  .postcard .postcard__img_link {
    display: contents;
  }
  .postcard .postcard__bar {
    width: 50px;
    height: 12px;
    margin: 12px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
  }
  .postcard .postcard__text {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .postcard .postcard__preview-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
	 height: 100%;
  }
  .postcard .postcard__tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 15px;
    margin: 25px 0 0 0;
    padding: 0;
    justify-content: center;
  }
  .postcard .postcard__tagbox .tag__item {
    display: inline-block;
    background: rgba(83, 83, 83, 0.4);
    border-radius: 3px;
    padding: 2.5px 12px;
    margin: 0 5px 5px 0;
    cursor: default;
    user-select: none;
    transition: background-color 0.3s;
  }
  .postcard .postcard__tagbox .tag__item:hover {
    background: rgba(83, 83, 83, 0.8);
  }
  .postcard:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	 background-image: linear-gradient(-70deg, #424242, transparent 50%);
	 opacity: 1;
	 border-radius: 12px;
  }
  .postcard:hover .postcard__bar {
    width: 100px;
  }
  @media screen and (min-width: 769px) {
    .postcard {
      flex-wrap: inherit;
    }
    .postcard .postcard__title {
      font-size: 2rem;
    }
    .postcard .postcard__tagbox {
      justify-content: start;
    }
    .postcard .postcard__img {
      max-width: 300px;
      max-height: 100%;
      transition: transform 0.3s ease;
    }
    .postcard .postcard__text {
      padding: 3rem;
      width: 100%;
    }
    .postcard .media.postcard__text:before {
      content: "";
      position: absolute;
      display: block;
      background: #18151f;
      top: -20%;
      height: 130%;
      width: 55px;
    }
    .postcard:hover .postcard__img {
      transform: scale(1.1);
	}
  .postcard:nth-child(2n+1) {
    flex-direction: row;
	}
  .postcard:nth-child(2n+0) {
    flex-direction: row-reverse;
	}
  .postcard:nth-child(2n+1) .postcard__text::before {
    left: -12px !important;
    transform: rotate(4deg);
	}
  .postcard:nth-child(2n+0) .postcard__text::before {
    right: -12px !important;
    transform: rotate(-4deg);
	}
}
@media screen and (min-width: 1024px) {
  .postcard__text {
    padding: 2rem 3.5rem;
	}
  .postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    top: -20%;
    height: 130%;
    width: 55px;
	}
  .postcard.dark .postcard__text:before {
    background: #18151f;
	}
  .postcard.light .postcard__text:before {
		 background: #e1e5ea;
	}
}

.postcard .postcard__tagbox .green.play:hover {
  background: #79dd09;
  color: black;
}
 .green .postcard__title:hover {
   color: #79dd09;
  }
  .green .postcard__bar {
    background-color: #79dd09;
  }
  .green::before {
    background-image: linear-gradient(-30deg, rgba(121, 221, 9, 0.1), transparent 50%);
  }
  .green:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(121, 221, 9, 0.1), transparent 50%);
  }
  .postcard .postcard__tagbox .blue.play:hover {
    background: #0076bd;
  }
  .blue .postcard__title:hover {
    color: #0076bd;
  }
  .blue .postcard__bar {
    background-color: #0076bd;
  }
  .blue::before {
    background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }
  .blue:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }
  .postcard .postcard__tagbox .red.play:hover {
    background: #bd150b;
  }
  .red .postcard__title:hover {
    color: #bd150b;
  }
  .red .postcard__bar {
    background-color: #bd150b;
  }
  .red::before {
    background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
  }
  .red:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 21, 11, 0.1), transparent 50%);
  }
 .postcard .postcard__tagbox .yellow.play:hover {
	 background: #bdbb49;
	 color: black;
  }
  .yellow .postcard__title:hover {
    color: #bdbb49;
  }
  .yellow .postcard__bar {
    background-color: #bdbb49;
  }
  .yellow::before {
    background-image: linear-gradient(-30deg, rgba(189, 187, 73, 0.1), transparent 50%);
  }
  .yellow:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 187, 73, 0.1), transparent 50%);
  }
  @media screen and (min-width: 769px) {
    .green::before {
      background-image: linear-gradient(-80deg, rgba(121, 221, 9, 0.1), transparent 50%);
    }
    .green:nth-child(2n)::before {
      background-image: linear-gradient(80deg, rgba(121, 221, 9, 0.1), transparent 50%);
	}
	 .blue::before {
     background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
	}
  .blue:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(0, 118, 189, 0.1), transparent 50%);
	}
  .red::before {
    background-image: linear-gradient(-80deg, rgba(189, 21, 11, 0.1), transparent 50%);
	}
  .red:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(189, 21, 11, 0.1), transparent 50%);
	}
  .yellow::before {
    background-image: linear-gradient(-80deg, rgba(189, 187, 73, 0.1), transparent 50%);
	}
  .yellow:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(189, 187, 73, 0.1), transparent 50%);
	}
}
.Main {
    background-image: url('script_collections/img/h.jpg');
  padding: 74px 0 90px;
}

.main-box {
  display: flex;
  align-items: center;
  gap: 31px;
  justify-content: space-between;
  flex-direction: row;
  
}
@media (max-width: 991px) { 
  .main-box {
    flex-direction: column!important;
  }
}

.main-images {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
  flex: 1;
}

.main-content {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.main-content p {
  color: white;
}
.main-content li{
  font-size: 16px;
  
}
.main-content h5{
  color: white;
}
.main-img {
  width: 100%;
  border-radius: 5px;
  
}

.main-title {
  color: white;
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 400;
  
}

.main-box ul {
  padding-left: 27px;
  list-style: circle;
  color:white;
  padding-inline-start: 32px;
}

.main-price {
  
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  
  margin-top: 20px;
}
.cursordef{
  cursor: default;
}


.Price-main{
  font-size:27px;
}
.section-pricing {
  padding: 74px 0px;
  
	  background-image: url('script_collections/img/h.jpg');
  
	background-color: #181828;
	height: auto;
	width: 100%;
	padding-bottom: 45px;
}

.main-header {
  top: 0;
	left: 0;
	z-index: 20;
	-webkit-transform: translate3d(0, 0, 0);
	height: 70px;
	width: 100%;
	bottom: inherit;
	text-align: center;
	background: rgba(28, 31, 47, 0.16);
	overflow: hidden;
	border: 1px solid #2e344d;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	box-shadow: 12px 12px 36px rgb(0, 0, 0, 0.5),
  -12px -12px 23px rgba(255, 255, 255, 0.03);
	border-width: 1px 0px 0 1px;
}

.folio-btn {
  position: absolute;
	bottom: 0;
	background: rgba(255, 255, 255, 0.03);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	right: 0;
	height: 70px;
	width: 70px;
}

.folio-btn-item {
  position: absolute;
	width: 40px;
	height: 40px;
	left: 15px;
	top: 15px;
}

.folio-btn-dot {
  float: left;
	width: 33.3%;
	height: 33.3%;
	position: relative;
}

.folio-btn-dot:before {
  content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 4px;
	margin: -1px 0 0 -1px;
	border-radius: 50%;
	transition: all 300ms linear;
	transform: scale(1);
}

.folio-btn-dot:before {
  background: #00bcd4;
}

.folio-btn:hover .folio-btn-dot:first-child:before,
.folio-btn:hover .folio-btn-dot:nth-child(3):before,
.folio-btn:hover .folio-btn-dot:nth-child(4):before,
.folio-btn:hover .folio-btn-dot:nth-child(8):before {
  transform: scale(1.8);
	opacity: 0.5;
}

.form-control:focus {
  border: 1px solid #344d2e;
	color: #495057;
	outline: 0;
	background: rgb(17, 20, 31);
	border-radius: 5px;
	transition: all 0.3s ease-in-out 0s;
	box-shadow: 12px 12px 36px rgb(0, 0, 0, 0.5),
  -12px -12px 23px rgba(255, 255, 255, 0.03);
}

.mt-6,
.my-6 {
  margin-top: 2rem !important;
}

.login-box {
  padding: 31px;
  background: transparent;
  box-sizing: border-box;
  border-radius: 12px;
}

.login-box h2 {
  margin: 0 0 27px;
  padding: 0;
  color: #fff;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 27px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #03e9f4;
  font-size: 11px;
}


.title-h1 {
  margin-top: 0.5em;
	margin-bottom: 1.4em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: inherit;
	color: #ffffff;
	font-size: 36px;
}

.title-h1 .light {
  font-weight: 400;
}

.pricing-price-wrapper {
  background-color: rgba(71, 71, 72, 0.2);
	border-top-right-radius: 50%;
	border-top-left-radius: 50%;
	padding-top: 45px;
	padding-bottom: 35px;
	text-align: center;
	box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.13),
  -25px -25px 50px rgba(29, 29, 29, 0.08);
}
.pricing-price {
  background-color: #393b4a;
	background-color: #00bcd4;
	-webkit-box-shadow: 0px 0px 0px 12px rgba(0, 188, 212, 0.31);
	-moz-box-shadow: 0px 0px 0px 12px rgba(0, 188, 212, 0.31);
	box-shadow: 0px 0px 0px 12px rgba(0, 188, 212, 0.31);
	color: #fff;
	border-radius: 50%;
	height: 180px;
	width: 180px;
	display: inline-block;
  
	padding: 45px 5px 0px 5px;
}

.pricing-cost {
  font-size: 31px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 12px;
	padding: 0 12px;
}

.pricing-table-style-4 .time {
  font-size: 23px;
	font-weight: 400;
}

.pricing-row-title {
  background-color: #303241;
	padding: 27px 12px;
	text-align: center;
}

.pricing_row_title {
  color: #00bcd4;
	line-height: 31px;
	font-size: 23px;
	font-weight: 700;
	text-transform: uppercase;
}

.pricing-table.pricing-table-style-4 .pricing-row {
  background-color: #393b4a;
}
.pricing-table-style-4 figure.pricing-row:first-of-type {
  padding-top: 20px;
}
.pricing-table-style-4 .pricing-row {
  padding: 5px 12px;
}
figure {
	margin: 0;
	display: block;
}

figure {
  display: block;
	padding-block-start: 0.4em;
	padding-block-end: 0.4em;
	padding-inline-start: 40px;
	padding-inline-end: 40px;
	background-color: rgba(51, 51, 51, 0.4117647058823529);
	text-align: left;
}

.pricing-row:before {
  vertical-align: middle;
	content: "✔";
	font-family: "Font Awesome 5 Free";
	color: #00bfa5;
	text-align: center;
	padding-right: 12px;
}

.strike:before {
  content: none;
}
.pricing_row_title {
  color: #00bcd4;
}

.pricing-column {
  width: 100%;
	float: none;
	display: inline-block;
	text-align: left;
	vertical-align: top;
	margin-bottom: 41px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.pricing-column-wrapper {
  min-width: 237px;
	text-align: center;
}

@media (max-width: 996px) { .directioncolum{
  align-items: center;
  flex-direction: column;
} }
.pricing-row-title {
  background-color: rgba(48, 50, 65, 0.2);
}

.margin-body {
  position: relative;
	width: 90%;
	box-sizing: border-box;
	margin: auto;
}

.pricing-row {
  border-top: 1px solid #7273723b;
	color: #5f727f;
}
.title-pricing {
  color: white;
	margin: 40px 0px;
}
.pricing-price-wrapper {
  border-top-right-radius: 50%;
	border-top-left-radius: 50%;
	padding-top: 45px;
}

.pricing-column-wrapper + .pricing-column-wrapper .pricing-price {
  background-color: #a637ec;
	-webkit-box-shadow: 0px 0px 0px 12px rgba(166, 55, 236, 0.31);
	-moz-box-shadow: 0px 0px 0px 12px rgba(166, 55, 236, 0.31);
	box-shadow: 0px 0px 0px 12px rgba(166, 55, 236, 0.31);
}

.strike {
	text-decoration: line-through;
	color: #99a9b5;
}

.pricing-column-wrapper + .pricing-column-wrapper .pricing_row_title {
  color: #a637ec;
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing_row_title {
    color: #ee417c;
  }
  
  .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-price {
    background-color: #ee417c;
    -webkit-box-shadow: 0px 0px 0px 12px rgba(238, 65, 124, 0.31);
    -moz-box-shadow: 0px 0px 0px 12px rgba(238, 65, 124, 0.31);
    box-shadow: 0px 0px 0px 12px rgba(238, 65, 124, 0.31);
  }
  
  .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing_row_title {
    color: #ff994e;
  }
  
  .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-price {
    background-color: #ff994e;
    -webkit-box-shadow: 0px 0px 0px 12px rgba(255, 153, 78, 0.31);
    -moz-box-shadow: 0px 0px 0px 12px rgba(255, 153, 78, 0.31);
    box-shadow: 0px 0px 0px 12px rgba(255, 153, 78, 0.31);
  }
  
  .pricing-column-wrapper + .pricing-column-wrapper .pricing-row:before {
    color: #a637ec;
  }
  
  .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-row:before {
    color: #ee417c;
  }
  
  .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-row:before {
    color: #ff994e;
  }
  
  .gem-button {
    cursor: pointer;
    line-height: 40px;
    padding: 0 17px;
    font-size: 15px;
    margin: 27px;
    position: relative;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
  }
  .gem-green {
    border-radius: 0px;
    border-color: rgb(0, 188, 212);
    color: rgb(0, 188, 212) !important;
  }
  .gem-green:hover {
    background-color: rgb(0, 188, 212);
	color: rgb(255, 255, 255) !important;
}

.gem-purpel {
  border-radius: 0px;
	border-color: rgb(166, 55, 236);
	color: rgb(166, 55, 236) !important;
}

.gem-purpel:hover {
  background-color: #a637ec;
	color: rgb(255, 255, 255) !important;
}

.gem-orange:hover {
  background-color: #ee417c;
	color: rgb(255, 255, 255) !important;
}

.gem-yellow {
  border-radius: 0px;
	border-color: #ff994e;
	color: #ff994e !important;
}
.gem-yellow:hover {
  background-color: #ff994e;
	color: rgb(255, 255, 255) !important;
}

.gem-button-position-center {
  text-align: center;
	display: block;
	background-color: rgba(0, 0, 0, 0.16862745098039217);
	border-radius: 0px 0px 12px 12px;
}

.pricing-column:hover .pricing-price-wrapper {
  box-shadow: 0px 35px 80px rgba(4, 255, 236, 0.25),
  0px 0px 0px rgba(10, 197, 173, 0.33);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.pricing-column:hover {
  overflow: hidden;
}

.pricing-column-wrapper
+ .pricing-column-wrapper
.pricing-column:hover
.pricing-price-wrapper {
  box-shadow: 0px 35px 80px rgba(230, 2, 241, 0.34),
  0px 0px 0px rgba(21, 21, 20, 0.79);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.pricing-column-wrapper
+ .pricing-column-wrapper
+ .pricing-column-wrapper
.pricing-column:hover
.pricing-price-wrapper {
  box-shadow: 0px 35px 80px rgba(255, 4, 166, 0.25),
  0px 0px 0px rgba(222, 6, 84, 0.33);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.pricing-column-wrapper
+ .pricing-column-wrapper
+ .pricing-column-wrapper
+ .pricing-column-wrapper
.pricing-column:hover
.pricing-price-wrapper {
  box-shadow: 0px 35px 80px rgba(241, 139, 2, 0.34),
  0px 0px 0px rgba(21, 21, 20, 0.79);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}


.customsection{
  position: relative;
  padding: 74px 0px;
  background-image: url( backgrounds/illustrations_header_6854f08be5d675.65308208.jpg);
  background-size: cover;
  background-attachment:fixed;
}
.positionsuctom{
  position: relative;
  z-index: 1;
}
.customsection.overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  background: var(--overlay);
}
.typebox{
  gap: 27px;
  
}
.menutypetitle{
  margin-bottom: 27px;
  
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  font-weight: 400;
}
.typethumb{  
  
  overflow: hidden;
  width: 47%;
  padding: 27px 12px;
  background: rgba(220,220,220,0.3);
  display: flex;
  gap: 38px;
  flex-direction:column;  
  
}
@media (max-width: 767px){.typethumb{
  width: 100%!important;
}}


.typethumb ul {padding: 0px;}
.typethumb ul li{
  padding: 20px 0px;
}
.typethumb p {
  color: white;
}
.titlelink{
  transition: all 0.3s;
  position: relative;
  font-size:  20px;
  padding: 20px 0px;
  color:  white;
}
.titlelink:hover{
  font-size:  25px;
  font-weight: 900;
}
@media (max-width:575px){
  .titlelink{
    font-size: 16px;
  }
}
.linkpoloska{
  position: relative;
}
.linkpoloska::after{
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform:translate(-50%, 0%);
  transition: .5s;
  height: 3px;
  width: 100px;
  background: var(--main-color);
}

.buttonslink {
  transition: all 0.3s;
  color: #fff;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 400;
}

.buttonslink:hover{
  font-size:  16px;
  font-weight: 900;
}
@keyframes resize {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.pulse-container {
  animation: flash 2s infinite;
}
.image-container {
  animation: resize 2s infinite;
}

.boximgtype img{
  width: 100%;
  height: 356px;
  object-fit: cover;
  transition: 1s;
  border-radius:5px ;
}

.Forma{   
  padding: 45px 0px 45px 0px;
  background-color: #272121;
  
  
}
.formawidth{
  display: flex;
  gap: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
@media (max-width: 767px){
  .formawidth{
    flex-direction: column;
  }
}
.width100{flex: 1;
  max-width: 100%;}
  .forma-right{
    flex: 1;
    
  }
  .formtitle{
    color: white;
    margin-bottom: 27px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
    font-weight: 400;
    
  }
  .formsbox{
    padding: 0px 12px;
    flex-direction: column;
    align-content: center;
  }
  .formsbox label{
    font-size:  16px;
    color: white;
  }
  .main_form {
    padding: 45px 0px 45px 0px;
  }
  .frommtilt{
    margin-bottom: 27px;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #EF2143;
    color: transparent;
  }
  .confcolor{
    color:  var(--main-color);
  }
  [type="checkbox"]{
    margin-right: 10px;
  }
  
.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 27px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: var(--main-color);
  font-size: 11px;
}

.main_form .input-form__field--element{
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  color: white;
  margin-bottom: 27px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
  
}

.checkbox-box{   
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
  align-items: center;}
  .checkbox-box1{display: flex;}
  .main_form .textarea-form__field--element {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    color: white;
    margin-bottom: 27px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    
  }
  
  .subbutt {
    border: none;
    text-decoration: none;
    display: inline-block;
    padding: 12px 31px;
    margin-top: 25px;
    border-radius: 27px;
    color: white;
      transition: .5s;
    }
    @media  (max-width: 575px) { 
      .subbutt  {
        margin-top: 25px;
        font-size:  16px;
      }
    }
  
    .main_form .input-form__field--element::placeholder {
      display: flex;
      justify-content: center;  
      color: #939393;
      opacity: 1;
    }
    @media (max-width: 767px) { .bottom_form{
      margin-top: 25px;
} }


.bottom_form h3 {
  font-weight: 400;
  font-size: 21px;
  text-align: left;
  color: #fff;
  padding-bottom: 20px;
}

footer {
    background-image: url('script_collections/img/h.jpg');
  padding: 80px 0 0px;
  border-top: 1px solid gray;
}
.footerbox12{
  display: flex;
  margin-bottom: 25px;
}
.footerthumbleft{
  flex:1;
  display: flex;
  justify-content: center;
}
.footerthumbright{
  flex:1;
  display: flex;
  justify-content: center;
}
.footernewsller{
  display: flex;
  flex: 1;
  justify-content: center;
}
@media (max-width: 767px) {
  .footerbox12{
    flex-direction: column!important;
  }
  .footerthumbleft{
    justify-content: flex-start;
  }
  .footerthumbright{
    justify-content: flex-start;
  }
  .footernewsller{
    display: flex;
    
  }
}

footer .section-title {
  
  padding-bottom: 12px;
}
.grafic{
  color:white;
}
@media (max-width:768px) {
  footer .section-title {
    margin-top : 25px;
    
  }
}
.contactslink{
  color: white;
}
.contactslink:hover{
  color: white;
}
footer h2 {
  font-size: 20px;
}

footer a,
footer p {
  color: white;
}

footer strong {
  color: #d9d9d9;
}

footer address p {
  margin-bottom: 0;
}

footer .social-icon {
  margin-top: 27px;
}

.footer-info {
  margin-right: 2em;
}

.footer-info h2 {
  color: #ffffff;
  padding: 0;
}

.adressmarg {
  margin-bottom: 12px;
  transition: all 0.3s;
}
.adressmarg  a:hover{
  color: white;
  
  font-weight: 400;
  
  
}
.poloska{
  border-top: 1px solid var(--main-color);
}
.copyright-text {
  margin: 25px 0px;
  justify-content: center;
  
  display: flex;
  gap: 12px;
}
.copyright-text a:hover{color: white;}
.cptxt{
  color: white;
}
@media (max-width:768px){
  .copyright-text {
    flex-direction: column;
  }
}
.footer_menu ul {
  margin: 0;
  padding: 0;
}
@media (max-width:768px) {
  .footer_menu {
    margin-top : 25px;
    
  }}
  
  .footer_menu li {
    display: inline-block;
    list-style: none;
    margin: 5px 12px 5px 0;
  }
  
  .fotterlogo23{
    display: flex;
  }
  .logo-links23footer{
    font-size: 20px;
    gap: 12px;
    display: flex;
    align-items: center;
  }
  .logo-links23footer:hover{
    color: white;
  }
  .logofoter{
    color: white;
    width: 27px;
    
  }
  
  .contasect{
    padding: 74px 0px;
  }
  .Forma-contacts{
      background-image: url('script_collections/img/h.jpg');
    padding: 45px 0px 45px 0px;
  }
  .contak-main {
    display: flex;
  }
  .contak {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05),
    0 5px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    gap:  35px;
    padding: 20px;
  }
  .contak-blok {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  .contak-box {
    padding: 27px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
    
  }
  .title-cont{
    font-size: 23px;
    font-weight: 400;
    text-align: center;
    color: var(--white-color);
  }
  .contak-box a{
    color: var(--white-color);
    display: flex;
    text-align: center;
    font-size: 21px;
  }
  @media (max-width: 575px){
    .contak-box a{
      font-size: 16px;
    }
  }
  .contak-box:hover , .contak-box i{
    color:  #17B794;
    
  }
  .contak-box i {
    color: var(--main-color);
    font-size: 45px;
  }
  .contak-box div {
    font-size: 20px;
    word-break: break-all;
  }
  .cont-thumb{
    margin-top:25px;
  }
  @media (min-width: 768px){
    .contak-box{
      width: 30%;
    }
  }
  .contacSize{
    margin-bottom: 35px;
    border-radius: 27px;
    position: relative;
    margin-top: -12px;
    gap:55px;
    box-shadow: 0 0 25px rgb(0 0 0/14%);
  }
@media (min-width: 768px)and (max-width:1199px){
  .contacSize{
    justify-content: center!important;
  }
}
.form-control {
  margin: 12px 0px;
  display: block;
  width: 100%;
  height: 35px;
  padding: 6px 12px;
  font-size:  16px;
  line-height: 1.4;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 27px;
}
.form-check{
  display: flex;
  align-items: center;
}
.check ,.form-check-label{
  gap: 5px;
  
  color:var(--main-color);
}
.btn-subm{  border: none;
  text-decoration: none;
  display: inline-block;
  padding: 12px 31px;
  margin-top: 25px;
  border-radius: 27px;
  ;}
  .btn-subm:hover{    box-shadow: 0 0 0 0 rgba(0, 40, 120, 0);
    background-position: 0 0;}
    .scroll-area{
      position: relative;
      z-index: 999;
    }
    .scroll-area .go-top {
      display: flex;
      align-items: center;
      position: fixed;
      cursor: pointer;
      top: 0;
      right: 30px;
      color: #ffffff;
      background-image: -moz-linear-gradient(0deg, #d1651a 0%, var(--main-color) 100%);
      background-image: -webkit-linear-gradient(0deg, #d1651a 0%,  var(--main-color) 100%);
      background-image: -ms-linear-gradient(0deg, #d1651a 0%,  var(--main-color) 100%);
      z-index: 9999;
      width: 45px;
      text-align: center;
      height: 45px;
      line-height: 42px;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.9s ease-out 0s;
      -moz-transition: all 0.9s ease-out 0s;
      -ms-transition: all 0.9s ease-out 0s;
      -o-transition: all 0.9s ease-out 0s;
      transition: all 0.9s ease-out 0s;
      border-radius: 12px; 
    }
    .scroll-area .go-top i {
      
      position: absolute;
      top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s; 
}
.scroll-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%; 
}


.scroll-area .go-top.active {
  top: 95%;
  -webkit-transform: translateY(-98%);
  -moz-transform: translateY(-98%);
  -ms-transform: translateY(-98%);
  -o-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 0;
  right: 50px;
  border-radius: 50%;
}
.top-wrap {
  position: relative; 
}
.top-wrap .go-top-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 31px;
  text-align: center;
  color: #fff;
  top: 3px;
  z-index: 1;
  
  background: var(--main-color);
  
}
.top-wrap .go-top-button i {
  font-size: 35px;
  font-weight: 700;
  padding-left: 5px;
  color: #fff;
}

.top-wrap .go-top-button:hover {
  background-color: var(--main-color);
  color: #fff;
}
.privacy ul {margin: 20px 0px;
  list-style: circle;
}
.privacy ul li{margin: 20px 0px;
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  
}
.privacy div {
  color: white;
  font-size: 16px;
}
.privacy p {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.bg-privacy{
    background-image: url('script_collections/img/h.jpg');
    padding: 31px 20px;
}


.section-pricing {
	padding: 74px 0px;

	background-image: url('script_collections/img/h.jpg');

	background-color: #181828;
	height: auto;
	width: 100%;
	padding-bottom: 45px;
}

.main-header {
	top: 0;
	left: 0;
	z-index: 20;
	-webkit-transform: translate3d(0, 0, 0);
	height: 70px;
	width: 100%;
	bottom: inherit;
	text-align: center;
	background: rgba(28, 31, 47, 0.16);
	overflow: hidden;
	border: 1px solid #2e344d;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	box-shadow: 12px 12px 36px rgb(0, 0, 0, 0.5),
		-13px -13px 23px rgba(255, 255, 255, 0.03);
	border-width: 1px 0px 0 1px;
}

.folio-btn {
	position: absolute;
	bottom: 0;
	background: rgba(255, 255, 255, 0.03);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	right: 0;
	height: 70px;
	width: 70px;
}

.folio-btn-item {
	position: absolute;
	width: 31px;
	height: 31px;
	left: 20px;
	top: 20px;
}

.folio-btn-dot {
	float: left;
	width: 33.3%;
	height: 33.3%;
	position: relative;
}

.folio-btn-dot:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 4px;
	margin: -1px 0 0 -1px;
	border-radius: 50%;
	transition: all 300ms linear;
	transform: scale(1);
}

.folio-btn-dot:before {
	background: #00bcd4;
}

.folio-btn:hover .folio-btn-dot:first-child:before,
.folio-btn:hover .folio-btn-dot:nth-child(3):before,
.folio-btn:hover .folio-btn-dot:nth-child(4):before,
.folio-btn:hover .folio-btn-dot:nth-child(8):before {
	transform: scale(1.8);
	opacity: 0.5;
}

/***social***/
.header-social {
	position: absolute;
	z-index: 20;
	width: auto;
	bottom: 17px;
	right: 90px;
	padding: 0;
	min-width: 140px;
	box-shadow: 3px 9px 20px rgb(0, 0, 0, 0.4),
		-3px -3px 12px rgba(255, 255, 255, 0.06),
		inset 12px 12px 27px rgb(0, 0, 0, 0.3),
		inset -3px -3px 20px rgba(255, 255, 255, 0.05);
	border-width: 1px 0px 0px 1px;
	border-style: solid;
	border-color: #2e344d;
}

.header-social:before {
	background: #00bcd4;
}

.header-social:before {
	content: "";
	position: absolute;
	left: 50%;
	top: -3px;
	width: 36px;
	margin-left: -18px;
	height: 6px;
}

.header-social li {
	display: block;
	float: left;
	margin-top: 0;
}

.header-social li a {
	width: 36px;
	height: 36px;
	line-height: 36px;
	display: inline-block;
	font-size: 11px;
	border-style: solid;
	color: rgba(255, 255, 255, 0.41);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 300ms linear;
}

.header-social li a:hover {
	color: #00bcd4;
	cursor: pointer;
}

.main-header:before {
	content: "";
	position: absolute;
	left: 12px;
	width: 60px;
	height: 1px;
	bottom: 120px;
	background: rgba(255, 255, 255, 0.1);
}

/***end*****/

.wow-bg {
	background-color: #141421;
	border: 1px solid #2e2e4c;
	box-shadow: 3px 9px 20px rgb(0, 0, 0, 0.4),
		-3px -3px 12px rgba(255, 255, 255, 0.06),
		inset 12px 12px 27px rgb(0, 0, 0, 0.3),
		inset -3px -3px 20px rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	margin-top: 5px;
}

.starsec {
	content: " ";
	position: absolute;
	width: 3px;
	height: 3px;
	background: transparent;
	box-shadow: 571px 173px #00bcd4, 1732px 143px #00bcd4, 1745px 454px #ff5722,
		234px 784px #00bcd4, 1793px 1123px #ff9800, 1076px 504px #03a9f4,
		633px 601px #ff5722, 350px 630px #ffeb3b, 1164px 782px #00bcd4,
		76px 690px #3f51b5, 1825px 701px #cddc39, 1646px 578px #ffeb3b,
		544px 293px #2196f3, 445px 1061px #673ab7, 928px 47px #00bcd4,
		168px 1410px #8bc34a, 777px 782px #9c27b0, 1235px 1941px #9c27b0,
		104px 1690px #8bc34a, 1167px 1338px #e91e63, 345px 1652px #009688,
		1682px 1196px #f44336, 1995px 494px #8bc34a, 428px 798px #ff5722,
		340px 1623px #f44336, 605px 349px #9c27b0, 1339px 1344px #673ab7,
		1102px 1745px #3f51b5, 1592px 1676px #2196f3, 419px 1024px #ff9800,
		630px 1033px #4caf50, 1995px 1644px #00bcd4, 1092px 712px #9c27b0,
		1355px 606px #f44336, 622px 1881px #cddc39, 1481px 621px #9e9e9e,
		19px 1348px #8bc34a, 864px 1780px #e91e63, 442px 1136px #2196f3,
		67px 712px #ff5722, 89px 1406px #f44336, 275px 321px #009688,
		592px 630px #e91e63, 1012px 1690px #9c27b0, 1749px 23px #673ab7,
		94px 1542px #ffeb3b, 1201px 1657px #3f51b5, 1505px 692px #2196f3,
		1799px 601px #03a9f4, 656px 811px #00bcd4, 701px 597px #00bcd4,
		1202px 46px #ff5722, 890px 569px #ff5722, 1613px 813px #2196f3,
		223px 252px #ff9800, 983px 1093px #f44336, 726px 1029px #ffc107,
		1764px 778px #cddc39, 622px 1643px #f44336, 174px 1559px #673ab7,
		212px 517px #00bcd4, 340px 505px #fff, 1700px 39px #fff,
		1768px 516px #f44336, 849px 391px #ff9800, 228px 1824px #fff,
		1119px 1680px #ffc107, 812px 1480px #3f51b5, 1438px 1585px #cddc39,
		137px 1397px #fff, 1080px 456px #673ab7, 1208px 1437px #03a9f4,
		857px 281px #f44336, 1254px 1306px #cddc39, 987px 990px #4caf50,
		1655px 911px #00bcd4, 1102px 1216px #ff5722, 1807px 1044px #fff,
		660px 435px #03a9f4, 299px 678px #4caf50, 1193px 115px #ff9800,
		918px 290px #cddc39, 1447px 1422px #ffeb3b, 91px 1273px #9c27b0,
		108px 223px #ffeb3b, 146px 754px #00bcd4, 461px 1446px #ff5722,
		1004px 391px #673ab7, 1529px 516px #f44336, 1206px 845px #cddc39,
		347px 583px #009688, 1102px 1332px #f44336, 709px 1756px #00bcd4,
		1972px 248px #fff, 1669px 1344px #ff5722, 1132px 406px #f44336,
		320px 1076px #cddc39, 126px 943px #ffeb3b, 263px 604px #ff5722,
		1546px 692px #f44336;
	animation: animStar 150s linear infinite;
}

.starthird {
	content: " ";
	position: absolute;
	width: 3px;
	height: 3px;
	background: transparent;
	box-shadow: 571px 173px #00bcd4, 1732px 143px #00bcd4, 1745px 454px #ff5722,
		234px 784px #00bcd4, 1793px 1123px #ff9800, 1076px 504px #03a9f4,
		633px 601px #ff5722, 350px 630px #ffeb3b, 1164px 782px #00bcd4,
		76px 690px #3f51b5, 1825px 701px #cddc39, 1646px 578px #ffeb3b,
		544px 293px #2196f3, 445px 1061px #673ab7, 928px 47px #00bcd4,
		168px 1410px #8bc34a, 777px 782px #9c27b0, 1235px 1941px #9c27b0,
		104px 1690px #8bc34a, 1167px 1338px #e91e63, 345px 1652px #009688,
		1682px 1196px #f44336, 1995px 494px #8bc34a, 428px 798px #ff5722,
		340px 1623px #f44336, 605px 349px #9c27b0, 1339px 1344px #673ab7,
		1102px 1745px #3f51b5, 1592px 1676px #2196f3, 419px 1024px #ff9800,
		630px 1033px #4caf50, 1995px 1644px #00bcd4, 1092px 712px #9c27b0,
		1355px 606px #f44336, 622px 1881px #cddc39, 1481px 621px #9e9e9e,
		19px 1348px #8bc34a, 864px 1780px #e91e63, 442px 1136px #2196f3,
		67px 712px #ff5722, 89px 1406px #f44336, 275px 321px #009688,
		592px 630px #e91e63, 1012px 1690px #9c27b0, 1749px 23px #673ab7,
		94px 1542px #ffeb3b, 1201px 1657px #3f51b5, 1505px 692px #2196f3,
		1799px 601px #03a9f4, 656px 811px #00bcd4, 701px 597px #00bcd4,
		1202px 46px #ff5722, 890px 569px #ff5722, 1613px 813px #2196f3,
		223px 252px #ff9800, 983px 1093px #f44336, 726px 1029px #ffc107,
		1764px 778px #cddc39, 622px 1643px #f44336, 174px 1559px #673ab7,
		212px 517px #00bcd4, 340px 505px #fff, 1700px 39px #fff,
		1768px 516px #f44336, 849px 391px #ff9800, 228px 1824px #fff,
		1119px 1680px #ffc107, 812px 1480px #3f51b5, 1438px 1585px #cddc39,
		137px 1397px #fff, 1080px 456px #673ab7, 1208px 1437px #03a9f4,
		857px 281px #f44336, 1254px 1306px #cddc39, 987px 990px #4caf50,
		1655px 911px #00bcd4, 1102px 1216px #ff5722, 1807px 1044px #fff,
		660px 435px #03a9f4, 299px 678px #4caf50, 1193px 115px #ff9800,
		918px 290px #cddc39, 1447px 1422px #ffeb3b, 91px 1273px #9c27b0,
		108px 223px #ffeb3b, 146px 754px #00bcd4, 461px 1446px #ff5722,
		1004px 391px #673ab7, 1529px 516px #f44336, 1206px 845px #cddc39,
		347px 583px #009688, 1102px 1332px #f44336, 709px 1756px #00bcd4,
		1972px 248px #fff, 1669px 1344px #ff5722, 1132px 406px #f44336,
		320px 1076px #cddc39, 126px 943px #ffeb3b, 263px 604px #ff5722,
		1546px 692px #f44336;
	animation: animStar 10s linear infinite;
}

.starfourth {
	content: " ";
	position: absolute;
	width: 2px;
	height: 2px;
	background: transparent;
	box-shadow: 571px 173px #00bcd4, 1732px 143px #00bcd4, 1745px 454px #ff5722,
		234px 784px #00bcd4, 1793px 1123px #ff9800, 1076px 504px #03a9f4,
		633px 601px #ff5722, 350px 630px #ffeb3b, 1164px 782px #00bcd4,
		76px 690px #3f51b5, 1825px 701px #cddc39, 1646px 578px #ffeb3b,
		544px 293px #2196f3, 445px 1061px #673ab7, 928px 47px #00bcd4,
		168px 1410px #8bc34a, 777px 782px #9c27b0, 1235px 1941px #9c27b0,
		104px 1690px #8bc34a, 1167px 1338px #e91e63, 345px 1652px #009688,
		1682px 1196px #f44336, 1995px 494px #8bc34a, 428px 798px #ff5722,
		340px 1623px #f44336, 605px 349px #9c27b0, 1339px 1344px #673ab7,
		1102px 1745px #3f51b5, 1592px 1676px #2196f3, 419px 1024px #ff9800,
		630px 1033px #4caf50, 1995px 1644px #00bcd4, 1092px 712px #9c27b0,
		1355px 606px #f44336, 622px 1881px #cddc39, 1481px 621px #9e9e9e,
		19px 1348px #8bc34a, 864px 1780px #e91e63, 442px 1136px #2196f3,
		67px 712px #ff5722, 89px 1406px #f44336, 275px 321px #009688,
		592px 630px #e91e63, 1012px 1690px #9c27b0, 1749px 23px #673ab7,
		94px 1542px #ffeb3b, 1201px 1657px #3f51b5, 1505px 692px #2196f3,
		1799px 601px #03a9f4, 656px 811px #00bcd4, 701px 597px #00bcd4,
		1202px 46px #ff5722, 890px 569px #ff5722, 1613px 813px #2196f3,
		223px 252px #ff9800, 983px 1093px #f44336, 726px 1029px #ffc107,
		1764px 778px #cddc39, 622px 1643px #f44336, 174px 1559px #673ab7,
		212px 517px #00bcd4, 340px 505px #fff, 1700px 39px #fff,
		1768px 516px #f44336, 849px 391px #ff9800, 228px 1824px #fff,
		1119px 1680px #ffc107, 812px 1480px #3f51b5, 1438px 1585px #cddc39,
		137px 1397px #fff, 1080px 456px #673ab7, 1208px 1437px #03a9f4,
		857px 281px #f44336, 1254px 1306px #cddc39, 987px 990px #4caf50,
		1655px 911px #00bcd4, 1102px 1216px #ff5722, 1807px 1044px #fff,
		660px 435px #03a9f4, 299px 678px #4caf50, 1193px 115px #ff9800,
		918px 290px #cddc39, 1447px 1422px #ffeb3b, 91px 1273px #9c27b0,
		108px 223px #ffeb3b, 146px 754px #00bcd4, 461px 1446px #ff5722,
		1004px 391px #673ab7, 1529px 516px #f44336, 1206px 845px #cddc39,
		347px 583px #009688, 1102px 1332px #f44336, 709px 1756px #00bcd4,
		1972px 248px #fff, 1669px 1344px #ff5722, 1132px 406px #f44336,
		320px 1076px #cddc39, 126px 943px #ffeb3b, 263px 604px #ff5722,
		1546px 692px #f44336;
	animation: animStar 50s linear infinite;
}

.starfifth {
	content: " ";
	position: absolute;
	width: 1px;
	height: 1px;
	background: transparent;
	box-shadow: 571px 173px #00bcd4, 1732px 143px #00bcd4, 1745px 454px #ff5722,
		234px 784px #00bcd4, 1793px 1123px #ff9800, 1076px 504px #03a9f4,
		633px 601px #ff5722, 350px 630px #ffeb3b, 1164px 782px #00bcd4,
		76px 690px #3f51b5, 1825px 701px #cddc39, 1646px 578px #ffeb3b,
		544px 293px #2196f3, 445px 1061px #673ab7, 928px 47px #00bcd4,
		168px 1410px #8bc34a, 777px 782px #9c27b0, 1235px 1941px #9c27b0,
		104px 1690px #8bc34a, 1167px 1338px #e91e63, 345px 1652px #009688,
		1682px 1196px #f44336, 1995px 494px #8bc34a, 428px 798px #ff5722,
		340px 1623px #f44336, 605px 349px #9c27b0, 1339px 1344px #673ab7,
		1102px 1745px #3f51b5, 1592px 1676px #2196f3, 419px 1024px #ff9800,
		630px 1033px #4caf50, 1995px 1644px #00bcd4, 1092px 712px #9c27b0,
		1355px 606px #f44336, 622px 1881px #cddc39, 1481px 621px #9e9e9e,
		19px 1348px #8bc34a, 864px 1780px #e91e63, 442px 1136px #2196f3,
		67px 712px #ff5722, 89px 1406px #f44336, 275px 321px #009688,
		592px 630px #e91e63, 1012px 1690px #9c27b0, 1749px 23px #673ab7,
		94px 1542px #ffeb3b, 1201px 1657px #3f51b5, 1505px 692px #2196f3,
		1799px 601px #03a9f4, 656px 811px #00bcd4, 701px 597px #00bcd4,
		1202px 46px #ff5722, 890px 569px #ff5722, 1613px 813px #2196f3,
		223px 252px #ff9800, 983px 1093px #f44336, 726px 1029px #ffc107,
		1764px 778px #cddc39, 622px 1643px #f44336, 174px 1559px #673ab7,
		212px 517px #00bcd4, 340px 505px #fff, 1700px 39px #fff,
		1768px 516px #f44336, 849px 391px #ff9800, 228px 1824px #fff,
		1119px 1680px #ffc107, 812px 1480px #3f51b5, 1438px 1585px #cddc39,
		137px 1397px #fff, 1080px 456px #673ab7, 1208px 1437px #03a9f4,
		857px 281px #f44336, 1254px 1306px #cddc39, 987px 990px #4caf50,
		1655px 911px #00bcd4, 1102px 1216px #ff5722, 1807px 1044px #fff,
		660px 435px #03a9f4, 299px 678px #4caf50, 1193px 115px #ff9800,
		918px 290px #cddc39, 1447px 1422px #ffeb3b, 91px 1273px #9c27b0,
		108px 223px #ffeb3b, 146px 754px #00bcd4, 461px 1446px #ff5722,
		1004px 391px #673ab7, 1529px 516px #f44336, 1206px 845px #cddc39,
		347px 583px #009688, 1102px 1332px #f44336, 709px 1756px #00bcd4,
		1972px 248px #fff, 1669px 1344px #ff5722, 1132px 406px #f44336,
		320px 1076px #cddc39, 126px 943px #ffeb3b, 263px 604px #ff5722,
		1546px 692px #f44336;
	animation: animStar 80s linear infinite;
}

@keyframes animStar {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-2000px);
	}
}

.logn-btn {
	background: #1c1f2f;
	border-radius: 27px;
	overflow: hidden;
	border: 1px solid #2e344d;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	
	box-shadow: 0px 1px 27px rgb(0, 0, 0, 0.5),
		0px 7px 13px rgba(255, 255, 255, 0.03);
	margin-top: 27px;
}

.logn-btn:hover {
	background-color: #1c1f2f;
	border-radius: 50px;
	min-width: 140px;
	
	box-shadow: 3px 9px 20px rgb(0, 0, 0, 0.4),
		-3px -3px 12px rgba(255, 255, 255, 0.06),
		inset 12px 12px 27px rgb(0, 0, 0, 0.3),
		inset -3px -3px 20px rgba(255, 255, 255, 0.05);
	border-width: 1px 0px 0px 1px;
	border-style: solid;
	border-color: #2e344d;
}

.textbox-dg {
	background: rgba(28, 31, 47, 0.16);
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid #2e344d;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	
	box-shadow: 12px 12px 36px rgb(0, 0, 0, 0.5),
		-12px -12px 23px rgba(255, 255, 255, 0.03);
	border-width: 1px 0px 0 1px;
	margin-top: 20px;
}

.form-control:focus {
	border: 1px solid #344d2e;
	color: #495057;
	outline: 0;
	background: rgb(17, 20, 31);
	border-radius: 5px;
	transition: all 0.3s ease-in-out 0s;
	
	box-shadow: 12px 12px 36px rgb(0, 0, 0, 0.5),
		-12px -12px 23px rgba(255, 255, 255, 0.03);
}

.btn-link {
	color: #344d2e;
}

.btn-link:hover {
	color: #2b7a19;
	text-decoration: underline;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
	color: #807f7f;
	background-color: transparent;
	border-color: #2b7a19;
}

.btn-primary.focus,
.btn-primary:focus {
	color: #fff;
	background-color: transparent;
	border-color: transparent;
	box-shadow: 0 0 0 0.2rem rgba(0, 255, 110, 0.25);
}

.mt-6,
.my-6 {
	margin-top: 2rem !important;
}

.socila-btn {
	height: 40px;
	border-radius: 10%;
	width: 40px;
	box-shadow: 3px 9px 20px rgb(0, 0, 0, 0.4),
		-3px -3px 12px rgba(255, 255, 255, 0.06),
		inset 12px 12px 27px rgb(0, 0, 0, 0.3),
		inset -3px -3px 20px rgba(255, 255, 255, 0.05);
	border-width: 1px 0px 0px 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.2);
	margin-right: 12px;
}

.fb-color {
	color: #3b5998;
}

.incolor {
	color: #007bff;
}

.tweetcolor {
	color: #41a4f7;
}
.driblecolor {
	color: #e83e8c;
}

.colorboard {
	color: #00ffaaed;
}

/***********pricing table**********/
.title-h1 {
	margin-top: 0.5em;
	margin-bottom: 1.4em;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: inherit;
	color: #ffffff;
	font-size: 36px;
}

.title-h1 .light {
	font-weight: 400;
}

.pricing-price-wrapper {
	background-color: rgba(71, 71, 72, 0.2);
	border-top-right-radius: 50%;
	border-top-left-radius: 50%;
	padding-top: 45px;
	padding-bottom: 35px;
	text-align: center;
	box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.13),
		-25px -25px 50px rgba(29, 29, 29, 0.08);
}
.pricing-price {
	background-color: #393b4a;
	background-color: #00bcd4;
	-webkit-box-shadow: 0px 0px 0px 12px rgba(0, 188, 212, 0.31);
	-moz-box-shadow: 0px 0px 0px 12px rgba(0, 188, 212, 0.31);
	box-shadow: 0px 0px 0px 12px rgba(0, 188, 212, 0.31);
	color: #fff;
	border-radius: 50%;
	height: 180px;
	width: 180px;
	display: inline-block;

	padding: 45px 5px 0px 5px;
}

.pricing-cost {
	font-size: 31px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 12px;
	padding: 0 12px;
}

.pricing-table-style-4 .time {
	font-size: 23px;
	font-weight: 400;
}

.pricing-row-title {
	background-color: #303241;
	padding: 27px 12px;
	text-align: center;
}

.pricing_row_title {
	color: #00bcd4;
	line-height: 31px;
	font-size: 23px;
	font-weight: 700;
	text-transform: uppercase;
}

.pricing-table.pricing-table-style-4 .pricing-row {
	background-color: #393b4a;
}
.pricing-table-style-4 figure.pricing-row:first-of-type {
	padding-top: 20px;
}
.pricing-table-style-4 .pricing-row {
	padding: 5px 12px;
}
figure {
	margin: 0;
	display: block;
}

figure {
	display: block;
	padding-block-start: 0.4em;
	padding-block-end: 0.4em;
	padding-inline-start: 40px;
	padding-inline-end: 40px;
	background-color: rgba(51, 51, 51, 0.4117647058823529);
	text-align: left;
}

.pricing-row:before {
	vertical-align: middle;
	content: "✔";
	font-family: "Font Awesome 5 Free";
	color: #00bfa5;
	text-align: center;
	padding-right: 12px;
}

.strike:before {
	content: none;
}
.pricing_row_title {
	color: #00bcd4;
}

.pricing-column {
	width: 100%;
	float: none;
	display: inline-block;
	text-align: left;
	vertical-align: top;
	margin-bottom: 41px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.pricing-column-wrapper {
	min-width: 237px;
	text-align: center;
}

.pricing-row-title {
	background-color: rgba(48, 50, 65, 0.2);
}

.margin-body {
	position: relative;
	width: 90%;
	box-sizing: border-box;
	margin: auto;
}

.pricing-row {
	border-top: 1px solid #7273723b;
	color: #5f727f;
}
.title-pricing {
	color: white;
	margin: 31px 0px;
}
.pricing-price-wrapper {
	border-top-right-radius: 50%;
	border-top-left-radius: 50%;
	padding-top: 45px;
}

.pricing-column-wrapper + .pricing-column-wrapper .pricing-price {
	background-color: #a637ec;
	-webkit-box-shadow: 0px 0px 0px 12px rgba(166, 55, 236, 0.31);
	-moz-box-shadow: 0px 0px 0px 12px rgba(166, 55, 236, 0.31);
	box-shadow: 0px 0px 0px 12px rgba(166, 55, 236, 0.31);
}

.strike {
	text-decoration: line-through;
	color: #99a9b5;
}

.pricing-column-wrapper + .pricing-column-wrapper .pricing_row_title {
	color: #a637ec;
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing_row_title {
	color: #ee417c;
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-price {
	background-color: #ee417c;
	-webkit-box-shadow: 0px 0px 0px 12px rgba(238, 65, 124, 0.31);
	-moz-box-shadow: 0px 0px 0px 12px rgba(238, 65, 124, 0.31);
	box-shadow: 0px 0px 0px 12px rgba(238, 65, 124, 0.31);
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing_row_title {
	color: #ff994e;
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-price {
	background-color: #ff994e;
	-webkit-box-shadow: 0px 0px 0px 12px rgba(255, 153, 78, 0.31);
	-moz-box-shadow: 0px 0px 0px 12px rgba(255, 153, 78, 0.31);
	box-shadow: 0px 0px 0px 12px rgba(255, 153, 78, 0.31);
}

.pricing-column-wrapper + .pricing-column-wrapper .pricing-row:before {
	color: #a637ec;
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-row:before {
	color: #ee417c;
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-row:before {
	color: #ff994e;
}

.gem-button {
	cursor: pointer;
	line-height: 31px;
	padding: 0 17px;
	font-size: 15px;
	margin: 27px;
	position: relative;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	vertical-align: middle;
}
.gem-green {
	border-radius: 0px;
	border-color: rgb(0, 188, 212);
	color: rgb(0, 188, 212) !important;
}
.gem-green:hover {
	background-color: rgb(0, 188, 212);
	color: rgb(255, 255, 255) !important;
}

.gem-purpel {
	border-radius: 0px;
	border-color: rgb(166, 55, 236);
	color: rgb(166, 55, 236) !important;
}

.gem-purpel:hover {
	background-color: #a637ec;
	color: rgb(255, 255, 255) !important;
}

.gem-orange:hover {
	background-color: #ee417c;
	color: rgb(255, 255, 255) !important;
}

.gem-yellow {
	border-radius: 0px;
	border-color: #ff994e;
	color: #ff994e !important;
}
.gem-yellow:hover {
	background-color: #ff994e;
	color: rgb(255, 255, 255) !important;
}

.gem-button-position-center {
	text-align: center;
	display: block;
	background-color: rgba(0, 0, 0, 0.16862745098039217);
	border-radius: 0px 0px 12px 12px;
}

.pricing-column:hover .pricing-price-wrapper {
	box-shadow: 0px 35px 80px rgba(4, 255, 236, 0.25),
		0px 0px 0px rgba(10, 197, 173, 0.33);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.pricing-column:hover {
	overflow: hidden;
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-column:hover
	.pricing-price-wrapper {
	box-shadow: 0px 35px 80px rgba(230, 2, 241, 0.34),
		0px 0px 0px rgba(21, 21, 20, 0.79);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-column:hover
	.pricing-price-wrapper {
	box-shadow: 0px 35px 80px rgba(255, 4, 166, 0.25),
		0px 0px 0px rgba(222, 6, 84, 0.33);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	+ .pricing-column-wrapper
	.pricing-column:hover
	.pricing-price-wrapper {
	box-shadow: 0px 35px 80px rgba(241, 139, 2, 0.34),
		0px 0px 0px rgba(21, 21, 20, 0.79);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}


.custom-btn {
  color: #fff;
  border-radius: 5px;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 1px 1px 1px 0px rgba(255,255,255,.5),
   7px 7px 25px 0px rgba(0,0,0,.1),
   5px 5px 5px 0px rgba(0,0,0,.1);
  outline: none;
}

.button-1 {
  background: rgb(6,14,131);
  background: linear-gradient(0deg, rgba(6,14,131,1) 0%, rgba(12,25,180,1) 100%);
  border: none;
}
.button-1:hover {
  color: #fff;
   background: rgb(0,3,255);
background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%);
}

.button-2 {
  background: rgb(96,9,240);
  background: linear-gradient(0deg, rgba(96,9,240,1) 0%, rgba(129,5,240,1) 100%);
  border: none;
}

.button-2:before {
  height: 0%;
  width: 1px;
}

.button-2:hover {
  color: #fff;
  box-shadow:  5px 5px 6px 0 rgba(255,255,255,.5),
              -5px -5px 6px 0 rgba(116, 125, 136, .5), 
    inset -5px -5px 6px 0 rgba(255,255,255,.2),
    inset 5px 5px 6px 0 rgba(0, 0, 0, .4);
}

.button-3 {
  line-height: 41px;
  padding: 0;
  border: none;
  background: rgb(255,27,0);
background: linear-gradient(0deg, rgba(255,27,0,1) 0%, rgba(251,75,2,1) 100%);
}
.button-3:hover {
  color: #f0094a;
  background: transparent;
   box-shadow:none;
}
.button-3:before,
.button-3:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:1px;
  width:0;
  background: #f0094a;
  box-shadow:
   -1px -1px 5px 0px #fff,
   7px 7px 25px 0px #0003,
   5px 5px 5px 0px #0002;
  transition:400ms ease all;
}
.button-3:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.button-3:hover:before,
.button-3:hover:after{
  width:100%;
  transition:800ms ease all;
}

.button-4 {
  background-color: #89d8d3;
background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%);
  border: none;
  z-index: 1;
}
.button-4:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
   background-color: #4dccc6;
background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%);
  box-shadow:
   -7px -7px 25px 0px #fff9,
   -5px -5px 5px 0px #fff9,
   7px 7px 25px 0px #0002,
   5px 5px 5px 0px #0001;
  transition: all 0.3s ease;
}
.button-4:hover {
  color: #fff;
}
.button-4:hover:after {
  top: 0;
  height: 100%;
}
.button-4:active {
  top: 1px;
}

.button-5 {
  background: rgb(22,9,240);
background: linear-gradient(0deg, rgba(22,9,240,1) 0%, rgba(49,110,244,1) 100%);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
}
.button-5:after {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  -webkit-transform: scale(.1);
  transform: scale(.1);
}
.button-5:hover {
  color: #fff;
  border: none;
  background: transparent;
}
.button-5:hover:after {
  background: rgb(0,3,255);
background: linear-gradient(0deg, rgba(2,126,251,1) 0%,  rgba(0,3,255,1)100%);
  -webkit-transform: scale(1);
  transform: scale(1);
}


@media (max-width: 1200px){

  .pro-text {
   width: 80% !important;
   margin: auto;
  }
   
  .our-bnft-decpic img {
       width: 680px;
  }


}


@media (max-width: 992px) {
  
   .pro-bg {
       background-size: cover !important;
   }

   .our-bnft-list {
       flex-wrap: wrap !important;
   }

   .our-bnft-item {
       width: 47% !important;
   }

   .our-bnft-title {
       padding: 27px 27px;
       width: fit-content;
       background-color: rgb(0 0 0 / 70%);
       border-radius: 20px;
   }

   .our-bnft-decpic {
       top: -60px;
   }

   .our-bnft-decpic img {
       height: 430px;
   }

   .serv-item {
       width: 45% !important;
       margin: 0 !important;
   }

   .serv-list {
       position: relative;
   }

   .packages {
       justify-content: space-around !important;
       flex-wrap: wrap;
       gap: 27px;
   }

   .tarif-pack {
       width: 45%;
   }

   .footer-head-nav a {
       font-size: 16px;
   }

   .stat-rand-item h4 {
       font-size: 15px;
   }

   .stat-rand-item {
       padding: 20px 12px;
   }

   .stat-rand-list {
       gap: 20px;
       margin-bottom: 120px;
   }

   .ques-form {
       align-items: center;
   }

   .footer-liner-block {
       flex-direction: column !important;
   }

.home-article-price {
   display: flex;
   width: fit-content;
}


.form-md-content {
   width: 80%;
}



}


@media (max-width: 767px) {
  
.hdr-logo-name {
   font-size: 16px;
}

.hdr-block {
   flex-direction: column !important;
}

.hdr-nav-link {
   font-size: 15px;
}

.hdr-main-title {
   font-size: 21px;
   margin-bottom: 25px;
}

.our-bnft-decpic img {
   height: 360px;
   width: 490px;
}

.our-bnft-decpic img {
   font-size: 20px;
}

.our-bnft-item {
   padding: 12px;
}

.home-article-img {
   float: none;
   width: 100%;
   margin-right: 0 ;
   margin-left: 0 ;
}

.packages {
   flex-direction: column;
}

.tarif-pack {
   width: 100%;
}

.ques-form {
   flex-direction: column;
}

.footer-conts-list {
   flex-direction: column;
}

.ques-block {
   width: 100%;
}

.stat-rand-block {
   width: 100%;
}

.footer-conts-item {
   width: 100%;
}

.form-half {
   width: 100%;
}

.footer-head-nav a {
   font-size: 15px;
}




}


@media(max-width: 576px){
  
   .hdr-nav-list {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
   }

   .our-bnft-decpic {
   top: -30px;
} 

.our-bnft-decpic img {
   height: 270px;
   width: 290px;
} 

.our-bnft-list {
   flex-direction: column;
}

.our-bnft-item {
   width: 100% !important;
}

.serv-img {
   display: none;
}

.serv-title-block {
   width: 100%;
}

.serv-list {
   flex-direction: column;
}

.serv-item {
   width: 100% !important;
}

.footer-head-nav {
   flex-direction: column;
   align-items: center;
}

}

.overflowHidden{
  overflow: hidden;
}


.labelWhite{
  color: white;
}

iframe{
  border: 0;
}

.timeDInline{
  display:inline-block;
}