<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');

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

a {
    text-decoration: none;
    color: #9f9f9f;
}
    
 a:hover {
    color: #fff;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 35px;
    color: white;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p {
    line-height: 1.6;
    font-size: 16px;
}


body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    color: #9f9f9f;
    background: #0F0F0F;
    
}

@media (min-width: 768px) and (max-width: 991px) {
    p {
        font-size: 16px;
    }

}

@media (max-width: 767px) {
    p {
        font-size: 14px;
    }

    h1 {
        font-size: 25px;
        line-height: 30px;
    }

    h5 {
        font-size: 15px;
    }
}

/*/////////////// loading page animation ///////////////////// */ 

#loading-page {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #0f0f0f;
}

.loading-animation {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInAndMove 1.4s ease-in-out, bounceAndFade 1.4s ease-in-out;
    /* background-image: url('wood_texture.jpg');  */
    background-size: cover;
    
  }

.loading-animation i {
  font-size: 80px;
  color: #FFF; 
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 
}

/* @keyframes fadeInAndMove {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
} */

@keyframes bounceAndFade {
    0%, 100% {
      opacity: 0;
      transform: translateY(0);
    }
    25%, 75% {
      opacity: 1;
      transform: translateY(-15px);
    }
    50% {
      opacity: 0.7;
      transform: translateY(-5px);
    }
  }

@keyframes scaleUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
  
}


header {
    position: relative;
    width: 100%;
    z-index: 30;
    background: #0F0F0F;
}

.menuSection {
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}

.menu {
    list-style: none;
    padding: 26px 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.menu li {
    transition: .3s;
}

.menu li:hover {
    color: #fff;
}
.logoUppercase {
    width: 130px;
    height: 71px;
}

.logo {
    display: flex;
    align-items: center;  
}
.logo img {
    width: 130px;
    
}
 
.menuButton {
    background: #323232;
    color: #fff;
    display: inline-block;
    transition: .3s;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
}

.menuButton:hover {
    background: #fff;
    color: #323232;
}

.hamburger {
	position: relative;
	display: block;
	width: 25px;
	cursor: pointer;
	appearance: none;
	background: none;
	outline: none;
	border: none;
}

.hamburger .bar, .hamburger:after, .hamburger:before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #FFF;
	margin: 6px 0px;
	/* transition: 0.4s; */
}

.hamburger .bar:focus-visible, .hamburger:after:focus-visible, .hamburger:before:focus-visible {
    outline: none;
}

.hamburger.is-active:before {
	transform: rotate(-45deg) translate(-10px, 6px);
    transition: 0.4s;
}

.hamburger.is-active:after {
	transform: rotate(45deg) translate(-4px, 1px);
    transition: 0.4s;
}

.hamburger.is-active .bar {
	opacity: 0;
}

.mobileMenu {
    position: absolute;
    top: calc(0% - 222px);
    width: 100%;
    background: #0F0F0F;
    transition: 0.7s;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 30px;
}


.mobileMenu a {
	display: block;
	text-align: center;
	color:#9f9f9f;
	text-decoration: none;
    margin: 0 auto;
}

.mobileMenu a:hover {
	background-color: #132e1a;
}

.mobileMenu.is-active {
	top: calc(0% + 67px);
}
/*///////////////////// Responsive menu design ///////////////////// */

/* for dekstop */
@media (min-width: 992px) {

    .mobileMenu {
        display: none;
    }
    .hamburger {
        display: none;
    }
}
/* for tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .menu {
        gap: 30px
    }
    .menuSection {
        padding: 20px 20px;
    }
    .menuSection nav {
        display: none;
}   
    .menuButton {
        display: none;
}}

/* for mobile */
@media (max-width: 767px) {
    .menu {
        gap: 30px
    }
    .menuSection {
        padding: 20px 20px;
    }
    .menuSection nav {
        display: none;
}   
    .menuButton {
        display: none;
}
}

/*//////////////////////// body elements /////////////////////// */


.mainSections {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    gap: 24px;
    padding: 24px 12px 24px  12px;
   
}
.shadowBox {
    padding: 50px 30px 20px 30px;
    border-radius: 30px;
    gap: 30px;
    /* background-color: #0F0F0F; */
    position: relative;
    border: 0.1px solid;
    border-color: #dfdede26;
}

