/*Animations*/
.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}



.fadein{
opacity: 0;
}   

@keyframes fadeinlist {
  from {opacity: 0;}
 
  to {opacity: 1;}
}

.fade-in-list{
  animation-name: fadeinlist;
  animation-duration: 0.4s;
}

@keyframes fadeinnav {
  from {opacity: 0;}
  to {opacity: 1;}
}


.fade-in-nav{
  animation-name: fadeinnav;
  animation-duration: 0.9s;
}


@keyframes memberanim {
  from {opacity: 0;transform: translateY(40px);}
  to {opacity: 1;transform: translateY(0px);}
}


.memberanimation{
  animation-name: memberanim!important;
  animation-duration: 0.2s!important;
  
}

.member-active{
  display: block!important;
}


/* End Animations*/

html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    
}

p{font-size: 17px;}


a, a:hover {
  color: inherit !important;
}
.title, .sub_title{
  font-family:'Urbanist';
  font-weight:700;
  margin:0;
}

.flex, .fixed_flex{
  display:flex;
}

.flex_content{
  width:100%;
  position:relative;
}

.padding_1x{
  padding:1rem;
}

.padding_2x{
  padding:2rem;
}

.padding_3x{
  padding:3rem;
}

.padding_4x{
  padding:4rem;
}

.big{
  font-size:3.5em;
}

.medium{
  font-size:2em;
}

.small{
  font-size:1.3em;
}




.slider {
 position: relative;
  width: 100%;
  height: 95%;
}

ul{
  padding:0;
  margin:0;
}

.slider .title{
  font-weight:400;
}

.slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  background-repeat: no-repeat;
  transition: clip .7s ease-in-out, z-index 0s .7s;
  clip: rect(0, 100vw, 100vh, 100vw);
  display:flex;
  align-items:center;
  justify-content:left;
}

.slider li:nth-child(1){
  background:linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(28,28,28,0) 100%), url("../img/slider-1.jpg");
  background-size: cover;
  background-position:center;
}

.slider li:before{
  content:"";
  position:absolute;
  top:10%!important;
  right:0;
  width:200px;
  height:200px;
  background-image:url('../img/corner-img.png');
  background-size:100% 100%;
  transform: rotate(-90deg);
  transition-delay: 1s;
  z-index:1;
}

.slider li:after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:300px;
  height:300px;
  background:url("https://i.postimg.cc/KjKbwDfR/slider-shape-2.png");
  
  background-size:100% 100%;
  transform:rotate(360deg);
transition: all 1.5s cubic-bezier(0,0,.2,1);
  z-index:1;
  background-position:center left;
}

.slider li:nth-child(2){
  background:linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(28,28,28,0) 100%), url("../img/slider-2.jpg");
      background-size: cover;
  background-position:top left;
}

.slider li:nth-child(3){
  background:linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(28,28,28,0) 100%), url("../img/slider-3.jpg");
      background-size: cover;
  background-position:0% 20%;
}

.slider article{
  max-width:60%;
  margin-top:4rem;
  color: #fff;
  z-index:11;
  margin-left: 15%;
}

.slider h3 + p {
  display: inline-block;
  color: var(--lite);
  font-weight:300;
}

.slider h3, .slider h3 + p, .slider p + .btn, li:after {
  opacity: 0;
  transition: opacity .7s 0s, transform .5s .2s;
  transform: translate3d(0, 50%, 0);
}

li.current h3, li.current h3 + p, li.current p + .btn, li.current:after {
  opacity: 1;
  transition-delay: 1s;
  transform: translate3d(0, 0, 0);
}

.slider li:before{
  transition: 0.5s;
  top:-250px !important;
}

li.current:before{
  transition-delay: 1s;
  transform: rotate(-90deg);
  top:-20px !important;
}

li.current {
  z-index: 1;
  clip: rect(0, 100vw, 100vh, 0);
}

li.prev {
  clip: rect(0, 0, 100vh, 0);
}

.slider aside {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  text-align: center;
  z-index: 10;
  
}

.slider aside a {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  background-color: white;
  margin: 0 0.2rem;
  transition: transform .3s;
}

.slider em{
  background: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

a.current_dot {
  transform: scale(1.4);
  background:#e20606 !important;
}



body{
    background-color: #f5f5f57c;
}



#intermedia-head{
    background: url('../img/inter-head.jpg'),linear-gradient(180deg, rgba(52, 98, 252, 0.699) 0%, rgba(55, 165, 255, 0.315) 100%);
    
    background-size: cover;
    background-position: center;
    height: 90vh;
    background-repeat: no-repeat;
    background-position: 0% 80%;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    color: white;
}

.navbar{
    background-color: transparent!important;
    box-shadow: none!important;
    color: white!important;
    border-bottom: 1px solid rgba(180, 180, 180, 0.13);

}

