/*
Theme Name: Infotech
Theme URI: 
Author: YP
Author URI: https://wordpress.org/
Description: Infotech 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. Infotech will make your WordPress look beautiful everywhere.
Version: 2.5
Tested up to: 6.8
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
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, block-patterns
Text Domain: infotech

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;
    left: 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;
}
