/* Driving School HTML Template */

/*********** TABLE OF CONTENTS **************
1. Fonts
2. Reset
3. Global
4. Main Header / Style One / Style Two / Style Three
5. Info Bar
6. Mobile Menu
7. Main Slider / Banner One / Banner Two / Banner Three
8. Welcome Section
9. Services Section
10. Lessons Class
11. Why Us
12. Our Team
13. Latest Programs
14. Testimonials Section
15. News Section
16. Subscribe Section
17. Main Footer
18. Welcome Two
19. Why Us Two
20. Video Lessons Section
21. Programs Two
22. Testimonials Two
23. Pricing Section
24. About Us
25. Welcome Three
26. Why Us Three
27. Latest Courses
28. Testimonials Three
29. Page Banner Section 
30. Sponsors Section
31. FAQs Section
32. 404 Page Section
33. Info Section
34. Contact Section
35. Sidebar Page
36. Blog Single
37. Comment Form
38. Sidebar



**********************************************/

/*** 

====================================================================
      Fonts
====================================================================

 ***/

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
/*
  font-family: 'Mulish', sans-serif;
  font-family: 'Poppins', sans-serif;
  font-family: 'Raleway', sans-serif;
  font-family: 'Roboto', sans-serif;
*/

@import url('font-awesome.css');
@import url('simple-line-icons.css');
@import url('animate.css');
@import url('owl.css');
@import url('jquery-ui.css');
@import url('jquery.fancybox.min.css');
/*** 

====================================================================

  Reset

====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/*** 

====================================================================

  Global Settings

====================================================================

 ***/

 /* ============================= */
/* MORE SERVICES ANIMATION STYLE */
/* ============================= */

/* Base link styling */
.sidebar-widget .post .text a {
    position: relative;
    display: inline-block;
    padding-left: 28px;
    transition: all 0.35s ease;
}

/* Arrow before text */
.sidebar-widget .post .text a::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: all 0.35s ease;
}
.lasttext {
    text-align: center;
    padding: 30px 30px;
}
/* Hover effect */
.sidebar-widget .post:hover .text a {
    transform: translateX(6px);
    color: #ff8f1f;
}

.sidebar-widget .post:hover .text a::before {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

/* Elegant active highlight */
.sidebar-widget .post.active {
    position: relative;
    padding-left: 12px;
}

/* Animated left indicator */
.sidebar-widget .post.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background: #ff8f1f;
    border-radius: 3px;
    animation: smoothSlideIn 0.4s ease forwards;
}

/* Keep arrow visible for active */
.sidebar-widget .post.active .text a::before {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

/* Smooth animation */
@keyframes smoothSlideIn {
    from {
        height: 0%;
        opacity: 0;
    }
    to {
        height: 80%;
        opacity: 1;
    }
}
/* Make columns stretch evenly */
.programs-two .row {
    display: flex;
    flex-wrap: wrap;
}

/* Make each block equal height */
.program-block-two {
    display: flex;
}

.program-block-two .inner-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Make middle content expand evenly */
.program-block-two .mid-box {
    flex-grow: 1;
}

/* Optional: Keep text area visually balanced */
.program-block-two .text {
    min-height: 90px; /* adjust if needed */
}

/* Make Owl stage flex so items match height */
.why-carousel .owl-stage {
    display: flex;
}

/* Make each slide full height */
.why-carousel .owl-item {
    display: flex;
    height: auto;
}

/* Make block stretch */
.why-block {
    display: flex;
    width: 100%;
}

.why-block .inner-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 40px 30px; /* adjust if needed */
}

/* Keep text area balanced */
.why-block .text {
    flex-grow: 1;
}

/* Optional: equal minimum height for cleaner look */
.why-block .inner-box {
    min-height: 260px; /* adjust to your design */
}

.programs-three .row {
    display: flex;
    flex-wrap: wrap;
}

.program-block-three {
    display: flex;
}

.program-block-three .inner-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.program-block-three .lower-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-block-three .link-box {
    margin-top: auto;
}
/* Ensure all testimonial boxes are the same height */
.testi-carousel-three .testi-block .inner-box {
    display: flex;           /* make inner-box flexible */
    flex-direction: column;  /* stack children vertically */
    height: 300px;           /* set desired fixed height */
}

/* Optional: make text content scroll or ellipsis if too long */
.testi-carousel-three .testi-block .text-content {
    flex-grow: 1;            /* take available vertical space */
    overflow: hidden;        /* hide overflow */
}

/* Optional: center info at bottom */
.testi-carousel-three .testi-block .info {
    margin-top: auto;        /* push info to bottom of box */
}