.navbar li a{
    color: white;
    font-family: 'Urbanist';
    font-weight: 600;
    font-size: 17px;
}




.navbar li{
    margin: 0px 20px;
}
.navbar li a.active{
  color: white;
}
.navbar li a:hover{
  color: red!important;
}

.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
  color: rgb(255, 255, 255);
}
.dropdown-menu li a{
  color: black;
}

.dropdown:hover>.dropdown-menu {
  display: block;
  width: 100%;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}


.dropdown-menu {
  background-color: rgb(255, 255, 255) !important;
  color: #000000;
  backdrop-filter: blur(0px) !important;
  font-family: 'Cormorant Garamond', serif;
text-transform: none;
  font-weight: 400;
  z-index: 100;
width: auto!important;
  text-align: left;
  padding: 0px;
}

.dropdown-menu .dropdown-item {
  color: rgb(0, 0, 0);
  text-align: left!important;
 
}



.dropdown-menu li .active {

border-bottom: 1px solid #FD1D1D;
 
color: #FD1D1D!important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}


.sticky{
  position: fixed!important;
  top: 0!important;
  z-index: 1000!important;
  background: rgb(29,29,29);
  background: linear-gradient(93deg, rgba(29,29,29,1) 42%, rgba(255,0,0,1) 100%);
  box-shadow: none!important;
  width: 100%;
  z-index: 1000!important;
  

  
}

#intermedia-head{
    margin-top: -10vh;
}

.main-btn{
    background: rgb(245,110,110);
    background: linear-gradient(122deg, rgba(245,110,110,1) 0%, rgba(218,0,0,1) 100%);
    border-radius: 20px;
    color: white;
    font-family: 'Urbanist';
    font-weight: 700;
    padding: 12px 30px;
}


h1,h2,h3,h4,h5,h6,p{
    font-family: 'Urbanist';
}

.pl1 {
    display: block;
    width: 8em;
    height: 8em;
  }
  
  .pl1__g,
    .pl1__rect {
    animation: pl1-a 1.5s cubic-bezier(0.65,0,0.35,1) infinite;
  }
  
  .pl1__g {
    transform-origin: 64px 64px;
  }
  
  .pl1__rect:first-child {
    animation-name: pl1-b;
  }
  
  .pl1__rect:nth-child(2) {
    animation-name: pl1-c;
  }
  
  @keyframes pl1-a {
    from {
      transform: rotate(0);
    }
  
    80%,
        to {
      animation-timing-function: steps(1,start);
      transform: rotate(90deg);
    }
  }
  
  @keyframes pl1-b {
    from {
      animation-timing-function: cubic-bezier(0.33,0,0.67,0);
      width: 40px;
      height: 40px;
    }
  
    20% {
      animation-timing-function: steps(1,start);
      width: 40px;
      height: 0;
    }
  
    60% {
      animation-timing-function: cubic-bezier(0.65,0,0.35,1);
      width: 0;
      height: 40px;
    }
  
    80%,
        to {
      width: 40px;
      height: 40px;
    }
  }
  
  @keyframes pl1-c {
    from {
      animation-timing-function: cubic-bezier(0.33,0,0.67,0);
      width: 40px;
      height: 40px;
      transform: translate(0,48px);
    }
  
    20% {
      animation-timing-function: cubic-bezier(0.33,1,0.67,1);
      width: 40px;
      height: 88px;
      transform: translate(0,0);
    }
  
    40% {
      animation-timing-function: cubic-bezier(0.33,0,0.67,0);
      width: 40px;
      height: 40px;
      transform: translate(0,0);
    }
  
    60% {
      animation-timing-function: cubic-bezier(0.33,1,0.67,1);
      width: 88px;
      height: 40px;
      transform: translate(0,0);
    }
  
    80%,
        to {
      width: 40px;
      height: 40px;
      transform: translate(48px,0);
    }
  }

  svg{
    transition-duration: 0.6s;

  }
  svg:hover{
    scale: 1.3;
    transition-duration: 0.6s;
  }

  .head-box{
    
    background: rgb(0,0,0);
    background: linear-gradient(122deg, rgba(0,0,0,1) 0%, rgba(43,43,43,1) 100%);
    background: url('../img/pattern-5.jpg');
background-size: cover;

    border-radius: 10px;
    padding: 30px 40px;
    padding-bottom: 20px;
    color: black;
  }

  .head-box-1{
    background: url('../img/feature-bg-1.png');
background-size: cover;
  }

  .head-box-2{
    background: url('../img/feature-bg-2.jpg');
background-size: cover;
color: white;


  }

  .head-box-3{
    background: url('../img/feature-bg-3.jpg.png');
    background-size: cover;
    color: white;
   
  }

  .head-box:hover{
    box-shadow: rgba(102, 0, 0, 0.664) 0px 14px 28px, rgba(99, 0, 0, 0.651) 0px 10px 10px;
    transition-duration: 0.3s;
  }


  .center-con {
    
   
    align-items: center;
    justify-content: center;
}