.shadowBox::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
    border-radius: 30px;
    opacity: 0.25;
}

.mainHeroSection {
    margin-top: 50px;
}

.heroSection {
    display: grid;
    grid-template-columns: 1fr 2fr ;
    /* gap: 30px; */
    min-height: 55vh;
    padding: 20px 30px 0px 30px;
    


   
  


  
    

}

.heroBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-radius: 0px 0 30px 30px !important;


}

.heroBox h1 {
    font-size: 30px;
}


.heroBox div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.heroBox div span {
    gap: 10px;
    display: flex;
}

.heroBox div span i {
    padding: 0 8px 0 0;
} 

.wordpressPhotoSection {
    /* background-image: url(Images/wordpress-simple\ \(1\).svg); */
    /* background-repeat: no-repeat;
    background-size: contain; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center; 

}

.wordpressPhotoBox {
    /* background-image: url("Images/wordpres-svetainiu-kurimas.webp"); */
    background-size: contain; 
    background-repeat: no-repeat;
    /* box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5); */
    transition: transform 0.5s ease; /* Prideda sklandإ³ perؤ—jimؤ… */
    height: 100%;
    width: 100%;
    opacity: 0.9;
    /* border-radius: 0 25px 25px 0; */
    
   
}

.wordpressPhotoBox  img {
    height: auto;
    max-width: 100%;
   
    
}

.mainValues {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.mainValues div {
    gap: 10px;
    display: flex;
    flex-direction: column;
}
/* .mainValues div h3  {
    color: white;
    font-size: 25px;
} */

.mainValues div p {
    text-align: center;
}

.mainValues div span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse; 
    gap: 8px;
    color: #ddcece;
    font-size: 25px;
    font-weight: 500;
 

    
}




.mainHeading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 60px;
}

.mainHeading h2 {
    color: #ddcece;
    font-size: 35px;

}

.fa-regular.fa-chess-rook {
    font-size: 25px;
}


.servicesSection {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Create 3 equal-width columns */
    gap: 20px;
   
}

.planPremium {
    border: 0.1px solid;
    border-color:rgb(0 66 198);
}

.plans  {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 1s;
}

.plans:hover {
    scale: 1.03;
    transition: 1s;
}

.productBadge {
    position: absolute;
    top: -18px;
    align-self: center
    
}

.productBadge div {
    background-color: rgb(0 66 198);
    border-radius: 30px;
    padding: 8px 55px;
}

.productBadge div h4 {
    color: white;
    text-align: center;
    
}

.planName {
    border-bottom: 0.5px solid;
    border-color: rgb(255 255 255 / 38%);
    padding-bottom: 20px;
}

.planName h3 {
    color: white;
    text-align: center;
    margin-bottom: 4px;
    font-size: 25px;
}

.planName p {
    text-align: center;
    font-size: 14px;
}

.servicesList {
  margin-bottom: 15px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}