.custom-multiselect {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.select-box {
    border: 1px solid #e5e5e5;
    padding: 12px 15px;
    cursor: pointer;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.select-box.active {
    border-color: #FF8F1F; /* change to your theme color if needed */
}

.select-box .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.select-box.active .arrow {
    transform: rotate(180deg);
}

/* Animated dropdown */
.checkbox-options {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 0 15px;
}

.checkbox-options.open {
    max-height: 260px;
    opacity: 1;
    transform: translateY(0);
    padding: 10px 15px;
    overflow-y: auto;
}

.checkbox-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 8px;
    font-size: 14px;
}

.checkbox-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-options label span {
    flex: 1;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #808080;
    line-height: 1.75em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #FF8F1F;
}

a:hover,
a:focus,
a:visited,
a:active,
button:active,
button:focus {
    text-decoration: none;
    outline: none;
}

ul,
ul li,
ol,
ol li {
    list-style: none;
    margin: 0 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    margin: 0 0 15px;
    background: none;
    color: #191825;
    line-height: 1.33em;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #191825;
}

h1 {
    font-size: 90px;
}

h2 {
    font-size: 64px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

input,
button,
select,
textarea {
    font-family: 'Poppins', sans-serif;
}

textarea {
    overflow: hidden;
    resize: none;
}

p {
    position: relative;
    line-height: 1.75em;
    margin-bottom: 20px;
}

.text {
    position: relative;
    line-height: 1.75em;
    margin-bottom: 0px;
}

.strike-through {
    text-decoration: line-through;
}

.auto-container {
    position: static;
    max-width: 1240px;
    padding: 0px 20px;
    margin: 0 auto;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
}

.theme-btn {
    display: inline-block;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.centered {
    text-align: center;
}

.btn-style-one {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 30px;
    padding: 16px 40px 16px;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    border: 1px solid #FF8F1F;
    text-transform: uppercase;
    background: #FF8F1F;
    border-radius: 5px;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-one span {
    position: relative;
    display: block;
    z-index: 1;
}

.btn-style-one:hover {
    color: #FF8F1F;
    background: none;
    border-color: #FF8F1F;
}

.btn-style-one.semi-round {
    border-radius: 30px 30px;
}

.btn-style-two {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 30px;
    padding: 16px 40px 16px;
    color: #FF8F1F;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    border: 1px solid #FF8F1F;
    text-transform: uppercase;
    background: none;
    border-radius: 5px;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-two span {
    position: relative;
    display: block;
    z-index: 1;
}

.btn-style-two:hover {
    color: #ffffff;
    background: #FF8F1F;
    border-color: #FF8F1F;
}

.btn-style-two.semi-round {
    border-radius: 30px 30px;
}

.theme-btn .icon-left {
    padding-right: 10px;
}

.theme-btn .icon-right {
    padding-left: 10px;
}

.theme_color {
    color: #FF8F1F;
}

.light-font {
    font-weight: 300;
}

.regular-font {
    font-weight: 400;
}

.semibold-font {
    font-weight: 600;
}

.bold-font {
    font-weight: 700;
}

.ex-bold-font {
    font-weight: 800;
}

.heavy-font {
    font-weight: 900;
}

.bg-lightgrey {
    background-color: #f6f7f8;
}

.no-bg {
    background: none;
}

.text-uppercase {
    text-transform: uppercase;
}

.grey-color {
    color: #333333 !important;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.svg);
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

/*** 

====================================================================

  Scroll To Top style

====================================================================

***/

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 52px;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 52px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    border-radius: 15px 15px 0 0;
    background: #FF8F1F;
    display: none;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.scroll-to-top img {
    position: relative;
    top: -2px;
    vertical-align: middle;
    height: 10px;
}

.scroll-to-top:hover {
    color: #ffffff;
    background: #1E1E1E;
}

/*** 

====================================================================
  Default Form Style
====================================================================

***/

form {
    position: relative;
}

/* Default Form Style */

.default-form {
    position: relative;
}

form .form-group {
    position: relative;
    margin-bottom: 30px;
}

form .row {
    margin: 0 -10px;
}

form .row .form-group {
    position: relative;
    padding: 0 10px;
    margin-bottom: 20px;
}

form .field-inner {
    position: relative;
    display: block;
}

form .field-inner .alt-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -15px;
    line-height: 30px;
    font-size: 16px;
    color: #FF8F1F;
    z-index: 1;
    pointer-events: none;
}

form .form-group .field-label {
    position: relative;
    display: block;
    color: #03030f;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 12px;
}

form .form-group .e-label {
    position: relative;
}

form .form-group input[type="text"],
form .form-group input[type="email"],
form .form-group input[type="password"],
form .form-group input[type="tel"],
form .form-group input[type="url"],
form .form-group input[type="file"],
form .form-group input[type="number"],
form .form-group textarea,
form .form-group select {
    position: relative;
    display: block;
    height: 54px;
    width: 100%;
    font-size: 16px;
    color: #101010;
    line-height: 30px;
    font-weight: 400;
    padding: 11px 20px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

form .form-group textarea {
    height: 150px;
    padding-top: 15px;
    resize: none;
}

form .form-group select {
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: #ffffff url(../images/icons/icon-select.png) right center no-repeat;
    cursor: pointer;
}

form .form-group select option {
    line-height: 30px;
    padding-left: 20px;
    text-indent: 20px;
    cursor: pointer;
}

form .form-group input[type="submit"],
form .form-group button {
    display: inline-block;
}

form .form-group input[type="text"]:focus,
form .form-group input[type="email"]:focus,
form .form-group input[type="password"]:focus,
form .form-group input[type="tel"]:focus,
form .form-group input[type="url"]:focus,
form .form-group input[type="file"]:focus,
form .form-group input[type="number"]:focus,
form .form-group textarea:focus,
form .form-group select:focus,
.form-group .ui-selectmenu-button.ui-button:focus,
.form-group .ui-selectmenu-button.ui-button:active {
    border-color: #FF8F1F;
}

form ::-webkit-input-placeholder {
    color: #656363;
}

form ::-moz-input-placeholder {
    color: #656363;
}

form ::-ms-input-placeholder {
    color: #656363;
}

form label.error {
    color: #ff0000;
    font-size: 14px;
    text-transform: capitalize;
    text-align: left;
    display: block;
    padding-top: 10px;
    line-height: 24px;
}

.check-block {
    position: relative;
    margin-bottom: 15px;
}

.check-block input {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.check-block label {
    position: relative;
    display: block;
    line-height: 28px;
    padding-left: 34px;
    font-weight: 400;
    color: #505050;
    font-size: 16px;
    cursor: pointer;
    margin: 0;
}

.check-block label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    line-height: 22px;
    background: #ffffff;
    border: 1px solid #FF8F1F;
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.check-block input:checked+label:before {
    content: '';
    background: #FF8F1F;
    color: #ffffff;
}

.check-block input:checked+label:after {
    content: '\f00c';
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    line-height: 22px;
}

.radio-block {
    position: relative;
    margin-bottom: 15px;
}

.radio-block input {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.radio-block label {
    position: relative;
    display: block;
    line-height: 28px;
    padding-left: 30px;
    font-weight: 400;
    color: #505050;
    font-size: 16px;
    cursor: pointer;
    margin: 0;
}

.radio-block label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 1px solid #FF8F1F;
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.radio-block label:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #FF8F1F;
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}

.radio-block input:checked+label:after {
    opacity: 1;
}

/*Custom Select*/

.form-group .ui-selectmenu-button.ui-button {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    height: 54px;
    padding: 11px 20px;
    line-height: 30px;
    font-family: 'Roboto', sans-serif;
    color: #585f5f;
    border-radius: 0px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.form-group .ui-button .ui-icon {
    background: none;
    position: relative;
    top: 6px;
    right: 0px;
    text-indent: 0px;
    color: #999999;
}

.form-group .ui-button .ui-icon:before {
    font-family: 'simple-line-icons';
    content: "\e604";
    position: absolute;
    right: 0px;
    top: 0px !important;
    width: 15px;
    height: 30px;
    display: block;
    color: #FF8F1F;
    line-height: 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    z-index: 5;
}

.ui-selectmenu-menu {
    min-width: 150px;
    max-height: 200px;
    overflow-y: auto;
}

.ui-widget.ui-widget-content {
    border: 1px solid #FF8F1F;
    border-top: none;
    font-family: 'Roboto', sans-serif;
    border-radius: 0;
    padding: 0;
}

.ui-menu .ui-menu-item {
    font-size: 16px;
    border-bottom: 1px solid #FF8F1F;
}

.ui-menu .ui-menu-item:last-child {
    border: none;
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    display: block;
    padding: 10px 18px !important;
    font-size: 16px;
    line-height: 28px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.ui-menu .ui-menu-item-wrapper:hover,
.ui-menu .ui-menu-item-wrapper.ui-state-active,
.ui-state-active,
.ui-widget-content .ui-state-active {
    background: #252525;
    font-weight: 400;
    border: none;
    border-bottom: 1px solid #FF8F1F;
    margin: 0;
}

.site-form form .form-group {
    margin-bottom: 30px;
}

.site-form form .form-group .field-inner {
    position: relative;
}

.site-form form .form-group .field-inner .alt-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    color: #FF8F1F;
    font-size: 18px;
    line-height: 30px;
    pointer-events: none;
}

.site-form form .form-group .f-label {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px;
}

.site-form form .form-group .f-label i {
    color: #FF8F1F;
    font-style: normal;
}

.site-form form .form-group input[type="text"],
.site-form form .form-group input[type="email"],
.site-form form .form-group input[type="password"],
.site-form form .form-group input[type="url"],
.site-form form .form-group input[type="number"],
.site-form form .form-group input[type="file"],
.site-form form .form-group input[type="range"],
.site-form form .form-group select,
.site-form form .form-group textarea {
    height: 58px;
    line-height: 26px;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    color: #10221B;
    font-weight: 500;
    background: #ffffff;
}

.site-form form .form-group textarea {
    height: 170px;
}

.site-form form .form-group select option {
    text-indent: 20px;
}

.site-form form .form-group input[type="text"]:focus,
.site-form form .form-group input[type="email"]:focus,
.site-form form .form-group input[type="password"]:focus,
.site-form form .form-group input[type="url"]:focus,
.site-form form .form-group input[type="number"]:focus,
.site-form form .form-group input[type="file"]:focus,
.site-form form .form-group input[type="range"]:focus,
.site-form form .form-group select:focus,
.site-form form .form-group textarea:focus {
    border-color: #FF8F1F;
}

/*** 

====================================================================

  Main Header style

====================================================================

***/

.main-header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0px 0px;
    background: none;
    min-height: 60px;
    font-family: 'Roboto', sans-serif;
    z-index: 999;
}

.header-two {
    min-height: 184px;
}

.header-three {
    min-height: 0;
}

.main-header .auto-container {
    max-width: 1600px;
    padding: 0 20px;
}

.header-top {
    position: relative;
    padding: 13px 0;
    background: #FF8F1F;
    color: #ffffff;
}

.header-two .header-top {
    padding: 10px 0;
}

.header-top .top-left {
    position: relative;
    float: left;
    line-height: 34px;
}

.header-top .top-left .social {
    position: relative;
}

.header-top .top-left .social li {
    position: relative;
    float: left;
    margin-right: 10px;
    line-height: 34px;
    font-size: 16px;
    font-weight: 500;
}

.header-top .top-left .social li:last-child {
    margin-right: 0;
}

.header-top .top-left .social li a {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    color: #ffffff;
    text-align: center;
    background: #F99F45;
    border-radius: 50%;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.header-top .top-left .social li a:hover {
    background: #ffffff;
    color: #FF8F1F;
}

.header-top .social-links {
    position: relative;
}

.header-top .social-links li {
    position: relative;
    float: left;
    margin-right: 25px;
    line-height: 34px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.header-top .social-links li:last-child {
    margin-right: 0;
}

.header-top .social-links li a {
    position: relative;
    display: block;
    line-height: 34px;
    color: #ffffff;
    text-align: center;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.header-top .social-links li a:hover {
    color: #101010;
}

.header-top .top-info {
    position: relative;
}

.header-top .top-info li {
    position: relative;
    float: left;
    margin-right: 62px;
    line-height: 34px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.header-top .top-info li:last-child {
    margin-right: 0;
}

.header-top .top-info li:before {
    content: '';
    position: absolute;
    left: 100%;
    margin-left: 30px;
    top: 50%;
    margin-top: -11px;
    height: 22px;
    border-right: 2px solid rgba(255, 255, 255, 0.35);
}

.header-top .top-info li:last-child:before {
    display: none;
}

.header-top .top-info li a {
    position: relative;
    display: inline-block;
    line-height: 34px;
    color: #ffffff;
    text-align: center;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.header-top .top-info li a:hover {
    color: #101010;
}

.header-top .top-right {
    position: relative;
    float: right;
    line-height: 34px;
}

.header-top .top-right .cont-us {
    position: relative;
    float: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
}

.header-top .top-right .cont-us .icon {
    position: relative;
    font-size: 18px;
    padding-right: 5px;
}

.header-top .top-right .cont-us a {
    color: #ffffff;
}

.header-top .top-right .cont-us a:hover {
    text-decoration: underline;
}

.main-header .header-upper {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    background: none;
    padding: 0 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.header-two .header-upper {
    top: 54px;
    background: #ffffff;
}

.header-three .header-upper {
    top: 0;
}

.fixed-header .header-upper {
    position: fixed;
    top: 0;
    background: #202020;
    border-bottom-color: rgba(0, 0, 0, 0.15);
}

.header-two.fixed-header .header-upper {
    background: #ffffff;
}

.main-header ul,
.main-header ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-header .main-box {
    position: relative;
    padding: 0px;
}

.main-header .main-box .logo-box {
    position: relative;
    display: block;
    float: left;
    padding: 30px 0px;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    z-index: 5;
}

.fixed-header .main-box .logo-box {}

.main-header .main-box .logo-box .logo {
    position: relative;
    display: block;
}

.main-header .main-box .logo-box .logo img {
    position: relative;
    display: block;
    height: 90px;
    width:150px;
    z-index: 1;
    margin-top: -10px;
}

.main-header .nav-box {
    position: relative;
    float: right;
}
.logo img{}
.main-header .header-upper .links-box {
    position: relative;
    float: left;
    padding-top: 42px;
    margin-left: 190px;
}

.header-two .header-upper .links-box {
    margin-left: 130px;
}

.header-three .header-upper .links-box {
    margin-left: 30px;
}

.main-header .header-upper .links-box .link {
    position: relative;
    float: left;
    margin-left: 40px;
}

.main-header .search-btn {
    position: relative;
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
    line-height: 44px;
}

.header-two .search-btn {
    color: #101010;
}

.main-header .info-btn {
    position: relative;
    cursor: pointer;
    background: none;
    font-size: 18px;
    color: #ffffff;
    line-height: 43px;
}

.main-header .info-btn img {
    height: 24px;
}

.header-two .info-btn {
    color: #101010;
}

.main-header .nav-toggler {
    position: relative;
    float: left;
    left: 0;
    top: 0;
    padding: 0;
    margin-top: 31px;
    margin-left: 20px;
    display: none;
}

.main-header .nav-toggler button {
    position: relative;
    width: 30px;
    height: 44px;
    line-height: 24px;
    padding: 5px 0px;
    background: none;
    color: #e1e1e1;
    font-size: 16px;
    margin: 0px;
    border-radius: 0px;
    outline: none !important;
}

.main-header .nav-toggler button img {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.main-header .nav-outer {
    position: relative;
    float: left;
}

.main-menu {
    position: relative;
    display: block;
    padding: 0px 0px;
}

.main-menu .navbar-collapse {
    padding: 0px;
    margin: 0px;
    border: none;
    box-shadow: none;
}

.main-menu .navigation {
    position: relative;
    z-index: 1;
}

.main-menu .navigation>li {
    position: relative;
    display: block;
    float: left;
    padding: 32px 0px;
    margin-left: 50px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    font-size: 16px;
    color: #ffffff;
    padding: 18px 0px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-two .main-menu .navigation>li>a {
    color: #101010;
}

.main-menu .navigation>li.dropdown>a {
    padding-right: 20px;
}

.main-menu .navigation>li.dropdown>a:after {
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    position: absolute;
    right: 0px;
    top: 17px;
    display: block;
    line-height: 32px;
    font-size: 16px;
    font-weight: 400;
    z-index: 5;
}

.main-menu .navigation>li:hover>a:before,
.main-menu .navigation>li.current>a:before,
.main-menu .navigation>li.current-menu-item>a:before {
    opacity: 1;
    visibility: visible;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a,
.main-menu .navigation>li.current-menu-item>a {
    color: #FF8F1F;
    text-decoration: none;
    opacity: 1;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 220px;
    padding: 10px 10px;
    z-index: 100;
    opacity: 1;
    text-align: left;
    background: #ffffff;
    border: none;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    -ms-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    -o-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -moz-transition: all 100ms ease;
    -webkit-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    margin-bottom: 0px;
}

.main-menu .navigation>li>ul>li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: #202020;
    border-radius: 5px;
    text-transform: capitalize;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 6 Pro';
    content: "\f105";
    position: absolute;
    right: 12px;
    top: 8px;
    display: block;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    z-index: 5;
}

.main-menu .navigation>li>ul>li:hover>a,
.main-menu .navigation>li>ul>li.current>a {
    color: #ffffff;
    background: #FF8F1F;
}

.main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0px);
    -ms-transform: translate(0px);
    transform: translate(0px);
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 20px;
    width: 220px;
    padding: 10px 10px;
    z-index: 100;
    opacity: 1;
    text-align: left;
    background: #ffffff;
    border: none;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    -ms-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    -o-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03), -2px 0px 10px 1px rgba(0, 0, 0, 0.03);
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -moz-transition: all 100ms ease;
    -webkit-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
}

.main-menu .navigation>li>ul>li>ul:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 20px;
    height: 100%;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    margin-bottom: 0px;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: #202020;
    border-radius: 5px;
    text-transform: capitalize;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a,
.main-menu .navigation>li>ul>li>ul>li.current>a {
    color: #ffffff;
    background: #FF8F1F;
}

.main-menu .navigation>li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 0;
    -webkit-transform: translate(0px);
    -ms-transform: translate(0px);
    transform: translate(0px);
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header .search-box {
    position: absolute;
    left: 0;
    top: 130%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.visible-search .main-header .search-box {
    opacity: 1;
    visibility: visible;
    top: 105%;
}

.main-header .search-box .inner-box {
    position: relative;
    display: block;
    padding: 20px 25px;
    background: #ffffff;
    border-top: 5px solid #FF8F1F;
    border-radius: 0px;
}

.main-header .search-box .form-box {
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.main-header .search-box .s-icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    line-height: 44px;
    font-size: 20px;
    color: #101010;
    z-index: 1;
}

.main-header .search-box .s-close-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 44px;
    line-height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
}

.main-header .search-box .form-group {
    margin: 0;
}

.main-header .search-box form input {
    height: 44px;
    line-height: 34px;
    padding: 5px 0;
    background: none;
    border: none;
    width: 100%;
    font-size: 18px;
    box-shadow: none;
}

.search-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 990;
    background: rgba(0, 0, 0, 0.90);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.visible-search .search-backdrop {
    opacity: 1;
    visibility: visible;
}

body.visible-search {
    overflow-y: hidden;
}

/*** 

====================================================================
  Hidden Sidebar style
====================================================================

***/

body.visible-sidebar {
    overflow-y: hidden;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9990;
    background: rgba(0, 0, 0, 0.70);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.visible-sidebar .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.hidden-bar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    padding-top: 60px;
    color: #101010;
    border-right: 4px solid #FF8F1F;
    z-index: 9999;
    visibility: hidden;
    -ms-transform: translateX(-400px);
    transform: translateX(-400px);
    transition: all 500ms ease-in;
    -webkit-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
}

.hidden-bar .hidden-bar-closer {
    display: none;
}

.hidden-bar.visible-sidebar {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.hidden-bar .nav-logo-box {
    position: relative;
    padding: 10px 25px 20px;
    margin-bottom: 20px;
}

.hidden-bar .nav-logo-box img {
    max-height: 60px;
}

.hidden-bar ol,
.hidden-bar ol li,
.hidden-bar ul,
.hidden-bar ul li {
    list-style-type: none;
    margin: 0px;
}

.hidden-bar .hidden-bar-closer {
    position: absolute;
    right: -5px;
    top: 0px;
    padding: 14px 20px;
    line-height: 30px;
    cursor: pointer;
    display: block;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    z-index: 9999;
}

.hidden-bar .hidden-bar-closer svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.25px;
}

.hidden-bar-wrapper {
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0;
    width: 100%;
    overflow-y: auto;
    padding: 20px 0px 35px;
    overflow-x: hidden;
}

.hidden-bar .side-menu {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    font-family: 'Poppins', sans-serif;
}

.hidden-bar .side-menu ul li {
    position: relative;
    display: block;
    padding: 5px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}

.hidden-bar .side-menu ul li a {
    position: relative;
    color: #222222;
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    padding: 5px 30px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.hidden-bar .side-menu ul li a:hover,
.hidden-bar .side-menu ul>li.current>a,
.hidden-bar .side-menu ul>li>ul>li.current>a {
    color: #FF8F1F;
}

.hidden-bar .side-menu ul li ul li {
    border-bottom: none;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-left: 10px;
}

.hidden-bar .side-menu ul li ul li a {
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 15px;
}

.hidden-bar .side-menu ul li .btn-expander {
    position: absolute;
    top: 11px;
    right: 0;
    background: none;
    color: rgba(0, 0, 0, 0.70);
    font-size: 14px;
    height: 24px;
    width: 20px;
    line-height: 24px;
    border-radius: 0px;
    outline: none;
    cursor: pointer;
    z-index: 1;
}

.hidden-bar .side-menu ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 0;
}

.hidden-bar .side-menu ul li a {
    display: block;
    vertical-align: top;
    padding: 12px 30px 12px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #231F20;
    text-transform: capitalize;
}

.hidden-bar .side-menu ul li ul li a {
    font-size: 15px;
    font-weight: 600;
}

.hidden-bar .side-menu ul li .btn-expander {
    top: 9px;
    right: 15px;
    font-weight: 700;
    font-size: 13px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.50);
}

.hidden-bar .side-menu ul li .btn-expander i {
    font-weight: 800;
}

.hidden-bar .side-menu ul li ul {
    padding: 0px 0px;
}

.hidden-bar .side-menu ul li ul li ul {
    padding: 0px 0px;
    margin-left: 0px;
}

.hidden-bar .side-menu ul li ul li {
    margin-bottom: 0px;
}

.hidden-bar .side-menu ul li ul li:last-child {
    margin-bottom: 0;
}

.hidden-bar .links-box {
    position: relative;
    display: block;
    padding: 30px 25px;
}

.hidden-bar .links-box .link {
    position: relative;
    margin-top: 15px;
}

.hidden-bar .links-box .link .theme-btn {
    display: block;
}

/*** 

====================================================================
  Hidden Sidebar style
====================================================================

***/

.info-bar {
    position: fixed;
    right: -500px;
    top: 0px;
    max-width: 100%;
    height: 100%;
    overflow-y: auto;
    font-family: 'Poppins', sans-serif;
    z-index: 99999;
    opacity: 0;
    background-color: #222222;
    border-left: 3px solid #FF8F1F;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.side-content-visible .info-bar {
    right: 0px;
    opacity: 1;
    visibility: visible;
}

.info-bar .inner-box {
    position: relative;
    background-color: #222222;
    padding: 50px 30px 50px;
}

.info-bar .inner-box .cross-icon {
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
}

.info-bar .inner-box h2 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25em;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    margin-bottom: 20px;
}

/*Appointment Form*/

.info-bar .appointment-form {
    position: relative;
}

.info-bar .appointment-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.info-bar .appointment-form input[type="text"],
.info-bar .appointment-form input[type="email"],
.info-bar .appointment-form textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 10px 20px;
    height: 46px;
    color: #ffffff;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: none;
    transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}

.info-bar .appointment-form input::placeholder,
.info-bar .appointment-form textarea::placeholder {
    color: #bdbdbd;
}

.info-bar .appointment-form input:focus,
.info-bar .appointment-form textarea:focus {
    border-color: #FF8F1F;
}

.info-bar .appointment-form textarea {
    height: 135px;
    resize: none;
}

.info-bar .appointment-form .form-group button {
    margin-top: 10px;
    display: block;
    width: 100%;
    font-size: 18px;
}

.contact-info-box {
    position: relative;
    padding-top: 50px;
}

.contact-info-box .info-list {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 25px;
}

.contact-info-box .info-list li {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-info-box .info-list:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: 1px;
    background-color: #ffffff;
}

.contact-info-box .info-list li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.90);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.contact-info-box .info-list li a:hover {
    color: #FF8F1F;
}

.contact-info-box .social-list {
    position: relative;
}

.contact-info-box .social-list li {
    position: relative;
    width: 50%;
    float: left;
    margin-bottom: 6px;
    display: inline-block;
}

.contact-info-box .social-list li a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.40);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.contact-info-box .social-list li a:hover {
    color: #FF8F1F;
}

.info-back-drop {
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.70);
    visibility: hidden;
    z-index: 9990;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.side-content-visible .info-back-drop {
    opacity: 1;
    visibility: visible;
}

/*** 

====================================================================
  Banner Slider Section
====================================================================

***/

.banner-section {
    position: relative;
    padding: 0 0;
    background: #101010;
}

.banner-section .auto-container {}

.banner-section .banner-container {
    position: relative;
}

.banner-section .banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-section .slide-item {
    position: relative;
    width: 100%;
    padding: 0px;
    overflow: hidden;
}

.banner-section .slide-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

.banner-section .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-section .slide-item .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.banner-section .slide-item .content-box {
    position: relative;
    display: table;
    vertical-align: middle;
    width: 100%;
    padding: 130px 0px 50px;
    height: 1080px;
    z-index: 10;
}

.banner-section .slide-item .content {
    position: relative;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    z-index: 5;
}

.banner-section .slide-item .inner {
    position: relative;
    display: block;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
}

.banner-section .active .slide-item .inner {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease 300ms;
    -ms-transition: all 1000ms ease 300ms;
    -o-transition: all 1000ms ease 300ms;
    -moz-transition: all 1000ms ease 300ms;
    transition: all 1000ms ease 300ms;
}

.banner-section .slide-item h1 {
    position: relative;
    font-weight: 900;
    font-size: 96px;
    color: #ffffff;
    text-transform: none;
    line-height: 1.10em;
    margin: 0px 0px;
}

.banner-section .slide-item h1 span {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.banner-section .slide-item h1 .bg-vector {
    position: absolute;
    right: 70px;
    bottom: -50px;
    width: 300px;
    z-index: 0;
}

.banner-section .slide-item .bg-image {
    position: absolute;
    left: -150px;
    top: -35px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
}

.banner-section .active .slide-item .bg-image {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease 1000ms;
    -ms-transition: all 1000ms ease 1000ms;
    -o-transition: all 1000ms ease 1000ms;
    -moz-transition: all 1000ms ease 1000ms;
    transition: all 1000ms ease 1000ms;
}

.banner-section .slide-item .text {
    position: relative;
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    padding-top: 80px;
    max-width: 840px;
    margin: 0 auto;
}

.banner-section .slide-item .links-box {
    position: relative;
    display: block;
    padding-top: 55px;
}

.banner-section .slide-item .links-box .link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 20px;
}

.banner-section .slide-item .links-box .link .theme-btn {
    padding-left: 50px;
    padding-right: 50px;
}

.banner-section .owl-theme .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: 50px;
    width: 100%;
    height: 0;
}

.banner-section .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 30px;
    top: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 24px;
    line-height: 60px;
    text-align: right;
    border-radius: 30px;
    transition: all 500ms ease;
}

.banner-section .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 30px;
    top: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 24px;
    line-height: 60px;
    text-align: left;
    border-radius: 30px;
    transition: all 500ms ease;
}

.banner-section .owl-theme .owl-nav .owl-prev:hover,
.banner-section .owl-theme .owl-nav .owl-next:hover {
    color: #FF8F1F;
    border-color: #FF8F1F;
}

.banner-section .owl-theme .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.banner-section .owl-theme .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
}

.banner-section .owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    background: #ffffff;
    transition: all 500ms ease;
}

.banner-section .owl-theme .owl-dots .owl-dot:hover span,
.banner-section .owl-theme .owl-dots .owl-dot.active span {
    background: #FF8F1F;
}

/*** 

====================================================================
  Banner Two
====================================================================

***/

.banner-two {
    position: relative;
    padding: 0 0;
    background: #ffffff;
}

.banner-two .auto-container {
    max-width: 1600px;
}

.banner-two .banner-container {
    position: relative;
}

.banner-two .banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-two .slide-item {
    position: relative;
    width: 100%;
    padding: 0px;
    overflow: hidden;
}

.banner-two .slide-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

.banner-two .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-two .slide-item .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.60);
    background: -ms-linear-gradient(249.48deg, rgba(36, 40, 57, 0.9) 86.67%, rgba(100, 104, 120, 0.9) 96.35%);
    background: -webkit-linear-gradient(249.48deg, rgba(36, 40, 57, 0.9) 86.67%, rgba(100, 104, 120, 0.9) 96.35%);
    background: linear-gradient(249.48deg, rgba(36, 40, 57, 0.9) 86.67%, rgba(100, 104, 120, 0.9) 96.35%);
    z-index: 1;
}