.round {
    position: relative;
    border: 2px solid #ffffff88;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.down-span {
    z-index: 999;
    height: 2px;
    margin:1px;
    width: 12px;
    background: #ffffffd3;
    transition: 0.4s ease;
}

.down-span:first-child {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    left: 25%;
    bottom: 35%;
}

.down-span:nth-child(2) {
    display: block;
    position: absolute;
    transform: rotate(-45deg);
    left: 45%;
    bottom: 35%;
}

.down-span:nth-child(3) {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    left: 25%;
    bottom: 54%;
}

.down-span:nth-child(4) {
    display: block;
    position: absolute;
    transform: rotate(-45deg);
    left: 45%;
    bottom: 54%;
}

.round:hover .down-span:nth-child(1) {
    transform: rotate(-135deg);
}

.round:hover  .down-span:nth-child(2) {
    transform: rotate(135deg);
}

.round:hover .down-span:nth-child(3) {
    transform: rotate(225deg);
}

.round:hover .down-span:nth-child(4) {
    transform: rotate(-225deg);
}

.about-row{
  background: url('../img/phone-bg.jpg');
  background-size:cover;
  background-position:bottom;
  background-repeat: no-repeat;
  padding-bottom: 0px;
  border-radius: 20px;
  
  
}

.card-content{
    background: rgb(255,66,66);
    background: linear-gradient(122deg, rgba(255,66,66,1) 0%, rgba(115,0,0,1) 100%);
border-radius: 5px;
}

.service-card{
    box-shadow: rgba(0, 0, 0, 0.12) 0px 5px 8px, rgba(0, 0, 0, 0.24) 0px 5px 6px;
    transition-duration: 0.3s;

}

.service-card:hover{
    box-shadow: rgba(94, 8, 8, 0.3) 0px 15px 30px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    transition-duration: 0.3s;
}


.service-box{
    background: url('../img/dots.png');
    background-color: rgb(255, 255, 255);
    background-size: 35%;
    background-position: 0% 0%;
    background-repeat: no-repeat;
    padding: 2.4em;
    padding-bottom: 0em;
    border-radius: 5px;
    border: 1px solid rgba(219, 219, 219, 0.849);
    overflow: hidden;
}

.icon-service{
    background-color: rgb(241, 241, 241);
    width: 130px;
    padding: 2.5em;
    border-radius: 80px 10px 10px 0px;
    margin-left: 80%;
    margin-bottom: -3%;
    margin-top: -5vh;
}

button.learn-more{
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    
    font-family: 'Urbanist';
   }
   
   button.learn-more {
    width: 12rem;
    height: auto;
   }
   
   button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: rgb(245,110,110);
    background: linear-gradient(122deg, rgba(245,110,110,1) 0%, rgba(218,0,0,1) 100%);
    border-radius: 1.625rem;
   }
   
   button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
   }
   
   button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
   }
   
   button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.15rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    
   }

   .service-box{
    transition-duration: 0.4s;

   }

   .service-box:hover{
    box-shadow: rgba(0, 0, 0, 0.17) 0px 18px 50px -10px;    transition-duration: 0.4s;
    transform: translateY(-20px);
   }
   
   .service-box:hover .circle {
    width: 100%;
   }
   
   .service-box:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
   }
   
   .service-box:hover .button-text {
    color: #fff;
   }

   .service-box:hover .icon-service
   {
    background: rgb(245,110,110);
    background: linear-gradient(122deg, rgba(245,110,110,1) 0%, rgba(218,0,0,1) 100%);
    transition-duration: 0.4s;
   }


   .service-box:hover .icon-service i
   {
    color: white!important;
    transition-duration: 0.4s;

   }

.channel-box{
  background-color: #c2d9f15d;
  padding: 20px;
  padding-bottom: 15px;
  border-radius: 10px;
  margin: 10px 0px;
}

.channel-arrow{
  background-color: white;
  width: 40px;
  height: 40px;
  padding: 2px 6px;
  
  border-radius: 50%;
  display: flex;
  align-items: center;
}

.channel-active{
  color: red;
}

.channel-box p{
  color: red!important;
}

.channel-active .channel-arrow{
    background-color: red;
}

.channel-active i{
  color: white!important;
}

.channel-box:hover{
  color: red;
  transition-duration: 0.3s;

}

.channel-box:hover .channel-arrow{
  background-color: red!important;
  transition-duration: 0.3s;

}

.channel-box:hover i{
  color: white!important;
  transition-duration: 0.3s;
}

#channel-adv{
  background-color: #fafafa;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}


.adv-content{
  display: none;
  
}

