/*
Theme Name: Invotech
Theme URI: 
Author: YP Developers
Author URI: https://wordpress.org/
Description: Invotech is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Invotech will make your WordPress look beautiful everywhere.
Version: 2.6
Tested up to: 6.9
Requires at least: 4.4
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: invotech

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/*---------------Sidebar Contact Css*****************/
.sidebar-contact {
    position: fixed;
    top: 50%;
    right: -350px;
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 0;
    background: #fff;
    box-shadow: 0 2px 11px 0 rgba(0,0,0,.2);
    box-sizing: border-box;
    transition: .5s;
    z-index: 999;
}
.toggle {
    position: absolute;
    height: 46px;
    width: 169px;
    text-align: center;
    cursor: pointer;
    top: 170px;
    right: 288px;
    line-height: 46px;
    transform: rotate(90deg);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: var(--color-heading-1);
}
.toggle:before {
    content: "\f0e0";
    font-family: 'Font Awesome 5 Pro';
    font-size: 18px;
    color: #fff;
    padding-right: 10px;
}
.scroll {
    padding: 25px 18px;
}
.sidebar-contact.active {
    right: 0;
}
.sidebar-contact h2 {
    margin: 0 0 0px;
    padding: 8px;
    text-align: center;
    background: var(--color-heading-1);
    color: #fff;
    font-size: 26px;
    font-weight: 500;
}
.scroll input, .scroll textarea {
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    /* border: 1px solid #ced4da; */
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: 10px;
}
button.sied-submit-btn {
    background: linear-gradient(136deg,#033363 10%,#2d85dc 100%);
    color: #fff;
    border: 0;
    width: 100%;
    height: 45px;
}
button.sied-submit-btn:hover {
    background: #f19505;
}

.sidebar-contact.active .toggle:before {
    content: '\f00d';
    padding-right: 10px;
} 
.sidebar-contact .col-lg-6 {
    width: 100%;
}

.sidebar-contact input {
    font-size: 14px;
    height: 40px;
    border: 1px solid #ddd;
}

.sidebar-contact textarea {
    height: 90px;
    font-size: 14px;
    border: 1px solid #ddd;
}
.sidebar-contact button.rts-btn.btn-primary {
    font-size: 15px;
    height: 48px;
}
.sidebar-contact .mb--30 {
    margin-bottom: 10px;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 9;
}
.social-icon {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease-in-out;
}
.social-icon:hover {
    animation: bounce 0.5s ease-in-out;
}
/* Define the bounce animation */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5px); /* Slight movement up */
  }
  40% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-3px); /* Smaller bounce */
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.social-wrapper-two a:last-child {
    margin: 0;
}
/* Button base */
.rs-btn a.elementor-button {
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 1;
}

/* Text must be above animation */
.rs-btn a.elementor-button .elementor-button-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Ripple / blob */
.rs-btn a.elementor-button::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: #F2F2F2;
    transform: translateX(-50%);
    border-radius: 50%;
    transition: all 800ms ease;
    z-index: 0;
}

/* Hover animation */
.rs-btn a.elementor-button:hover::before {
    top: -40%;
}

/* Hover colors */
.rs-btn a.elementor-button:hover {
    background: transparent;
}
.service-tech figure {
    background: #fff;
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}
.text-white p {
    color: #fff;
}
.wized-2-body ul li a::before {
    content: "\f324";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 14px;
    margin-right: 10px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Tablet */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .service-grid {
        grid-template-columns: 1fr;
		 gap: 15px;
    }
}

.service-item {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
    background: #fff;
}
.service-item:hover {
    transform: translateY(-5px);
}

.service-image img {
    width: 100%;
    height: 250px!important;
    border-radius: 6px!important;
    object-fit: cover;
}

.service-title {
    margin: 15px 0;
    font-size: 18px;
}
.service-btn {
    height: 42px;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    margin: 0 auto;
}
a.rts-btn.btn-primary.home-serv {
    margin: 30px auto 0;
}
.case-studies-wrapper-main-5 a {
    pointer-events: none;
}
.footer-logo-area-left-8 .logo img {
    width: 160px;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner .links li a::before {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    margin-right: 12px;
    transition: 0.3s;
}
.footer-8-area-bg .footer-one-single-wized .quick-link-inner {
    gap: 20px;
}
.single-service-style-three .icon img {
    width: 38px;
}
.rts-service-area.rts-section-gap {
    background: #f2f2f2;
}
.rts-service-area.rts-section-gap .title-style-one .pre {
    background: #ffffffcc;
}
.bg-grey {
	background: #f2f2f2;
}
.btn-box .rts-btn.btn-primary {
    margin: 35px auto 0;
}