.banner-two .slide-item .curve-layer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 220px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 5;
}

.banner-two .slide-item .content-box {
    position: relative;
    display: table;
    vertical-align: bottom;
    width: 100%;
    padding: 50px 0px 100px;
    height: 820px;
    z-index: 10;
}

.banner-two .slide-item .content {
    position: relative;
    display: table-cell;
    width: 100%;
    vertical-align: bottom;
    z-index: 5;
}

.banner-two .slide-item .inner {
    position: relative;
    display: block;
    max-width: 700px;
    width: 100%;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
}

.banner-two .active .slide-item .inner {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease 300ms;
    -ms-transition: all 1000ms ease 300ms;
    -o-transition: all 1000ms ease 300ms;
    -moz-transition: all 1000ms ease 300ms;
    transition: all 1000ms ease 300ms;
}

.banner-two .slide-item .image-box {
    position: absolute;
    right: 0;
    margin-left: 100px;
    bottom: 100px;
    width: 720px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
}

.banner-two .active .slide-item .image-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease 1000ms;
    -ms-transition: all 1000ms ease 1000ms;
    -o-transition: all 1000ms ease 1000ms;
    -moz-transition: all 1000ms ease 1000ms;
    transition: all 1000ms ease 1000ms;
}

.banner-two .slide-item .image-box .icon {
    position: absolute;
}

.banner-two .slide-item .image-box .icon-1 {
    right: -85px;
    top: -85px;
}

.banner-two .slide-item .image-box .icon-2 {
    left: -40px;
    bottom: -40px;
}

.banner-two .slide-item .image-box .image {
    position: relative;
    display: block;
    border-radius: 15px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.banner-two .slide-item .image-box .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 15px;
}

.banner-two .slide-item .image-box .vid-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    padding: 30px 10px;
    line-height: 40px;
    color: #ffffff;
    font-size: 20px;
    background: #FF8F1F;
    text-align: center;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.banner-two .active .slide-item .image-box .vid-btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 1000ms ease 1500ms;
    -ms-transition: all 1000ms ease 1500ms;
    -o-transition: all 1000ms ease 1500ms;
    -moz-transition: all 1000ms ease 1500ms;
    transition: all 1000ms ease 1500ms;
}

.banner-two .slide-item .image-box .vid-btn:before {
    content: '';
    position: absolute;
    left: -15px;
    top: -15px;
    right: -15px;
    bottom: -15px;
    border: 15px solid rgba(255, 143, 31, 0.5);
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.banner-two .slide-item .image-box .vid-btn:hover {
    background: #ffffff;
    color: #FF8F1F;
}
.service-block .image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-block .image i {
    background-color: #FF8F1F;
    color: #fff;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.banner-two .slide-item h1 {
    position: relative;
    font-weight: 900;
    font-size: 84px;
    color: #ffffff;
    text-transform: none;
    line-height: 1.20em;
    margin: 0px 0px;
}

.banner-two .slide-item .text {
    position: relative;
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    padding-top: 40px;
    max-width: 560px;
}

.banner-two .slide-item .links-box {
    position: relative;
    display: block;
    padding-top: 50px;
}

.banner-two .slide-item .links-box .link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
}

.banner-two .slide-item .links-box .link .theme-btn {
    padding-left: 50px;
    padding-right: 50px;
}

.banner-two .owl-theme .owl-nav,
.banner-two .owl-theme .owl-dots {
    position: absolute;
    display: none;
}

/*** 

====================================================================
  CTA Section
====================================================================

***/

.cta-one {
    position: relative;
    background: #191825;
    color: #ffffff;
    overflow: hidden;
}

.cta-one .inner {
    position: relative;
    display: block;
    text-align: center;
}

.cta-one .inner .content {
    position: relative;
    padding: 35px 0;
    line-height: 50px;
    display: inline-block;
    padding-right: 90px;
}

.cta-one .inner .content:after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width: 2000px;
    height: 100%;
    background: #FF8F1F;
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
}

.cta-one .inner .content .text {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 36px;
    line-height: 50px;
    font-weight: 900;
    margin-right: 50px;
}

.cta-one .inner .content .phone {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 36px;
    line-height: 50px;
    font-weight: 400;
}

.cta-one .inner .content .phone a {
    color: #ffffff;
    transition: all 500ms ease;
}

.cta-one .inner .content .phone .icon {
    position: relative;
    color: #FF8F1F;
    padding-right: 20px;
}

.cta-one .inner .content .phone a:hover {
    color: #FF8F1F;
}

/*** 

====================================================================
  Title Box
====================================================================

***/

.title-box {
    position: relative;
    margin-bottom: 100px;
}

.title-box.style-two {
    margin-bottom: 50px;
}

.title-box.centered {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 110px;
}

.title-box.style-two.centered {
    margin-bottom: 70px;
}

.title-box .dots {
    position: relative;
    width: 40px;
    margin-bottom: 10px;
}

.title-box.style-two .dots {
    width: auto;
    margin-bottom: 10px;
}

.title-box.style-two .dots img {
    position: relative;
    margin-top: -7px;
    left: -5px;
}

.title-box.centered .dots {
    margin: -7px auto 10px;
}

.title-box.style-two.centered .dots img {
    left: 0;
}

.title-box .dots span {
    position: relative;
    display: block;
    width: 25px;
    height: 5px;
    border-bottom: 5px solid #FF8F1F;
}

.title-box .dots span:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 5px;
    height: 5px;
    border-bottom: 5px solid #FF8F1F;
}