.adv-content-active{
  display: flex;
}

.check-list-adv i{
  color: red;
}

.web-plan{
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  padding: 25px;
  transition-duration: 0.4s;
  border-radius: 20px;

}
.web-plan:hover{
  box-shadow: rgba(146, 28, 28, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  
  transition-duration: 0.4s;

}


.web-base{
  background: url('../img/web-bg-white.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: black;
}

.web-standard{
  background: url('../img/web-bg-black.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: white;
}

.web-commerce{
  background: url('../img/web-bg-red.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: white;
}



#contact-banner{
 background: url('../img/contact-bg.jpg')rgba(0, 0, 0, 0.7);
  padding: 5em 0em;
  background-position: 0% 20%;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-attachment: fixed;
  color: white;
  display: flex;
  align-items: center;
  
}

.contact-box{
  background: url('../img/contact-box-home.png')rgba(0, 0, 0, 0.25);
  padding: 2em;
  border-radius: 15px;
  background-blend-mode: multiply;
}

.phone-icon-box{
  color: red;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  padding: 0.75em;
}

#social-media{
  
  background-position: center;
  padding: 4em 0em;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}

.social-box{
  border: 1px solid rgb(189, 189, 189);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.social-btn-box{
  background-color: rgba(161, 0, 0, 0.068);
  padding: 25px;
}
.gold-btn-box{
  background-color: #ffd9001a;
  padding: 25px;
}
.social-head{
  padding: 15px;
}

.service{
  display: none;
}

.active-host{
  display:block;
  animation: fade-in 2s ;
  color: black;
}

.text-secondary{
  border-bottom: 2px solid transparent;
  font-size: 18px;
}

.active-text{
  color: black!important;
  border-bottom: 2px solid red;
}


#proces-section{
  background: url('../img/steps-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

footer{
  background: url('../img/footer-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  background-size: cover;
  padding: 3em 0em;
}

#pree-footer .container{
  background: rgb(255,255,255);
  background: linear-gradient(344deg, rgba(255,255,255,1) 30%, rgba(233,233,233,1) 100%);
  padding: 20px;
  box-shadow: rgba(255, 0, 0, 0.4) -5px 5px, rgba(255, 14, 14, 0.3) -10px 10px, rgba(255, 12, 12, 0.2) -15px 15px, rgba(255, 18, 18, 0.1) -20px 20px, rgba(255, 18, 18, 0.05) -25px 25px;
}

.footer-link:hover{
  color: red;
}

.social-footer{
  border: 1px solid rgba(255, 255, 255, 0.63);
  padding: 6px 10px;
  padding-top: 8px;
  border-radius: 4px;
  margin-right: 0.4em;
}

.social-footer:hover{
  background-color: red;
  border: 1px solid rgba(255, 0, 0, 0.63);
  color: white;

}


.sherbimet-footer{
  padding-left: 10px!important;
}


.menu {
  z-index: 999;
  position: fixed;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.menu .share i.fa {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #FF0004;
  border-radius: 2px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.menu .share:hover.top .submenu li:nth-child(1) {
  opacity: 1;
  top: -51px;
 
  transition-delay: 0.08s;
  transform: rotateY(0deg);

}
.menu .share:hover.top .submenu li:nth-child(2) {
  opacity: 1;
  top: -102px;
  transition-delay: 0.16s;
  transform: rotateY(0deg);

}
.menu .share:hover.top .submenu li:nth-child(3) {
  opacity: 1;
  top: -153px;
  transition-delay: 0.24s;
  transform: rotateY(0deg);

}
.menu .share:hover.top .submenu li:nth-child(4) {
  opacity: 1;
  top: -204px;
 
  transition-delay: 0.32s;
  transform: rotateY(0deg);

}
.menu .share:hover.top .submenu li:nth-child(5) {
  opacity: 1;
  top: -275px;
  
  
  transition-delay: 0.4s;
  transform: rotateY(0deg);

}
.menu .submenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.menu .submenu li {
  transition: all ease-in-out 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.menu .submenu li a {
  color: #212121;
}
.menu .submenu li a:hover i.fa {
  color: #fff;
}
.menu .submenu li a:hover.facebook i.fa {
  background-color: #3b5999;
}
.menu .submenu li a:hover.twitter i.fa {
  background:  linear-gradient(
    to right,
    #833AB4,#FD1D1D,#FCB045
  );
}
.menu .submenu li a:hover.googlePlus i.fa {
  background-color: #0073AF;
}
.menu .submenu li a:hover.instagram i.fa {
  background-color: #47C357;
}
.menu .submenu li:nth-child(1) {
  transform: rotateX(45deg);
}
.menu .submenu li:nth-child(2) {
  transform: rotateX(90deg);
}
.menu .submenu li:nth-child(3) {
  transform: rotateX(135deg);
}
.menu .submenu li:nth-child(4) {
  transform: rotateX(180deg);
}

.menu.bottomRight {
  bottom: 10px;
  right: 10px;
}
#reviews{
  background: url('../img/review-pattern-bg.jpg')rgba(255, 255, 255, 0.25);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  height: 60vh;
  margin-bottom: -12vh;
}

.review-box{
  position: relative;
  
  border-top: 6px solid red;
  background: white;
  
 /* Replace 'your-image-url.jpg' with your image */
  background-size: 280%;
  background-position: center;
padding: 20px;
  text-align: center;
  border-radius: 5px 5px 0px 0px;
}



/*home media query*/

@media screen and (max-width: 920px) {
  html,body {
    overflow-x: hidden;
  }
  .navbar{
    background: rgb(29,29,29);
    background: linear-gradient(344deg, rgba(29,29,29,1) 42%, rgba(255,0,0,1) 100%);
    position: fixed;
    width: 100%;
    z-index: 210!important;
    padding-bottom: 20px!important;
    padding: 10px 0px;
    border-bottom: 0px;
  }
  .top-bar{
    display: none!important;
  }
  header{
      height:70vh;
      position:relative;
  }
  
  .cs-down{
      display:none;
  }

  .slider{
      height:100%;
      position: relative;
  }
  
  .slider article{
      width:100%;
      margin-top:2rem;
  }
  
  .slider li:nth-child(2){
      background-position:top center;
  }
  
  .slider li:nth-child(3){
      background-position:top center;
  }
  .slider article{
    max-width:90%;
    margin-top:4rem;
    color: #fff;
    z-index:11;
    margin-left: 5%;
  }
  
  #contact-banner{
    background-attachment: scroll;
  }
  
  li.current:before{
      top:-30px;
      right:-10px;
  }
  .flex{
    flex-wrap:wrap;
}

.padding_1x, .padding_2x, .padding_3x, .padding_4x{
    padding:1rem;
}

.big{
    font-size:1.8em;
}

.medium{
    font-size:1.3em;
}

.small{
    font-size:1.1em;
}

.btn{
    padding:0.5rem 1rem;
}

.main-title{
  font-size:60px!important;
}

#head-boxes{
  margin-top: -0vh!important;
}

.adv-content-active{
  display: block;
}


.service-box{
  margin: 10px;
}
.ddot-inl-service{
  display: block!important;
}
.planet-hostim{
  margin-left: 0px!important;
}
.web-plan{
  margin: 1em 0em;
}
.social-box{
  margin: 1em 0em;
}
.progress-image{
  display: none;
}
.main-socials{
  bottom: 5px;
  right: 5px;
}

.celi{
  margin-top: 0px !important;
}

}

/*portofoli-klienteve.html*/
.portofolio-bg{
  background:linear-gradient(90deg, rgba(195,195,195,0.5242471988795518) 30%, rgba(252,70,107,0) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;

}
.portofolio-bg1{
  background: url('../img/portofoli/9-99500_red-shapes-red-shape-png.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18%;
  background-blend-mode: multiply;
}
#exTab3{
  position: relative;
  margin-top: -25px;
  width: 100%;
  justify-content: center;
  align-items: center;

}
.nav-pills{
  box-shadow:  #99141459 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
border-radius: 10px;
  justify-content: space-between;
  
  margin-bottom: 20px !important;
  width: 100%;
  background-color: #ffffff;

 display: flex;
 text-align: center !important;
 align-items: center;
}
.nav-pills .active{
  border-radius: 10px;

  background: linear-gradient(122deg, rgba(245,110,110,1) 0%, rgba(218,0,0,1) 100%);;
  width: 16%;
  text-align: center;
  color: white;
}
 .nav-pills > li > a {
  border-radius: 4px 4px 0 0 ;
}
.nav-pills > li{
padding: 10px ;
margin: 0px;
width: 16%;
}


.nav-pills a{
  font-family: 'Urbanist';
  font-weight: 600;
  font-size: 20px;
}

.nav-pills a:hover{
  color:black;
}


 .tab-content {
  color : white;
 

}

.item-card {
  position: relative;
  overflow: hidden;
margin-top: 40px;
margin-bottom: 40px;
}
.text-with-lines {
  display: flex;
  align-items: center;
  text-align: center;
}

.text-with-lines::before,
.text-with-lines::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #FF0000;
}

.text-with-lines::before {
  margin-right: 10px; /* Adjust space between text and line */
}

.text-with-lines::after {
  margin-left: 10px; /* Adjust space between text and line */
}

@media(max-width:1000px){
    
.hr-tag{
  display: block !important;
}
  .portofolio-bg{
    background: linear-gradient(190deg, rgba(195,195,195,0.5242471988795518) 30%, rgba(252,70,107,0) 100%);
  }
  .portofolio-bg1{
    background: url('../img/portofoli/9-99500_red-shapes-red-shape-png\ -\ Copy.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    background-blend-mode: multiply;
  }
  .nav-pills .active{
    width: 33.3% !important;
  }
  .nav-pills > li{
    padding: 20px 0px 20px 0px;
    margin: 0px;
    width: 33.3% !important;
    font-size:12px !important;
    }
    .nav-pills a {
    font-family: 'Urbanist';
    font-weight: 600;
    font-size: 16px;
}

}
/*end portofoli-klienteve.html*/



/*start rezervime direkte*/

#rezervime-direkte{
  background: url('../img/cover-bg.png');

  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 20%;
  background-blend-mode: multiply;
height: 45vh;
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: -80px;
}

@media(max-width:900px){
  #rezervime-direkte{
    background-position: 0% 10%;
  }
  #rezervime-direkte h1{
    padding-top: 4em;
  }
  .rezervime-text-align{
    text-align: start!important;
  }
}

/*end rezervime direkte*/


/*start domain and hosting*/

#domain-hosting{
  background: url('../img/cover-bg.png');

  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 20%;
  background-blend-mode: multiply;
height: 45vh;
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: -80px;
}

@media(max-width:900px){
  #domain-hosting{
    background-position: 0% 10%;
  }
  #domain-hosting h1{
    padding-top: 4em;
  }
  #domain-hosting .input-group{
    width: 100%!important;
  }
 .trans-dom-img{
  width: 80%!important;
  padding: 0px 40px;
 }
}



