/* Fonts */
@font-face {
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 100;
	font-display: swap;
    src: local('Josefin Sans Thin'), local('JosefinSans-Thin'),
         url('fonts/JosefinSans-Thin.ttf') format('truetype');
}
@font-face {
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 400;
	font-display: swap;
    src: local('Josefin Sans Regular'), local('JosefinSans-Regular'),
         url('fonts/JosefinSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 700;
	font-display: swap;
    src: local('Josefin Sans Bold'), local('JosefinSans-Bold'),
         url('fonts/JosefinSans-Bold.ttf') format('truetype');
}

:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Poppins", sans-serif;
} /* Global Colors */
:root {
    /* Background Color - This color is applied to the background of the entire website as well as individual sections. */
    --background-color: #ffffff; /* Default Color - This is the default color used for the majority of the text content. */
    --default-color: #212529; /* Heading Color - This color is used for titles, headings and secondary elements. */
    --heading-color: #32353a; /* Accent Color - This is the main accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out. */
    --accent-color: #fd591c; /* Contrast Color - This is a color used for text when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors. */
    --contrast-color: #ffffff;
}
:root {
    --ostech-font: "Josefin Sans", sans-serif;
    --ostech-heading-font: "Josefin Sans", sans-serif;
    --ostech-text: #686a6f;
    --ostech-text-rgb: 104, 106, 111;
    --ostech-text-dark: #1e243d;
    --ostech-text-dark-rgb: 34, 36, 41;
    --ostech-text-gray: #999b9f;
    --ostech-text-gray-rgb: 153, 155, 159;
    --ostech-text-gray2: #6a6a6a;
    --ostech-text-gray2-rgb: 106, 106, 106;
    --ostech-base: #fd591c;
    --ostech-base-rgb: 255, 170, 23;
    --ostech-secondary: #1e243d;
    --ostech-secondary-rgb: 35, 36, 41;
    --ostech-gray: #f4f5f8;
    --ostech-gray-rgb: 244, 245, 248;
    --ostech-gray2: #f3f3f3;
    --ostech-gray2-rgb: 243, 243, 243;
    --ostech-white: #fff;
    --ostech-white-rgb: 255, 255, 255;
    --ostech-black: #1e243d;
    --ostech-black-rgb: 23, 23, 23;
    --ostech-black2: #1e243d;
    --ostech-black2-rgb: 0, 0, 0;
    --ostech-border-color: #dbdbdb;
    --ostech-border-color-rgb: 219, 219, 219;
    --ostech-letter-space: 0.1em;
    --ostech-letter-space-xl: 0.2em;
} /* Nav Menu Colors */
:root {
    /* Nav Color - This is the default color of the main navmenu links. */
    --nav-color: #1e243d; /* Nav Hover Color - This color is applied to main navmenu links when they are hovered over. */
    --nav-hover-color: #fd591c; /* Nav Dropdown Background Color - This color is used as the background for dropdown boxes that appear when hovering over primary navigation items. */
    --nav-dropdown-background-color: #ffffff; /* Nav Dropdown Color - This color is used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-color: #1e243d; /* Nav Dropdown Hover Color - Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --nav-dropdown-hover-color: #fd591c;
} /* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

p {
    margin-bottom : 0 !important;
}

.bg-green {
    background-color: #11bb19 !important;
}
.bg-blue {
    background-color: blue !important;
}
.bg-orange {
    background-color: #fd591c !important;
}
.bg-yellow {
    background-color: orange;
}
.text-green {
    color: #11bb19 !important;
}
.fw_400 {
    font-weight: 400;
}
.fw_500 {
    font-weight: 500;
}
.fw_600 {
    font-weight: 600;
}
.fw_700 {
    font-weight: 700;
}
.lh-150 {
    line-height: 150%;
}


@media (min-width: 993px) {
    .fs_12 {
        font-size: 13px;
    }
    .fs_14 {
        font-size: 14px;
    }
    .fs_16 {
        font-size: 16px;
    }
    .fs_18 {
        font-size: 18px;
    }
    .fs_20 {
        font-size: 20px;
    }
    .fs_22 {
        font-size: 22px;
    }
    .fs_25 {
        font-size: 25px;
    }
    .fs_30 {
        font-size: 30px;
    }
    .fs_35 {
        font-size: 35px;
    }
    .fs_40 {
        font-size: 40px;
    }
    .fs_45 {
        font-size: 45px;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .tb_fs_12 {
        font-size: 13px;
    }
    .tb_fs_14 {
        font-size: 14px;
    }
    .tb_fs_16 {
        font-size: 16px;
    }
    .tb_fs_18 {
        font-size: 18px;
    }
    .tb_fs_20 {
        font-size: 20px;
    }
    .tb_fs_22 {
        font-size: 22px;
    }
    .tb_fs_25 {
        font-size: 25px;
    }
    .tb_fs_30 {
        font-size: 30px;
    }
    .tb_fs_35 {
        font-size: 35px;
    }
    .tb_fs_40 {
        font-size: 40px;
    }
    .tb_fs_45 {
        font-size: 45px;
    }
}
@media (max-width: 767px) {
    .mob_fs_12 {
        font-size: 12px;
    }
    .mob_fs_13 {
        font-size: 13px;
    }
    .mob_fs_14 {
        font-size: 14px;
    }
    .mob_fs_16 {
        font-size: 16px;
    }
    .mob_fs_18 {
        font-size: 18px;
    }
    .mob_fs_20 {
        font-size: 20px;
    }
    .mob_fs_22 {
        font-size: 22px;
    }
    .mob_fs_25 {
        font-size: 25px;
    }
    .mob_fs_30 {
        font-size: 30px;
    }
    .mob_fs_35 {
        font-size: 35px;
    }
    .mob_fs_40 {
        font-size: 40px;
    }
    .mob_fs_45 {
        font-size: 45px;
    }
}
.text-orange {
    color: #fd591c;
} /*-------------------------------------------------------------- # Utility --------------------------------------------------------------*/
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-60 {
    margin-top: 60px;
}
.mt-80 {
    margin-top: 80px;
}
.mt-120 {
    margin-top: 120px;
}
.mt--60 {
    margin-top: -60px;
}
.mt--120 {
    margin-top: -120px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-120 {
    margin-bottom: 120px;
}
.mb--60 {
    margin-bottom: -60px;
}
.mb--120 {
    margin-bottom: -120px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-50 {
    padding-top: 50px;
}
.pt-60 {
    padding-top: 60px;
}
.pt-80 {
    padding-top: 80px;
}
.pt-100 {
    padding-top: 100px;
}
.pt-110 {
    padding-top: 110px;
}
.pt-115 {
    padding-top: 115px;
}
.pt-120 {
    padding-top: 120px;
}
.pt-142 {
    padding-top: 142px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pb-50 {
    padding-bottom: 50px;
}
.pb-60 {
    padding-bottom: 60px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pb-90 {
    padding-bottom: 90px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pb-110 {
    padding-bottom: 110px;
}
.pb-115 {
    padding-bottom: 115px;
}
.pb-120 {
    padding-bottom: 120px;
}
.pl-5 {
    padding-left: 5px;
}
.pl-10 {
    padding-left: 10px;
}
.pl-15 {
    padding-left: 15px;
}
.pl-20 {
    padding-left: 20px;
}
.pl-30 {
    padding-left: 30px;
}
.pr-5 {
    padding-right: 5px;
}
.pr-10 {
    padding-right: 10px;
}
.pr-15 {
    padding-right: 15px;
}
.pr-20 {
    padding-right: 20px;
}
.pr-30 {
    padding-right: 30px;
}
body {
    overflow-x: hidden;
}
.ostech-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--ostech-base, #fd591c);
    color: #fff;
    font-family: var(--ostech-font, "Josefin Sans", sans-serif);
    padding: 12px 15px;
    transition: 500ms;
    font-size: 14px;
    font-weight: 600;
    line-height: 112.5%;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}
.ostech-btn:hover {
    color: var(--ostech-base, #fd591c);
    background-color: var(--ostech-text-dark, #1e243d);
}
.ostech-btn:before {
    content: "";
    background-color: var(--ostech-secondary, #1e243d);
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}
.ostech-btn:after {
    content: "";
    background-color: var(--ostech-secondary, #1e243d);
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}
.ostech-btn:hover {
    color: var(--ostech-white, #fff);
}
.ostech-btn:hover:before,
.ostech-btn:hover:after {
    width: 100%;
}
.ostech-btn--secondary {
    background: var(--ostech-secondary, #1e243d);
    color: var(--ostech-white, #fff);
}
.ostech-btn--secondary:before {
    background-color: var(--ostech-base, #fd591c);
}
.ostech-btn--secondary:after {
    background-color: var(--ostech-base, #fd591c);
}
.ostech-btn--secondary:hover {
    color: var(--ostech-text-dark, #1e243d);
} /*-------------------------------------------------------------- # General --------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}
a {
    color: var(--accent-color);
    text-decoration: none !important;
    transition: 0.3s;
}
a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.theme_font_family {
    font-family: var(--ostech-heading-font, "Josefin Sans", sans-serif);
    color: var(--ostech-text-dark, #1e243d);
} /*-------------------------------------------------------------- # Topbar --------------------------------------------------------------*/
.topbar-one {
    display: none;
    background-color: var(--ostech-secondary, #1e243d);
}
@media (min-width: 992px) {
    .topbar-one {
        display: block;
    }
}
.topbar-one .container-fluid {
    max-width: 1680px;
}
.topbar-one__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-one__info {
    display: flex;
    align-items: center;
    margin: 0;
}
.topbar-one__info__item {
    display: flex;
    align-items: center;
    color: var(--ostech-text-gray, #999b9f);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 128.571%;
}
.topbar-one__info__item i {
    margin-right: 5px;
    color: #fd591c;
}
.topbar-one__info__item a {
    color: #eee;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}
.topbar-one__info__item a:hover {
    background-size: 100% 1px;
}
.topbar-one__info__item a:hover {
    color: var(--ostech-white, #fff);
}
.topbar-one__info__item + .topbar-one__info__item {
    margin-left: 50px;
}
.topbar-one__info__icon {
    font-size: 12px;
    color: var(--ostech-base, #fd591c);
    position: relative;
    top: 2px;
    margin-right: 9px;
}
.topbar-one__right {
    padding-top: 6px;
    padding-bottom: 6px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
@media (min-width: 992px) {
    .topbar-one__right {
        margin-top: 0;
        margin-left: auto;
    }
}
.topbar-one__right__call {
    display: flex;
    align-items: center;
    gap: 10px;
}
.topbar-one__right__call__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ostech-gray, #f4f5f8);
    color: var(--ostech-secondary, #1e243d);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}
.topbar-one__right__call__text {
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--ostech-text-dark, #1e243d);
    font-size: 16px;
    font-weight: 600;
    line-height: 187.5%;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}
.topbar-one__right__call__text:hover {
    background-size: 100% 1px;
}
.topbar-one__right__call:hover .topbar-one__right__call__icon {
    background: var(--ostech-white, #fff);
    color: var(--ostech-base, #fd591c);
}
.topbar-one__right::before {
    content: "";
    background: var(--ostech-base, #fd591c);
    z-index: -1;
    width: 13px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 99%;
}
.topbar-one__right::after {
    content: "";
    background: var(--ostech-base, #fd591c);
    z-index: -1;
    width: 95%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.topbar-one__social {
    display: flex;
    align-items: center;
    line-height: 1em;
}
.topbar-one__social a {
    font-size: 14px;
    color: var(--ostech-black, #1e243d);
    transition: all 500ms ease;
}
.topbar-one__social a:hover {
    color: var(--ostech-white, #fff);
}
.topbar-one__social a + a {
    margin-left: 18px;
}
.topbar-two {
    background: var(--ostech-secondary, #1e243d);
    position: relative;
    display: none;
}
.topbar-two .container-fluid {
    max-width: 1745px;
}
@media (min-width: 992px) {
    .topbar-two {
        display: block;
    }
}
.topbar-two__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-two__info {
    display: flex;
    align-items: center;
    gap: 27px;
    background: var(--ostech-black, #1e243d);
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
    padding: 18px 30px 18px 0px;
}
.topbar-two__info__item {
    display: flex;
    align-items: center;
}
.topbar-two__info__item a,
.topbar-two__info__item span,
.topbar-two__info__item__time {
    font-weight: 600;
    font-size: 14px;
    line-height: 129%;
    color: var(--ostech-text-gray, #999b9f);
    margin-bottom: 0;
    padding-bottom: 0;
}
.topbar-two__info__item i {
    font-size: 14px;
    color: var(--ostech-base, #fd591c);
    margin-right: 5px;
}
.topbar-two__info::before {
    content: "";
    width: 999999px;
    top: 0;
    height: 100%;
    background: var(--ostech-black, #1e243d);
    position: absolute;
    right: 99%;
    z-index: -1;
}
.topbar-two__right {
    display: flex;
    align-items: center;
}
.topbar-two__social {
    background: var(--ostech-black, #1e243d);
    padding-left: 40px;
    margin-left: 40px;
    padding: 10px 35px 10px 40px;
    position: relative;
    z-index: 1;
}
.topbar-two__social a {
    color: var(--ostech-white, #fff);
    font-size: 13px;
}
.topbar-two__social a + a {
    margin-left: 23px;
}
.topbar-two__social::before {
    content: "";
    width: 999999px;
    top: 0;
    height: 100%;
    background: var(--ostech-black, #1e243d);
    position: absolute;
    left: 99%;
    z-index: -1;
}
body.custom-cursor:not(.scrolled) header.header {
    top: 54px;
    box-shadow: 1px 10px 15px -4px #dcdcdc;
    background-color: #fff;
}
.main-header__btn {
    background: var(--ostech-gray, #f4f5f8);
    color: var(--ostech-text-dark, #1e243d);
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    line-height: 128.571%;
    letter-spacing: normal;
}
.main-header__btn:hover {
    color: var(--ostech-white, #fff);
}
@media (max-width: 767px) {
    .main-header--two .main-header__right {
        justify-content: end;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .main-header__right__btn {
        /*display: none;*/
    }
} /*-------------------------------------------------------------- # Global Header --------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 5px 0;
    z-index: 997;
}
.header .logo {
    line-height: 1;
}
.header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}
.header .logo span {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 600;
    padding-left: 3px;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.navmenu ul:not(.dropdown-menu) .current-menu-item a.nav-link,
.navmenu ul:not(.dropdown-menu) .current-menu-ancestor a.nav-link
{color: #fd591c;}
@media (max-width: 1200px) {
    .header .logo {
        /*order: 1;*/
    }
    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }
    .header .navmenu {
        order: 3;
    }
}
.scrolled .header {
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
} /* Index Page Header ------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: rgba(255, 255, 255, 0.5);
    --nav-hover-color: #ffffff;
} /* Index Page Header on Scroll ------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
    --heading-color: #32353a;
    --nav-color: #1e243d;
    --nav-hover-color: #fd591c;
} /*-------------------------------------------------------------- # Navigation Menu --------------------------------------------------------------*/ /* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu a {
        color: var(--ostech-text, #686a6f);
        padding: 18px 10px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: uppercase;
    }
    .navmenu a:hover,
    .navmenu a:focus {
        color: #fd591c;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu li:last-child a {
        padding-right: 0;
    }
    .navmenu .menu-item-has-children ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    }
    .navmenu .menu-item-has-children ul li {
        min-width: 200px;
    }
    .navmenu .menu-item-has-children ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .navmenu .menu-item-has-children ul a i {
        font-size: 12px;
    }
    .navmenu .menu-item-has-children ul a:hover,
    .navmenu .menu-item-has-children ul .active:hover,
    .navmenu .menu-item-has-children ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .menu-item-has-children:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .menu-item-has-children .menu-item-has-children ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .menu-item-has-children .menu-item-has-children:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
	
	
} /* Navmenu - Mobile */
@media (max-width: 1199px) {
    .topbar-one {
        display: block;
    }
    .topbar-one__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    /*.topbar-one__info__item:first-child {
        display: none;
    }*/
    .topbar-one__right {
        margin-top: 0px;
    }
    .topbar-one__info__item + .topbar-one__info__item {
        margin-left: 0px;
    }
    .mobile-nav-toggle {
        color: #fd591c;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .menu-item-has-children.active .dropdown-menu {
        display: block;
        background-color: #f9f9f9;
        border: 0px;padding: 0px;
        margin: 0px;
    }
    header .navmenu li.menu-item-has-children ul li a{border-bottom: 1px solid rgba(246, 152, 16, 0.2);}
    header .navmenu li.menu-item-has-children::after{top: 17px !important;right: 20px !important;}

    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-dropdown-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 8px 20px;
        font-family: var(--nav-font);
        font-size: 15px;
        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: 12px;
        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 {
        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 .menu-item-has-children ul {
        position: static;
        display: none;
        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 .menu-item-has-children ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .menu-item-has-children > .menu-item-has-children-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: 32px;
        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;
    }
} /*-------------------------------------------------------------- # Preloader --------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} /*-------------------------------------------------------------- # Scroll Top Button --------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 120px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}
.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
} /*-------------------------------------------------------------- # Disable aos animation delay on mobile devices --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
} /*-------------------------------------------------------------- # Global Page Titles & Breadcrumbs --------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}
.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}
.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}
.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.page-title nav ol li + li {
    padding-left: 10px;
}
.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
} /*-------------------------------------------------------------- # Hero Slider --------------------------------------------------------------*/
.main-slider-one {
    position: relative;
    background: var(--ostech-white, #fff);
}
.main-slider-one__carousel {
    position: relative;
    width: 100%;
}
.main-slider-one__carousel .owl-dots {
    top: 75%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .main-slider-one__carousel .owl-dots {
        top: auto;
        bottom: 70px;
    }
}
.main-slider-one__carousel .owl-dots .owl-dot {
    display: block;
    margin: 6px 0;
}
@media (max-width: 767px) {
    .main-slider-one__carousel .owl-dots .owl-dot {
        margin: 0 6px;
    }
    .main-slider-three__bg {
        display : none;
    }
}
.main-slider-one__carousel .owl-dots .owl-dot span {
    display: block;
    margin: 0;
    transition: all 300ms ease;
    width: 29.945px;
    height: 29.945px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-slider-one__carousel .owl-dots .owl-dot span::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--ostech-gray, #f4f5f8);
}
.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
    background: rgba(104, 106, 111, 0.23);
}
.main-slider-one__carousel .owl-dots .owl-dot:hover span::before,
.main-slider-one__carousel .owl-dots .owl-dot.active span::before {
    background: var(--ostech-base, #fd591c);
}
.main-slider-one__item {
    position: relative;
    z-index: 3;
    padding-top: 300px;
    padding-bottom: 370px;
}
@media (max-width: 1300px) {
    .main-slider-one__item {
        padding-top: 200px;
        padding-bottom: 250px;
    }
}
@media (max-width: 767px) {
    .main-slider-one__item {
        padding-top: 200px;
        padding-bottom: 150px;
    }
}
@media (max-width: 575px) {
    .main-slider-one__item {
        padding-top: 150px;
    }
}
.main-slider-one__item .container {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}
.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 105px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
}
.main-slider-one__bg::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--ostech-secondary-rgb, 35, 36, 41), 0.6);
}
@media (max-width: 767px) {
    .main-slider-one__bg {
        bottom: 0;
    }
}
.main-slider-one__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden;
}
.main-slider-one__sub-title {
    color: var(--ostech-base, #fd591c);
    margin: 0 0 -7px;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-500px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    .main-slider-one__sub-title {
        margin: 0 0 10px;
    }
}
.main-slider-one__sub-title span {
    background: var(--ostech-black, #1e243d);
    padding: 12px 30px;
    display: inline-block;
}
.main-slider-one__title {
    color: var(--ostech-white, #fff);
    display: inline-block;
    overflow: hidden;
    margin: 0 0px 30px;
    text-align: center;
    font-size: 100px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
}
.main-slider-one__title__overlay {
    background-color: var(--ostech-white, #fff);
    width: 16.66%;
    transform: scaleX(1);
    height: calc(100% - 2px);
    display: block;
    position: absolute;
    transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
    transition-delay: 2s;
    z-index: 1;
}
.main-slider-one__title__overlay:nth-child(2),
.main-slider-one__title__overlay:nth-child(4),
.main-slider-one__title__overlay:nth-child(6) {
    top: 1px;
}
.main-slider-one__title__overlay:nth-child(1),
.main-slider-one__title__overlay:nth-child(3),
.main-slider-one__title__overlay:nth-child(5) {
    bottom: 1px;
}
.main-slider-one__title__overlay:nth-child(2) {
    left: 16.66%;
}
.main-slider-one__title__overlay:nth-child(4) {
    left: 49.98%;
}
.main-slider-one__title__overlay:nth-child(6) {
    left: 83.3%;
}
.main-slider-one__title__overlay:nth-child(1) {
    left: 0;
}
.main-slider-one__title__overlay:nth-child(3) {
    left: 33.34%;
}
.main-slider-one__title__overlay:nth-child(5) {
    left: 66.64%;
}
@media (max-width: 1300px) {
    .main-slider-one__title {
        font-size: 70px;
    }
}
@media (max-width: 991px) {
    .main-slider-one__title {
        font-size: 60px;
    }
}
@media (max-width: 767px) {
    .main-slider-one__title {
        font-size: 50px;
    }
}
@media (max-width: 575px) {
    .main-slider-one__title {
        font-size: 40px;
    }
}
.main-slider-one__link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    z-index: 5;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}
.main-slider-one__link__btn::before,
.main-slider-one__link__btn::after {
    background: var(--ostech-gray, #f4f5f8);
}
.main-slider-one__link__btn:hover {
    color: var(--ostech-secondary, #1e243d);
}
.main-slider-one__shape--one {
    position: absolute;
    bottom: 63px;
    right: 0px;
    transform: translateX(10%);
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
}
@media (max-width: 767px) {
    .main-slider-one__shape--one {
        display: none;
    }
}
.main-slider-one__shape--two {
    position: absolute;
    bottom: 1px;
    left: 0px;
}
@media (max-width: 767px) {
    .main-slider-one__shape--two {
        display: none;
    }
}
.main-slider-one .active .main-slider-one__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}
.main-slider-one .active .main-slider-one__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}
.main-slider-one .active .main-slider-one__title__overlay {
    transform: scaleX(0);
}
.main-slider-one .active .main-slider-one__link {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}
.main-slider-one .active .main-slider-one__shape--one {
    transform: translateX(0%);
    opacity: 1;
    transition-delay: 1700ms;
}
.main-slider-two {
    position: relative;
}
.main-slider-two__carousel {
    position: relative;
    width: 100%;
}
.main-slider-two__carousel .owl-dots {
    top: 45%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    left: 80%;
    transform: translateX(-50%);
}
@media (max-width: 1199px) {
    .main-slider-two__carousel .owl-dots {
        left: auto;
        right: 5%;
        transform: translateX(0%);
    }
}
@media (max-width: 575px) {
    .main-slider-two__carousel .owl-dots {
        display: none;
    }
}
.main-slider-two__carousel .owl-dots .owl-dot {
    display: block;
    margin: 6px 0;
}
@media (max-width: 767px) {
    .main-slider-two__carousel .owl-dots .owl-dot {
        margin: 0 6px;
    }
}
.main-slider-two__carousel .owl-dots .owl-dot span {
    display: block;
    margin: 0;
    transition: all 300ms ease;
    width: 29.945px;
    height: 29.945px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-slider-two__carousel .owl-dots .owl-dot span::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--ostech-gray, #f4f5f8);
}
.main-slider-two__carousel .owl-dots .owl-dot:hover span,
.main-slider-two__carousel .owl-dots .owl-dot.active span {
    background: rgba(104, 106, 111, 0.23);
}
.main-slider-two__carousel .owl-dots .owl-dot:hover span::before,
.main-slider-two__carousel .owl-dots .owl-dot.active span::before {
    background: var(--ostech-base, #fd591c);
}
.main-slider-two__item {
    position: relative;
    z-index: 3;
    padding-top: 304px;
    padding-bottom: 300px;
}
@media (max-width: 1300px) {
    .main-slider-two__item {
        padding-top: 200px;
        padding-bottom: 250px;
    }
}
@media (max-width: 767px) {
    .main-slider-two__item {
        padding-top: 200px;
        padding-bottom: 250px;
    }
}
@media (max-width: 575px) {
    .main-slider-two__item {
        padding-top: 150px;
    }
}
.main-slider-two__item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -55px;
    left: 0;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 99.000000"> <g transform="translate(0.000000,99.000000) scale(0.050000,-0.050000)"> <path d="M0 1180 c0 -440 4 -800 8 -800 4 0 289 216 632 480 343 264 641 480 660 480 29 0 4494 -892 4655 -930 l45 -11 0 791 0 790 -3000 0 -3000 0 0 -800z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 99.000000"> <g transform="translate(0.000000,99.000000) scale(0.050000,-0.050000)"> <path d="M0 1180 c0 -440 4 -800 8 -800 4 0 289 216 632 480 343 264 641 480 660 480 29 0 4494 -892 4655 -930 l45 -11 0 791 0 790 -3000 0 -3000 0 0 -800z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    background: linear-gradient(158.93deg, #1e243d 0%, rgba(35, 36, 41, 0) 63.19%);
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(-400px);
}
.main-slider-two__item__shape {
    position: absolute;
    left: 12%;
    top: 24%;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(-200px);
    opacity: 0;
}
.main-slider-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
}
.main-slider-two__bg::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--ostech-secondary-rgb, 35, 36, 41), 0.7);
}
@media (max-width: 767px) {
    .main-slider-two__bg {
        bottom: 0px;
    }
}
.main-slider-two__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden;
}
.main-slider-two__sub-title {
    color: var(--ostech-base, #fd591c);
    margin: 0 0 25px;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-500px);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    .main-slider-two__sub-title {
        margin: 0 0 10px;
    }
}
.main-slider-two__title {
    color: var(--ostech-white, #fff);
    display: inline-block;
    overflow: hidden;
    margin: 0 0px 26px;
    font-weight: 700;
    font-size: 90px;
    line-height: 100%;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
}
.main-slider-two__title__overlay {
    background-color: var(--ostech-white, #fff);
    width: 16.66%;
    transform: scaleX(1);
    height: calc(100% - 2px);
    display: block;
    position: absolute;
    transition: 1000ms cubic-bezier(0.65, 0, 0.076, 1);
    transition-delay: 2s;
    z-index: 1;
}
.main-slider-two__title__overlay:nth-child(2),
.main-slider-two__title__overlay:nth-child(4),
.main-slider-two__title__overlay:nth-child(6) {
    top: 1px;
}
.main-slider-two__title__overlay:nth-child(1),
.main-slider-two__title__overlay:nth-child(3),
.main-slider-two__title__overlay:nth-child(5) {
    bottom: 1px;
}
.main-slider-two__title__overlay:nth-child(2) {
    left: 16.66%;
}
.main-slider-two__title__overlay:nth-child(4) {
    left: 49.98%;
}
.main-slider-two__title__overlay:nth-child(6) {
    left: 83.3%;
}
.main-slider-two__title__overlay:nth-child(1) {
    left: 0;
}
.main-slider-two__title__overlay:nth-child(3) {
    left: 33.34%;
}
.main-slider-two__title__overlay:nth-child(5) {
    left: 66.64%;
}
@media (max-width: 1300px) {
    .main-slider-two__title {
        font-size: 70px;
    }
}
@media (max-width: 991px) {
    .main-slider-two__title {
        font-size: 60px;
    }
}
@media (max-width: 767px) {
    .main-slider-two__title {
        font-size: 50px;
    }
}
@media (max-width: 575px) {
    .main-slider-two__title {
        font-size: 40px;
    }
}
.main-slider-two__link {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    gap: 20px;
    z-index: 5;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}
@media (max-width: 500px) {
    .main-slider-two__link {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}
.main-slider-two .active .main-slider-two__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}
.main-slider-two .active .main-slider-two__title__overlay {
    transform: scaleX(0);
}
.main-slider-two .active .main-slider-two__link {
    opacity: 1;
    transform: perspective(0px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}
.main-slider-two .active .main-slider-two__item__shape {
    animation: rotate 8s ease-in-out infinite;
    transform: translateX(0);
    transition-delay: 1300ms;
    opacity: 1;
}
.main-slider-two .active .main-slider-two__item::after {
    opacity: 1;
    transform: perspective(0px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}
.main-slider-three {
    position: relative;
    background: #e3e3e6;
    z-index: 1;
    overflow: hidden;
}
.main-slider-three__item {
    padding: 0px 0px 170px;
}
.hero_content,
.hero_form {
    padding-top: 90px;
}
@media (max-width: 1500px) {
    .main-slider-three__item {
        padding: 0px 0px 100px;
    }
    .hero_content,
    .hero_form {
        padding-top: 60px;
    }
}
@media (max-width: 1199px) {
    .main-slider-three__item {
        padding: 0px 0px 80px;
    }
    .hero_content,
    .hero_form {
        padding-top: 120px;
    }
    .cta_section::before {
        opacity: 0.1;
    }
    
    
}
@media (max-width: 991px) {
    .main-slider-three__item {
        padding: 0px 0px 0px;
    }
    .hero_content,
    .hero_form {
        padding-top: 100px;
    }
}
.main-slider-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}
.main-slider-three__bg::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--ostech-gray-rgb, 244, 245, 248), 0.8); /*z-index: -1;*/
}
.main-slider-three__video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.main-slider-three__title {
    font-style: normal;
    font-weight: 700;
    color: var(--ostech-text-dark, #1e243d);
}
.main-slider-three__title span {
    display: block;
    position: relative;
}
.main-slider-three__title span svg {
    position: absolute;
    top: -10px;
    left: -5px;
    z-index: -1;
    width: auto;
    height: 110px;
    fill: var(--ostech-base, #fd591c);
    animation: change-background 4s ease infinite;
}
.main-slider-three__text {
    font-style: normal;
    color: var(--ostech-text, #686a6f);
    margin-bottom: 20px;
}
@media (max-width: 991px) {
    .main-slider-three__thumb {
        position: relative;
        z-index: 1;
    }
}
.main-slider-three__shape {
    position: absolute;
    z-index: -1;
}
@media (max-width: 991px) {
    .main-slider-three__shape.main-slider-three__shape--one,
    .main-slider-three__shape--three {
        display: none;
    }
    .main-slider-three__shape--five {
        right: auto !important;
        left: 0px;
        top: 88% !important;
    }
}
.main-slider-three__shape--one {
    top: 0;
    right: 0;
}
.main-slider-three__shape--two {
    top: 0;
    left: 0;
}
.main-slider-three__shape--three {
    right: 4%;
    top: 20%;
    animation: bounceIn 4s ease-in-out infinite;
}
.main-slider-three__shape--fore {
    right: 5%;
    top: 40%;
    animation: leftRight 4s ease-in-out infinite;
}
.main-slider-three__shape--five {
    right: 5%;
    top: 67%;
    animation: rotate 4s ease-in-out infinite;
} /*Banner Form*/
.calculator_wrapper {
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #d5d5d5;
    width: 80%;
    padding: 30px 15px 15px;
    position: relative;
}
.calculator_wrapper::before {
    position: absolute;
    width: 80%;
    top: -21px;
    height: 45px;
    content: "";
    left: 9%;
    border-radius: 26px;
    z-index: -1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #f69810;
}
.main-slider-three__thumb {
    position: relative;
}
.main-slider-three__thumb::after {
    content: "";
    position: absolute;
    background: url(../img/banner-img.png) no-repeat;
    width: 100%;
    height: 100%;
    background-size: contain;
    bottom: -72px;
    left: -125px;
}
.order-form {
    padding: 0 10px 10px 10px;
}
.calculator_left,
.calculator_right {
    padding: 0px !important;
}
.calculate_order h3 {
    font-weight: 600;
    color: #1e243d;
    text-align: left;
    line-height: 2rem;
    text-transform: capitalize;
    padding-left: 63px;
    position: relative;
}
.order-form i {
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 1;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(246, 152, 16, 0.3);
    border-radius: 50%;
    padding: 15px;
    border-bottom-left-radius: 0;
    margin-right: 30px;
}
.rs-input-style {
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    appearance: none;
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    box-shadow: rgb(0 0 0 / 0.075) 0 1px 4px 0;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 40px;
    outline: 0;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
    white-space: nowrap;
    width: 100%;
    padding: 8px 10px;
    color: #161c2d;
    text-align: left !important;
}
.level-mtb {
    margin-bottom: 10px;
}
.iti {
    position: relative;
    display: block !important;
}
.iti--allow-dropdown .iti__country-container {
    right: auto;
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 2px;
}
.calculate_order select {
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    appearance: none;
    /*background-image: url(../images/dropdown-icon-green.webp);
    background-repeat: no-repeat;*/
    background-position: 98% 50%;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    box-shadow: rgb(0 0 0 / 0.075) 0 1px 4px 0;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 40px;
    outline: 0;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
    white-space: nowrap;
    width: 100%;
    padding: 7px 10px;
    color: #161c2d;
    text-align: left !important;
    margin-top : 10px;
}

.calculator_right {
    border: 1px solid #dcdcdc;
    border-bottom-left-radius: 38px !important;
    border-bottom-right-radius: 30px;
}
.cal_right_tp {
    padding: 0 15px;
}
.stand_prices.cmn-price-pattern {
    margin-bottom: 5px;
}
.stand_prices p {
    font-size: 18px;
    color: #214196;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    margin-top: 0px !important;
}
.cmn-price-pattern p span:nth-child(2) {
    background-color: #f69810;
    display: inline-block;
    padding: 1px 5px;
    border-radius: 5px;
    color: #fff;
    margin-left: 5px;
    min-width: unset;
    text-align: center;
}
.stand_prices p span:nth-child(4) {
    float: right;
    font-weight: 800;
    font-size: 14px;
    position: relative;
    margin-top: 0;
    color: #969696;
}
.alarm-detail {
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
}
.inline_blck {
    display: inline-block !important;
}
.counter3.cal-countdown ul {
    padding: 0;
}
.counter3 .count-down {
    display: flex;
}
#calculate_order .calcProceedBtn {
    display: inline-block;
    width: 100%;
    position: relative;
}
#calculate_order .btn-submit {
    width: 100%;
    text-align: center;
    border: none;
    padding: 8px 0 13px;
    color: #fff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    font-weight: 700;
    background-color: #1e243d;
    appearance: none;
    transition: all 0.5s ease 0s;
    outline: none !important;
}
#calculate_order .calcProceedBtn:hover {
    color: #fff;
}
#calculate_order .btn-submit:hover {
    background-color: #f69810;
}
.btn_link {
    display: inline-block;
    padding: 12px 20px;
    transition: 500ms;
    font-size: 14px;
    font-weight: 600;
    line-height: 112.5%;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    border: 1px solid;
}
.btn_link i {
    margin-right: 3px;
} /*-------------------------------------------------------------- # Animations --------------------------------------------------------------*/
@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }
    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }
    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}
@keyframes bgSlide {
    0% {
        background-position: 0 0;
    }
    20% {
        background-position: -100px 0;
    }
    40% {
        background-position: -200px 0;
    }
    60% {
        background-position: -150px 0;
    }
    80% {
        background-position: -100px 0;
    }
    100% {
        background-position: 0px 0;
    }
}
@keyframes change-background {
    0% {
        fill: var(--ostech-base, #fd591c);
    }
    50% {
        fill: var(--ostech-gray, #f4f5f8);
    }
    100% {
        fill: var(--ostech-base, #fd591c);
    }
}
@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes iconTranslateX {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    51% {
        opacity: 1;
    }
}
@keyframes scaleFooter {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8);
    }
}
@keyframes scale2 {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes leftRight {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes topBottom {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(90deg);
    }
    100% {
        transform: rotate(180deg);
    }
}
@keyframes moveHorizontal {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    50% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes textScrolling {
    0% {
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        transform: translate3d(0%, 0, 0);
    }
}
.zoom-In-Out {
    display: inline-block;
    animation: zoomInOut 1s infinite ease-in-out;
}
@keyframes zoomInOut {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
} /*About Us*/
.about-style2 .about-info {
    position: relative;
    padding: 50px 20px 50px 50px;
}
.about-style2 .about-info .about-content {
    background-color: #fff;
    z-index: 1;
    position: relative;
    padding: 20px;
}
.about-style2 .about-info:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border: 15px solid #fd591c;
    width: 50%;
    bottom: 0;
    height: 100%;
}
.radius-md {
    border-radius: 8px;
    -webkit-border-radius: 8px;
}
.dlab-media,
.dlab-post-media {
    position: relative;
    overflow: hidden;
}
.dlab-media img,
.dlab-post-media img {
    width: 100%;
    height: auto;
} /*Services*/
.services-style4 {
    /* box-shadow: rgba(0, 0, 0, .1) 0 20px 30px; outline: 2px solid #fd591c;*/
    background-color: rgba(111, 186, 130, 0.1);
    outline-offset: -15px;
    padding: 40px; /*border: 1px solid rgba(0, 0, 0, .05);*/
    height: 100%;
}
.services-style4 .ostech-btn {
    padding: 10px 15px 8px;
    background-color: #fd591c;
    color: #fff;
    font-size: 12px;
}
.services-style4 .icon-lg {
    width: 80px;
    height: 80px;
    display: grid;
    align-items: center;
    justify-content : center;
    background-color: rgba(246, 152, 16, 0.1);
    border-radius: 100px;
}
.services-style4 .icon-lg img {
    max-width: 40px;
}
.icon-lg {
    width: 80px;
}
.icon-lg i {
    font-size: 60px;
} /*How It Works*/
.sectionBorderTop {
    border-top: 1px solid #dcdcdc;
}
.work_content_box .image_box {
    background-color: #f0f8ff;
    width: 80px;
    height: 80px;
    min-width: 80px;
}
.work_content_box:not(.process_page) {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.work_content_box {
    position: relative;
} /*.work_content_box::before { content: ""; position: absolute; background: url(../img/logo-icon.svg); width: 100%; height: 100%; background-repeat: no-repeat; background-size: contain; background-position: right -50px; right: 0px; top: 0px; }*/
.work_content_box .image_box img {
    max-width: 45px;
    width: 45px;
}
.work_content_box .img_content_box {
    max-width: 400px;
    margin-bottom: 70px;
    position: relative;
}
.work_content_box .img_content_box::after {
    content: "";
    position: absolute;
    background: url(../img/arrow-green.png) no-repeat;
    width: 85px;
    height: 35px;
    background-size: 100%;
    transform: rotate(-50deg) scaleX(-1);
    bottom: -70px;
}
.process_page .img_content_box::after {
    transform: rotate(-60deg) scaleX(-1);
    bottom: -57px;
    left: 10px;
}
.process_page .img_content_box {
    max-width: 100%;
}
.work_content_box .img_content_box.step1 {
    margin-left: auto;
    margin-right: auto;
}
.work_content_box .img_content_box.step2 {
    margin-left: auto;
    margin-right: 0px;
}
.work_content_box .img_content_box.step3 {
    margin-left: 0;
    margin-right: auto;
}
.work_content_box .img_content_box.arrowStep1::after {
    right: 0px;
    left: 0px;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(40deg) scaleX(1);
    bottom: -61px;
}
.work_content_box .img_content_box.arrowStep2::after {
    left: -55px;
    transform: rotate(-23deg) scaleX(-1);
}
.work_content_box .img_content_box.arrowStep3::after {
    right: -35px;
    transform: rotate(25deg) scaleX(1);
}
.lastStep::after {
    display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
    .work_content_box .img_content_box.arrowStep2::after {
        left: -20px;
        transform: rotate(-23deg) scaleX(-1);
    }
    .work_content_box .img_content_box.arrowStep3::after {
        right: 10px;
        transform: rotate(45deg) scaleX(1);
        bottom: -50px;
    }
    .work_content_box .img_content_box.arrowStep2::after {
        left: -15px;
        transform: rotate(-38deg) scaleX(-1);
        bottom: -60px;
    }
}
@media (max-width: 767px) {
    .work_content_box .img_content_box.arrowStep1::after {
        right: 0px;
        left: 0px;
        margin-left: auto;
        margin-right: auto;
        transform: rotate(50deg) scaleX(1);
        bottom: -60px;
    }
    .work_content_box .img_content_box.arrowStep2::after {
        left: 0px;
        transform: rotate(48deg) scaleX(1);
    }
    .work_content_box .img_content_box.arrowStep3::after {
        transform: rotate(-32deg) scaleX(-1);
        bottom: -51px;
        right: 0px;
    }
}
.box-ico-1_iteam {
    max-width: 100%;
}
.box-ico-1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 250px;
    z-index: 3;
    background-color: rgba(111, 186, 130, 0.1);
    z-index: -1;
}
.box-ico-1 .box-ico-1_ico-nmbr {
    position: absolute;
    left: -5px;
    top: -5px;
    color: #1e243d;
    font-size: 22px;
    font-weight: 600;
    width: 45px;
    height: 45px;
    background-color: rgba(111, 186, 130, 0.1);
    border-radius: 100px;
    display: grid;
    align-items: center;
    justify-content: center;
}
.box-ico-1 .box-ico-1_iteam {
    border: 1px solid #eee;
    padding: 35px;
    -webkit-box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
    background: #fff;
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
}
.box-ico-1 .box-ico-1_iteam:hover {
    -webkit-filter: drop-shadow(0px 2px 12px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0px 2px 12px rgba(0, 0, 0, 0.1));
}
.box-ico-1 .box-ico-1_title {
    color: #222;
    font-weight: 500;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    font-size: 12px;
    line-height: 20px;
    padding-top: 10px;
    display: block;
}
.box-ico-1 .box-ico-1_iteam p {
    color: #777;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}
.box-ico-1 .box-ico-1_img {
    width: 100px;
}
.box-ico-1_img svg,
.box-ico-1_img img {
    max-width: 100%;
    height: auto;
}
.box-ico-2 .box-ico-1_ico-nmbr {
    background-color: #f69810;
    font-size: 12px;
    color: #fff;
    text-align: center;
    min-width: 75px;
    display: inline-block;
    position: absolute;
    top: -20px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.box-ico-2 .box-ico-wrap {
    display: flex;
    position: relative;
    justify-content: center;
    padding: 35px;
    background: #fff;
    -webkit-box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    padding-top: 35px;
    margin-bottom: 20px;
    width: 137px;
    height: 125px;
    align-items: center;
}
.box-ico-2 .box-ico-1_img {
    display: inline-block;
}
.box-ico-2 .box-ico-1_title {
    font-weight: 600;
    font-size: 24px;
    color: #222;
    text-transform: capitalize;
}
.box-ico-2 .box-ico-1_iteam {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    max-width: 320px;
    margin: 25px auto 0 auto;
    position: relative;
    z-index: 7;
    padding-bottom: 25px;
}
.box-ico-2 svg {
    max-width: 60px;
    height: 60px;
}
.box-ico-2 svg path {
    fill: #222;
}
.arrow-steps {
    position: absolute;
    right: -30%;
    z-index: 9;
    top: 29px;
}
.arrow-steps svg {
    width: 120px;
    height: 20px;
}
.arrow-steps svg path {
    fill: #cccccc;
}
@media (max-width: 1200px) {
    .arrow-steps {
        display: none;
    }
}
.box-ico-2 {
    position: relative;
}
.box-ico-2:after {
    content: "";
    display: inline-block;
    background-color: #f7f7f7;
    position: absolute;
    bottom: -10px;
    width: 100%;
    height: 217px;
    left: 0;
    z-index: 2;
} /*Guaranteed Section*/
.guaranteed_section {
    position: relative;
    background-color: #1e243d;
}
.guaranteed_section::before {
    content: "";
    position: absolute;
    background-image: url(../img/essay-writing.jpg);
    width: 100%;
    height: 100%;
    background-position: center right;
    background-size: cover;
    opacity: 0.1;
    background-repeat: no-repeat;
}
.cta_btn_1 .ostech-btn.bg-white:hover {
    color: #fff !important;
}
.we-work {
    padding: 25px 0 55px;
}
.we-work__list {
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 992px) {
    .we-work {
        padding: 55px 0 75px;
    }
}
.we-work__title {
    color: #141414;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 40px;
    text-align: center;
}
@media screen and (min-width: 992px) {
    .we-work__title {
        font-size: 36px;
        margin-bottom: 50px;
    }
}
.we-work__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto 40px;
    max-width: 560px;
}
@media screen and (min-width: 992px) {
    .we-work__wrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -ms-flex-direction: row;
        flex-direction: row;
        justify-content: space-between;
        margin: 0 0 70px;
        max-width: unset;
    }
}
.we-work__block {
    border-radius: 20px;
    padding: 30px 20px 0;
}
@media screen and (min-width: 992px) {
    .we-work__block {
        padding: 50px 50px 0;
        width: 49%;
    }
}
.we-work__block.left {
    background-color: #fff2ed;
    margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
    .we-work__block.left {
        margin-bottom: unset;
    }
}
.we-work__block.right {
    background-color: #f0f1fe
}
.we-work__caption {
    color: #141414;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
    .we-work__caption {
        font-size: 24px;
    }
}
@media screen and (min-width: 992px) {
    .we-work__caption {
        font-size: 28px;
    }
}
.we-work__text {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
@media screen and (min-width: 992px) {
    .we-work__text {
        font-size: 16px;
    }
}
.we-work__img {
    margin-top: 30px;
}
.we-work__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    max-width: 560px;
    row-gap: 40px;
}
@media screen and (min-width: 992px) {
    .we-work__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -ms-flex-direction: row;
        flex-direction: row;
        justify-content: space-between;
        margin: 0;
        max-width: unset;
        row-gap: unset;
    }
}
.we-work__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (min-width: 992px) {
    .we-work__item {
        max-width: clamp(310px, 32%, 330px);
    }
}
.we-work__icon {
    height: 50px;
    margin-bottom: 10px;
    width: 50px;
    border-radius: 100px;
    padding: 12px;
}
.we-work__icon img {
    width: 100%;
}
.we-work__icon.blue {
    background-color: blue;
}
.we-work__icon.green {
    background-color: #11bb19;
}
.we-work__icon.orange {
    background-color: orange;
}
.we-work__subtitle {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
    .we-work__subtitle {
        font-size: 24px;
    }
}
@media screen and (min-width: 992px) {
    .we-work__subtitle {
        font-size: 22px;
    }
}
.we-work__subtext {
    color: #cbd0e3;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
@media screen and (min-width: 992px) {
    .we-work__subtext {
        font-size: 16px;
    }
}
.img_shape {
    position: relative;
}
.img_shape::before {
    content: "";
    position: absolute;
    width: 22%;
    height: 80%;
    background: rgb(253, 89, 28);
    background: -moz-linear-gradient(180deg, rgba(253, 89, 28, 1) 0%, rgba(246, 152, 16, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(253, 89, 28, 1) 0%, rgba(246, 152, 16, 1) 100%);
    background: linear-gradient(180deg, rgba(253, 89, 28, 1) 0%, rgba(246, 152, 16, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fd591c",endColorstr="#f69810",GradientType=1);
    bottom: 0px;
    border-bottom-right-radius: 15px;
}
.swiper-button-next,
.swiper-button-prev {
    width: 25px;
    height: 25px;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    font-size: 25px;
} /*Testimonials*/
.testimonial-swiper {
    position: relative;
}
.testimonial-left--thumb img,
.testimonial-right--thumb img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    margin-top: 7%;
}
.testimonial-swiper .slideNav {
    color: #000;
    background-color: #f0f8ff;
    width: 45px;
    height: 45px;
    border-radius: 100px;
}
.testimonial-swiper .slideNav:hover {
    background-color: #fd591c;
    color: #fff;
}
.testimonial-swiper .slideNav::after {
    font-size: 18px;
}
.testimonial-swiper .swiper-button-next {
    right: -15px;
}
.testimonial-swiper .swiper-button-prev {
    left: -12px;
}
.testimonial-left--thumb {
    position: absolute;
    display: inline-block;
    left: 50px;
}
.testimonial-right--thumb {
    position: absolute;
    display: inline-block;
    right: 50px;
    top: 0px;
}
.creative-testimonial--slider .slider-row {
    max-width: 90%;
    margin: auto;
}
.slider-row .swiper {
    width: 80%;
    max-width: 650px;
    margin: 0 auto;
}
.slider-row .swiper-slide {
    text-align: center;
}
.creative-testimonial--slider {
    margin-top: 28px;
}
.testimonial-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px 30px 35px;
    border-radius: 15px;
    border: 1px solid #dcdcdc;
}
.testimonial_grid .testimonial-wrap {
    position: relative;
}
.testimonial_grid .testimonial-wrap .comment_icon {
    bottom: 7px;
    top: auto;
    margin-right: 0px;
    right: 5px;
}
.comment_icon {
    width: 50px;
    height: 50px;
    display: grid;
    align-items: center;
    color: #1e243d;
    font-size: 30px;
    margin-right: auto;
    position: absolute;
    background-color: rgba(246, 152, 16, 0.3);
    border-radius: 100px;
    top: -22px;
    left: 0px;
    right: 0px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-wrap--inner {
    text-align: center;
}
.testimonial-wrap--inner img {
    opacity: 0.5;
}
.quote-icon {
    margin-bottom: 30px;
    border-radius: 50%;
}
.testimonial-heading {
    line-height: 25px;
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
    font-weight: 400;
}
.testimonial-user {
    font-size: 16px;
    font-weight: 500;
    color: #1e243d;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #dcdcdc;
    opacity: 1;
    border-radius: 50%;
    margin: 0 5px !important;
    transition: 0.3s;
}
.swiper-pagination-bullet-active {
    background-color: #f69810;
}
.swiper-button-next,
.swiper-button-prev {
    color: #1e243d;
}
.creative-testimonial--slider .slider-row .swiper-pagination {
    margin-top: -20px;
    position: relative;
}
.creative-testimonial--slider .slider-row .swiper-pagination {
    bottom: 6px;
} /* ================= RESPONSIVE IPAD PRO ====================== */
@media only screen and (max-width: 1024px) {
    .testimonial-left--thumb,
    .testimonial-right--thumb {
        display: none;
    }
} /* ================= RESPONSIVE IPHONE ====================== */
@media only screen and (max-width: 480px) {
    .slider-row .swiper {
        width: 100%;
        max-width: 100%;
    }
    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
    .testimonial-heading {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 25px;
    }
    .creative-testimonial--slider .slider-row .swiper-pagination {
        margin-top: -10px;
    }
    .testimonial-wrap {
        padding: 30px 20px 50px;
    }
}
.brands-slider {
    overflow: hidden;
}
.brand-img {
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    background-color: #fff;
    border-radius: 5px;
}
.brand-img img {
    max-width: 130px;
} /*Fixed Sidebar Form Wrapper*/
.side_fixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    animation: slideIn 0.3s forwards;
    display: none;
}
.side_fixed.visible {
    display: flex;
}
.calc-heading {
    position: relative;
}
.side_fixed_btn {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #1e243d;
    color: #fff;
    padding: 15px 10px;
    cursor: pointer;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #dcdcdc;
}
.side_form_box {
    display: none;
    position: relative;
    right: 0%;
    top: 0;
    background-color: #f9f9f9;
    padding: 25px 10px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 280px;
}
.mini_form .order-form i {
    width: 45px;
    height: 45px;
}
.mini_form .calc-heading{font-size: 18px !important;text-align: left;padding-left: 52px;}
.mini_form .level-mtb {
    margin-top: 5px;
    margin-bottom: 5px;
}
.mini_form .rs-input-style,
.mini_form .calcSelect {
    height: 40px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    appearance: none;
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    box-shadow: rgb(0 0 0 / 0.075) 0 1px 4px 0;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 40px;
    outline: 0;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
    white-space: nowrap;
    width: 100%;
    padding: 8px 10px;
    color: #1e243d;
    text-align: left !important;
}
.mini_form .calcProceedBtn {
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    padding: 6px 10px 6px;
    background-color: #1e243d;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.side_form_box.open {
    display: block;
}
.mini_form {
    /* display: grid; */
    align-items: center;
}
@keyframes slideIn {
    from {
        right: -100%;
    }
    to {
        right: 0%;
    }
} /* Popup Subscription Box */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(30, 36, 61, 0.9);
} /* Popup content */
.popup-centralize {
    height: 100%;
    display: grid;
    align-items: center;
}
.popup-content {
    position: relative;
    margin: auto auto;
    padding: 0px;
    width: 80%;
    max-width: 550px;
    background: white;
    border-radius: 5px;
    text-align: center;
}
.popup .close {
    position: absolute;
    right: -15px;
    top: -15px;
    color: #fff;
    font-size: 22px;
    background-color: #fd591c;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    cursor: pointer;
    z-index: 1;
}
.popup .close:hover,
.popup .close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-color: #1e243d;
}
.cta_2 {
    border: 1px solid #dcdcdc;
    background-color: #f0f8ff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.cta_2::before {
    content: "";
    position: absolute;
    background-image: url(../img/online-reading.jpg);
    width: 30%;
    height: 100%;
    top: 0px;
    right: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
} /*Sidebar Widget*/
.sidebar_widget_head {
    background-color: #1e243d;
    color: #fff;
}
.sidebar_box_wrapper {
    border: 1px solid #dcdcdc;
}
.sidebar_wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
} /*Ratings*/
.stats-rate {
    padding: 6px 0px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    border-radius: 0px;
}
.stats-rate .img {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    display: inline-block;
}
.stats-star {
    display: inline-block;
    line-height: 1;
}
.stats-rate p {
    margin-bottom: 0;
    line-height: 1;
    font-size: 12px;
    font-weight: 500;
}
.stats-star i {
    font-size: 8px;
    color: #ffd10c;
}
.stats-star i.last-star-48 {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-image: linear-gradient(90deg, #ffd10c 75%, rgba(255, 209, 12, 0.4) 75%);
}
.stats-rate strong {
    margin-bottom: 0;
    line-height: 1;
    margin-left: 5px;
    font-weight: 500;
    color: #1e243d;
}
.stats-star i.last-star-44 {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-image: linear-gradient(90deg, #ffd10c 60%, rgba(255, 209, 12, 0.4) 60%);
}
.stats-star i.last-star-47 {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-image: linear-gradient(90deg, #ffd10c 70%, rgba(255, 209, 12, 0.4) 70%);
}
.main-header__btn,
.ostech-btn,
.btn_link {
    border-radius: 6px;
} /*Image Box Style 1*/
.img_content_box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.image_box {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    justify-content: center;
    display: grid;
    align-items: center;
    min-width: 50px;
    margin-right: 10px;
}
.image_box img {
    max-width: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 35px;
}
.our_samples .swiper-slide {
    height: auto !important;
}
.our_samples .box-ico-1 .box-ico-1_img {
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f0f8ff;
    border-radius: 5px;
    position: relative;
}
.our_samples .box-ico-1 .box-ico-1_img img {
    position: relative;
    top: -10px;
    right: -10px;
}
.our_samples .box-ico-1_title {
    background-color: #1e243d;
    color: #fff;
    border-radius: 10px;
    padding: 1px 10px 2px;
    font-size: 11px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.our_samples .box-ico-1 .box-ico-1_iteam p {
    font-size: 12px;
    line-height: 15px;
}
.our_samples .btn_link.link2 {
    padding: 7px 10px 7px !important;
    font-size: 12px;
    font-weight: 400;
}
.our_samples .box-ico-col4 {
    position: relative;
}
.our-samples-swiper {
    width: 90%;
    padding-bottom: 60px;
}
.our_samples .swiper-button-next,
.our_samples .swiper-button-prev {
    top: 35%;
} /*Footer*/
.footer_logo {
    margin-bottom: 10px;
}
footer#footer {
    background-color: #1e243d;
    margin-top: 200px;
}
footer#footer::before {
    content: "";
    position: absolute;
    background-image: url(../img/footer-bg.jpg);
    width: 100%;
    height: 100%;
    background-position: bottom center;
    background-size: cover;
}
.cta_section {
    background: rgb(253, 89, 28);
    background: -moz-linear-gradient(180deg, rgba(253, 89, 28, 1) 0%, rgba(246, 152, 16, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(253, 89, 28, 1) 0%, rgba(246, 152, 16, 1) 100%);
    background: linear-gradient(180deg, rgba(253, 89, 28, 1) 0%, rgba(246, 152, 16, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fd591c",endColorstr="#f69810",GradientType=1);
    position: absolute;
    top: -150px;
    border-radius: 15px;
    padding: 25px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
}
.cta_section::before {
    content: "";
    position: absolute;
    background: url(../img/logo-icon.svg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right -50px;
    right: 0px;
    top: 0px;
}
.footer-top,
.copyright {
    position: relative;
}
.copyright {
    border-top: 1px solid #ffffff20;
}
.copyright p {
    margin: 0px;
    padding: 15px 0px;
}
footer .widget-title {
    color: #fff;
    margin-bottom: 20px;
}
footer li a,
footer p {
    color: #cbd0e3;
}
footer .menu {
    padding-left: 0px;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
footer .menu li {
    margin-bottom: 10px;
}
.container.footer-top {
    padding: 135px 15px 0px;
}
.footer_contact .menu {
    display: flex;
    align-items: center;
    justify-content: normal;
}
.footer_contact .menu li {
    margin-right: 5px;
}
.footer_contact .menu li a {
    font-size: 14px;
    white-space: nowrap;
}
ul {
    list-style-type: none;
}
#loom-companion-mv3 {
    display: none !important;
}
.page-header header .navmenu li a {
    /*color: #1e243d;*/
}
header .navmenu li.menu-item-has-children{position:relative;}
header .navmenu li.menu-item-has-children a{padding-right: 20px;position: relative;z-index: 1;}
header .navmenu li.menu-item-has-children::after{content: "\F282";position:absolute;top: 25px;
    right: 4px;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;font-size: 13px;}
header .navmenu li.menu-item-has-children ul li a {
    color: #1e243d;
}
header .navmenu li.menu-item-has-children ul li a:hover{background-color:rgba(246, 152, 16, 0.3);}
.sub-menu .current_page_item a {
    background-color: rgba(246, 152, 16, 0.3);
    color: #fd591c !important;
}
body:not(.scrolled) header {
    position: unset;
}

/* Thankyou Page Css */

.thankyou-banner {
    height: 80vh;
    padding : 40px 0px;
    background : url('/wp-content/themes/bstheme/assets/img/backgrounds/thankyou-bg.jpg') center no-repeat ;
    background-size : cover;
    
    & div {
        height : 100%;
    }
    
    & h1 {
        font-size: 3em;
        margin: 0;
    }
}

@media (min-width:1920px){
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl
{max-width: 90%;} 
.fs_14, .fs_16, .fs_18, .we-work__subtext, .footer li a, footer p, .rs-input-style, .calculate_order select, .stats-rate p, .stats-star i, .stats-rate strong, .main-header__btn, .ostech-btn, .btn_link, .navmenu a, .topbar-one__info__item, .topbar-one__right__call__text, .main-title
{font-size: 140% !important;}
.fs_22, .we-work__subtitle, .fs_35:not(.title-head), .fs_20, .footer .widget-title
{font-size: 170%;}
.title-head
{font-size: 270%;}
.brand-img img
{max-width: 100%;}
.work_content_box:not(.process_page) .img_content_box{max-width: 50%;}
.work_content_box:not(.process_page) {max-width: 75%;}
.container.footer-top {
    padding-top: 190px !important;
}
}

@media (min-width: 1400px) {
    .main-slider-three__text {
        font-weight: 300;
        max-width: 500px;
    }
}

@media (max-width:1500px)
{
header .logo img{max-width:200px !important;height:auto !important;}
.assignment-page .logo img{max-width:300px !important;height:auto !important;}
}
@media (min-width: 1201px) {
.main-slider-three__thumb img{
position: absolute;bottom: -40%;animation: leftRight 2s ease-in-out infinite;z-index: 2;right: -19%;
object-fit: contain;width: 60%;
}   
.calculator_wrapper{margin-left: 0px !important;}
	.main-slider-three__thumb::after {
        display: none;
    }
    .calculator_wrapper::before {
        display: none;
    }
    .calculator_wrapper {
        z-index: 1;
    }
    .w-lg-50 {
        max-width: 60%;
    }
    .link_side_border {
        border-left: 1px solid #ffffff21;
        padding-left: 5%;
        border-right: 1px solid #ffffff21;
        padding-right: 5%;
    }
    .container.footer-top {
        padding: 160px 15px 0px;
    }
    .section_title_tagline_width {
        max-width: 50%;
    }
    .popup-content .order-form {
        padding: 25px 25px 10px 0px;
    }
}
@media (max-width: 1200px) {
    .main-slider-three__thumb img{display: none;}
    .main-slider-three__thumb::after {
        display: none;
    }
}
@media (max-width: 767px) {
    body,
    p,
    a {
        font-size: 90%;
    }
    .navmenu .sub-menu {
        display: none;
    }
    .navmenu .menu-item-has-children.active > .sub-menu {
        display: block;
    }
    .main-header__btn,
    .ostech-btn,
    .btn_link {
        padding: 10px 15px;
        font-size: 12px;
    }
    .thankyou-img-div {
        height :95%;
    }
    .calculate_order h3 {
        line-height: 20px;
    }
    .order-form i {
        width: 45px;
        height: 45px;
    }
    .rs-input-style,
    .calculate_order select {
        height: 40px;
        font-size: 13px;
    }
    .level-mtb {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    body.custom-cursor:not(.scrolled) header.header {
        top: 40px;
    }
    .topbar-one__right {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .header .logo h1 {
        font-size: 20px;
    }
    .topbar-one__right__call__text {
        font-size: 14px;
    }
    .about-style2 .about-info .about-content {
        padding: 10px;
    }
    .about-style2 .about-info:after {
        width: 67%;
    }
    .box-ico-1 .box-ico-1_iteam {
        padding: 12px;
        text-align: center;
    }
    .box-ico-1_img svg,
    .box-ico-1_img img {
        max-width: 60px;
        height: auto;
    }
    .box-ico-1 .box-ico-1_img {
        width: 100%;
    }
    .box-ico-1 .box-ico-1_ico-nmbr {
        font-size: 22px;
    }
    .main-slider-three__item {
        padding: 0px 0px 0px;
    }
    .hero_form {
        padding-top: 70px;
    }
    .hero_content {
        padding-top: 30px;
    }
    .mini_form {
        padding: 20px 20px 10px;
    }
    .cta_2::before {
        background-size: cover;
        width: 100%;
        opacity: 0.2;
    }
    .mob_w_100 {
        width: 100% !important;
    }
    .stats-rate .img {
        width: 20px;
        height: 20px;
    }
    .stats-rate .img img {
        max-width: 100%;
        height: auto;
    }
    .stats-rate p {
        font-size: 11px;
    }
    .stats-rate strong {
        font-size: 12px;
    }
    .brand-img img {
    max-width: 86px;
    height: 42px;
    }

}

@media only screen and (min-width : 1200px){
    .main-slider-three{
    height : 100%;
}
}

@media (max-width: 767px) {
.main-slider-three__bg {
    display : none;
}
.main-slider-three {
background: #e4e5e7;
    }
}