.servicesList ul {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.servicesList ul li {
    display: none;
    gap: 10px;
    font-size: 14px;

}

.servicesList ul li.visible {
    display: flex;
    justify-content: flex-start;
    align-items: center;
 
}


.spanText {
    width: 100%;
    display: grid;
    /* justify-content: flex-start; */
    /* gap: 7px; */
    grid-template-columns: 0.3fr 4fr;
    text-align: left;
   
}

.spanTextAdditional {
    width: 100%;
    display: grid;
    grid-template-columns: 0.4fr 4fr;
    text-align: left;
}
.elementorProGap {
    gap: 3px;
}


.spanQuestion {
    
    display: flex;
    justify-content: center;
    
   
    
}


/* .servicesList ul li span {
    width: 90%;
    display: flex;
    gap: 10px;
} */


.showMore {
    display: block;
    background: none;
    font-size: 15px;
    width: 100%;
    padding: 0;
    color: #9f9f9f;
    border: none; 
}

.showMore:hover {
    cursor: pointer;
}

.showMore i {
    margin-left: 5px;
    color: #9f9f9f;     
}


.check {
    fill: #00b090;
    width: 13px;
}
.check-x {
    width: 10px;
    fill: #fc5185;
}

.check-orange {
fill: #ffcd35;
width: 13px;
}


/* .question {
    width: 8.5px;
    fill:  rgb(255 255 255 / 44%);
    display: flex;
    justify-content: center;
    align-items: center;

} */




.fa-solid.fa-check {
    color: #00b090;  
}

.fa-solid.fa-check.orange {
    color:#ffcd35;
}

.fa-solid.fa-x {
   color:  #fc5185;
}



.fa-solid.fa-question {
    color: rgb(255 255 255 / 44%);
    border: 1px solid;
    border-color: rgba(255, 255, 255, 0.411);
    border-radius: 15px;
    width: 17px;
    height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

.explanation {
    max-width: 240px;
    background-color: rgb(24,88,113);
    position: absolute;
    color: white;
    padding: 10px;
    border-radius: 10px;
    right: 30px;
 
}

.mobileIconsAdmin {
    display: none;
}


.explanation p {
    font-size: 14px;
    text-align: left;
}


.explanationMob {
    top: 245px;
    display: none;
}

.explanationWordpress {
    top: calc(245px + 58px);
    display: none;
   
}

.explanationLanguage {
    top: calc(245px + 87px);
    display: none;
}

.explanationSSL {
    top: calc(245px + 116px);
    display: none;
}

.explanationCDN {
    top: calc(245px + 145px);
    display: none;
}
.explanationContacts {
    top: calc(245px + 174px);
    display: none;
}

.explanationSeo1 {
    top: calc(245px + 29px);
    display: none;
}

.explanationArticle {
    top: calc(245px + 203px);
    display: none;
}
.explanationShop {
    top: calc(245px + 232px);
    display: none;
}

.explanationProducts{
    top: calc(245px + 261px);
    display: none;
}

.explanationWoo{
    top: calc(245px + 290px);
    display: none;
}

.explanationPayment{
    top: calc(245px + 319px);
    display: none;
}

.explanationSocial {
    top: calc(245px + 348px);
    display: none;
   
}

.explanationMail {
    top: calc(245px + 377px);
    display: none;
   
}

.explanationMaps {
    top: calc(245px + 406px);
    display: none;
}

.explanationAnalytics {
    top: calc(245px + 435px);
    display: none;
}


.bonusSection {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.bonusIcon {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.bonusIcon span {
    font-size: 22px;
}

.bonusIcon i {
    font-size: 25px;
    color: rgb(24,88,113);
}

.bonusText {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}


.mainPrice {
    align-self: center;
    display: flex;
    justify-content: center;
}

.mainPrice span {
    font-size: 17px;
    /* color: rgb(2 78 231); */
    color: rgb(56 122 255);
    font-weight: 500;


}

.mainPrice div {
    color: rgb(56 122 255);

    display: flex;
    gap: 10px; 
    align-items: center;
    font-size: 28px;
    font-weight: 500;
 
}

.planButton {
    display: flex;
    justify-content: center;
}

.makeContact {
    width: 85%;
    display: flex;
    justify-content: center;
    font-size: 20px;
    background-color: rgb(0 66 199);

    border: none;
    color: white;
    border-radius: 15px;
    padding: 12px 0; 
}

.makeContact a {
    color: white;
}

.planButton button a {
    width: 100%;
}

.additionalServices {
    margin-top: 30px;
}

.additionalServices h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #e9e9e9;
}

.additionalServices ul {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.additionalServices ul li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Papildomos paslaugos */

.explanationSeo2{
    top: calc(-3.5% + 532px);
    display: none;
}
.explanationLogo {
    bottom: 126px;
    
    display: none;
}

.explanationWebText {
    /* top: calc(245px + 571px); */
    display: none;
    bottom: 211px;
}

.additionalPrice {
    text-align: center;
    color: #e9e9e9;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
} 


/* ///////////Administravimo paslaugos///////// */

.adminServices {
    margin-top: 30px;
}

.adminServices h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #e9e9e9;
}

.adminServices ul {
    gap: 12px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.adminServices ul li {
    display: flex;
    justify-content: space-between;
} 

/* .explanationContent {
    top: calc(-3.5% + 879px);
    display: none;
} */

.explanationSecurity {
    /* top: calc(245px + 628px); */
    bottom: 202px;  
    display: none;
}

.explanationAdminSeo {
    bottom: 172px;
    /* top: calc(245px + 567px); */
    display: none;
}

.explanationElementor {
    top: calc(233px - 16px);
    display: none;
}


.adminPrice {
    text-align: center;
    color: rgb(56 122 255);
    font-weight: 500;
    font-size: 20px;
    padding: 20px 0;
    gap: 10px;
   
} 


.adminPrice div span {
    color: rgb(56 122 255);
    padding-right: 5px;
}

.extraHours p {
    font-size: 13px;
    color: #9f9f9f;
}

.boldNumber {
    font-weight: 800;
    /* color: #e9e9e9; */
}
.webSize {
    gap: 5px;
    display: flex;
}






/*/////////////////////////// Slider ///////////////////////////////////////*/

.sliderSection {
  
    display: flex;
    overflow: visible;
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
    gap: 24px;
    padding: 24px 12px 24px 12px;
}

/* .shadowBoxResponsive {
    padding: 50px 46px;
    border-radius: 30px;
    gap: 30px;
    position: relative;
} */


.slider-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}
  

  .swiper-container {
    width: 100%;
}

  .swiper-wrapper{
    transition: 0.8s all !important;
    width: 1200px !important;
    gap: 20px;
    

}


/* .swiper-backface-hidden .swiper-slide {
    transform: none !important;
} */

  
  /* .swiper-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 30px;
    opacity: 0.25;
    background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));

} */

.swiper-slide {
    text-align: center;
    list-style: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 1s, opacity 1s, background 1s;
    transform: scale(1);
    opacity: 1;
    z-index: 1;
    border-radius: 30px;
    /* border: 0.1px solid; */
    border-color: #dfdede26;
    background-color: #0F0F0F;
    transition-property: none !important;
    width: 32% !important;
    

}
  
.swiper-slide.swiper-slide-active {
    z-index: 2;
    transform: scale(1);
    opacity: 1;
    /* background-color: #0F0F0F; */
}

  
.swiper-button-prev,
.swiper-button-next {
    font-size: 24px;
    color: #333;
    display: none !important;
}

  
  
.swiper-pagination {
    z-index: 2;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    height: fit-content;
    top: -4% !important; 
}

  
  
.swiper-pagination-bullet {
    width: 13px !important;
    height: 13px !important;
    background-color: rgba(228, 229, 231, 0.984) !important;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}
  
.swiper-pagination-bullet-active {
    background-color: rgb(255, 255, 255);
}

.swiper-pagination-bullet-active {
    background-color: rgb(255, 255, 255);
}
  
.swiper-slide-prev {
    filter: blur(5px);
} 
  
.swiper-slide-next {
    filter: blur(5px);

} 

.swiper-button-next {
    right: var(--swiper-navigation-sides-offset,-60px) !important;
}
.swiper-button-prev {
    left: var(--swiper-navigation-sides-offset,-60px) !important;
}
  
.swiper-slide {
    touch-action: pan-y; /* Leidإ¾ia perstumti vertikaliai */
}



/*///////////////darbo planas///////////////*/



.workStepsSection {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.mainWorkHeadingSection {
    position: relative;
    overflow: hidden;
    background-color: #0F0F0F;
}

.workStepsHeading {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.workStepsHeading h2 {
    font-size: 30px;
    text-align: center;
    padding: 20px 10px;
    color: #ddcece;
}


.workStepsSection section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-right: 60px;
}

.workStepsBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:25px;

}

.workStepsBox .shadowBox {
    padding: 0px 30px 30px 30px;
}

.workStepsBox .shadowBox h3 {
    color: white;
    margin-bottom: 20px;
    text-align: center;
}
.workStepsBox .shadowBox h3 i {
    margin-right: 15px;
    font-size: 30px;
}

.workStepsBox .shadowBox ul {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.workStepsBox .shadowBox ul li {
    line-height: 1.6;
    font-size: 15px;
}

.workStepsBox .shadowBox ul li i {
    margin-right: 2px;
}



/* .fa-solid.fa-circle {
    font-size: 8px;
    margin-right: 7px;
} */





.numberBox {
    display: flex;
    justify-content: center;
}

/* .numberBox::before {
    content: '';
    position: absolute;
    height: 2px;
    z-index: -1;
    transform: rotate(90deg);
    background-color: #9f9f9f;
    max-width: 315px;
    width: 100%;
} */

/* .numberBox1::after {
    content: '';
    position: absolute;
    height: 2px;
    z-index: -1;
    transform: rotate(90deg);
    background-color: #9f9f9f;
    max-width: 315px;
    width: 100%;
} */

.number {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.3px solid;
    border-color: #dfdede26;
    background-color: #0f0f0f;
    border-radius: 30px;
    position: relative;
    width: 60px;
    height: 60px;
    color: white;
    position: relative;
    top: -20px;
    font-size: 18px;

}

#cookieConsent {
    display: none;
    position: fixed; 
    bottom: 0;
    width: 100%;
    padding: 10px; 
    text-align: center; 
    z-index: 1000; 
    background-image: url(Images/chess-rook-solid.webp);
    background-size: 15px;
    height: 80px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #0F0F0F;
    
}

#cookieConsent p a {
    color: white;
}

#cookieConsent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05)); */
    border-radius: 30px;
    opacity: 0.25;
    pointer-events: none;
}

#acceptCookie {
    font-size: 15px;
    padding: 10px 60px;
    border-radius: 16px;
    border: none;
    background-color: rgb(24,88,113);
    color: white;
    margin-left: 20px;
    cursor: pointer;
}
.adminHeading i {
    align-self: center;
    font-size: 20px;
}