.title-box .dots span:after {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 3px;
    height: 5px;
    border-bottom: 5px solid #FF8F1F;
}

.title-box h2 {
    position: relative;
    display: inline-block;
    font-weight: 900;
    text-transform: none;
    color: #191825;
    line-height: 1.1em;
    margin: 0 0;
}

.title-box.style-two h2 {
    font-size: 54px;
    line-height: 1.15em;
}

.title-box h2 span {
    position: relative;
    z-index: 1;
}

.title-box h2 .bg-vector {
    position: absolute;
    right: -50px;
    bottom: -55px;
    width: 300px;
    z-index: 0;
}

.title-box.centered h2 .bg-vector {
    right: -100px;
}

.title-box .subtitle {
    position: relative;
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #FF8F1F;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.title-box .subtitle span {
    position: relative;
    display: inline-block;
    padding-right: 40px;
}

.title-box .subtitle span:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    width: 30px;
    border-bottom: 2px solid #FF8F1F;
}

/*** 

====================================================================
  Welcome Section
====================================================================

***/

.welcome-section {
    position: relative;
    padding: 130px 0px 80px;
}

.welcome-section .auto-container {
    max-width: 1380px;
}

.welcome-section .bg-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 33.333%;
    height: 100%;
    text-align: center;
    background: #F3F3F3;
}

.welcome-section .bg-left .icon {
    position: relative;
    display: block;
    margin-top: 30px;
}

.welcome-section .bg-left .icon img {
    position: relative;
    display: inline-block;
    -webkit-transition: all 30000ms linear;
    -ms-transition: all 30000ms linear;
    -o-transition: all 30000ms linear;
    -moz-transition: all 30000ms linear;
    transition: all 30000ms linear;
}

.page-done .welcome-section .bg-left .icon img {
    -ms-transform: rotate(1440deg);
    transform: rotate(1440deg);
}

.welcome-section .bg-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 66.666%;
    height: 100%;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.welcome-section .bg-right:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
}

.welcome-section .text-col {
    position: relative;
    margin-bottom: 40px;
    order: 12;
}

.welcome-section .text-col .title-box {
    margin-bottom: 80px;
}

.welcome-section .text-col .inner {
    position: relative;
    display: block;
    padding-left: 20px;
}

.welcome-section .text-col .text-content {
    position: relative;
    margin-bottom: 50px;
}

.welcome-section .wel-block {
    position: relative;
    margin-bottom: 40px;
}

.welcome-section .wel-block .inner-box {
    position: relative;
    display: block;
    padding-left: 50px;
}

.welcome-section .wel-block .icon {
    position: absolute;
    left: 0;
    top: 0;
}

.welcome-section .wel-block h4 {
    position: relative;
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-section .lower-links {
    position: relative;
    padding-top: 5px;
}

.welcome-section .lower-links .link {
    position: relative;
    float: left;
    margin-right: 30px;
}

.welcome-section .lower-links .phone {
    position: relative;
    display: block;
    margin-top: 2px;
    padding-left: 75px;
    line-height: 26px;
    padding-top: 5px;
    min-height: 60px;
}

.welcome-section .lower-links .phone a {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
}

.welcome-section .lower-links .phone .subtitle {
    position: relative;
    display: block;
    font-size: 16px;
    color: #717171;
}

.welcome-section .lower-links .phone .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    text-align: center;
    background: #FF8F1F;
    color: #ffffff;
    border-radius: 50%;
}

.welcome-section .image-col {
    position: relative;
    margin-bottom: 50px;
    order: 0;
}

.welcome-section .image-col .inner {
    position: relative;
    display: block;
}

.welcome-section .image-col .images {
    position: relative;
}

.welcome-section .image-col .image {
    position: relative;
    display: block;
    max-width: 350px;
    border-radius: 5px;
}

.welcome-section .image-col .image img {
    width: 100%;
    border-radius: 5px;
}

.welcome-section .image-col .image-box {
    position: absolute;
    top: 200px;
    left: 95px;
    max-width: 430px;
    border-radius: 5px;
}

.welcome-section .image-col .image-box .vid-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 120px;
    height: 90px;
    padding: 30px 20px;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    background: #FF8F1F;
    text-align: center;
}

.welcome-section .image-col .image-box .vid-btn:hover {
    background: #191825;
}

.welcome-section .image-col .image-box img {
    width: 100%;
    border-radius: 5px;
}

.welcome-section .image-col .client-badge {
    position: absolute;
    right: 20px;
    top: 25px;
    width: 130px;
    height: 130px;
    background: #FF8F1F;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
}

.welcome-section .image-col:hover .client-badge {
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
    border-color: #e30b17;
    -webkit-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.welcome-section .image-col .client-badge .inner-box {
    position: absolute;
    left: 13px;
    top: 13px;
    width: 104px;
    height: 104px;
    border: 1px dashed #ffffff;
    padding: 20px 5px;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    border-radius: 50%;
}

.welcome-section .image-col .client-badge .inner-box .percent {
    position: relative;
    display: block;
    font-size: 30px;
    font-weight: 900;
    line-height: 32px;
}

/*** 

====================================================================
  Services Section
====================================================================

***/

.services-one {
    position: relative;
    padding: 130px 0px 80px;
}

.service-block {
    position: relative;
    margin-bottom: 30px;
}

.services-one .row {
    margin: 0 -22px;
}

.services-one .row .service-block {
    padding: 0 22px;
    margin-bottom: 50px;
}

.service-block .inner-box {
    position: relative;
    display: block;
    max-width: 370px;
    margin: 0 auto;
    text-align: center;
}

.service-block .image-box {
    position: relative;
    display: block;
    margin: 0 auto 85px;
    border-radius: 50%;
}

.service-block .image-box:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: -15px;
    background: #FF8F1F;
    border-radius: 50%;
}

.service-block .image-box .image {
    position: relative;
    display: block;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.service-block:hover .image-box .image {
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
    border-color: #e30b17;
    -webkit-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.service-block .image-box .image img {
    position: relative;
    display: block;
    border-radius: 50%;
}

.service-block .image-box .count {
    position: absolute;
    display: block;
    left: 50%;
    top: 100%;
    margin-left: -50px;
    margin-top: -35px;
    font-size: 36px;
    font-weight: 600;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #FF8F1F;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.service-block .image-box .count:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed #ffffff;
    border-radius: 50%;
}

.service-block h4 {
    position: relative;
    font-weight: 700;
    color: #191825;
    margin-bottom: 10px;
}

.service-block h4 a {
    color: #191825;
}

.service-block .text {
    position: relative;
    padding: 0 30px;
}

/*** 

====================================================================
  Class Section
====================================================================

***/

.start-class {
    position: relative;
    padding: 130px 0px 0px;
}

.start-class .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.start-class .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
}

.start-class .title-col {
    position: relative;
    margin-bottom: 50px;
}

.start-class .title-col .inner {
    position: relative;
    display: block;
}

.start-class .video-link {
    position: relative;
    margin-bottom: 50px;
}

.start-class .video-link .vid-btn {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    padding: 20px 20px;
    line-height: 60px;
    font-size: 24px;
    color: #ffffff;
    background: #FF8F1F;
    border-radius: 50%;
    text-align: center;
}

.start-class .video-link .vid-btn:hover {
    background: #ffffff;
    color: #FF8F1F;
}

.start-class .title-box {
    position: relative;
    margin-bottom: 80px;
}

.start-class .title-box h2 {
    color: #ffffff;
}

.start-class .title-col .arrow-form {
    position: absolute;
    right: -30px;
    top: 45px;
}

.start-class .form-col {
    position: relative;
}

.start-class .form-col .inner {
    position: relative;
    display: block;
    padding-left: 60px;
}

.start-class .form-box {
    position: relative;
    display: block;
    padding: 45px 45px 25px;
    border-top: 5px solid #FF8F1F;
    background: #ffffff;
}

.start-class .form-box h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    color: #101010;
    margin-bottom: 30px;
}

.start-class .form-box form .form-group {
    margin-bottom: 20px;
}

.start-class .form-box form input {
    height: 64px;
    padding: 16px 22px;
    background: #F3F3F3;
    border-color: #F3F3F3;
}

.start-class .form-box form button {
    display: block;
    width: 100%;
}

/*** 

====================================================================
  Why Us Section
====================================================================

***/

.why-us {
    position: relative;
    padding: 100px 0px 0px;
}

.why-us .auto-container {
    max-width: 1920px;
    padding: 0 20px;
}

.why-us .title-box {
    margin-bottom: 90px;
}

.why-us .owl-theme .owl-stage-outer {
    overflow: visible;
}

.why-block {
    position: relative;
    margin-bottom: 30px;
}

.owl-theme .why-block {
    margin-bottom: 0px;
}

.why-block .inner-box {
    position: relative;
    display: block;
    padding: 50px 30px 50px 40px;
    min-height: 300px;
    background: #ffffff;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.owl-theme .why-block .inner-box {
    margin: 5px 10px 20px;
}

.why-block .icon-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    background: #FF8F1F;
    color: #ffffff;
    text-align: center;
    line-height: 80px;
    font-size: 32px;
    margin-bottom: 30px;
    border-radius: 50%;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    transition: all 700ms ease;
}

.why-block:hover .icon-box {
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    border-color: #e30b17;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    transition: all 700ms ease;
}

.why-block h4 {
    position: relative;
    font-weight: 700;
    color: #191825;
    margin-bottom: 20px;
}

.why-us .owl-theme .owl-nav,
.why-us .owl-theme .owl-dots {
    display: none;
}

/*** 

====================================================================
  Team Section
====================================================================

***/

.team-section {
    position: relative;
    padding: 130px 0px 70px;
}

.team-section .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.team-section .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
}

.team-section .carousel-box {
    position: relative;
    display: block;
}

.team-block {
    position: relative;
    margin-bottom: 30px;
}

.team-section .row {
    margin: 0 -22px;
}

.team-section .row .team-block {
    padding: 0 22px;
    margin-bottom: 60px;
}

.team-section .owl-theme .team-block {
    padding-bottom: 50px;
    margin-top: 10px;
}

.team-block .inner-box {
    position: relative;
    display: block;
    margin: 0 0 50px;
    text-align: center;
}

.team-block .image-box {
    position: relative;
    display: block;
    border-radius: 5px;
}

.team-block .image-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    right: 0;
    bottom: 0px;
    background: #FF8F1F;
    border-radius: 5px;
    transition: all 500ms ease;
}

.team-block:hover .image-box:before {
    top: -10px;
    bottom: -10px;
}

.team-block .image-box .image {
    position: relative;
    display: block;
    border-radius: 5px;
    z-index: 1;
}

.team-block .image-box .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
}

.team-block .lower {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    margin-top: -50px;
    display: block;
    padding: 30px 20px 26px;
    text-align: center;
    background: #ffffff;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 500ms ease;
    z-index: 1;
}

.team-block:hover .lower {
    padding-bottom: 75px;
}

.team-block .lower h4 {
    position: relative;
    font-weight: 700;
    line-height: 1.2em;
    color: #191825;
    margin-bottom: 2px;
}

.team-block .lower h4 a {
    color: #191825;
}

.team-block .lower .text {
    position: relative;
    font-size: 16px;
    color: #808080;
    line-height: 24px;
}

.team-block .social {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
}

.team-block:hover .social {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
    transition: all 500ms ease;
}

.team-block .social .social-links {
    position: relative;
    display: block;
}

.team-block .social li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
}

.team-block .social li a {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    background: #FF8F1F;
    font-size: 14px;
    line-height: 34px;
    color: #ffffff;
    border-radius: 50%;
    transition: all 500ms ease;
}

.team-block .social li a:hover {
    color: #ffffff;
    background: #101010;
}

.team-section .owl-theme .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -50px;
    width: 100%;
    height: 0;
}

.team-section .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: -45px;
    top: 0;
    width: 60px;
    height: 60px;
    background: #ececec;
    color: #FF8F1F;
    font-size: 24px;
    line-height: 60px;
    text-align: right;
    border-radius: 30px;
    transition: all 500ms ease;
}

.team-section .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -45px;
    top: 0;
    width: 60px;
    height: 60px;
    background: #ececec;
    color: #FF8F1F;
    font-size: 24px;
    line-height: 60px;
    text-align: left;
    border-radius: 30px;
    transition: all 500ms ease;
}

.team-section .owl-theme .owl-nav .owl-prev:hover,
.team-section .owl-theme .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FF8F1F;
    border-color: #FF8F1F;
}

.team-section .owl-theme .owl-dots {
    display: none;
}

/*** 

====================================================================
  Programs Section
====================================================================

***/

.programs-section {
    position: relative;
    padding: 0px 0px;
}

.programs-section .auto-container {
    max-width: 1920px;
    padding: 0 30px;
}

.programs-section .title-box {
    margin-bottom: 90px;
}

.programs-section .owl-theme .owl-stage-outer {
    overflow: visible;
}

.program-block {
    position: relative;
    margin-bottom: 30px;
}

.owl-theme .program-block {
    margin-bottom: 0px;
}

.program-block .inner-box {
    position: relative;
    display: block;
    padding: 0px 0px;
    border-radius: 5px;
}

.program-block .image-box {
    position: relative;
    display: block;
    border-radius: 5px;
}

.program-block .image-box img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
}