.domain-tld-box{
  background: url('../img/feature-bg-1.png');
  background-size: cover;
  background-position: 80% 0%;
  padding-left: 20px;
  padding-bottom: 40px;
  border-radius: 15px;
  margin: 10px 0;
  
  transition-duration: 0.4s;

}

.domain-tld-popular{
  background: url('../img/feature-bg-2.jpg');
  background-size: cover;
  background-position: 80% 0%;
  padding-left: 20px;
  padding-bottom: 40px;
  border-radius: 15px;
  margin: 10px 0;
 
  transition-duration: 0.4s;
}

.domain-tld-box:hover{
  box-shadow: rgba(255, 0, 0, 0.4) -5px 5px, rgba(255, 14, 14, 0.3) -10px 10px, rgba(255, 12, 12, 0.2) -15px 15px, rgba(255, 18, 18, 0.1) -20px 20px, rgba(255, 18, 18, 0.05) -25px 25px;

  transition-duration: 0.4s;
}

.ofert{
  background-color: #000000;
  width: 170px;
  padding: 5px 20px;
  border-radius: 0px 15px 0px 15px;
}

.tld-btn-5{
  background-color: rgb(206, 0, 0);
  padding: 10px 25px;
  color: white;
  font-family: 'Urbanist';
}
.tld-btn-5:hover{
  background-color: rgb(206, 0, 0);
  padding: 10px 25px;
  color: white;
  font-family: 'Urbanist';
}