.adminHeading h2 {
    text-align: center;
    padding: 20px 10px;
    font-size: 30px;
    color: #ddcece;
}



.adminBox {
   display: flex;
   flex-direction: column;
   gap: 35px;


   
   
}

.adminBox span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;

    
   
}

.adminBox  p {
    text-align:left;
    
}
.adminBox span h2 {
    font-size: 18px;
    color: white;
}

.adminContent span svg {
    width: 35px;
    fill: white;
}
.adminContent {
    display: grid;
    grid-template-columns: 0.3fr 4fr;
    align-items: center;
    gap: 10px;


}

.adminContent svg {
width: 40px;
fill: white;
}
   
  
   

    



.adminSection {
    display: flex;
    flex-direction: column;

}

.adminMainBox {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px 70px;
    align-items: center;

}

.wordpresLogo svg {
    fill: #5a6e77;

   
   
}

.swiper-pagination2 {
  display: none;
}

.adminPlansHeading {
    display: flex;
    align-items: center;
    justify-content: center;
}
.adminPlansHeading h2 {
    font-size: 30px;
    color: #ddcece;
}




/* @media (max-width: 1166px) {
.shadowBox {
    padding: 50px 20px;}
.explanation {
right: 20px;

}
} */





@media (min-width: 768px) and (max-width: 1200px) {
    .servicesSection.mainSections {
        display: none; 
    }
    .sliderSection {
        display: flex;
        justify-content: center;
        align-items: center;
        /* padding-top: 70px; */
        width: auto;
        margin-right: auto;
        margin-left: auto;
        gap: none;
        padding: 50px 12px 24px 12px;
        overflow: hidden;
       
    } 

    .wordpressPhotoBox  img {
        height: auto;
        max-width: 100%;
    }

    .adminMainBox {
        gap: 20px 30px;
    }
    .mainSections {
        padding: 0px 25px 0 25px;
    } 
    
    .explanationMob {
        top: -3.5%;
        /* display: none; */
    }
    .plans:hover {
        scale: none;
    }
    .fa-solid.fa-question {
        width: 21px;
        height: 21px;
    }
    .servicesList ul li {
        font-size: 15px;
    }
    .additionalServices ul li {
        height: 21px;
    }
    .additionalPrice {
        justify-content: flex-start;
    }
    .adminServices ul li {
        height: 21px;
    }
    .explanation {
        text-align: left;
    }
    .explanationMob {
        top: 252px;
    }
    .explanationSeo1 {
        top: calc(252px + 33px);  
    }
    .explanationWordpress {
        top: calc(252px + 66px);
        
    }
    
    .explanationLanguage {
        top: calc(252px + 99px);
       
    }
    
    .explanationSSL {
        top: calc(252px + 131px);
        display: none;
    }
    
    .explanationCDN {
        top: calc(252px + 164px);
        display: none;
    }
    .explanationContacts {
        top: calc(252px + 197px);
        display: none;
    }
    

    .explanationArticle {
        top: calc(252px + 230px);
        display: none;
    }
    .explanationShop {
        top: calc(252px + 263px);
        display: none;
    }
    
    .explanationProducts{
        top: calc(252px + 296px);
        display: none;
    }
    
    .explanationWoo{
        top: calc(252px + 329px);
        display: none;
    }
    
    .explanationPayment{
        top: calc(252px + 362px);
        display: none;
    }
    
    .explanationSocial {
        top: calc(252px + 395px);
        display: none;
       
    }
    
    .explanationMail {
        top: calc(252px + 428px);
        display: none;
       
    }
    
    .explanationMaps {
        top: calc(252px + 461px);
        display: none;
    }
    
    .explanationAnalytics {
        top: calc(252px + 494px);
        display: none;
    }

    .explanationLogo {
        top: none;
        bottom: 143px;
        display: none;
    }
    
    .explanationWebText {
        bottom: calc(214px + 34px);
        display: none;
    }
    .explanationSecurity {
        bottom: 216px;
    }

    .explanationAdminSeo {
        bottom: 183px;
    }

    .explanationElementor {
        top: calc(233px + 6px);

    }

    button a {
        color: white;

    }
    #cookieConsent {
        height: 100px;
        padding: 10px 25px;
        
    }
    #acceptCookie {
        padding: 10px 60px;
    }
    .adminSection {
        padding: 30px 25px 0 25px;
    }

    .adminBox {
        gap: 20px;
    }
    .wordpressPhotoSection {
        align-items: flex-start;
        grid-row: 1;
    }

    .heroBox div {
        flex-direction: row;
        justify-content: center;
        gap: 18px;


    }

    .heroSection {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
    
        gap: 55px;
        margin-top: 40px;
        padding: 30px  20px 40px 20px;
        min-height: auto; 
        

    }
    .wordpressPhotoBox {
        height: 300px;
        background-position: center;
        display: flex;
        justify-content: center;
    
    }


   .heroBox {
    grid-row: 2;
    justify-content: flex-start;
    gap: 30px;

   }

   .mainValues div {
    gap: 15px;
   }

    .heroBox h1, .heroBox div span {
        text-align: center;
        gap: 5px;
    }
    .heroBox div span {
        font-size: 17px;
    }
    .heroBox h1 {
        font-size: 25px;
        line-height: 31px;
    }
    .mainHeading {
        margin-top: 90px;
    }

    .swiper-slide {
        opacity: 0.5;
        width: 100% !important;
   
    }
    .swiper-wrapper {
        width: auto !important;
        gap: 0;
    }
    .swiper-pagination2 {
        display: flex;
        justify-content: center;
        padding: 20px 0;
        position: relative;
    }
    .mainWorkHeadingSection {
        margin-right: 0 !important;
        padding: 20px 10px 40px 10px;

    }

    .workStepsSection {
        margin-top: 0;
    }
    .workStepsBox {
        gap: 30px;
    }
    .adminPlansHeading {
        margin-top: 80px;
    }

    .workStepsBox .shadowBox h3 {
        font-size: 18px;
    }
    .workStepsBox .shadowBox h3 i {
        font-size: 25px;
    }
    .mainValues {
        gap: 25px;
        margin-top: 70px;
    }
    p {
        line-height: 1.4;
    }

    .mainValues div span {
        font-size: 22px;
    }
    .mainValues div span svg {
        width: 30px;
        height: 30px;
    }
   

   
}