.program-block .hvr-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 143, 31, 0.4);
    border-radius: 5px;
    transition: all 300ms ease;
}

.program-block:hover .hvr-box {
    opacity: 1;
    visibility: visible;
}

.program-block .hvr-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 100%;
    background: #ffffff;
    padding: 30px 20px 30px 30px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -ms-transition: all 500ms ease 200ms;
    transition: all 500ms ease 200ms;
}

.program-block:hover .hvr-content {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.program-block .hvr-content .link {
    position: absolute;
    right: 0;
    top: -50px;
}

.program-block .hvr-content .link a {
    position: absolute;
    right: 0px;
    top: 0;
    width: 70px;
    height: 50px;
    background: #FF8F1F;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    transition: all 500ms ease;
}

.program-block .hvr-content .link a:hover {
    color: #FF8F1F;
    background: #101010;
    border-color: #101010;
}

.program-block .cat {
    position: relative;
    font-size: 16px;
    color: #808080;
    line-height: 1.6em;
    margin-bottom: 2px;
}

.program-block h4 {
    position: relative;
    font-weight: 700;
    color: #191825;
    margin-bottom: 0;
}

.program-block h4 a {
    color: #191825;
}

.programs-section .owl-theme .owl-nav,
.programs-section .owl-theme .owl-dots {
    display: none;
}

/*** 

====================================================================
  Testimonial Section
====================================================================

***/

.testimonial-section {
    position: relative;
    padding: 130px 0px 0px;
}

.testimonial-section .auto-container {
    max-width: 1740px;
}

.testimonial-section .carousel-box {
    position: relative;
    display: block;
}

.testimonial-section .def-images {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    height: 0;
}

.testimonial-section .def-images .inner {
    position: relative;
    display: block;
}

.testimonial-section .def-images .image {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.testimonial-section .def-images .image-1 {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.testimonial-section .def-images .image img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-section .def-images .image-2 {
    left: 0;
    top: 40px;
    width: 220px;
}

.testimonial-section .def-images .image-3 {
    left: 80px;
    top: 25px;
    width: 250px;
    z-index: 1;
}

.testimonial-section .def-images .image-5 {
    right: 0;
    top: 40px;
    width: 220px;
}

.testimonial-section .def-images .image-4 {
    right: 80px;
    top: 25px;
    width: 250px;
    z-index: 1;
}

.testimonial-section .testi-carousel-one {
    position: relative;
    z-index: 5;
}

.testimonial-section .testi-block {
    position: relative;
    display: block;
    text-align: center;
}

.testimonial-section .testi-block .inner-box {
    position: relative;
    display: block;
    max-width: 980px;
    margin: 0 auto;
}

.testimonial-section .testi-block .image-box {
    position: relative;
    display: block;
    max-width: 300px;
    margin: 0 auto 70px;
    border-radius: 50%;
}

.testimonial-section .testi-block .image {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 50%;
    opacity: 0;
    -ms-transform: rotate(0deg) scale(0.8);
    transform: rotate(0deg) scale(0.8);
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
}

.testimonial-section .testi-block .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 50%;
}

.testimonial-section .active .testi-block .image {
    opacity: 1;
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -ms-transition: all 1000ms ease 500ms;
    transition: all 1000ms ease 500ms;
}

.testimonial-section .testi-block .text-content {
    position: relative;
    font-size: 24px;
    line-height: 1.70em;
}

.testimonial-section .testi-block .text {
    line-height: 1.60em;
}

.testimonial-section .testi-block .info {
    position: relative;
    padding-top: 80px;
}

.testimonial-section .testi-block .info h4 {
    font-size: 28px;
    color: #191825;
    font-weight: 700;
    margin: 0 0;
}

.testimonial-section .testi-block .info .designation {
    font-size: 18px;
    color: #808080;
    font-weight: 400;
}

.testimonial-section .owl-theme .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: 50px;
    width: 100%;
    height: 0;
}

.testimonial-section .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 0px;
    top: 0;
    width: 60px;
    height: 50px;
    background: #FF8F1F;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    transition: all 500ms ease;
}

.testimonial-section .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 0px;
    top: 0;
    width: 60px;
    height: 50px;
    background: #FF8F1F;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    transition: all 500ms ease;
}

.testimonial-section .owl-theme .owl-nav .owl-prev:hover,
.testimonial-section .owl-theme .owl-nav .owl-next:hover {
    color: #FF8F1F;
    background: #101010;
    border-color: #101010;
}

.testimonial-section .owl-theme .owl-dots {
    display: none;
}

/*** 

====================================================================
  News Section
====================================================================

***/

.news-section {
    position: relative;
    padding: 130px 0px 90px;
}

.news-section.no-padd-top {
    padding-top: 0;
}

.news-section .news-box {
    position: relative;
    display: block;
}

.news-block {
    position: relative;
    margin-bottom: 40px;
}

.news-block .inner-box {
    position: relative;
    display: block;
}

.news-block .image-box {
    position: relative;
    display: block;
    background: #FF8F1F;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .image-box img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.news-block .inner-box:hover .image-box img {
    transform: scale(1.1);
    opacity: 0.70;
}

.news-block .lower-box {
    position: relative;
    display: block;
    padding-top: 20px;
}

.news-block .info {
    position: relative;
    display: block;
    line-height: 1.5em;
    color: #808080;
    font-size: 16px;
    margin-bottom: 10px;
}

.news-block h4 {
    font-size: 24px;
    color: #222222;
    font-weight: 700;
    margin: 0 0;
}

.news-block h4 a {
    position: relative;
    color: #222222;
}

.news-block h4 a:hover {
    color: #FF8F1F;
}

.news-block .link-box {
    position: relative;
    padding-top: 20px;
}

.news-block .link-box a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #FF8F1F;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.news-block .link-box a .icon {
    position: relative;
    top: 1px;
    padding-left: 15px;
}

.news-block .link-box a:hover {
    color: #222222;
}

/*** 

====================================================================
  Newsletter Section
====================================================================

***/

.subscribe-section {
    position: relative;
    padding: 70px 0px 40px;
    background: #FF8F1F;
    margin: 0 50px -60px;
    color: #ffffff;
    z-index: 1;
}

.subscribe-section .auto-container {
    max-width: 1580px;
    padding: 0 50px;
}

.subscribe-section .bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.subscribe-section .title-col {
    position: relative;
    margin-bottom: 25px;
}

.subscribe-section .image-col .inner {
    position: relative;
    display: block;
}

.subscribe-section .title-col h2 {
    position: relative;
    font-size: 40px;
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    margin: 0 0;
    line-height: 1.2em;
}

.subscribe-section .form-col {
    position: relative;
    margin-bottom: 35px;
}

.subscribe-section .form-col .inner {
    position: relative;
    display: block;
    padding-top: 10px;
}

.subscribe-section form .form-group {
    position: relative;
    margin: 0;
}

.subscribe-section form .form-group input {
    height: 84px;
    line-height: 42px;
    padding: 20px 80px 20px 30px;
    font-weight: 400;
    background: #ffffff;
}

.subscribe-section form .form-group .field-inner {
    position: relative;
}

.subscribe-section form .theme-btn {
    position: absolute;
    right: 13px;
    top: 13px;
    width: 60px;
    line-height: 30px;
    padding: 9px 10px;
    height: 58px;
    border: none;
    background: #FF8F1F;
    color: #ffffff;
    font-size: 20px;
}

.subscribe-section form .theme-btn:hover {
    background: #222222;
    color: #ffffff;
}

/*** 

====================================================================
  Main Footer
====================================================================

***/

.main-footer {
    position: relative;
    background: #1E1E1E;
    color: #ffffff;
    padding: 60px 0 0;
    font-family: 'Mulish', sans-serif;
}

.main-footer .auto-container {
    max-width: 1520px;
}

.main-footer ul,
.main-footer ul li {
    list-style: none;
    margin: 0;
}

.main-footer .big-col .row {
    margin: 0 -25px;
}

.main-footer .big-col .footer-column {
    padding: 0 25px;
}

.main-footer .footer-gallery {
    position: relative;
    max-width: 280px;
}

.main-footer .footer-gallery .inner {
    position: relative;
    margin: 0 -7px;
}

.main-footer .footer-gallery .image-block {
    position: relative;
    float: left;
    width: 33.333%;
    padding: 0 7px;
    margin-bottom: 14px;
}

.main-footer .footer-gallery .image {
    position: relative;
    display: block;
    background: #101010;
    border-radius: 0px;
    overflow: hidden;
}

.main-footer .footer-gallery .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0px;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-footer .footer-gallery .image-block:hover .image img {
    opacity: 0.70;
}

.main-footer .upper-section {
    position: relative;
    padding: 40px 0 50px;
}

.main-footer .upper-section .footer-column {
    position: relative;
    margin-bottom: 30px;
}

.main-footer .upper-section h6 {
    position: relative;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    font-family: 'Mulish', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    padding-bottom: 13px;
    margin-bottom: 25px;
    margin-top: 40px;
}

.main-footer.alternate .upper-section h6 {
    margin-top: 0;
}

.main-footer .upper-section h6:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    border-bottom: 3px solid #FF8F1F;
}

.main-footer .about {
    position: relative;
    max-width: 380px;
}

.main-footer .footer-logo {
    position: relative;
    margin-bottom: 35px;
}

.main-footer .footer-logo img {
    height: 70px;
}

.main-footer .about .text {
    position: relative;
    margin-bottom: 20px;
}

.main-footer .about .address {
    position: relative;
    max-width: 350px;
    line-height: 1.5em;
    padding-left: 40px;
    margin-bottom: 30px;
}

.main-footer .about .address .icon {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 36px;
}

.main-footer .about .phone {
    position: relative;
    display: block;
    padding-left: 75px;
    line-height: 26px;
    min-height: 60px;
}

.main-footer .about .phone a {
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    color: #ffffff;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-footer .about .phone a:hover {
    color: #FF8F1F;
    text-decoration: underline;
}

.main-footer .about .phone .subtitle {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 28px;
}

.main-footer .about .phone .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    text-align: center;
    background: #FF8F1F;
    color: #ffffff;
    border-radius: 50%;
}

.main-footer .upper-section .links {
    position: relative;
}