/*end domain and hosting*/


/* start marketing */

#marketing-head{
  background: url('../img/cover-bg.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 20%;
  background-blend-mode: multiply;
height: 45vh;
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: -80px;
}

/* end marketing */

/*start rreth-nesh  */
#rreth-nesh-head{
  background: url('../img/cover-bg.png');
  height: 45vh;
  background-size: cover;
  background-position: 0% 20%;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  margin-top: -8vh;
}


.vlerat-box{
  text-align: start;
  background-color: rgb(245, 245, 245);
  background-size: cover;
  background-position: center;
  color: black;
  padding: 20px;
  border-radius: 10px;
  background-position: 80% 10%;
  
}

.vlerat-box:hover{
  background-color: white;
  transition-duration: 0.3s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}


.vlerat-box h4{
  color: red;
  
}

.vlerat-box p{
  font-size: 18px;
}

.vlera-icon{
  background: rgb(0, 0, 0);
  background: linear-gradient(344deg, rgb(0, 0, 0) 0%, rgb(92, 92, 92) 100%);
  display: flex;
  align-items: center;
  padding: 0px 10px;
  border-radius: 7px;
  
}

.vlerat-box:hover .vlera-icon{
  background: rgb(55,22,22);
  background: linear-gradient(344deg, rgb(156, 6, 6) 0%, rgba(255,0,0,1) 100%);
  transition-duration: 0.3s;
}


.vlera-content{
  padding-left: 20px;
  padding-top: 10px;
  
}


.member{
  background: url('../img/edi.jpg'),linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(99,99,99,1) 35%, rgba(255,255,255,1) 100%);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  height: 65vh;
  padding: 2em;
}

.member-2{
  background: url('../img/ori.jpg'),linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(99,99,99,1) 35%, rgba(255,255,255,1) 100%);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  height: 65vh;
  padding: 2em;
}