@media (max-width: 767px) {
    
    .shadowBox {
        padding: 50px 25px 25px 25px!important;
    }

    .mainSections {
        padding: 24px 15px 24px 15px;
    }

    .mainValues {
        grid-template-columns: 1fr;

    }

    .wordpressPhotoBox img {
        height: auto;
        max-width: 100%;
    }

   

    .elementorProGap { 
        gap: 5px;

    }
    


    .servicesSection.mainSections {
        display: none;
        
    }

    .servicesList ul li {
        font-size: 14px;
    }
    .sliderSection {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 15px 20px 15px;
        width: 100%;
        gap: 0;
        overflow: hidden;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 30px !important;
    }
    .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset,0px) !important;
    }
    .swiper-button-next {
        right: var(--swiper-navigation-sides-offset,0px) !important;
    }
    .shadowBoxResponsive {
        padding: 35px 40px;
    }
    .slider-container {
        /* max-width: 350px; */
        width: 100%;
    }
    h1 {
        font-size: 22px;
    }
    .plans:hover {
        scale: none;
    }

    .fa-solid.fa-question {
        width: 21px;
        height: 21px;
    }
    .swiper-pagination {
        position: relative !important;
        padding: 15px 0;
        gap: 13px;
        display: flex;
        justify-content: center;
      
    }
    .mainHeading {
        margin-bottom: 0;
        margin-top: 30px;
        gap:10px;
    }
    .additionalServices ul li {
        height: 21px;
    }
    .adminServices ul li {
        height: 21px;
    }
    .additionalPrice {
        justify-content: flex-start;
        font-size: 13px;
    }
    .explanation {
        text-align: left;
        right: 25px;
    }
    .explanationMob {
        top: 259px;
    }
    .explanationSeo1 {
        top: calc(252px + 40px);  
    }
    .explanationWordpress {
        top: calc(252px + 73px);
        
    }
    
    .explanationLanguage {
        top: calc(252px + 106px);
       
    }
    
    .explanationSSL {
        top: calc(252px + 138px);
        display: none;
    }
    
    .explanationCDN {
        top: calc(252px + 171px);
        display: none;
    }
    .explanationContacts {
        top: calc(252px + 204px);
        display: none;
    }
    

    .explanationArticle {
        top: calc(252px + 237px);
        display: none;
    }
    .explanationShop {
        top: calc(252px + 270px);
        display: none;
    }
    
    .explanationProducts{
        top: calc(252px + 303px);
        display: none;
    }
    
    .explanationWoo{
        top: calc(252px + 336px);
        display: none;
    }
    
    .explanationPayment{
        top: calc(252px + 369px);
        display: none;
    }
    
    .explanationSocial {
        top: calc(252px + 402px);
        display: none;
       
    }
    
    .explanationMail {
        top: calc(252px + 435px);
        display: none;
       
    }
    
    .explanationMaps {
        top: calc(252px + 468px);
        display: none;
    }
    
    .explanationAnalytics {
        top: calc(252px + 501px);
        display: none;
    }

    .explanationLogo {
        top: none;
        bottom: 148px;
        display: none;
    }
    
    .explanationWebText {
        bottom: calc(214px + 34px);
        display: none;
    }
    .explanationSecurity {
        bottom: 216px;
    }

    .explanationAdminSeo {
        bottom: 183px;
    }
    
  
    .fa-regular.fa-chess-rook {
        font-size: 20px;
    }
    button a {
        color: white;

    }
    #cookieConsent {
        height: 150px;
        flex-direction: column;
    }
    #acceptCookie {
        margin-left: 0;
        margin-top: 15px;
        padding: 10px 60px;
    }

    .workStepsBox {
        flex-direction: column-reverse;
        z-index: 10;
        top: -30px;
        grid-template-columns: 1fr;
        gap: 25px;

    }
    .numberBox {
        z-index: 300;
        position: absolute;
        align-self: center;
        display: flex;
        margin: auto;
        top: 0px;
    }
    .number {
        left: 0;
    }
   
    .workStepsBox .shadowBox ul {
        gap: 15px;

    }
    .workStepsBox .shadowBox h3 i {
        font-size: 20px;
    }

    .workStepsBox .shadowBox {
        display: flex;
        flex-direction: column;
        gap: 0;
        
    }

    .workStepsHeading h1 {
        font-size: 22px;
    }

    .workStepsBox .shadowBox h3 {
        font-size: 18px;
    }
    .workStepsSection {
        gap: 0;
        margin-top: 20px;
        padding:  24px 15px 0 15px;

    }
    .adminServices h4 {
        font-size: 17px;
    }
    .adminMainBox {
        grid-template-columns: 1fr;
    }
    .adminBox svg {
        width: 35px;
        padding: 5px;
        height: 35px;
        /* margin-top: 7px; */
    }
    .adminBox span h2 {
        font-size: 16px;
    }

    .adminBox span {
        align-items: center;
    }
    .adminHeading h2 {
        font-size: 18px;
    }
    .mainHeroSection {
        margin-top: 20px;
    }
    .mainHeading h2 {
        font-size: 22px;
    }
    .adminPlansHeading h2 {
        font-size: 19px;
    }
    .adminPlansHeading {
        display: flex;
        gap: 10px;
        align-items: center;
         justify-content: center;
    }
    



    .heroSection {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px 20px 15px !important;
        grid-template-rows: repeat(2, auto);

    }
    .wordpressPhotoBox {
        height: 230px;
        border-radius: 25px;
        background-position: center;
        display: flex;
        align-items: center;
    }

    .heroBox {
        gap: 20px;
        grid-row: 2;
    }

    .heroBox .fa-solid.fa-check {
        font-size: 20px;
    }


    .heroBox h1, .heroBox div span {
        text-align: center;
    }
    .heroBox  h1 {
        font-size: 18px !important;
        text-align:left;
    }

    .heroBox div {
        align-items: left;

    }

    .mainValues {
        margin-top: 0;
    }
    .mainValues div span h3  {
        font-size: 22px;
    }
    .mainValues div span svg {
        width: 30px;
        height: 30px;
    }
    .swiper-slide {
        opacity: 0.5;
        width: 100% !important;
       
    }
    .swiper-wrapper {
        width: auto !important;
        gap: 0;
    }

    .swiper-pagination2 {
        display: flex;
        justify-content: center;
        padding: 20px 0;
        position: relative;
        gap: 13px !important;
    }
    .wordpresLogo {
        display: flex;
        justify-content: center;

    }

    .wordpresLogo svg {
        height: 200px;
    }
    .adminSection {
        gap: 5px;
    }
    .workStepsSection section {
        margin: 0;
    }
    .workStepsHeading h2 {
        font-size: 22px;
    }
    .mobileIconsAdmin {
        display: flex;
    }
    .adminBox span h3 {
        display: flex;
        align-items: center;
        color: white;
        gap: 8px;
    }
    .dekstopIconsAdmin {
        display: none;
    }
    .adminContent {
        grid-template-columns: 1fr;
    }
    .adminBox p {
        text-align: center;
    }
    .adminContent span svg {
        width: 40px;
        height: 40px;
    }
    .swiper-pagination-bullet {
        width: 18px !important;
        height: 18px !important;
        margin: 0 !important;
    }
    .workStepsBox .shadowBox ul li  svg {
        margin-right: 4px;
    }
   
    
    

}

@media (max-width: 470px) {
    .swiper-slide {
        opacity: 0;
      }

      
    

}

/*///////////////////// footer //////////////////////*/

footer {
    position: relative;
    width: 100%;
    z-index: 30;
    background: #0F0F0F;
    padding-top: 40px;
    padding-bottom: 78px;
}

.footerSection {
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}

.footerMenu {
    display: flex;
    margin: 33px 0 37px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    list-style: none;

}

.footerMenu p {
    margin: 0;
    color: #727272;
    font-size: 14px;
    font-weight: 500;
}

.copyRight {
    font-size: 13px;
}


@media (min-width: 768px) and (max-width: 991px) {
    footer {
        padding-bottom: 50px;
        
    }
}


@media (max-width: 767px) {
    .footerSection {
        gap: 20px;
    }
    footer {
        padding-bottom: 30px;
        padding-top: 0;
    }
    .footerMenu {
        /* gap: 25px; */
        display: none;
        
    }
    .workTogether h1 span {
     font-size: 25px;
    }
    
}</pre></body></html>