.main-footer .upper-section .links li {
    position: relative;
    display: block;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.main-footer .upper-section .links li:last-child {
    margin-bottom: 0;
}

.main-footer .upper-section .links li a {
    position: relative;
    color: #ffffff;
    line-height: 24px;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-footer .upper-section .links li a:hover {
    color: #FF8F1F;
    text-decoration: underline;
}

.main-footer .f-bottom {
    position: relative;
    padding: 0 0;
    text-align: center;
}

.main-footer .f-bottom .inner {
    position: relative;
    padding: 40px 0 50px;
    border-top: 2px solid #282828;
}

.main-footer .f-bottom .social-links {
    position: relative;
    padding-top: 35px;
}

.main-footer .social-links ul {
    position: relative;
}

.main-footer .social-links li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 10px;
}

.main-footer .social-links li a {
    position: relative;
    display: block;
    line-height: 24px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-footer .social-links li a:hover {
    color: #FF8F1F;
}

.main-footer .copyright {
    position: relative;
    display: block;
    line-height: 24px;
}

.main-footer .copyright a {
    position: relative;
    color: #ffffff;
}

.main-footer .copyright a:hover {
    text-decoration: underline;
}

/*** 

====================================================================
  Welcome Section
====================================================================

***/

.welcome-two {
    position: relative;
    padding: 120px 0px 100px;
    z-index: 1;
}

.welcome-two .right-image {
    position: absolute;
    right: -20px;
    top: -30px;
}

.welcome-two .auto-container {
    max-width: 1480px;
}

.welcome-two .text-col {
    position: relative;
    margin-bottom: 50px;
    order: 12;
}

.welcome-two .text-col .title-box {
    margin-bottom: 40px;
}

.welcome-two .text-col .inner {
    position: relative;
    display: block;
}

.welcome-two .text-col .text-content {
    position: relative;
    margin-bottom: 40px;
}

.welcome-two .wel-block-two {
    position: relative;
    margin-bottom: 50px;
}

.welcome-two .wel-block-two .inner-box {
    position: relative;
    display: block;
    padding-left: 50px;
}

.welcome-two .wel-block-two .icon {
    position: absolute;
    left: 0;
    top: -4px;
    line-height: 1em;
    color: #FF8F1F;
    font-size: 32px;
}

.welcome-two .wel-block-two h6 {
    position: relative;
    color: #191825;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}

.welcome-two .lower-links {
    position: relative;
}

.welcome-two .lower-links .link {
    position: relative;
    float: left;
    margin-right: 30px;
}

.welcome-two .lower-links .link:last-child {
    margin-right: 0;
}

.welcome-two .image-col {
    position: relative;
    margin-bottom: 50px;
    order: 0;
}

.welcome-two .image-col .inner {
    position: relative;
    display: block;
}

.welcome-two .image-col .images {
    position: relative;
    display: block;
    max-width: 470px;
}

.welcome-two .image-col .image {
    position: relative;
    display: block;
    border-radius: 5px;
}

.welcome-two .image-col .image img {
    width: 100%;
    border-radius: 5px;
}

.welcome-two .image-col .w-box {
    position: absolute;
    left: 100%;
    margin-left: -140px;
    bottom: 120px;
    width: 100%;
    max-width: 250px;
    border-radius: 5px;
    -ms-transform: rotate(-28.77deg);
    transform: rotate(-28.77deg);
}

.welcome-two .image-col .w-box:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0px;
    right: 0;
    height: 100%;
    background: #FF8F1F;
    border-radius: 5px;
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
}

.welcome-two .image-col .w-box .inner-box {
    position: relative;
    display: block;
    padding: 45px 20px 42px;
    background: #ffffff;
    text-align: center;
    border-radius: 5px;
    -ms-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.welcome-two .image-col .w-box .icon-box {
    position: relative;
    width: 82px;
    height: 74px;
    line-height: 74px;
    font-size: 30px;
    background: #242839;
    color: #ffffff;
    margin: 0 auto 15px;
    border-radius: 5px;
}

.welcome-two .image-col .w-box .text {
    position: relative;
    font-size: 18px;
    font-family: 'Mulish', sans-serif;
    line-height: 1.7em;
    font-weight: 600;
    color: #191825;
}

/*** 

====================================================================
  Why Us Section
====================================================================

***/

.why-us-two {
    position: relative;
    padding: 110px 0px 100px;
    background: #F5F8FF;
}

.why-us-two .title-box.centered {
    margin-bottom: 65px;
}

.why-block-two {
    position: relative;
    margin-bottom: 30px;
}

.owl-theme .why-block-two {
    margin-bottom: 0px;
}

.why-block-two .inner-box {
    position: relative;
    display: block;
    padding: 50px 40px 50px 40px;
    min-height: 100%;
    background: #ffffff;
    border-radius: 5px;
}

.why-block-two .icon-box {
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    background: rgba(255, 143, 31, 0.1);
    color: #FF8F1F;
    text-align: center;
    line-height: 90px;
    font-size: 32px;
    margin-bottom: 28px;
    border-radius: 50%;
}

.why-block-two h4 {
    position: relative;
    font-weight: 700;
    color: #191825;
    margin-bottom: 22px;
}

.why-block-two .text {
    position: relative;
    font-size: 16px;
}

/*** 

====================================================================
  Video Lessons
====================================================================

***/

.video-lessons {
    position: relative;
    background: #101010;
    color: #ffffff;
    text-align: center;
    padding: 130px 0px;
}

.video-lessons .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.video-lessons .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.video-lessons .title {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.video-lessons .title h2 {
    color: #ffffff;
    font-weight: 900;
    line-height: 1.2em;
}

.video-lessons .video-link {
    position: relative;
    width: 75px;
    margin: 0 auto;
    padding-top: 45px;
}

.video-lessons .video-link .vid-btn {
    position: relative;
    right: 0;
    bottom: 0;
    width: 75px;
    height: 75px;
    padding: 20px 20px;
    line-height: 35px;
    font-size: 24px;
    color: #ffffff;
    background: #FF8F1F;
    border-radius: 50%;
    text-align: center;
}

.video-lessons .video-link .vid-btn:before {
    content: '';
    position: absolute;
    left: -17px;
    top: -17px;
    right: -17px;
    bottom: -17px;
    border: 10px solid rgba(255, 143, 31, 0.2);
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.video-lessons .video-link .vid-btn:after {
    content: '';
    position: absolute;
    left: -8px;
    top: -8px;
    right: -8px;
    bottom: -8px;
    border: 8px solid rgba(255, 143, 31, 0.2);
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.video-lessons .video-link .vid-btn:hover:after {
    border: 8px solid rgba(255, 143, 31, 0.50);
}

.video-lessons .video-link .vid-btn:hover:before {
    border: 8px solid rgba(255, 143, 31, 0.70);
}

.video-lessons .video-link .vid-btn:hover {
    background: #ffffff;
    color: #FF8F1F;
}

/*** 

====================================================================
  Programs Section
====================================================================

***/

.programs-two {
    position: relative;
    padding: 130px 0px 100px;
    background: #F5F8FF;
}

.programs-two .title-box.centered {
    margin-bottom: 65px;
}

.program-block-two {
    position: relative;
    margin-bottom: 30px;
}

.owl-theme .program-block-two {
    margin-bottom: 0px;
}

.program-block-two .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
}

.program-block-two .image-box,
.program-block-two .image-box .image {
    position: relative;
    display: block;
    border-radius: 5px 5px 0 0;
}

.program-block-two .image-box .image img {
    display: block;
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.program-block-two .image-box .icon-box {
    position: absolute;
    left: 50%;
    margin-left: -60px;
    bottom: -60px;
    width: 120px;
    font-size: 32px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    background: #ffffff;
    border-radius: 50%;
}

.program-block-two .image-box .icon-box img {
    max-height: 50px;
}

.program-block-two .mid-box {
    position: relative;
    display: block;
    padding: 60px 45px 50px;
}

.program-block-two h4 {
    font-weight: 700;
    margin-bottom: 25px;
}

.program-block-two h4 a:hover {
    color: #FF8F1F;
}

.program-block-two .text {
    position: relative;
    font-size: 16px;
}

.program-block-two .link-box {
    position: relative;
    display: block;
    padding: 17px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.program-block-two .link-box a {
    font-weight: 600;
    color: #FF8F1F;
    text-transform: uppercase;
    font-size: 16px;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.program-block-two .link-box a i {
    position: relative;
    top: 2px;
    font-size: 20px;
    padding-left: 5px;
}

.program-block-two .link-box a:hover {
    color: #191825;
}

/*** 

====================================================================
  Testimonial Section
====================================================================

***/

.testimonial-two {
    position: relative;
    padding: 130px 0px;
}

.testimonial-two .title-box.centered {
    margin-bottom: 65px;
}

.testimonial-two .carousel-box {
    position: relative;
    display: block;
}

.testimonial-two .testi-block {
    position: relative;
    display: block;
    text-align: center;
}

.testimonial-two .testi-block .inner-box {
    position: relative;
    display: block;
    max-width: 580px;
    margin: 0 auto;
}

.testimonial-two .testi-block .image-box {
    position: relative;
    display: block;
    max-width: 140px;
    margin: 0 auto 70px;
    border-radius: 50%;
}

.testimonial-two .testi-block .image-box .quotes {
    position: absolute;
    left: 100px;
    top: 94px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: #FF8F1F;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    opacity: 0;
    -ms-transform: rotate(-360deg) scale(0.3);
    transform: rotate(-360deg) scale(0.3);
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
}

.testimonial-two .active .testi-block .image-box .quotes {
    opacity: 1;
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -ms-transition: all 1000ms ease 1000ms;
    transition: all 1000ms ease 1000ms;
}

.testimonial-two .testi-block .image {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 50%;
    opacity: 0;
    -ms-transform: rotate(0deg) scale(0.8);
    transform: rotate(0deg) scale(0.8);
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
}

.testimonial-two .testi-block .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 50%;
}

.testimonial-two .active .testi-block .image {
    opacity: 1;
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -ms-transition: all 1000ms ease 300ms;
    transition: all 1000ms ease 300ms;
}

.testimonial-two .testi-block .text-content {
    position: relative;
    font-size: 24px;
    color: #191825;
}

.testimonial-two .testi-block .text-content .text {
    line-height: 1.55em;
}

.testimonial-two .testi-block .info {
    position: relative;
    padding-top: 50px;
}

.testimonial-two .testi-block .info .name {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 22px;
    color: #FF8F1F;
    font-weight: 400;
    line-height: 30px;
}

.testimonial-two .testi-block .info .designation {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 22px;
    color: #808080;
    font-weight: 400;
    line-height: 30px;
}

.testimonial-two .testi-block .info .dot {
    position: relative;
    top: -2px;
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #808080;
    margin: 0 10px;
    vertical-align: middle;
    border-radius: 50%;
}

.testimonial-two .owl-theme .owl-nav {
    position: absolute;
    display: none;
}

.testimonial-two .owl-theme .owl-dots {
    position: relative;
    padding-top: 50px;
    text-align: center;
}

.testimonial-two .owl-theme .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 4px;
}

.testimonial-two .owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    background: #E3E3E3;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transition: all 500ms ease;
}

.testimonial-two .owl-theme .owl-dots .owl-dot:hover span,
.testimonial-two .owl-theme .owl-dots .owl-dot.active span {
    border-color: #191825;
}

/*** 

====================================================================
  Pricing Section
====================================================================

***/

.pricing-section {
    position: relative;
    padding: 130px 0px 100px;
    background: #F5F8FF;
}

.pricing-section.alternate {
    background: #ffffff;
}

.pricing-section .title-box.centered {
    margin-bottom: 65px;
}

.pricing-block {
    position: relative;
    margin-bottom: 30px;
}

.owl-theme .pricing-block {
    margin-bottom: 0px;
}

.pricing-block .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
}

.alternate .pricing-block .inner-box {
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.pricing-block .upper-box {
    position: relative;
    padding: 50px 20px;
    background: #FF8F1F;
    color: #ffffff;
    border-radius: 5px;
}

.pricing-block .upper-box .plan-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.30em;
    margin-bottom: 10px;
}

.pricing-block .upper-box .price {
    font-size: 64px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 1em;
}

.pricing-block .upper-box .duration {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.50em;
    margin-top: 10px;
}

.pricing-block .lower-box {
    position: relative;
    padding: 45px 30px 60px;
    background: #ffffff;
}

.pricing-block .features {
    position: relative;
    font-size: 20px;
}

.pricing-block .features li {
    position: relative;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.pricing-block .link-box {
    position: relative;
    padding-top: 30px;
}

.pricing-block .link-box .theme-btn {
    font-size: 20px;
    min-width: 170px;
}

/*** 

====================================================================
  About Section
====================================================================

***/

.about-one {
    position: relative;
    padding: 120px 0px 100px;
    z-index: 1;
}

.about-one .auto-container {
    max-width: 1320px;
}

.about-one .text-col {
    position: relative;
    margin-bottom: 50px;
}

.about-one .text-col .title-box {
    margin-bottom: 30px;
}

.about-one .text-col .inner {
    position: relative;
    display: block;
}

.about-one .text-col .text-content {
    position: relative;
    margin-bottom: 40px;
}

.about-one .text-col .text-content p {
    margin-bottom: 40px;
}

.about-one .text-col .text-content ul li {
    position: relative;
    line-height: 1.60em;
    margin-bottom: 16px;
    padding-left: 40px;
}

.about-one .text-col .text-content ul li:before {
    content: "\f560";
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 400;
    color: #FF8F1F;
    line-height: 1.20em;
    font-size: 22px;
}

.about-one .lower-links {
    position: relative;
    padding-top: 15px;
}

.welcome-two .lower-links .link {
    position: relative;
    float: left;
    margin-right: 30px;
}

.welcome-two .lower-links .link:last-child {
    margin-right: 0;
}

.about-one .image-col {
    position: relative;
    margin-bottom: 20px;
}

.about-one .image-col .inner {
    position: relative;
    display: block;
    padding-top: 120px;
}

.about-one .image-col .image-block {
    position: relative;
    margin-bottom: 30px;
}

.about-one .image-col .image-block .inner-box {
    position: relative;
    display: block;
    padding: 40px 20px 35px;
    background: #F5F8FF;
    text-align: center;
    border-radius: 5px;
}

.about-one .image-col .image-block .image {
    position: relative;
    display: block;
    height: 150px;
    line-height: 150px;
}

.about-one .image-col .image-block .image img {
    max-height: 145px;
}

.about-one .image-col .image-block h5 {
    color: #191825;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
}

.about-one .image-col .image-block h5 a {
    color: #191825;
}

/*** 

====================================================================
  Banner Three
====================================================================

***/

.banner-three {
    position: relative;
    padding: 0 0;
    background: #ffffff;
}

.banner-three .auto-container {
    max-width: 1600px;
}

.banner-three .banner-container {
    position: relative;
}

.banner-three .banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-three .slide-item {
    position: relative;
    width: 100%;
    padding: 0px;
    overflow: hidden;
}

.banner-three .slide-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

.banner-three .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-three .slide-item .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.80);
    z-index: 1;
}

.banner-three .slide-item .content-box {
    position: relative;
    display: table;
    vertical-align: middle;
    width: 100%;
    padding: 180px 0px 50px;
    height: 1080px;
    z-index: 10;
}

.banner-three .slide-item .content {
    position: relative;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    z-index: 5;
}

.banner-three .slide-item .inner {
    position: relative;
    display: block;
    max-width: 700px;
    width: 100%;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
}

.banner-three .active .slide-item .inner {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease 300ms;
    -ms-transition: all 1000ms ease 300ms;
    -o-transition: all 1000ms ease 300ms;
    -moz-transition: all 1000ms ease 300ms;
    transition: all 1000ms ease 300ms;
}

.banner-three .slide-item .image-box {
    position: absolute;
    left: 50%;
    margin-left: 150px;
    bottom: 85px;
    width: 450px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
}

.banner-three .active .slide-item .image-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-transition: all 1000ms ease 1000ms;
    -ms-transition: all 1000ms ease 1000ms;
    -o-transition: all 1000ms ease 1000ms;
    -moz-transition: all 1000ms ease 1000ms;
    transition: all 1000ms ease 1000ms;
}

.banner-three .slide-item .image-box .dashed-layer {
    position: absolute;
    left: -22px;
    top: 18px;
    right: 28px;
    bottom: 2px;
    border: 2px dashed #FF8F1F;
    border-radius: 200px;
}

.banner-three .slide-item .image-box .dashed-layer .dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FF8F1F;
    border-radius: 50%;
    z-index: 1;
}

.banner-three .slide-item .image-box .dashed-layer .dot:nth-child(1) {
    left: -10px;
    top: 170px;
}

.banner-three .slide-item .image-box .dashed-layer .dot:nth-child(2) {
    left: 15px;
    bottom: 90px;
}

.banner-three .slide-item .image-box .dashed-layer .dot:nth-child(3) {
    right: -40px;
    top: 340px;
}

.banner-three .slide-item .image-box .dashed-layer .dot:before {
    content: '';
    position: absolute;
    left: -12px;
    top: -12px;
    right: -12px;
    bottom: -12px;
    border: 12px solid rgba(255, 143, 31, 0.20);
    border-radius: 50%;
}

.banner-three .slide-item .image-box .dashed-layer .dot:after {
    content: '';
    position: absolute;
    left: -27px;
    top: -27px;
    right: -27px;
    bottom: -27px;
    border: 15px solid rgba(255, 143, 31, 0.30);
    border-radius: 50%;
}

.banner-three .slide-item .image-box .fact {
    position: absolute;
    color: #ffffff;
    width: 160px;
}

.banner-three .slide-item .image-box .fact .count {
    font-weight: 800;
    font-size: 32px;
    line-height: 1em;
    font-family: 'Raleway', sans-serif;
}

.banner-three .slide-item .image-box .fact .txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
}