.member:hover{
  background: url('../img/edi.jpg'),linear-gradient(0deg, rgba(0,0,0,1) 0%, rgb(190, 190, 190) 29%, rgba(255,255,255,1) 100%);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
}

.member-2:hover{
  background: url('../img/ori.jpg'),linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(190, 190, 190) 29%, rgba(255,255,255,1) 100%);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  transition-duration: 0.4s;
}

.member-title{
  margin-bottom: -24px;
}

.member-share{
  background-color: white;
  width: 50px;
  padding: 10px 15px;
  margin-top: 4px;
}

.member-share-2{
  margin-top: 4px;
  background-color: white;
  width: 50px;
  padding: 10px 15px;
  margin-top: 4px;
  display: none;
}

.member-share-3{
  margin-top: 4px;
  background-color: white;
  width: 50px;
  padding: 10px 15px;
  margin-top: 4px;
  display: none;
}



.about-bg{
  background: url('../img/cover-bg1.png'),  linear-gradient(90deg, rgba(0, 0, 0, 0.371) 50%, rgba(252,70,107,0) 100%);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 20%;
  background-blend-mode: multiply;
padding-top: 100px;
padding-bottom: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: -80px;
  margin-bottom: 50px;
}

.circle1 {
  position: relative;
  margin-bottom: -80px;
  width: 100px;  /* Example width */
  height: 100px; /* Example height */
  background-color: #EA2127; /* Example background color */
  border-radius: 50%; /* Makes the div a circle */
  display: flex;
  justify-content: center;
  align-items: center;
z-index: 100;
  transition: 0.3s ease-in-out;
}


.item-card1{
border-radius: 20px;
  background-image:url('../img/white-red-bg.jpg');
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 10px 10px 37px -23px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 37px -23px rgba(0,0,0,0.75);
box-shadow: 10px 10px 37px -23px rgba(0,0,0,0.75);
padding: 40px;
margin-left: 30px;
color: rgb(0, 0, 0);

}

.col1:hover .circle1{
  transition: 0.3s ease-in-out;
  transform: translateY(-20px);
}

/*end rreth-nesh  */




/*channel-manager.html*/
.channel-bg{
  background: url('../img/cover-bg.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 20%;
  background-blend-mode: multiply;
height: 45vh;
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: -80px;
}

.channels{
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;

  padding-top: 50px;
  padding-bottom: 100px;
  margin-top: 0px;
  position: relative;
  text-align: center;
}

.channel-box1{
  margin: 10px 0px 10px 0px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.874);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.contact-box1{
  background: url('../img/cover-bg1.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-blend-mode: multiply;
margin-top: 100px;
margin-bottom: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 0px;
  position: relative;
  text-align: center;
}
.moving-image {
     
  position: relative;
  border-radius: 30px;
  animation: moveUpDown 5s linear infinite; /* Change 2s to control the speed of movement */
}

@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Adjust the distance you want the image to move up */
  }
}




/*end channel-manager.html*/

