/* SCREEN CSS */

@media (min-width: 1400px) {
  .features .tab-pane .custom-lg-flex, .packages .custom-lg-flex, .ai .custom-lg-flex, .why-us .custom-lg-flex {
    /*display:flex;
	justify-content:center;*/
	padding-top:28px;
  }
  
  .vis-xls .read-more {
    margin-top:45px;
  }
  
  .vps .read-more {
    margin-top:26px;
  }
}

@media (max-width: 1400px) {
  .service-item .custom-break, .service-item .custom-break-2 {
    display:block;
  }
  
  .starter-section h3 {
    font-size:1.25rem;
  }
}

@media (max-width: 1398px) {
  .hero-margin-t {
  	margin-top:17px !important;
  }
  .hero-margin-b {
    margin-bottom:17px !important;
  }
  
  /*.services .service-item h3 {
    font-size:1.375rem;
  }*/
}

@media (min-width: 1366px) {
  /*SERVICES SECTION*/
  .services .service-item:hover {
    transform: translateY(-10px);
  }
  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
  
  /* Prevent hover effect for .nullify */
  .services .service-item.nullify:hover {
    transform: none; /* Resets transform to default */
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .features .nav-link i {
    padding-right:10px;
  }
}

@media (min-width: 1200px) {
  /* Navmenu - Desktop */
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
    margin-left: 5px;
  }
  .navmenu a,
  .navmenu a:focus {
    color: #373946;
    padding: 8px 20px;
    font-size: 1rem;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-hover-color);
	color: var(--nav-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }
  .navmenu .dropdown ul a {
    padding: 5px 20px;
    font-size: 1rem;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 0.75rem;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a,
  .navmenu .dropdown ul a.active-inner {
    background-color: transparent;
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  /* --END-- Navmenu - Desktop */
  
  .img-customx {
     float: right; /* Align the image to the right on larger screens (1200px and above) */
   }
  
  .special {
	font-size:1.5rem !important;
  }
  
  .align-right-l {
    justify-content: flex-end; /* Align items to the right */
  }
  
  .vis-lg {
    display:none !important;
  }
  .vis-xls {
    display:inherit !important;
  }
  
  /* Hide arrows on screens larger than 1200px */
  .scroll-left, .scroll-right {
    display: none;
  }
}

@media (max-width: 1200px) {
  /* Navmenu - Mobile */
  .mobile-nav-toggle {
    color: #000000 !important;
    font-size: 1.75rem;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
	/*display: block;*/
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a.disabled {
    pointer-events: none; /* Disables all click events */
    cursor: default; /* Changes the cursor to the default arrow */
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu .active-inner {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    /*display: none;*/
	display: block;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 2rem;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu>ul {
    display: block;
  }
  /* --END-- Navmenu - Mobile */
  
  .img-customx {
	 margin:40px auto 60px !important;
   }
   .hide-small {
	 display:none !important;
   }
   .show-small {
	  display:block !important;
	  margin:auto !important;
	  text-align:center !important;
   }
  .pricing .pricing-item h4 {
    margin-top:25px;
	font-size:2.125rem;
  }
  .hero h2 {
    font-size: 1.875rem;
  }
  .section-title h2 {
  	font-size: 1.75rem;
  }
  .call-to-action h2, .tab-pane h2, .packages h3, .ai h2, .why-us h3 {
  	font-size: 1.875rem;
  }
  .ai h3 {
    font-size: 1.625rem;
  }
  .special {
	font-size:1.5rem !important;
  }
  
  .align-right-l {
    justify-content: center; /* Align items to the center */
  }
  
  .hero-margin-t {
  	margin-top:17px !important;
  }
  .hero-margin-b {
    margin-bottom:17px !important;
  }
  
  .call-to-action h2 {
    /*background-color:#FFA500;*/
    padding-top:16px;
    padding-bottom:16px;
	padding-left:8px;
	padding-right:8px;
	color:#FFFFFF;
  }
  
  .services .mt-custom-px-6, .services .mt-custom-px-b-6 {
    margin-top:0;
  }
  
  .services .service-item h3 {
    font-size:1.375rem;
  }
  
  .service-item .custom-break {
    display:none;
  }
  .service-item .custom-break-2 {
    display:block;
  }
  
  .packages .read-more {
    margin-top:1.5rem !important;
  }
  
  .vps ul {
    margin-top:20px;
  }
  
  .vis-lg {
    margin-top:0 !important;
  }
  
  .call-to-action .cta-btn {
    margin-top:3rem;
  }
  
  .video-container video {
    width:auto;
	max-width:100%;
  }
  .video-container .img-fluid {
    margin-top:2.25rem;
  }
  
  .span-2 {
    font-size:1.375rem;
  }
  .strong-2 {
    font-size:1.125rem;
  }
  
  /*.header .logo img {
    max-height:37px;
  }*/
}

@media (min-width: 992px) and (max-width: 1199px) {
  .video-container img {
    margin: 0 auto;       /* Centers the image horizontally */
    display: block;       /* Ensures the image takes block-level behavior */
  }
}

@media (min-width: 992px) {
  /*HERO SECTION*/
  .hero p {
    max-width: 85%;
  }
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
  
  /*.tab-pane h2, .packages h3, .ai h3, .why-us h3 {
    color:#EF6603;
  }*/
  
  /* 4 Column Layout (for desktops) 
  .footer .footer-links {
    flex-wrap: nowrap; 
  }
  .footer-column {
    flex: 1 1 25%; 
    max-width: 25%; 
  }*/
}

@media (max-width: 992px) {
  .hero h2 {
    font-size: 1.75rem;
  }
  .pricing .pricing-item h4 {
    font-size: 1.875rem;
  }
  .hero p, .section-title h1 {
    font-size: 1.375rem;
  }
  .section-title h2 {
  	font-size: 1.625rem;
	margin-top:20px;
  }
  .section-title h1, .section-title h2 {
    text-align:center !important;
  }
  .pricing .pricing-item ul li, .call-to-action p, .services .service-item p, .features .tab-pane p {
    font-size: 1rem;
  }
  .special {
	font-size:1.125rem !important;
  }
  .call-to-action h2, .tab-pane h2, .packages h3, .ai h2, .why-us h3 {
  	font-size: 1.6875rem;
  }
  .ai h3 {
    font-size:1.5rem;
  }
  
  .packages h3, .ai h3, .why-us h3 {
    margin-top:30px;
	text-align:center;
	text-decoration:underline;
  }
  .services h3 {
    text-decoration:none !important;
  }
  
  .hero-margin-t {
  	margin-top:37px !important;
  }
  .hero-margin-b {
    margin-bottom:37px !important;
  }
  
  /* 2 Column Layout (for tablets) 
  .footer .footer-links {
    flex-wrap: wrap;
  }
  .footer-column {
    flex: 1 1 50%; 
    max-width: 50%; 
    padding: 0 10px; 
  }*/
  
  .border-lg-no {
    border-right:none;
  }
  
  .features .tab-pane .custom-margins, .packages .custom-margins, .ai .custom-margins, .why-us .custom-margins {
    margin-top:30px !important;
  }
  
  .services .mt-custom-px-6 {
    margin-top:3.5rem;
  }
  .services .mt-custom-px-b-6 {
    margin-top:0;
  }
  /*.services .service-item h3 {
    font-size:1.5rem;
  }*/
  
  .hero .carousel-control-next-icon {
    font-size:2.5rem;
  }
  
  .service-item .custom-break {
    display:block;
  }
  .service-item .custom-break-2 {
    display:none;
  }
  
  /* Apply styles to .read-more inside .packages but exclude .vps .read-more */
  .packages .read-more:not(.vps .read-more) {
    /*margin-top: 0 !important;*/
  }
  
  .pt-66 {
    padding-top:4.125rem !important
  }
  
  .ai-2 ul {
    margin-top:13px;
  }
  .ai .ps-5 {
    padding-left:10px !important;
  }
  .ai .pe-5 {
    padding-right:10px !important;
  }
  
  .packages .pe-5 {
    padding-right:10px !important;
  }
}

@media (max-width: 768px) {
  /*--------------------------------------------------------------
	# Disable aos animation delay on mobile devices
	--------------------------------------------------------------*/
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  
  /*HERO SECTION*/
  /*.hero .carousel-container {
    min-height: 90vh;
  }*/
  .hero h2 {
    font-size: 1.5rem;
  }
  .pricing .pricing-item h4 {
    margin-top:30px;
	font-size: 1.625rem;
  }
  /*.section-title h2 {
  	font-size: 1.5rem;
  }*/
  .hero p, /*.section-title h1,*/ .packages span, .ai span, .why-us span {
    font-size: 1.25rem;
  }
  .pricing .pricing-item h3, .call-to-action .cta-btn, .hero .btn-get-started, .read-more {
    font-size: 1.375rem;
  }
  .pricing .btn-buy, .service-item .btn-buy {
    font-size:1.125rem;
  }
  /*.call-to-action h2, .tab-pane h2, .packages h3, .ai h2, .why-us h3 {
  	font-size: 1.375rem;
  }*/
  
  /*FEATURES SECTION*/
  .features .nav-link i {
    padding-right:15px;
    line-height: 1;
    font-size: 2.25rem;
  }
  
  /*TESTIMONIALS SECTION*/
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
  
  .img-customx {
    height:330px !important;
  }
  
  .footer-new .copyright {
    font-size:0.75rem;
  }
  
  .footer-new .copyright .br {
    display:block;
  }
  
  .hero .carousel-control-next-icon {
    font-size:2rem;
  }
  
  .service-item .custom-break, .service-item .custom-break-2 {
    display:none;
  }
  
  .pricing-table-container {
    padding:0 5.9% 0 4.5% !important;
  }
  
  .starter-section .bordering {
    border: 1px solid #FFA500;
    border-radius: 20px;
    padding: 10px 20px 4px;
  }
}

@media (max-width: 576px) {
  /*FEATURES SECTION*/
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 1.5rem;
  }
  
  /*PORTFOLIO SECTION*/
  .portfolio .portfolio-filters li {
    font-size: 0.875rem;
    margin: 0 0 10px 0;
  }
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
  
  .pricing .pricing-item h4 {
    margin-top:33px;
  }
  .hero h2, .pricing .pricing-item h4 {
    font-size: 1.375rem;
  }
  /*.section-title h2 {
  	font-size: 1.375rem;
  }*/
  /*.call-to-action h2, .tab-pane h2, .packages h3, .ai h3, .why-us h3,*/ .pricing .btn-buy, .service-item .btn-buy, .call-to-action .cta-btn, .hero .btn-get-started, .read-more/*, .services .service-item h3*/ {
  	font-size:1.25rem;
  }
  .packages span, .ai span, .why-us span {
    font-size:1.125rem;
  }
  
  .section-title h1::after {
    width: 5.625rem;
  }
  
  .img-customx {
    height:300px !important;
  }
  
  .hero .carousel-control-next-icon {
    font-size:1.875rem;
  }
  
  .circular {
    width: 130px;
    height: 130px;
  }
  .vps ul li {
    font-size:1.125rem;
  }
  .vps .offer .tag-m {
    font-size:2.25rem;
  }
}

@media (max-width:480px) {
  .hero h2 {
    font-size: 1.125rem;
  }
  .pricing .pricing-item h4 {
    margin-top:35px;
  }
  /*.section-title h2, .call-to-action h2, .tab-pane h2, .packages h3, .ai h3, .why-us h3 {
  	font-size: 1.25rem;
  }*/
  .hero p/*, .section-title h1*/ {
    font-size: 1rem;
  }
  .special {
    font-size: 1rem;
  }
  .pricing .pricing-item h3 {
    font-size: 1.25rem;
  }
  .pricing .btn-buy, .service-item .btn-buy, .call-to-action .cta-btn, .hero .btn-get-started, .read-more {
  	font-size: 1.125rem;
  }
  
  .section-title h1::after {
    width: 2.83rem;
  }
  
  .img-customx {
    height:280px !important;
  }
  
  .hero-margin-t {
  	margin-top:-20px !important;
  }
  .hero-margin-b {
    margin-bottom:20px !important;
  }
  .sp_word_eat_480 {
    display:none;
  }
  
  .footer-new .copyright {
    font-size:0.688rem;
  }
  
  .footer-new .copyright .br {
    display:inline;
  }
  .footer-new .copyright .br-2 {
    display:block;
  }
  
  /* 1 Column Layout (for mobile screens) 
  .footer .footer-links {
    flex-direction: column; 
  }
  .footer-column {
    flex: 1 1 100%; 
    max-width: 100%; 
    padding: 0 10px; 
  }*/
  
  .col-xxxs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero .carousel-control-next-icon {
    font-size:1.5rem;
  }
  
  .pricing-table-container {
    padding:0 !important;
  }
  
  .ai ul.d-block li strong {
    font-size:1rem;
  }
}

@media (max-width: 400px) {
  .no-shrink {
    min-width: 380px;
	max-width: 410px;
  }
}

@media (max-width:382px) {
	.hero-margin-t {
  	margin-top:0 !important;
  }
  .hero-margin-b {
    margin-bottom:0 !important;
  }
  .hero h2 {
    font-size: 1rem;
  }
  .pricing .pricing-item h4 {
    font-size:1.25rem;
  }
  /*.section-title h2, .call-to-action h2 {
    font-size: 1.125rem;
  }*/
  
  .footer-new .copyright .br {
    display:block;
  }
  
  .circular {
    width: 115px;
    height: 115px;
  }
  .vps .offer .tag-m {
    font-size:2rem;
  }
}

@media (max-width:350px) {
  .pricing .pricing-item h4 {
    margin-top:40px;
  }
  /*.section-title h2 {
    font-size: 1rem;
  }*/
  /*.tab-pane h2,*/ .pricing .btn-buy, .service-item .btn-buy, .call-to-action .cta-btn, .hero .btn-get-started, .read-more {
  	font-size: 1rem;
  }
  /*.call-to-action h2 {
    font-size: 0.938rem;
  }*/
  .pricing .pricing-item h3/*, .services .service-item h3*/ {
    font-size: 1.125rem;
  }
  
  .section-title h1::after {
    width: 2rem;
  }
  
  .img-customx {
    height:260px !important;
  }
  
  .hero .carousel-control-next-icon {
    font-size:1.125rem;
  }
  
  .no-shrink {
    min-width: 303px;
	max-width: 333px;
  }
}