.banner-three .slide-item .image-box .f-one {
    left: -200px;
    top: 80px;
}

.banner-three .slide-item .image-box .f-two {
    left: -180px;
    bottom: 80px;
}

.banner-three .slide-item .image-box .f-three {
    left: 100%;
    margin-left: 50px;
    top: 250px;
}

.banner-three .slide-item .image-box .image {
    position: relative;
    display: block;
    border-radius: 200px;
}

.banner-three .slide-item .image-box .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 200px;
}

.banner-three .slide-item h1 {
    position: relative;
    font-weight: 900;
    font-size: 84px;
    color: #ffffff;
    text-transform: none;
    line-height: 1.20em;
    margin: 0px 0px;
}

.banner-three .slide-item .text {
    position: relative;
    display: block;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    padding-top: 40px;
    max-width: 560px;
}

.banner-three .slide-item .links-box {
    position: relative;
    display: block;
    padding-top: 50px;
}

.banner-three .slide-item .links-box .link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
}

.banner-three .slide-item .links-box .link .theme-btn {
    padding-left: 50px;
    padding-right: 50px;
}

.banner-three .owl-theme .owl-nav,
.banner-three .owl-theme .owl-dots {
    position: absolute;
    display: none;
}

/*** 

====================================================================
  Welcome Section
====================================================================

***/

.welcome-three {
    position: relative;
    padding: 150px 0px 100px;
}

.welcome-three .auto-container {
    max-width: 1340px;
}

.welcome-three .text-col {
    position: relative;
    margin-bottom: 50px;
    order: 12;
}

.welcome-three .text-col .title-box {
    margin-bottom: 40px;
}

.welcome-three .text-col .inner {
    position: relative;
    display: block;
}

.welcome-three .text-col .text-content {
    position: relative;
    margin-bottom: 40px;
}

.welcome-three .text-col .text-content .big-text {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #191825;
    max-width: 95%;
    margin-bottom: 20px;
}

.welcome-three .wel-block-three {
    position: relative;
    margin-bottom: 50px;
}

.welcome-three .wel-block-three .inner-box {
    position: relative;
    display: block;
    padding-left: 50px;
}

.welcome-three .wel-block-three .icon {
    position: absolute;
    left: 0;
    top: -4px;
    line-height: 1em;
    color: #FF8F1F;
    font-size: 32px;
}

.welcome-three .wel-block-three h6 {
    position: relative;
    color: #191825;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}

.welcome-three .lower-links {
    position: relative;
}

.welcome-three .lower-links .link {
    position: relative;
    float: left;
    margin-right: 30px;
}

.welcome-three .lower-links .link:last-child {
    margin-right: 0;
}

.welcome-three .image-col {
    position: relative;
    margin-bottom: 50px;
    order: 0;
}

.welcome-three .image-col .inner {
    position: relative;
    display: block;
    padding-left: 42px;
    padding-right: 40px;
}

.welcome-three .image-col .pattern {
    position: absolute;
    left: 0;
    top: -40px;
}

.welcome-three .image-col .images {
    position: relative;
}

.welcome-three .image-col .image {
    position: relative;
    display: block;
    border-radius: 6px;
}

.welcome-three .image-col .image img {
    width: 100%;
    border-radius: 6px;
}

.welcome-three .image-col .image-box {
    position: relative;
    top: 0%;
    margin-top: -150px;
    margin-left: 12.5%;
    width: 75%;
    border-radius: 5px;
}

.welcome-three .image-col .image-box .vid-btn {
    position: absolute;
    left: -30px;
    top: 100px;
    width: 120px;
    height: 110px;
    padding: 40px 20px;
    line-height: 30px;
    font-size: 30px;
    color: #ffffff;
    background: #FF8F1F;
    text-align: center;
}

.welcome-three .image-col .image-box .vid-btn:hover {
    background: #191825;
}

.welcome-three .image-col .image-box img {
    width: 100%;
    border-radius: 5px;
}

/*** 

====================================================================
  Why Us Section
====================================================================

***/

.why-us-three {
    position: relative;
    padding: 130px 0px 100px;
    background: #F5F8FF;
}

.why-us-three .title-box {
    margin-bottom: 40px;
}

.why-us-three .image-col {
    position: relative;
    margin-bottom: 30px;
}

.why-us-three .image-col .inner {
    position: relative;
    display: block;
    padding-left: 55px;
}

.why-us-three .image-col .image-box {
    position: relative;
}

.why-us-three .image-col .image-box .image,
.why-us-three .image-col .image-box .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
}

.why-us-three .image-col .over-text {
    position: absolute;
    left: -95px;
    bottom: 35px;
    width: 220px;
    max-width: 100%;
    padding: 30px 20px;
    background: #FF8F1F;
    line-height: 1.6em;
    color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border-radius: 5px;
    z-index: 1;
}

.why-us-three .text-col {
    position: relative;
    margin-bottom: 30px;
}

.why-us-three .text-col .inner {
    position: relative;
    display: block;
}

.why-us-three .why-info {
    position: relative;
}

.why-us-three .why-info-block {
    position: relative;
    float: left;
    width: 200px;
    height: 200px;
    margin-right: 52px;
    margin-bottom: 50px;
}

.why-us-three .why-info-block .inner-box {
    position: relative;
    display: block;
    width: 200px;
    height: 200px;
    padding: 30px 20px 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 50%;
}

.why-us-three .why-info-block:before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    display: block;
    width: 200px;
    height: 200px;
    border: 1px dashed #FF8F1F;
    border-radius: 50%;
}

.why-us-three .why-info-block .icon-box {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 1em;
    color: #FF8F1F;
    margin-bottom: 15px;
}

.why-us-three .why-info-block .count {
    position: relative;
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2em;
    color: #191825;
    margin-bottom: 7px;
}

.why-us-three .why-info-block .cat {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: #808080;
}

.why-us-three .lower-links {
    position: relative;
}

.why-us-three .lower-links .link {
    position: relative;
    float: left;
    margin-right: 30px;
}

.why-us-three .lower-links .text-link {
    padding: 17px 0;
    line-height: 30px;
    color: #191825;
    font-weight: 500;
    font-size: 16px;
}

.why-us-three .lower-links .link:last-child {
    margin-right: 0;
}

/*** 

====================================================================
  Programs Section
====================================================================

***/

.programs-three {
    position: relative;
    padding: 130px 0px 100px;
}

.programs-three .title-box.centered {
    margin-bottom: 65px;
}

.program-block-three {
    position: relative;
    margin-bottom: 30px;
}

.owl-theme .program-block-three {
    margin-bottom: 0px;
}

.program-block-three .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 5px;
}

.program-block-three .image-box,
.program-block-three .image-box .image {
    position: relative;
    display: block;
    border-radius: 5px 5px 0 0;
}

.program-block-three .image-box .image img {
    display: block;
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.program-block-three .mid-box {
    position: relative;
    display: block;
    padding: 22px 30px;
}

.program-block-three .mid-box .price {
    position: relative;
    float: left;
    font-size: 50px;
    line-height: 54px;
    color: #191825;
    font-weight: 700;
}

.program-block-three .mid-box .rating {
    position: relative;
    float: left;
    margin-left: 45px;
    font-size: 16px;
    color: #FFC107;
    line-height: 34px;
    padding: 10px 0;
}

.program-block-three .mid-box .rating i {
    position: relative;
    display: inline-block;
    margin-right: 1px;
}

.program-block-three .mid-box .rating i.alt {
    color: #D6D6D6;
}

.program-block-three h3 {
    font-family: 'Roboto', sans-serif;
    color: #191825;
    font-weight: 700;
    margin-bottom: 20px;
}

.program-block-three h3 a {
    color: #191825;
}

.program-block-three h3 a:hover {
    color: #FF8F1F;
}

.program-block-three .text {
    position: relative;
    font-size: 16px;
    line-height: 1.8em;
}

.program-block-three .lower-box {
    position: relative;
    display: block;
    padding: 30px 25px 50px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.program-block-three .link-box {
    position: relative;
    display: block;
    padding-top: 42px;
}

.program-block-three .link-box .theme-btn {
    display: block;
    max-width: 245px;
    margin: 0 auto;
}

/*** 

====================================================================
  Testimonial Section
====================================================================

***/

.testimonial-three {
    position: relative;
    padding: 130px 0px;
}

.testimonial-three .title-box.centered {
    margin-bottom: 65px;
}

.testimonial-three .carousel-box {
    position: relative;
    display: block;
}

.testimonial-three .testi-block {
    position: relative;
    display: block;
    text-align: center;
}

.testimonial-three .testi-block .inner-box {
    position: relative;
    display: block;
    padding: 66px 40px 30px;
    margin: 42px 0 0;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 5px;
}

.testimonial-three .testi-block .inner-box:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 5px solid #FF8F1F;
    opacity: 0;
    border-radius: 0px 0px 10px 10px;
    -ms-transform: scale(0);
    transform: scale(0);
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-three .testi-block:hover .inner-box:before {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
}

.testimonial-three .testi-block .image-box {
    position: absolute;
    left: 50%;
    margin-left: -42px;
    top: -42px;
    display: block;
    width: 84px;
    border-radius: 50%;
}

.testimonial-three .testi-block .image {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 50%;
    opacity: 0;
    -ms-transform: rotate(0deg) scale(0.8);
    transform: rotate(0deg) scale(0.8);
    -ms-transition: all 500ms ease 0ms;
    transition: all 500ms ease 0ms;
}

.testimonial-three .testi-block .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 50%;
}

.testimonial-three .active .testi-block .image {
    opacity: 1;
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -ms-transition: all 1000ms ease 300ms;
    transition: all 1000ms ease 300ms;
}

.testimonial-three .testi-block .text-content {
    position: relative;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #808080;
}

.testimonial-three .testi-block .text-content .text {
    line-height: 1.80em;
}

.testimonial-three .testi-block .info {
    position: relative;
    padding-top: 25px;
}

.testimonial-three .testi-block .info .name {
    position: relative;
    display: block;
    vertical-align: top;
    font-size: 22px;
    color: #333333;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 30px;
}

.testimonial-three .testi-block .info .designation {
    position: relative;
    display: block;
    font-size: 16px;
    color: #FF8F1F;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 30px;
}

.testimonial-three .owl-theme .owl-nav,
.testimonial-three .owl-theme .owl-dots {
    display: none;
}

/*** 

====================================================================
  Inner Banner Section
====================================================================

***/

.inner-banner {
    position: relative;
    padding: 270px 0px 140px;
}

.inner-banner .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.inner-banner .image-layer:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.60);
}

.inner-banner .content-box {
    position: relative;
    text-align: center;
}

.inner-banner .content-box h1 {
    position: relative;
    color: #ffffff;
    text-transform: none;
    font-weight: 900;
    margin-bottom: 0;
}

.inner-banner .bread-crumb {
    position: relative;
    line-height: 24px;
    margin-bottom: 10px;
}

.inner-banner .bread-crumb ul li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    line-height: 24px;
    padding: 5px 0;
    text-transform: uppercase;
    margin-right: 22px;
    color: #FF8F1F;
}

.inner-banner .bread-crumb ul li:last-child {
    margin-right: 0;
}

.inner-banner .bread-crumb ul li:after {
    content: '/';
    position: absolute;
    right: -24px;
    top: 6px;
    width: 22px;
    text-align: center;
    font-weight: 400;
}

.inner-banner .bread-crumb ul li:last-child:after {
    display: none;
}

.inner-banner .bread-crumb ul li a {
    position: relative;
    color: #FF8F1F;
}

.inner-banner .bread-crumb ul li a:hover {
    text-decoration: underline;
}

/*** 

====================================================================
  Sponsors Section
====================================================================

***/