/*pms-program-hoteli.html*/
.pms-services{
  padding-top: 100px;
  padding-bottom: 100px;
}
.pms-service{
  background: white;
  background-image: url('../img/pms-shape.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size:40%;

  background-blend-mode: multiply;
  transition: 0.4s ease-in-out;

margin: 10px 0px 10px 0px;
padding: 30px 0px 30px 0px;
  text-align: left;
}
.pms-service:hover{
  transform: translateY(-10px);
  transition: 0.4s ease-in-out;
}
.pms-icon{
  background: url('../img/portofoli/shape-bg.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
padding: 20px 0px 20px 0px;
text-align: center;
}
.second-pms{
  background: url('../img/cover-bg1.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 20%;
  background-blend-mode: multiply;
}
@media(max-width:1000px){
  .channel-bg{
    background: url('../img/cover-bg.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 20%;
    background-blend-mode: multiply;
  height: 45vh;
  padding-top: 20vh;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: -80px;
  }
    .contact-bg{

    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 20%;
    background-blend-mode: multiply;
  height: 45vh;
  padding-top: 20vh;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: -80px;
  }
  #domain-hosting{
    background: url('../img/cover-bg.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 20%;
    background-blend-mode: multiply;
  height: 45vh;
  padding-top: 7vh;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: -80px;
  }
}
/*end pms-program-hoteli.html*/

/*faqe-interneti.html*/

.web-business{
  background: url('../img/web-bg-black.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: white;
  }
/*end faqe-interneti.html*/

/*social-media.html*/
.row1{
  position: relative;
  margin-top: -120px;
}
.circle-container{
  position: relative;
  margin-left: 120px;
  width: 150px; /* Adjust the size of the circle */
  height: 150px; /* Adjust the size of the circle */
  border-radius: 50%;
  background-color: #FF0004; 
position: relative;
margin-top: -100px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 24px; /* Adjust the size of the icon */
}
.circle {
position: relative;
  width: 150px; /* Adjust the size of the circle */
  height: 150px; /* Adjust the size of the circle */
  border-radius: 50%;
  background-color: #FF0004; 

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px; /* Adjust the size of the icon */
}

.icon {
  color: white;/* Unicode for the icon */
}

.circle:hover{
  background-color: white;
}

.circle:hover .icon{
  color: #FF0000;
}
/*end social-media.html*/

/*contact.html*/
.contact-bg{
  background: url('../img/slider-3.jpg'),  linear-gradient(90deg, rgba(0,0,0,0.7763480392156863) 50%, rgba(252,70,107,0) 100%);
  background-position: right;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 20%;
  background-blend-mode: multiply;
height: 45vh;
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: -80px;
}
#contactForm  {

  
    background: url('../img/cover-bg1.png');
    background-position: 95% 10%;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    padding: 40px;
  height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  #contactForm   label {
    display: block;
    margin-bottom: 8px;
    color: white;
  }
  #contactForm  input,#contactForm  textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
  
    border: 1px solid #EC1C25;
    color: white !important;
  }
  .contact-button {
    background-color: #EC1C25 !important;
    color: #fff !important;
    padding: 10px 15px;
    border: none;
  
    cursor: pointer;
    width: 100%;
  }
  #contactForm  .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    background-color: black;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #EC1C25 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  .swal2-styled.swal2-confirm {
    background-color: #ffffff !important;
    color: #e20606 !important;
  }
  .swal2-popup {
  
    background:  linear-gradient(93deg, rgba(29,29,29,1) 42%, rgba(255,0,0,1) 100%) !important;
    color: rgb(255, 255, 255) !important;
  
  }
  .swal2-icon.swal2-error {
    border-color: #ffffff !important;
    color: #ffffff !important;
  }
  .swal2-title {
    color: #ffffff !important;
   
  }
  .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    
    background-color: #ffffff !important;
  }
  .rc-anchor-normal .rc-anchor-content {
    /* height: 74px; */
    /* width: 206px; */
    display: none !important;
}
  .circle-container{
    position: relative;
    margin-left: 120px;
    width: 150px; /* Adjust the size of the circle */
    height: 150px; /* Adjust the size of the circle */
    border-radius: 50%;
    background-color: #FF0004; 
  position: relative;
  margin-top: -100px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 24px; /* Adjust the size of the icon */
  }
  .circle {
  position: relative;
    width: 60px; /* Adjust the size of the circle */
    height: 60px; /* Adjust the size of the circle */
    border-radius: 50%;
    background-color: #FF0004; 
  
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px; /* Adjust the size of the icon */
  }
  
  .icon {
    color: white;/* Unicode for the icon */
  }
  
  .circle:hover{
    background-color: white;
  
  }
  
  .circle:hover .icon{
    color: #FF0000;
  }


/*end contact.html*/



/*easybill.html*/
.invoice-box{
  background: url('../img/cover-bg1.png');
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-blend-mode: multiply;
margin-bottom: 100px;
  padding-top:50px;
  padding-bottom: 50px;

  position: relative;

}
.easybill-contact{
  padding: 30px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
/*end easybill.html*/

/* start finance soft*/

#finance-section .container{
  background-color: #e4ebf78a;
  border-radius: 40px;
  padding: 4em;
}


.finance-bg{
  background: url('../img/finance-soft-bg.jpg')rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  height: 40vh;
  display: flex;
  align-items: end;
  color: white;
  border-radius: 20px;
  padding: 20px;
  margin: 40px 0px;
}

.karkateristika-financa{
  background-color: white;
  border-radius: 25px;
  padding: 3em 1em;
  margin: 1em 0em;
}


@media(max-width:1000px){
  .finance-bg{
    height: auto;
  }
}
/*end finance soft */


/*start rental-soft */

.rental-col{
  padding: 10px;
  width: 48%;
  margin: 30px 0px 30px 0px;
  background: #FFFFFF;
}

@media(max-width:1025px){
   #domain-hosting, .channel-bg, .finance-bg{
    background: url('../img/cover-bg.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 20%;
    background-blend-mode: multiply;
  height: 50vh;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: -100px;
  }
  .contact-bg{
  background: url('../img/slider-3.jpg'),  linear-gradient(90deg, rgba(0,0,0,0.7763480392156863) 50%, rgba(252,70,107,0) 100%);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 20%;
    background-blend-mode: multiply;
  height: 50vh;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: -100px;
}
  .rental-col{
    width: 90%;
}
}

/* end rental soft */

/*start e-table.html*/
.etable-box{
  padding: 20px;
  margin: 20px 0px 20px 0px;
  border-radius: 20px;
}
/*end e-table.html*/