.sponsors-section {
    position: relative;
    padding: 80px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.sponsors-section .carousel-box {
    position: relative;
}

.sponsors-section .owl-theme .image {
    position: relative;
    display: block;
    line-height: 100px;
    text-align: center;
}

.sponsors-section .owl-theme .image img {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    line-height: 100px;
    max-height: 100px;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sponsors-section .owl-theme .image:hover img {
    opacity: 0.70;
}

.sponsors-section .owl-theme .owl-dots,
.sponsors-section .owl-theme .owl-nav {
    display: none;
}

/*** 

====================================================================
  Not Found Section
====================================================================

***/

.not-found-section {
    position: relative;
    padding: 100px 0px 130px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.not-found-section .auto-container {
    max-width: 780px;
}

.not-found-section .big-text {
    position: relative;
    font-size: 220px;
    line-height: 1em;
    font-family: 'Raleway', sans-serif;
    color: #191825;
    font-weight: 900;
    margin-bottom: 30px;
}

.not-found-section .med-text {
    position: relative;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.3em;
    color: #191825;
    margin-bottom: 35px;
}

.not-found-section .text {
    position: relative;
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 400;
    color: #808080;
}

.not-found-section .link-box {
    position: relative;
    padding-top: 45px;
}

.not-found-section .link-box .theme-btn {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    background: #FF681D;
    border-color: #FF681D;
}

.not-found-section .link-box .theme-btn:hover {
    background: #191825;
    color: #ffffff;
}

/*** 

====================================================================
  FAQs Section
====================================================================

***/

.faqs-section {
    position: relative;
    padding: 130px 0px 100px;
}

.accordion-box {
    position: relative;
    margin: 0;
}

.accordion-box ::marker {
    display: none;
}

.accordion-box .block {
    position: relative;
    list-style: none;
    display: block;
    margin-bottom: 30px;
}

.accordion-box .block.active-block {
    border-color: #03030f;
}

.accordion-box .block .acc-btn {
    position: relative;
    letter-spacing: 0.05em;
    top: 0;
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    text-transform: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #191825;
    background: #F0F0F0;
    border: 1px solid #F0F0F0;
    padding: 19px 60px 19px 30px;
    cursor: pointer;
    border-radius: 5px;
}

.accordion-box .block.active-block .acc-btn {
    background: none;
    border-color: rgba(0, 0, 0, 0.10);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion-box .block .acc-btn:after {
    content: "\f107";
    position: absolute;
    right: 25px;
    top: 15px;
    height: 40px;
    text-align: center;
    color: #191825;
    font-family: "Font Awesome 6 Pro";
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
    cursor: pointer;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.accordion-box .block .acc-btn.active:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.accordion-box .block .acc-content {
    position: relative;
    width: 100%;
    background: #ffffff;
    display: none;
}

.accordion-box .active-block .acc-content {
    display: block;
}

.accordion-box .block .content {
    position: relative;
    padding: 22px 30px 22px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.accordion-box .block .content .text {
    display: block;
    line-height: 1.85em;
    margin: 0;
    font-size: 16px;
}

/*** 

====================================================================
  Course Details Section
====================================================================

***/

.course-details {
    position: relative;
    font-size: 16px;
    padding: 130px 0px 0px 95px;
}

.course-details .image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 5px;
}

.course-details .big-image {
    margin-bottom: 60px;
}

.course-details .image img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
}

.course-details h2 {
    font-weight: 900;
    line-height: 1.30em;
    margin-bottom: 30px;
}

.course-details p {
    margin-bottom: 30px;
    line-height: 1.85em;
}

.course-details ul {
    margin-bottom: 20px;
}

.course-details ul li {
    position: relative;
    line-height: 1.60em;
    margin-bottom: 10px;
    padding-left: 32px;
}

.course-details ul li:before {
    content: "\f560";
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 400;
    color: #FF8F1F;
    line-height: 1.20em;
    font-size: 20px;
}

.course-details h3 {
    font-weight: 700;
    line-height: 1.30em;
    font-family: 'Roboto', sans-serif;
    padding-top: 10px;
    margin-bottom: 10px;
}

/*** 

====================================================================
  Info Section
====================================================================

***/

.info-section {
    position: relative;
    padding: 130px 0px 100px;
    background: #ffffff;
}

.info-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 230px;
    bottom: 0;
    width: 100%;
    background: #F5F8FF;
}

.info-section .map-box {
    position: relative;
    height: 480px;
    background: rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    margin-bottom: 70px;
}

.info-section .map-box iframe {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    outline: none;
    height: 480px;
    background: rgba(0, 0, 0, 0.10);
    border-radius: 5px;
}

.info-section .info-block {
    position: relative;
    margin-bottom: 30px;
}

.info-section .info-block .inner-box {
    position: relative;
    display: block;
    padding: 50px 50px 45px;
    text-align: center;
    background: #ffffff;
    min-height: 100%;
    border-radius: 10px;
}

.info-section .info-block .icon-box {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    background: rgba(255, 143, 31, 0.1);
    color: #FF8F1F;
    font-size: 30px;
    line-height: 100px;
    text-align: center;
    margin: 0 auto 28px;
    border-radius: 50%;
}

.info-section .info-block h4 {
    color: #191825;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-section .info-block h4 a {
    color: #191825;
}

.info-section .info-block .text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #808080;
    font-weight: 400;
    line-height: 1.85em;
}

.info-section .info-block .text a {
    color: #808080;
}

/*** 

====================================================================
  Contact Section
====================================================================

***/

.contact-section {
    position: relative;
    padding: 120px 0px 110px;
    background: #ffffff;
}

.contact-section .title-box.centered {
    margin-bottom: 60px;
}

.contact-section .form-box {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section .form-box form .theme-btn {
    font-size: 16px;
    text-transform: capitalize;
    padding: 12px 30px;
    min-width: 220px;
    font-weight: 700;
    margin-top: 10px;
}

/*** 

====================================================================
  Post Details
====================================================================

***/

.sidebar-page-container {
    position: relative;
    padding: 120px 0 90px;
}

.sidebar-page-container .content-side {
    position: relative;
    margin-bottom: 30px;
}

.sidebar-page-container .blog-title {
    position: relative;
    margin-bottom: 50px;
}

.sidebar-page-container .blog-title h2 {
    font-weight: 900;
}

.sidebar-page-container .content-side .content-inner {
    position: relative;
    display: block;
}

.blog-details {
    position: relative;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 40px;
}

.blog-details .image-box {
    position: relative;
    display: block;
    width: 100%;
    max-width: 750px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-details .image-box img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
}

.blog-details .lower {
    position: relative;
    display: block;
    font-size: 16px;
    padding: 30px 0 0;
}

.blog-details h2 {
    position: relative;
    font-size: 48px;
    font-weight: 600;
    color: #FF8F1F;
    line-height: 1.3em;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
}

.blog-details .text-content {
    position: relative;
}

.blog-details .text-content p {
    margin-bottom: 20px;
}

.blog-details blockquote {
    position: relative;
    display: block;
    max-width: 90%;
    font-size: 18px;
    line-height: 1.6em;
    color: #040405;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: #F7F8FB;
    padding: 64px 60px 25px 35px;
    border-left: 5px solid #FF8F1F;
    margin-bottom: 30px;
    border-radius: 5px 10px 10px 5px;
}

.blog-details blockquote .quote-left {
    position: absolute;
    left: 35px;
    top: 30px;
    color: #FF8F1F;
    font-size: 30px;
    line-height: 0.9em;
}

.blog-details blockquote .quote-right {
    position: absolute;
    right: 50px;
    bottom: 0;
    color: #FF8F1F;
    font-size: 64px;
    line-height: 0.8em;
    opacity: 0.10;
}

.sidebar-page-container .add-comment {
    position: relative;
}

.add-comment h3 {
    position: relative;
    font-size: 30px;
    color: #191825;
    font-weight: 900;
    margin-bottom: 25px;
}

.add-comment form .row {
    margin: 0 -7px;
}

.add-comment form .row .form-group {
    padding-left: 7px;
    padding-right: 7px;
    margin-bottom: 14px;
}

.add-comment form .row .form-group input,
.add-comment form .row .form-group textarea {
    background: #F7F8FB;
    border-color: rgba(128, 128, 128, 0.1);
}

.add-comment form .row .form-group input:focus,
.add-comment form .row .form-group textarea:focus {
    border-color: #FF8F1F;
}

.add-comment form .theme-btn {
    display: block;
    width: 100%;
    max-width: 220px;
    line-height: 30px;
    padding: 9px 25px;
    border: 1px solid #0066FF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: none;
    margin-top: 16px;
    border-radius: 25px;
}

.add-comment form .theme-btn:hover {
    color: #ffffff;
    background: #FF8F1F;
    border-color: #FF8F1F;
}

.sidebar-page-container .sidebar-side {
    position: relative;
    margin-bottom: 20px;
}

.sidebar-page-container .sidebar-side .sidebar {
    position: relative;
    display: block;
    padding-left: 30px;
}

.sidebar-side .sidebar-widget {
    position: relative;
    margin-bottom: 40px;
}

.sidebar-side .sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-side .sidebar-title {
    position: relative;
    margin-bottom: 15px;
}

.sidebar-side .sidebar-title h5 {
    position: relative;
    font-size: 18px;
    font-weight: 900;
    text-transform: capitalize;
    margin-bottom: 0;
    overflow: hidden;
}

.sidebar-side .sidebar-title h5 span {
    position: relative;
}

.search-widget form {
    position: relative;
}

.search-widget form .form-group {
    position: relative;
    margin: 0;
}

.search-widget form .form-group input {
    width: 100%;
    height: 60px;
    font-size: 16px;
    line-height: 34px;
    padding: 12px 60px 12px 30px;
    font-weight: 400;
    background: #F7F8FB;
    border: 1px solid rgba(128, 128, 128, 0.1);
    border-radius: 5px;
}

.search-widget form .form-group input:focus {
    border-color: #FF8F1F;
}

.search-widget form .form-group .field-inner {
    position: relative;
}

.search-widget form .theme-btn {
    position: absolute;
    right: 28px;
    top: 16px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    border: none;
    background: none;
    color: #808080;
    font-size: 20px;
}

.search-widget form .form-group input:focus+.theme-btn {
    color: #FF8F1F;
}

.sidebar-side .recent-post {
    position: relative;
}

.sidebar-side .recent-post .post {
    position: relative;
    margin: 0 0 15px;
}

.sidebar-side .recent-post .post:last-child {
    margin-bottom: 0;
}

.sidebar-side .recent-post .post .inner {
    position: relative;
    display: block;
    padding-left: 90px;
    min-height: 70px;
    padding-top: 5px;
}
.sidebar-side .more-services .post .inner {
    position: relative;
    display: block;
    min-height: 70px;
    padding-top: 5px;
}
.sidebar-side .recent-post .post .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    border-radius: 5px;
}

.sidebar-side .recent-post .post img {
    display: block;
    width: 100%;
    border-radius: 5px;
}

.sidebar-side .recent-post .post .date {
    position: relative;
    line-height: 20px;
}

.sidebar-side .recent-post .post .date span {
    position: relative;
    font-size: 14px;
    color: #808080;
}

.sidebar-side .recent-post .post .text {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #191825;
    font-weight: 600;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}

.sidebar-side .recent-post .post .text a {
    color: #191825;
}

.sidebar-side .recent-post .post .text a:hover {
    color: #FF8F1F;
}

.sidebar-side .links-widget {
    position: relative;
    margin-bottom: 50px;
}

.sidebar-side .links-widget h5 {
    color: #FF8F1F;
}

.sidebar-side .links-widget ul {
    position: relative;
}

.sidebar-side .links-widget ul li {
    position: relative;
    margin-bottom: 7px;
}

.sidebar-side .links-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar-side .links-widget ul li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #777777;
}

.sidebar-side .links-widget ul li a:hover {
    color: #FF8F1F;
    text-decoration: underline;
}

.form-control-date {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control-date:focus {
    border-color: #007bff;
}
.image-layout {
    position: relative;
    width: 100%;
    padding-bottom: 120px; /* space for overlap */
}

.main-image img {
    width: 75%;          /* not full width */
    height: auto;
    display: block;
    border-radius: 8px;
}

.overlay-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
}

.overlay-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.overlay-image {
    bottom: 30px;
}@media (max-width: 768px) {
    .main-image img{
        width: 100%;
        position: relative;
        bottom: auto;
        right: auto;
    }
    .overlay-image {
        bottom: 0px;
    }
    .image-layout {
        padding-bottom: 50px;
    }
    .main-header .main-box .logo-box .logo img {
    position: relative;
    display: block;
    width:140px;
    margin-top: 2px;
    z-index: 1;
}
}
.two-column-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.two-column-list li {
    width: 50%; /* two items per row */
    box-sizing: border-box;
    padding: 10px;
}

    .success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.success-popup.active {
  display: flex;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  animation: popIn 0.4s ease;
}

.popup-content h3 {
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 14px;
  color: #555;
}

.popup-content button {
  margin-top: 20px;
  padding: 10px 25px;
  border: none;
  background: #ff8f1f;
  color: white;
  border-radius: 25px;
  cursor: pointer;
}


@keyframes popIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
#cfm_zx91qv_2026 input[type="date"] {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}