/*
Template Name: Volia
Author: Listdo
Version: 1.0.0

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global Settings
4. Content Elements 
5. Main Header
6. Search Popup
7. Sticky Header
8. Hidden Sidebar
9. Mobile Header
10. Mobile Menu
11. Header Style Two / Three
12. Page Title
13. Main Slider
14. Banner Section / Two
15. Countdown Section 
16. About Section / Two / Three
17. Feature Section / Two / Three
18. Fun Fact Section
19. Speakers Section / Two / Three
20. Speaker Detail
21. Schedule Section / Two / Three
22. Event Detail
23. FAQ's Section
24. FAQ Form Section
25. Call to Action / Two
26. Pricing Section / Two / Three
27. Testimonial Section
28. News Section
29. Blog Detail
30. Sidebar Page Container
31. Comment Area
32. Comment Form
33. Error Section
34. Gallery Section
35. Styled Pagination
36. Contact Section
37. Map Section
38. Clients Section / Two / Three
39. Subscribe Section / Two
40. Main Footer / Two / Three
41. Coming Soon
42. Right To Left Style
**********************************************/


/*** 

====================================================================
    Fonts
====================================================================

***/

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700;800;900&family=Exo:wght@300;400;500;600;700;800;900&display=swap");

/*
font-family: 'Archivo', sans-serif;
font-family: 'Exo', sans-serif;
*/

@import url("flaticon.css");
@import url("fontawesome-all.css");
@import url("animate.css");
@import url("owl.css");
@import url("jquery-ui.min.css");
@import url("jquery.fancybox.min.css");
@import url("jquery.bootstrap-touchspin.css");

/*** 

====================================================================
  Reset
====================================================================

***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}


/*** 

====================================================================
Global Settings
====================================================================

***/

body {
    font-size: 16px;
    color: #363636;
    line-height: 28px;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: "Archivo", sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    margin: 0px;
    background: none;
    font-weight: 600;
    line-height: 1.2em;
    font-family: "Exo", sans-serif;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 17px;
}

section {
    position: relative;
}

textarea {
    overflow: hidden;
    resize: none;
}

button {
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
    min-width: auto;
}

p,
.text {
    font-size: 16px;
    line-height: 30px;
    color: #555555;
    font-weight: 400;
    margin: 0;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.small-container {
    position: static;
    max-width: 900px;
    padding: 0px 15px;
    margin: 0 auto;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
    z-index: 1;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.section {
    padding: 60px 0 30px;
}

.bg_alice {
    background-color: #f9fafc;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}


/***
=======================
   Default Navs
=======================
***/

.disable-nav .owl-nav {
    display: none;
}

.default-nav .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.default-nav .owl-next,
.default-nav .owl-prev {
    position: absolute;
    left: -55px;
    top: 0;
    height: 30px;
    width: 50px;
    font-size: 14px;
    color: #081245;
    line-height: 30px;
    border-radius: 50px;
    text-align: center;
    background-color: #ebebeb;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.default-nav .owl-next {
    left: auto;
    right: -55px;
}

.default-nav .owl-next:hover,
.default-nav .owl-prev:hover {
    background: #081245;
    color: #ffffff;
}


/***
=======================
   List Styles
=======================
***/


/* List Style Two */

.list-style-one {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.list-style-one li {
    position: relative;
    font-weight: 400;
    padding-left: 30px;
    margin-bottom: 10px;
}

.list-style-one li:before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    color: #ffba00;
    font-weight: 900;
    font-size: 16px;
}


/* List Style Two */

.list-style-two {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.list-style-two li {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: #363636;
    font-weight: 400;
    padding-left: 20px;
    margin-bottom: 5px;
}

.list-style-two li:before {
    position: absolute;
    top: 10px;
    left: 0;
    height: 7px;
    width: 7px;
    background-color: #1370b5;
    border-radius: 50%;
    content: "";
}

.list-style-two.light li {
    font-weight: 300;
}


/*** 
==========================
  Social Icon One
==========================
***/

.social-icon-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.social-icon-one li {
    position: relative;
    margin-right: 10px;
}

.social-icon-one li:last-child {
    margin-right: 0;
}

.social-icon-one li a {
    position: relative;
    display: block;
    font-size: 18px;
    color: #ffffff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #00082e;
    border-radius: 0 0 50% 50%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.social-icon-one li a:hover {
    background-color: #ffae00;
    color: #ffffff;
}


/*** 
==========================
  Social Icon Two
==========================
***/

.social-icon-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.social-icon-two li {
    position: relative;
    margin: 0 -.5px;
}

.social-icon-two li a {
    position: relative;
    display: block;
    font-size: 18px;
    color: #ffffff;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.social-icon-two li a:hover {
    background-color: #ffae00;
    color: #ffffff;
}


/*** 
==========================
  Social Icon Three
==========================
***/

.social-icon-three {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.social-icon-three li {
    position: relative;
    margin-right: 10px;
}

.social-icon-three li:last-child {
    margin-right: 0;
}

.social-icon-three li a {
    position: relative;
    display: block;
    font-size: 14px;
    color: #ffffff;
    height: 34px;
    width: 28px;
    line-height: 34px;
    text-align: center;
    background-color: #00082e;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.social-icon-three li a:hover {
    background-color: #ffae00;
    color: #ffffff;
}


/*==========================
  Default Tabs
===========================*/

.default-tabs {
    position: relative;
    overflow: hidden;
    border: 1px solid #dddde1;
    margin-bottom: 30px;
}

.default-tabs .tab-buttons {
    position: relative;
    padding: 10px 10px;
    background: #1370b5;
    border-radius: 5px;
}

.default-tabs .tab-buttons li {
    position: relative;
    float: left;
    font-weight: 600;
    font-size: 16px;
    padding: 11px 24px;
    color: #ffffff;
    line-height: 20px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.default-tabs .tab-buttons li.active-btn {
    background-color: #ffffff;
    color: #1370b5;
}

.default-tabs .tabs-content {
    position: relative;
    width: 100%;
    padding: 25px 25px;
    background-color: #ffffff;
}

.default-tabs .tabs-content p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 300;
}


/*==========================
default table
===========================*/

.default-table {
    position: relative;
    background: #ffffff;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
    border-radius: 5px;
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
    min-width: 600px;
}

.default-table thead {
    background: #1370b5;
    color: #ffffff;
}

.default-table thead th {
    position: relative;
    padding: 20px 30px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 30px;
}

.default-table tbody tr {
    position: relative;
    border-bottom: 1px solid #ededed;
}

.default-table tr td {
    position: relative;
    padding: 26px 30px;
    font-size: 16px;
    color: #5c6770;
    font-weight: 400;
}

.content-elements .btn-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.content-elements .btn-column .theme-btn {
    margin-bottom: 20px;
}


/*======================
Theme Btn
=======================*/

.theme-btn {
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.theme-btn .btn-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9;
    color: inherit;
}


/*Btn Style One*/

.btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    background: #001376;
    overflow: hidden;
    min-width: 180px;
}

.btn-style-one:hover {
    color: #ffffff;
}

.btn-style-one i {
    margin-right: 10px;
    font-size: 20px;
    line-height: 1em;
    color: #ffae00;
}

.btn-style-one:before {
    position: absolute;
    top: -50%;
    left: -50%;
    height: 100%;
    width: 200%;
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transform: rotate(16deg);
    -ms-transform: rotate(16deg);
    transform: rotate(16deg);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.btn-style-one:hover:before {
    top: 150%;
}


/*Btn Style Two*/

.btn-style-two {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    background: #001376;
    overflow: hidden;
    min-width: 180px;
    background: #ffc600;
    background: -o-linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
    background: linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
}

.btn-style-two:hover {
    color: #ffffff;
}

.btn-style-two:hover:before {
    opacity: 1;
}

.btn-style-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ffc600;
    background: -o-linear-gradient(135deg, #ffc600 1%, #ff6c00 100%);
    background: linear-gradient(-45deg, #ffc600 1%, #ff6c00 100%);
    content: "";
    opacity: 0;
    -webkit-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
}

.theme-btn.large {
    padding: 15px 70px;
    min-width: 20px;
    font-size: 18px;
    line-height: 30px;
}

.theme-btn.small {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 5px;
    min-width: 100px;
}


/*==========================
Owl Carousel Arrows
===========================*/

.owl-carousel.no-arrows .owl-nav {
    display: none;
}

.default-arrows .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    opacity: 0;
    margin-top: -22px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.default-arrows:hover .owl-nav {
    opacity: 1;
}

.default-arrows .owl-next,
.default-arrows .owl-prev {
    position: absolute;
    left: -50px;
    top: 0;
    height: 45px;
    width: 45px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    line-height: 45px;
    border-radius: 7px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.default-arrows .owl-next {
    left: auto;
    right: -50px;
}

.default-arrows:hover .owl-next {
    right: 30px;
}

.default-arrows:hover .owl-prev {
    left: 30px;
}

.default-arrows .owl-next:hover,
.default-arrows .owl-prev:hover {
    background: #ffffff;
    color: #1370b5;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.default-arrows.dark .owl-next,
.default-arrows.dark .owl-prev {
    background-color: rgba(0, 0, 0, 0.2);
}

.default-arrows.dark .owl-next:hover,
.default-arrows.dark .owl-prev:hover {
    background-color: #ffffff;
}

.owl-carousel.disable-arrow .owl-nav {
    display: none;
}

.owl-carousel.disable-dots .owl-dots {
    display: none;
}

.default-dots .owl-dots {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.default-dots .owl-dot {
    position: relative;
    height: 8px;
    width: 8px;
    background-color: #000000;
    margin: 0 4px;
    border-radius: 10px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.default-dots .owl-dot.active {
    width: 32px;
    background-color: #1370b5;
}

.default-dots.light .owl-dot {
    background-color: #ffffff !important;
}

.theme_color {
    color: #1370b5;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}


/*==========================
  Preloader
  ===========================*/
.preloader{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  z-index: 9999;
  background-image: url(../images/icons/preloader.gif);
  background-size: 250px;
  background-repeat: no-repeat;
  background-position: center;
}

.preloader:before{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 80px;
  color: #001376;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 1px;
  content: "Loading";
  text-transform: uppercase;
  transition: none;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

hr {
    -webkit-appearance: none;
    position: relative;
    height: 1px;
    margin: 30px auto;
    background: #e6e8ed;
    border-style: none;
    outline-style: none;
}

.tabs-box {
    position: relative;
}

.tabs-box .tab {
    display: none;
}

.tabs-box .active-tab {
    display: block;
}


/*=== Default Form ===*/

.default-form {
    position: relative;
}

.default-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.default-form .form-group:last-child {
    margin-bottom: 0;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="number"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="url"],
.default-form .form-group textarea,
.default-form .form-group select {
    position: relative;
    width: 100%;
    display: block;
    color: #5c6770;
    font-size: 14px;
    line-height: 30px;
    padding: 10px 20px;
    height: 52px;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group input[type="url"]:focus,
.default-form .form-group select:focus,
.default-form .form-group textarea:focus {
    border-color: #1370b5;
}

.default-form .form-group textarea {
    height: 184px;
    resize: none;
    padding-top: 15px;
}

.default-form .form-group input[type="submit"],
.default-form .form-group button {
    position: relative;
    display: inline-block;
    min-width: 160px;
}

.default-form input.error:focus,
.default-form select.error:focus,
.default-form textarea.error:focus {
    border-color: #ff0000;
}

.default-form label.error {
    display: block;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    line-height: 24px;
    color: #ff0000;
    margin-bottom: 0;
}

.default-form .form-group .icon {
    position: absolute;
    right: 20px;
    bottom: 0;
    color: #9fa9b8;
    font-size: 14px;
    line-height: 54px;
}


/*** 

====================================================================
  Scroll To Top
====================================================================

***/

.scroll-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    width: 30px;
    height: 30px;
    font-size: 16px;
    color: #1b2032;
    line-height: 30px;
    text-align: center;
    background: #ffc600;
    background: -o-linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
    background: linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
    display: none;
    border-radius: 20px;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.play-now {
    position: relative;
    display: inline-block;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.play-now .icon {
    position: relative;
    display: inline-block;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px;
    background-color: #ffffff;
    color: #222222;
    z-index: 1;
    font-size: 42px;
    display: block;
    border-radius: 50%;
    -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
    -ms-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
    -o-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
    box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 70px;
    width: 70px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.play-now .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.play-now .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}


/*** 

====================================================================
  Anim Icons
====================================================================

***/

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.anim-icons.full-width {
    max-width: 100%;
}

.anim-icons .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.icon-circle-1 {
    width: 315px;
    height: 315px;
    background-image: url(../images/icons/circle-1.png);
    -webkit-animation: fa-spin 30s infinite;
    animation: fa-spin 30s infinite;
}

.icon-circle-2 {
    width: 300px;
    height: 300px;
    background-image: url(../images/icons/circle-2.png);
    -webkit-animation: fa-spin 30s infinite;
    animation: fa-spin 30s infinite;
}

.icon-dotted-circle {
    width: 500px;
    height: 500px;
    background-image: url(../images/icons/icon-dotted-circle.png);
}

.icon-dotted-world {
    width: 430px;
    height: 430px;
    background-image: url(../images/icons/icon-world.png);
}

.icon-circle-3 {
    width: 688px;
    height: 688px;
    background-image: url(../images/icons/circle-3.png);
}

.icon-circle-4 {
    width: 140px;
    height: 140px;
    background-image: url(../images/icons/circle-4.png);
}

.icon-object-2 {
    width: 57px;
    height: 55px;
    background-image: url(../images/icons/object-2.png);
}

.icon-object-3 {
    width: 78px;
    height: 82px;
    background-image: url(../images/icons/object-3.png);
}

.icon-object-4 {
    width: 39px;
    height: 39px;
    background-image: url(../images/icons/object-4.png);
}

.icon-object-5 {
    width: 39px;
    height: 39px;
    background-image: url(../images/icons/object-5.png);
}

.icon-object-10 {
    width: 141px;
    height: 124px;
    background-image: url(../images/icons/object-10.png);
}

.icon-object-11 {
    width: 306px;
    height: 308px;
    background-image: url(../images/icons/object-11.png);
}

.icon-object-12 {
    width: 66px;
    height: 66px;
    background-image: url(../images/icons/object-12.png);
}

.icon-object-13 {
    width: 207px;
    height: 208px;
    background-image: url(../images/icons/object-13.png);
}

.icon-object-14 {
    width: 131px;
    height: 131px;
    background-image: url(../images/icons/object-14.png);
}

.icon-object-15 {
    width: 79px;
    height: 126px;
    background-image: url(../images/icons/object-15.png);
}

.icon-object-16 {
    width: 158px;
    height: 129px;
    background-image: url(../images/icons/object-16.png);
}

@-webkit-keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounce-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


/*** 

====================================================================
  Main Header
====================================================================

***/

.main-header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 99;
}

.main-header:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 30px;
    width: 100%;
    background-color: #00082e;
    content: "";
}


/* Header Top */

.header-top {
    position: relative;
}

.header-top .inner-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-top .top-left {
    position: relative;
    padding-left: 30px;
    min-width: 240px;
}

.header-top .top-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    padding-left: 70px;
}

.contact-list-one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.contact-list-one li {
    position: relative;
    padding-left: 55px;
    font-size: 14px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 400;
    margin-right: 60px;
}

.contact-list-one li:last-child {
    margin-right: 0;
}

.contact-list-one li strong {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-list-one li i {
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 38px;
    line-height: 30px;
    color: #ffae00;
}

.contact-list-one li a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.nav-toggler {
    position: relative;
    color: #ff7c00;
    font-size: 34px;
    margin-left: auto;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.nav-toggler:hover {
    color: #ffae00;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}


/* Header Lower */

.main-header .header-lower {
    position: relative;
    margin-bottom: -30px;
}

.main-header .main-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0 0 0 40px;
}

.main-header .main-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 10000%;
    background-color: #ffffff;
    content: "";
}

.main-header .nav-outer {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.main-header .logo-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 240px;
    min-height: 110px;
    background-color: #ffffff;
    border-radius: 10px 10px 0 40px;
    margin-top: -30px;
    margin-right: 70px;
}

.main-header .logo {
    position: relative;
    z-index: 9;
    padding: 15px 15px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .menu-box {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.main-menu {
    position: static;
}

.main-menu .navbar-header {
    display: none;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: static;
    margin: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-menu .navigation>li {
    position: relative;
    margin-right: 48px;
    -webkit-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;
    line-height: 30px;
    font-weight: 600;
    padding: 20px 0;
    color: #081245;
    opacity: 1;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li.current>a,
.main-menu .navigation>li>a:hover {
    color: #ffae00;
}

.main-menu .navigation>li>a:before {
    position: absolute;
    left: 50%;
    bottom: 20px;
    height: 2px;
    width: 0%;
    content: "";
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
    background-color: #ff7c00;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li.dropdown>a:after {
    content: "\f107";
    position: absolute;
    right: -14px;
    top: 50%;
    width: 10px;
    height: 20px;
    display: block;
    line-height: 20px;
    font-size: 12px;
    z-index: 5;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-menu .navigation>li.current>a:before,
.main-menu .navigation>li:hover>a:before {
    left: 0;
    width: 100%;
}

.main-menu .navigation>li>ul>li.dropdown>a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    position: absolute;
    right: 25px;
    top: 8px;
    width: 10px;
    height: 20px;
    display: block;
    line-height: 20px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown:hover>a:after {
    color: #ffffff;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 220px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 20px 0px;
    background: #ffffff;
    border-radius: 3px;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    transform: rotateX(90deg);
    border-bottom: 3px solid #ff7c00;
    border-radius: 0 0 6px 6px;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul:before {
    position: absolute;
    content: "";
    left: 0px;
    top: -30px;
    width: 100%;
    height: 30px;
    display: block;
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
}

.main-menu .navigation>li>ul>li:last-child {
    margin-bottom: 0px;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 5px 25px;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #222222;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li:hover>a {
    color: #1b0a3f;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 100%;
    width: 220px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    margin-top: -50px;
    padding: 20px 0px;
    background: #ffffff;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    transform: rotateX(90deg);
    border-bottom: 3px solid #ff7c00;
    border-radius: 0 0 6px 6px;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    margin-bottom: 0px;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 5px 25px;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #222222;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
    color: #1b0a3f;
}

.main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #ffffff;
    line-height: 28px;
    border: 1px solid #ffffff;
    background-size: 20px;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/* Search btn */

.main-header .search-box-btn {
    position: relative;
    height: 40px;
    width: 40px;
    text-align: center;
    background: #ffae00;
    border-radius: 50%;
    line-height: 40px;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.main-header .theme-btn {
    margin-left: 30px;
    background-color: #081245;
    white-space: nowrap;
    display: block;
}


/* Cart btn */

.main-header .cart-btn {
    position: relative;
    display: block;
    z-index: 1;
    color: #ffffff;
    font-size: 24px;
    line-height: 40px;
}

.main-header .cart-btn .count {
    position: absolute;
    right: -7px;
    top: -4px;
    height: 18px;
    width: 18px;
    text-align: center;
    line-height: 18px;
    font-size: 10px;
    color: #ffffff;
    background-color: #1370b5;
    border-radius: 50%;
}



/************************ Mega Menu ***************************/

.main-menu .navigation > li.has-mega-menu{
    position:static;
}

.main-menu .navigation > li > .mega-menu{
    position:absolute;
    left:0px;
    right: 0;
    margin: auto;
    width:100%;
    max-width: 1170px;
    background:#ffffff;
    padding: 45px 40px 30px 45px;
    top: 100%;
    z-index:100;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    -webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
    -ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
    -o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
    -moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
    box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}


.main-menu .navigation > li:hover > .mega-menu{
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

.main-menu .navigation > li > .mega-menu .mega-menu-bar{
    position: relative;
}

.main-menu .navigation > li .mega-menu-bar h3{
    position:relative;
    color: #00082e;
    font-size:18px;
    font-weight:500;
    padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,0.10);
}

.main-menu .navigation > li .mega-menu-bar > ul{
    position:relative;

}

.main-menu .navigation > li .mega-menu-bar .column > ul > li{
    position:relative;
    width:100%;
    border-bottom:1px solid #dddddd;
    text-transform:capitalize;
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
}

.main-menu .navigation > li .mega-menu-bar .column{
    position:relative;
    margin-bottom:10px;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li:last-child{
    border:none;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li > a{
    position:relative;
    display:block;
    padding:10px 20px;
    line-height:24px;
    font-weight:400;
    color:#000000;
    text-align:left;
    font-size: 14px;
    text-transform:capitalize;
    transition:all 200ms ease;
    -moz-transition:all 200ms ease;
    -webkit-transition:all 200ms ease;
    -ms-transition:all 200ms ease;
    -o-transition:all 200ms ease;
}
.main-menu .navigation > li .mega-menu-bar .column > ul > li > a:after{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    height: 1px;
    text-align: left;
    margin: 0;
    opacity: 0;
}
.main-menu .navigation > li .mega-menu-bar .column > ul > li > a:hover{
    z-index: 1;
    color: #ffae00;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li > a:hover:after{
    z-index: -10;
      animation: fill 1s forwards;
      -webkit-animation: fill 1s forwards;
      -moz-animation: fill 1s forwards;
      opacity: 1;
}


/*** 

====================================================================
  Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    margin-top: -540px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    background-color: #00082e;
    z-index: 99999;
    visibility: hidden;
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    background-image: url(../images/icons/wave.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: -20px;
    content: "";
}

.search-active .search-popup {
    visibility: visible;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    height: 50px;
    width: 100%;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, .10);
    -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.40);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.40);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: transparent;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    padding: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #ffbc00;
}

.search-popup input::-webkit-input-placeholder,
.search-popup textarea::-webkit-input-placeholder {
    color: #aaaaaa;
}

.search-popup input::-moz-placeholder,
.search-popup textarea::-moz-placeholder {
    color: #aaaaaa;
}

.search-popup input:-ms-input-placeholder,
.search-popup textarea:-ms-input-placeholder {
    color: #aaaaaa;
}

.search-popup input::-ms-input-placeholder,
.search-popup textarea::-ms-input-placeholder {
    color: #aaaaaa;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #aaaaaa;
}


/*** 

====================================================================
  Sticky Header
====================================================================

***/

.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: 99;
    background: rgba(255, 255, 255, 0.99);
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.fixed-header .sticky-header {
    opacity: 1;
    z-index: 99;
    visibility: visible;
}

.fixed-header .logo-box {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    min-width: auto !important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}

.fixed-header .logo-box img {
    max-height: 50px;
}

.sticky-header .main-menu .navigation>li {
    margin-right: 0;
    margin-left: 50px;
}

.sticky-header .upper-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

.header-style-three .sticky-header .main-menu:after,
.header-style-three .sticky-header .logo-box:before,
.header-style-three .sticky-header .search-box-btn,
.header-style-three .sticky-header .social-icon-four {
    display: none;
}


/***

====================================================================
  Hidden Sidebar style
====================================================================

***/

.hidden-bar {
    position: fixed;
    right: 0;
    top: 0px;
    height: 100%;
    overflow-y: auto;
    z-index: 99999;
    opacity: 0;
    max-width: 320px;
    width: 100%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    visibility: hidden;
    background: -o-linear-gradient(45deg, #000b46 0%, #001166 100%);
    background: linear-gradient(45deg, #000b46 0%, #001166 100%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.hidden-bar::-webkit-scrollbar {
    width: 2px;
}

.hidden-bar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px #cecece;
    box-shadow: inset 0 0 2px #cecece;
    border-radius: 10px;
}

.hidden-bar::-webkit-scrollbar-thumb {
    background: #7a7a7a;
    border-radius: 10px;
}

.hidden-bar::-webkit-scrollbar-thumb:hover {
    background: #7a7a7a;
}

.form-back-drop {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .50);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.active-side-nav .hidden-bar {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.active-side-nav .form-back-drop {
    opacity: 1;
    visibility: visible;
}

.hidden-bar .inner-box {
    position: relative;
    padding: 30px 30px 50px;
    width: 100%;
}

.hidden-bar .title-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.hidden-bar .title-box .cross-icon {
    position: relative;
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
}

.hidden-bar .inner-box h2 {
    position: relative;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2em;
    color: #ffffff;
}

.hidden-bar .inner-box p {
    color: #ffffff;
    margin-bottom: 25px;
}


/*=== Form Style One ===*/

.form-style-one {
    position: relative;
}

.form-style-one .form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-style-one .form-group:last-child {
    margin-bottom: 0;
}

.form-style-one .form-group input,
.form-style-one .form-group textarea,
.form-style-one .form-group select {
    position: relative;
    width: 100%;
    display: block;
    color: #ffffff;
    font-size: 13px;
    line-height: 20px;
    padding: 10px 10px;
    height: 40px;
    background-color: rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .30);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-style-one .form-group input:focus,
.form-style-one .form-group select:focus,
.form-style-one .form-group textarea:focus {
    border-color: #1370b5;
}

.form-style-one .form-group textarea {
    height: 150px;
    resize: none;
    padding-top: 15px;
}

.form-style-one .form-group input[type="submit"],
.form-style-one .form-group button {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hidden-bar .contact-list-one {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 40px;
}

.hidden-bar .contact-list-one li {
    margin-bottom: 20px;
    padding-left: 50px;
    margin-right: 0;
}

.hidden-bar .contact-list-one li i {
    font-size: 28px;
}

.hidden-bar .contact-list-one li strong {
    font-size: 16px;
    line-height: 20px;
}


/*** 

====================================================================
  Mobile Header
====================================================================

***/

.mobile-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: none;
    background: #ffffff;
    z-index: 99;
    padding: 15px 20px;
}

.mobile-header .logo {
    position: relative;
    padding: 0;
}

.mobile-header .logo img {
    max-height: 40px;
}

.mobile-header .nav-outer {
    position: relative;
    width: auto;
}

.mobile-header .outer-box {
    position: relative;
}

.sticky-header .mobile-search-btn,
.mobile-header .mobile-search-btn {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    color: #081245;
    top: 5px;
}

.mobile-header .search-box {
    margin: 0;
}

.mobile-header .cart-btn {
    font-size: 20px;
    height: 40px;
    width: 40px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-header .cart-btn {
    margin-left: 10px;
}


/*** 

====================================================================
      Mobile Menu
====================================================================

***/

.mobile-nav-toggler {
    position: relative;
    font-size: 26px;
    line-height: 20px;
    cursor: pointer;
    color: #081245;
    display: none;
    top: 0px;
    margin-left: 20px;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.mobile-menu .upper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20px 20px;
}

.mobile-menu .nav-logo {
    position: relative;
    text-align: left;
    width: 100%;
}

.mobile-menu .nav-logo img {
    max-height: 40px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-visible .scroll-to-top {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.9);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease 500ms;
    -o-transition: all 0.7s ease 500ms;
    transition: all 0.7s ease 500ms;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: relative;
    text-align: center;
    font-size: 14px;
    color: #111111;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.mobile-menu .close-btn:hover {
    opacity: 0.5;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 16px;
    color: #404040;
    font-weight: 500;
    text-transform: capitalize;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: #e1137b;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #404040;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

.mobile-menu .navigation li>ul>li {
    padding-left: 20px;
}

.mobile-menu .contact-list-one {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    padding: 50px 20px 20px;
}

.mobile-menu .contact-list-one li {
    margin-bottom: 20px;
    padding-left: 45px;
    color: #333333;
    margin-right: 0;
}

.mobile-menu .contact-list-one li a {
    color: #333333;
}

.mobile-menu .contact-list-one li i {
    font-size: 28px;
}

.mobile-menu .contact-list-one li strong {
    font-size: 14px;
    line-height: 18px;
}

.mobile-menu .social-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #ffffff;
    width: 100%;
    border-top: 1px solid #dddddd;
    margin-top: auto;
}

.mobile-menu .social-links li {
    position: relative;
    text-align: center;
    width: 100%;
    border-right: 1px solid #dddddd;
}

.mobile-menu .social-links li a {
    position: relative;
    display: block;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    text-align: center;
    color: #081245;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu .social-links li a:hover {
    color: #ff7500;
}

.sticky-header .outer-box,
.sticky-header .navbar-header {
    display: none;
}


/*** 

====================================================================
  Header Style Two
====================================================================

***/

.header-style-two {
    position: relative;
}

.header-style-two .header-top .inner-container {
    padding-left: 270px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-style-two .header-top .top-right {
    width: auto;
    padding: 0;
}

.header-style-two .header-top .top-left {
    padding-left: 0;
}

.contact-list-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.contact-list-two li {
    position: relative;
    font-size: 14px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 400;
    margin-right: 60px;
}

.contact-list-two li strong {
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
    margin-right: 3px;
    color: #ffae00;
}

.contact-list-two li i {
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 38px;
    line-height: 30px;
    color: #ffae00;
}

.contact-list-two li a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-style-two .header-lower {
    position: relative;
    background: #ffffff;
    margin-bottom: 0;
}

.header-style-two .main-box:before {
    display: none;
}

.header-style-two .logo-box {
    min-width: 200px;
    margin-top: -34px;
    border-radius: 0;
    -webkit-box-shadow: 0 0 27px rgba(0, 0, 0, .20);
    box-shadow: 0 0 27px rgba(0, 0, 0, .20);
}

.header-style-two .logo img {
    max-width: 160px;
}

.header-style-two .nav-toggler {
    margin-left: 30px;
}


/*** 

====================================================================
  Header Style Three
====================================================================

***/

.header-style-three {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 99;
    background: #ffffff;
}

.header-style-three:before {
    display: none;
}

.header-top-two {
    position: relative;
}

.header-top-two .inner-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 250px;
    min-height: 100px;
    padding-bottom: 20px;
}

.header-top-two .inner-container:before {
    position: absolute;
    left: -45px;
    right: -15px;
    top: 0;
    height: 100px;
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, .11);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .11);
    -webkit-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
    content: "";
}

.header-top-two .top-left {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.header-top-two .top-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 15px 15px;
    padding-right: 30px;
}

.contact-list-four {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.contact-list-four li {
    position: relative;
    padding-left: 55px;
    font-size: 14px;
    line-height: 25px;
    color: #555555;
    font-weight: 400;
    margin-right: 60px;
}

.contact-list-four li strong {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-list-four li i {
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 38px;
    line-height: 30px;
    color: #ffae00;
}

.contact-list-four li a {
    color: #555555;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}


/* Header Lower */

.header-style-three .header-lower {
    position: relative;
    margin: 0;
    padding-bottom: 40px;
    margin-top: -20px;
}

.header-style-three .header-lower .main-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    background: none;
}

.header-style-three .header-lower .main-box:before {
    background: none;
}

.header-style-three .header-lower .logo-box {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 240px;
    text-align: center;
    min-height: 135px;
    margin-top: -80px;
    margin-left: -30px;
    display: block;
}

.header-style-three .header-lower .logo-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ffc600;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #ffc600), to(#ff6c00));
    background: -o-linear-gradient(top, #ffc600 1%, #ff6c00 100%);
    background: linear-gradient(180deg, #ffc600 1%, #ff6c00 100%);
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    content: "";
}

.header-style-three .header-lower .social-icon-four {
    margin-right: 55px;
}

.social-icon-four {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: #ffffff;
}

.social-icon-four:before {
    position: absolute;
    right: -20px;
    left: -55px;
    top: 0;
    height: 100%;
    background: #ffffff;
    content: "";
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, .11);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .11);
}

.social-icon-four li a {
    position: relative;
    display: block;
    width: 28px;
    line-height: 40px;
    height: 40px;
    background: #ffffff;
    font-size: 14px;
    text-align: center;
    color: #081245;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-four li a:hover {
    color: #ff7500;
}

.header-style-three .header-lower .main-menu {
    position: relative;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #081245;
    border-radius: 50px;
    padding-left: 20px;
    width: 100%;
}

.header-style-three .header-lower .main-menu:before {
    position: absolute;
    right: 30px;
    left: -15px;
    top: 0;
    border-radius: 0 30px 30px 0;
    background: #081245;
    height: 100%;
    content: "";
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
}

.header-style-three .header-lower .main-menu:after {
    position: absolute;
    right: 20px;
    bottom: -10px;
    width: 80%;
    height: 4px;
    content: "";
    background: #081245;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
}

.header-style-three .header-lower .main-menu .navigation>li {
    margin-right: 40px;
}

.header-style-three .header-lower .main-menu .navigation>li>a {
    padding: 5px 0;
    color: #ffffff;
    font-weight: 500;
}

.header-style-three .header-lower .main-menu .navigation>li.dropdown>a {
    padding-right: 15px;
}

.header-style-three .header-lower .main-menu .navigation>li>a:before {
    display: none;
}

.header-style-three .header-lower .main-menu .navigation>li>a:after {
    right: 0;
}

.header-style-three .header-lower .btn-style-one i {
    color: #ffffff;
}

.header-style-three .header-lower .search-box-btn {
    background: #ffffff;
    color: #ffbe00;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .10);
    box-shadow: 0 0 10px rgba(0, 0, 0, .10);
}

.header-style-three .header-lower .main-menu .navigation>li>ul:before {
    top: 0;
}


/*** 

====================================================================
Page Title
====================================================================

***/

.page-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 160px 0;
    background: #F5F7FC;
}

.page-title .icon-bull-eye {
    position: absolute;
    right: -210px;
    top: 0;
    height: 422px;
    width: 422px;
    background-image: url(../images/icons/icon-bull-eye-2.png);
    content: "";
}

.page-title .icon-dotted-circle {
    position: absolute;
    left: -250px;
    top: -40px;
    -webkit-animation: fa-spin 60s infinite;
    animation: fa-spin 60s infinite;
}

.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000ec1;
    background: -o-radial-gradient(center, ellipse, #000ec1 0%, #000c47 100%, #000c47 100%);
    background: radial-gradient(ellipse at center, #000ec1 0%, #000c47 100%, #000c47 100%);
    content: "";
    opacity: .9;
}

.page-title h1 {
    position: relative;
    display: block;
    font-weight: 600;
    font-size: 48px;
    line-height: 1em;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.page-breadcrumb {
    position: relative;
}

.page-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    padding: 0 15px;
    text-transform: capitalize;
}

.page-breadcrumb li:after {
    position: absolute;
    top: 0px;
    right: -5px;
    content: "|";
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
}

.page-breadcrumb li:last-child::after {
    display: none;
}

.page-breadcrumb li a {
    color: #ffffff;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: #ffba00;
}


/*** 

====================================================================
  Section Title
====================================================================

***/

.sec-title {
    position: relative;
    margin-bottom: 60px;
}

.sec-title .sub-title {
    display: block;
    font-size: 16px;
    color: #fe00c5;
    font-weight: 700;
    font-family: 'Exo', sans-serif;
    margin-bottom: 15px;
}

.sec-title h2 {
    display: block;
    font-size: 36px;
    line-height: 48px;
    color: #081245;
    font-weight: 700;
}

.sec-title .text,
.sec-title p {
    position: relative;
    margin-top: 30px;
}

.sec-title .divider {
    position: relative;
    display: block;
    width: 68px;
    height: 5px;
    background-image: url(../images/icons/divider.png);
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 30px;
}

.sec-title.text-center .divider {
    margin: 30px auto 0;
    width: 90px;
    height: 5px;
    background-image: url(../images/icons/divider-centered.png);
}

.sec-title.light h2,
.sec-title.light .text,
.sec-title.light p {
    color: #ffffff;
}

.sec-bottom-text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}

.sec-bottom-text .text {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 40px;
    border-radius: 50px;
    border: 1px dashed #dddddd;
}

.sec-bottom-text .text a {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: #001376;
}


/*** 

====================================================================
  Main Slider
====================================================================

***/

.main-slider {
    position: relative;
}

.main-slider .tp-dottedoverlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(1, 12, 52, 0.9);
}

.main-slider .tp-dottedoverlay:before {
    position: absolute;
    left: -100%;
    bottom: 5%;
    height: 100%;
    width: 200%;
    background-color: rgba(255, 0, 207, 0.1);
    content: "";
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
}

.main-slider .title {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #ffba00;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    margin: 0 -15px;
}

.main-slider .title span {
    text-decoration: underline;
    padding: 0 15px;
}

.main-slider h2 {
    position: relative;
    display: block;
    font-size: 84px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    text-transform: capitalize;
}

.main-slider .event-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main-slider .event-info li {
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    margin-right: 30px;
}

.main-slider .event-info li i {
    margin-right: 10px;
    color: #ffbf00;
}

.main-slider .btn-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-slider .btn-box .theme-btn {
    display: inline-block;
    line-height: 30px;
    padding: 15px 30px;
    white-space: nowrap;
    margin-right: 20px !important;
    min-width: 180px !important;
}


/*** 

====================================================================
    Banner Section
====================================================================

***/

.banner-section {
    position: relative;
}

.banner-section .slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 200px 0;
    text-align: center;
    overflow: hidden;
    min-height: 840px;
}

.banner-section .slide-item:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
   
    opacity: .90;
    content: "";
}

.banner-section .content-box {
    position: relative;
}

.banner-section .content-box .title {
    display: block;
    font-size: 24px;
    color: #ffae00;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.banner-section .content-box h2 {
    display: block;
    font-size: 60px;
    line-height: 1.2em;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
}

.banner-section .content-box .text {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    margin-bottom: 40px;
}

.banner-section .content-box .time-counter-two {
    position: relative;
    margin-bottom: 40px;
}


/* Animate 1 */

.owl-carousel .animate-7,
.owl-carousel .animate-6,
.owl-carousel .animate-5,
.owl-carousel .animate-4,
.owl-carousel .animate-3,
.owl-carousel .animate-2,
.owl-carousel .animate-1 {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.owl-carousel .active .animate-1,
.owl-carousel .active .animate-2,
.owl-carousel .active .animate-3,
.owl-carousel .active .animate-4,
.owl-carousel .active .animate-5,
.owl-carousel .active .animate-6,
.owl-carousel .active .animate-7 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}


/* Animate 2 */

.owl-carousel .active .animate-2 {
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}


/* Animate 3 */

.owl-carousel .active .animate-3 {
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}


/* Animate 4 */

.owl-carousel .active .animate-4 {
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}


/* Animate 5 */

.owl-carousel .active .animate-5 {
    -webkit-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}


/* Animate 6 */

.owl-carousel .active .animate-6 {
    -webkit-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}


/* Animate 7 */

.owl-carousel .active .animate-7 {
    -webkit-transition-delay: 1800ms;
    -o-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.banner-carousel .owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    margin-top: -50px;
}

.banner-carousel .owl-next,
.banner-carousel .owl-prev {
    position: absolute;
    left: 0;
    top: 0;
    height: 100px;
    width: 30px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.10);
    font-size: 20px;
    line-height: 100px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-carousel .owl-next {
    left: auto;
    right: 0;
}

.banner-carousel .owl-next:hover,
.banner-carousel .owl-prev:hover {
    background-color: rgba(255, 255, 255, .90);
    color: #222222;
}


/*=====================
  Time Counter Two
=====================*/

.time-counter-two {
    position: relative;
}

.time-counter-two .time-countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.time-counter-two .time-countdown .counter-column {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    min-width: 100px;
    padding-right: 30px;
    margin-right: 30px;
}

.time-counter-two .time-countdown .counter-column:before {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -15px;
    font-size: 36px;
    color: #ffffff;
    font-weight: 700;
    content: ":";
}

.time-counter-two .time-countdown .counter-column:last-child:before {
    display: none;
}

.time-counter-two .time-countdown .counter-column:last-child {
    padding-right: 0;
    margin-right: 0;
}

.time-counter-two .time-countdown .counter-column .count {
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 1em;
    color: #ffffff;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    margin-right: 5px;
    top: 5px;
}

.event-search-form {
    position: relative;
    background: #FFFFFF;
    padding: 30px 45px 10px;
    -webkit-box-shadow: 0 0 51px rgba(0, 0, 0, .24);
    box-shadow: 0 0 51px rgba(0, 0, 0, .24);
    margin-top: -55px;
    z-index: 9;
}

.event-search-form form {
    position: relative;
    padding-right: 255px;
}

.event-search-form .btn-box {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.event-search-form .row {
    margin: 0 -35px;
}

.event-search-form .form-group {
    position: relative;
    padding: 0 35px;
    margin-bottom: 20px;
}

.event-search-form .form-group:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 1px;
    background: #d5d5d5;
    content: "";
}

.event-search-form .input-outer {
    position: relative;
}

.event-search-form .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    color: #ffae00;
    line-height: 50px;
}

.event-search-form .ui-selectmenu-button.ui-button,
.event-search-form .form-group input,
.event-search-form .form-group select,
.event-search-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #303030;
    background: #ffffff;
    padding: 10px 20px;
    padding-left: 45px;
    border: 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.event-search-form .form-group .theme-btn {
    margin-top: 42px;
}

.ui-button .ui-icon {
    background: none !important;
    position: relative;
    top: 3px;
    text-indent: 0px;
    color: #43c3ea;
}

.ui-button .ui-icon:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f107";
    font-weight: 900;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 10px;
    height: 20px;
    display: block;
    color: #000e56;
    line-height: 20px;
    font-size: 14px;
    text-align: center;
    z-index: 5;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background: -o-linear-gradient(45deg, #000b46 0%, #001166 100%);
    background: linear-gradient(45deg, #000b46 0%, #001166 100%);
    border-color: #1c73ea;
}

.ui-menu-item-wrapper {
    padding: 4px 10px;
}


/*** 

====================================================================
    Time Counter One
====================================================================

***/

.time-counter-one {
    position: relative;
    display: block;
    max-width: 170px;
    padding: 20px 30px 30px;
    border-radius: 0 0 30px 0;
    background: #ff00c6;
    overflow: hidden;
    background: -o-linear-gradient(45deg, #ff00c6 0%, #610062 100%);
    background: linear-gradient(45deg, #ff00c6 0%, #610062 100%);
}

.time-counter-one:before {
    position: absolute;
    left: -78px;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.10);
    -webkit-transform: skew(-18deg);
    -ms-transform: skew(-18deg);
    transform: skew(-18deg);
    content: "";
}

.time-counter-one h6 {
    position: relative;
    font-size: 18px;
    color: #ffae00;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    white-space: nowrap;
}

.time-counter-one .time-countdown .counter-column {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.time-counter-one .time-countdown .counter-column:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.time-counter-one .time-countdown .counter-column .count {
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 1em;
    color: #ffffff;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    margin-right: 5px;
    top: 5px;
}


/*** 

====================================================================
    Banner Section Two
====================================================================

***/

.banner-section-two {
    position: relative;
}

.banner-section-two .object-7 {
    top: 40px;
    right: -210px;
    height: 150px;
    width: 170px;
    background-image: url(../images/icons/object-7.png);
    z-index: 9;
}

.banner-section-two .object-8 {
    right: -375px;
    bottom: 0;
    height: 220px;
    width: 173px;
    background-image: url(../images/icons/object-8.png);
    z-index: 9;
}

.banner-section-two .slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 230px 0;
    background: #000000;
    overflow: hidden;
}

.banner-section-two .content-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-section-two .content-inner {
    position: relative;
    width: 60%;
    max-width: 670px;
    padding: 0 30px;
}

.banner-section-two .content-box .title {
    display: block;
    font-size: 24px;
    color: #ffae00;
    font-weight: 700;
    margin-bottom: 25px;
}

.banner-section-two .content-box h2 {
    display: block;
    font-size: 90px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.banner-section-two .content-box .info-list-two {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .20);
    margin-top: 30px;
    margin-bottom: 50px;
}

.info-list-two {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.info-list-two li {
    position: relative;
    padding-left: 50px;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    margin-right: 50px;
}

.info-list-two li i {
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 38px;
    line-height: 30px;
    color: #ffae00;
}

.info-list-two li a {
    color: #555555;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-section-two .theme-btn {
    margin-right: 30px;
}

.banner-section-two .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.banner-section-two .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.banner-section-two .owl-next,
.banner-section-two .owl-prev {
    position: absolute;
    left: 40px;
    top: 0;
    height: 50px;
    width: 50px;
    font-size: 14px;
    color: #ffffff;
    line-height: 50px;
    text-align: center;
    background-color: #081245;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-section-two .owl-next {
    left: auto;
    right: 40px;
}

.banner-section-two .owl-next:hover,
.banner-section-two .owl-prev:hover {
    background: #081245;
    color: #ffffff;
}


/*** 

====================================================================
    Countdown Section
====================================================================

***/

.countdown-section {
    position: relative;
    padding: 90px 0;
    background-color: #f5f5f5;
    z-index: 1;
}

.countdown-section .countdown-column .inner-column {
    padding-top: 30px;
}

.time-counter-three {
    position: relative;
}

.time-countdown-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.time-countdown-two .counter-column {
    position: relative;
    text-align: center;
    font-size: 18px;
    color: #001376;
    font-weight: 600;
    margin-right: 50px;
    padding-right: 50px;
}

.time-countdown-two .counter-column:last-child {
    margin-right: 0;
    padding-right: 0;
}

.time-countdown-two .counter-column:last-child:before {
    display: none;
}

.time-countdown-two .counter-column:before {
    position: absolute;
    right: -5px;
    top: 35px;
    font-size: 36px;
    color: #000000;
    font-weight: 700;
    content: ":";
}

.time-countdown-two .counter-column .count {
    position: relative;
    display: block;
    text-align: center;
    font-size: 84px;
    line-height: 1em;
    color: #000000;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
}


/***

==================================================================
    About Section
==================================================================

***/

.about-section {
    position: relative;
    padding: 90px 0 40px;
}

.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-top: 60px;
    padding-left: 5px;
}

.about-section .content-column p {
    margin-bottom: 24px;
}

.about-section .content-column .btn-box {
    position: relative;
    margin-top: 40px;
}

.about-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .about-image-wrapper {
    position: relative;
    padding-top: 150px;
    max-width: 570px;
    margin: 0 auto;
    width: 100%;
}

.about-section .image-1 {
    position: relative;
    margin-left: -180px;
    overflow: hidden;
    margin-bottom: 0;
    z-index: -1;
}

.about-section .image-1 img {
    -webkit-animation: bounce-x 10s infinite;
    animation: bounce-x 10s infinite;
}

.about-section .image-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 30px solid #fd00c5;
    overflow: hidden;
}

.about-section .image-3 {
    position: absolute;
    border: 30px solid #ffae00;
    top: 0;
    left: -50px;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
     opacity: 0.5;
}





    
    
.about-section .about-image-wrapper .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 140px;
    height: 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff;
    margin-left: -20px;
    border-radius: 50%;
}

.about-section .about-image-wrapper .play-btn:before {
    position: absolute;
    height: 110px;
    width: 110px;
    border: 2px dashed #001376;
    border-radius: 50%;
    left: 16px;
    top: 16px;
    content: "";
    -webkit-animation: zoomInOut 2s infinite;
    animation: zoomInOut 2s infinite;
}

.about-section .about-image-wrapper .play-btn .icon {
    position: relative;
    height: 75px;
    width: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #001376;
    padding-left: 5px;
    color: #ffffff;
    font-size: 22px;
    border-radius: 50%;
    content: "";
}

@-webkit-keyframes zoomInOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes zoomInOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/***

==================================================================
    About Section Two
==================================================================

***/

.about-section-two {
    position: relative;
    padding: 10px 0;
}

.about-section-two .icon-circle-3 {
    left: -855px;
    top: 320px;
    -webkit-animation: fa-spin 120s infinite linear;
    animation: fa-spin 120s infinite linear;
}

.about-section-two .icon-circle-4 {
    top: 810px;
    left: -340px;
}

.about-section-two .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section-two .content-column .sec-title {
    margin-bottom: 0;
}

.about-section-two .sec-title .text {
    font-size: 18px;
    line-height: 1.6em;
}

.date-box-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.date-box-outer:before {
    position: absolute;
    left: 70px;
    top: 30px;
    height: 230px;
    width: 230px;
    background-image: url(../images/icons/pattern-1.png);
    content: "";
}

.date-box-one {
    position: relative;
    padding: 30px;
    text-align: center;
    background: #000b46;
    color: #ffffff;
    background: -o-linear-gradient(45deg, #000b46 0%, #001166 100%);
    background: linear-gradient(45deg, #000b46 0%, #001166 100%);
    max-width: 200px;
    height: 100%;
}

.date-box-one .day {
    display: block;
    font-size: 60px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
}

.date-box-one .month {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    text-transform: uppercase;
}

.date-box-one .title {
    position: relative;
    display: block;
    font-size: 16px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    line-height: 24px;
    padding-top: 15px;
    margin-top: 15px;
}

.date-box-one .title:before {
    position: absolute;
    left: 50%;
    top: 0;
    width: 40px;
    margin-left: -20px;
    height: 2px;
    background: #ffae00;
    content: "";
}

.date-box-one.bg_yellow {
    margin-top: 70px;
    margin-left: -30px;
    background: #ffc600;
    background: -webkit-gradient(linear, left top, right top, color-stop(1%, #ffc600), to(#ff6c00));
    background: -o-linear-gradient(left, #ffc600 1%, #ff6c00 100%);
    background: linear-gradient(90deg, #ffc600 1%, #ff6c00 100%);
}

.date-box-one.bg_yellow .month,
.date-box-one.bg_yellow .day {
    color: #081245;
}

.date-box-one.bg_yellow .title:before {
    background: #000b46;
}

.about-section-two .fact-counter-two {
    margin-left: 100px;
}


/* Fact Counter Two  */

.fact-counter-two {
    position: relative;
    max-width: 770px;
    background-image: url(../images/icons/counter-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 40px 0 0;
    z-index: 3;
}

.fact-counter-two .counter-column {
    position: relative;
    margin-bottom: 30px;
}

.fact-counter-two .counter-column .inner-box {
    position: relative;
    text-align: center;
}

.fact-counter-two .counter-column .inner-box:before {
    position: absolute;
    right: -15px;
    top: 15px;
    height: 60px;
    width: 1px;
    background: #ffffff;
    content: "";
}

.fact-counter-two .counter-column:last-child .inner-box:before {
    display: none;
}

.fact-counter-two .counter-column .count-text {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.fact-counter-two .counter-column .counter-title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.about-section-two .video-box-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-right: 70px;
    padding-left: 50px;
}

.about-section-two .video-box-outer:before {
    position: absolute;
    left: 0px;
    bottom: 50px;
    height: 350px;
    width: 100%;
    background-image: url(../images/icons/pattern-2.png);
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    content: "";
}

.video-box-one {
    position: relative;
    margin-top: -35px;
    margin-left: -90px;
    margin-bottom: 90px;
}

.video-box-one:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #000934;
    opacity: .50;
    z-index: 1;
}

.video-box-one .image {
    position: relative;
    margin-bottom: 0;
}

.video-box-one .image img {
    display: block;
    width: 100%;
}

.video-box-one .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 78px;
    line-height: 1em;
    color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-box-one .play-btn .icon {
    position: relative;
    display: inline-block;
    -webkit-animation: pulse 2s infinite linear;
    animation: pulse 2s infinite linear;
}

.info-box-one {
    position: relative;
    z-index: 3;
}

.info-box-one .inner-box {
    position: relative;
    max-width: 470px;
    background: #001166;
    padding: 40px 50px;
}

.info-box-one h4 {
    font-size: 30px;
    line-height: 36px;
    color: #ffae00;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-box-one p {
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
}


/***

==================================================================
    About Section Three
==================================================================

***/

.about-section-three {
    position: relative;
    padding: 100px 0 50px;
}

.about-section-three .sec-title {
    margin-bottom: 30px;
}

.about-section-three .image-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section-three .about-image-wrapper {
    position: relative;
    margin-right: 30px;
}

.about-section-three .about-image-wrapper:before {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background-image: url(../images/icons/pattern-2.png);
    content: "";
}

.about-section-three .info-box {
    position: absolute;
    right: 0;
    top: 40px;
    min-width: 200px;
    background: #000b46;
    color: #ffffff;
    background: -o-linear-gradient(45deg, #000b46 0%, #001166 100%);
    background: linear-gradient(45deg, #000b46 0%, #001166 100%);
    z-index: 11;
    text-align: center;
    padding: 30px 20px;
}

.about-section-three .info-box:before {
    position: absolute;
    left: -30px;
    top: 0;
    border-bottom: 30px solid transparent;
    border-right: 30px solid #000b46;
    content: "";
}

.about-section-three .info-box .count {
    display: block;
    font-size: 48px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    font-family: exo, sans-serif;
    margin-bottom: 10px;
}

.about-section-three .info-box h4 span {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 1em;
    color: #ffba00;
}

.about-section-three .info-box h4 {
    font-size: 30px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 400;
}

.about-section-three .image-1 {
    position: relative;
    padding-bottom: 115px;
    overflow: hidden;
    margin-bottom: 0;
}

.about-section-three .image-1:before {
    position: absolute;
    left: 0;
    bottom: 95px;
    width: 230px;
    height: 43px;
    background-image: url(../images/icons/object-9.png);
    content: "";
}

.about-section-three .image-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.feature-block-four {
    position: relative;
    margin-bottom: 30px;
}

.feature-block-four .inner-box {
    position: relative;
    background: #ffffff;
    padding-left: 70px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-four .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 20px;
}

.feature-block-four .icon-box .icon {
    position: relative;
    font-size: 58px;
    line-height: 1em;
    color: #fe00c5;
}

.feature-block-four h4 {
    font-size: 22px;
    color: #001376;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-block-four p {
    margin-bottom: 20px;
}


/*** 

====================================================================
 Feature Section
====================================================================

***/

.feature-section {
    padding: 100px 0 70px;
}

.feature-section .icon-circle-1 {
    right: -100px;
    top: -100px;
    -webkit-animation: fa-spin 10s infinite;
    animation: fa-spin 10s infinite;
}

.feature-block {
    position: relative;
    margin-bottom: 30px;
}

.feature-block .inner-box {
    position: relative;
    text-align: center;
    background: #ffffff;
    padding: 40px 30px 40px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block .inner-box:before {
    position: absolute;
    right: -13px;
    top: 50px;
    bottom: 50px;
    border: 1px solid #ebebeb;
    content: "";
}

.feature-block:last-child .inner-box:before {
    display: none;
}

.feature-block .inner-box:hover {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .20);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .20);
}

.feature-block .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-block .icon-box .icon {
    position: relative;
    font-size: 62px;
    line-height: 1em;
    color: #fe00c5;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block .icon-box:before {
    position: absolute;
    left: -25px;
    top: 0;
    height: 55px;
    width: 55px;
    background-color: #fff1cc;
    content: "";
    border-radius: 50%;
}

.feature-block .icon-box .icon:before {
    position: relative;
    display: block;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block .inner-box:hover .icon-box .icon:before {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.feature-block h4 {
    font-size: 22px;
    color: #081245;
    font-weight: 700;
    margin-bottom: 24px;
}

.feature-block p {
    margin-bottom: 20px;
}

.feature-block .read-more {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #ff4200;
}


/*** 

====================================================================
 Feature Section Two
====================================================================

***/

.feature-section-two {
    padding: 100px 0 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/icons/pattern-3.png);
}

.feature-section-two .icon-object-2 {
    top: 185px;
    right: -170px;
    -webkit-animation: fa-spin 20s infinite;
    animation: fa-spin 20s infinite;
}

.feature-section-two .icon-object-3 {
    top: 210px;
    left: -250px;
    -webkit-animation: fa-spin 40s infinite linear;
    animation: fa-spin 40s infinite linear;
}

.feature-section-two .icon-object-4 {
    bottom: 105px;
    left: 70px;
}

.feature-section-two .icon-object-5 {
    bottom: 150px;
    left: 380px;
    -webkit-animation: fa-spin 5s infinite;
    animation: fa-spin 5s infinite;
}

.feature-section-two .sec-title {
    margin-bottom: 40px;
}

.feature-section-two .sec-title p {
    margin-bottom: 30px;
}

.feature-section-two .content-column {
    margin-bottom: 50px;
}

.feature-block-two {
    position: relative;
    background: #f5f5f5;
    padding: 50px;
    max-width: 570px;
    border-radius: 10px;
    margin-bottom: 30px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-two .inner-box {
    position: relative;
    padding-left: 120px;
}

.feature-block-two .icon-box {
    position: absolute;
    left: 25px;
    top: 0;
    margin-bottom: 20px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-two .icon-box .icon {
    position: relative;
    font-size: 62px;
    line-height: 1em;
    color: #fe00c5;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-two .icon-box:before {
    position: absolute;
    left: -25px;
    top: 0;
    height: 55px;
    width: 55px;
    background-color: #fff1cc;
    content: "";
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-two h4 {
    font-size: 22px;
    color: #081245;
    font-weight: 700;
    margin-bottom: 14px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-two p {
    position: relative;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-two:hover {
    background-color: #001166;
    border-radius: 0 50px 0 50px;
}

.feature-block-two:hover h4 {
    color: #ffae00;
}

.feature-block-two:hover .icon-box .icon,
.feature-block-two:hover p {
    color: #ffffff;
}

.feature-block-two:hover .icon-box:before {
    background: rgba(255, 255, 255, .20);
}

.feature-block-two .abs-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 120px;
    line-height: 70px;
    color: #ffffff;
    opacity: .10;
}

.feature-block-three {
    position: relative;
    background: #001166;
    padding: 50px;
    max-width: 570px;
    border-radius: 0 50px 0 50px;
    margin-bottom: 30px;
    margin-left: 100px;
}

.feature-block-three .inner-box {
    position: relative;
    padding-left: 120px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-three .icon-box {
    position: absolute;
    left: 25px;
    top: 0;
    margin-bottom: 20px;
}

.feature-block-three .icon-box .icon {
    position: relative;
    font-size: 62px;
    line-height: 1em;
    color: #ffffff;
}

.feature-block-three .icon-box:before {
    position: absolute;
    left: -25px;
    top: 0;
    height: 90px;
    width: 90px;
    background-color: #ffffff;
    content: "";
    opacity: .20;
    border-radius: 50%;
}

.feature-block-three p {
    color: #ffffff;
}

.feature-block-three h4 {
    font-size: 22px;
    color: #ffae00;
    font-weight: 700;
    margin-bottom: 14px;
}

.feature-block-three .abs-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 120px;
    line-height: 70px;
    color: #ffffff;
    opacity: .10;
}


/***

==================================================================
    Features Section Three
==================================================================

***/

.feature-section-three {
    position: relative;
    padding: 100px 0 70px;
}

.feature-block-five {
    position: relative;
    margin-bottom: 30px;
}

.feature-block-five .inner-box {
    position: relative;
    background: #f5f5f5;
    padding: 30px 30px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    overflow: hidden;
    transition: all 300ms ease;
}

.feature-block-five .inner-box:before {
    position: absolute;
    left: -45px;
    top: -45px;
    height: 196px;
    width: 196px;
    background-image: url(../images/icons/object-1.png);
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-five .icon-box {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-five .icon-box .icon {
    position: relative;
    font-size: 68px;
    line-height: 1em;
    color: #fe00c5;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-five .icon-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 55px;
    width: 55px;
    background-color: #fff1cc;
    content: "";
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-five h4 {
    font-size: 24px;
    color: #ffae00;
    font-weight: 700;
    padding-top: 40px;
    margin-top: 40px;
    margin-bottom: 15px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-five h4:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 60px;
    background: #1e1d27;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-five p {
    margin-bottom: 30px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-five .theme-btn i {
    color: #ffffff;
    margin-right: 0;
    margin-left: 10px;
    font-size: 12px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-five .inner-box:hover .theme-btn {
    background: #ffc600;
    background: -o-linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
    background: linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
}

.feature-block-five .inner-box:hover {
    background-color: #001376;
}

.feature-block-five .inner-box:hover .icon-box:before {
    background: #334291;
}

.feature-block-five .inner-box:hover h4:before {
    background: #ffffff;
}

.feature-block-five .inner-box:hover p,
.feature-block-five .inner-box:hover h4,
.feature-block-five .inner-box:hover .icon-box .icon {
    color: #ffffff;
}


/***

====================================================================
  Fun Fact Section
====================================================================

***/

.fun-fact-section {
    position: relative;
    padding: 100px 0 60px;
    background-color: #000f5a;
    overflow: hidden;
}

.fun-fact-section .auto-container {
    max-width: 1250px;
}

.fun-fact-section:before {
    position: absolute;
    right: -100%;
    bottom: 3%;
    height: 100%;
    width: 200%;
    background-color: rgba(255, 255, 255, 0.1);
    content: "";
    -webkit-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    transform: rotate(8deg);
}

.fact-counter {
    position: relative;
}

.fact-counter .counter-column {
    position: relative;
    margin-bottom: 40px;
}

.fact-counter .counter-column .inner-box {
    position: relative;
    padding-left: 130px;
    padding-top: 30px;
    min-height: 110px;
}

.fact-counter .counter-column .count-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 130px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 110px;
}

.fact-counter .counter-column .icon:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.fact-counter .counter-column .inner-box:hover .icon:before {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
}

.fact-counter .counter-column .icon.bg-1:before {
    background-image: url(../images/icons/fun-fact-one.png);
}

.fact-counter .counter-column .icon.bg-2:before {
    background-image: url(../images/icons/fun-fact-two.png);
}

.fact-counter .counter-column .icon.bg-3:before {
    background-image: url(../images/icons/fun-fact-three.png);
}

.fact-counter .counter-column .icon.bg-4:before {
    background-image: url(../images/icons/fun-fact-four.png);
}

.fact-counter .counter-column .count-box .count-text {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    font-family: "Exo", sans-serif;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.fact-counter .counter-column .counter-title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}


/***

====================================================================
    Speakers Section
====================================================================

***/

.speakers-section {
    padding: 90px 0 50px;
    background-color: #f4f7ff;
    overflow: hidden;
}

.speakers-section:before {
    background-image: url(../images/background/4.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-animation: bounce-x 10s infinite linear;
    animation: bounce-x 10s infinite linear;
}

.speakers-section .icon-dotted-circle {
    left: -560px;
    top: -120px;
    -webkit-animation: fa-spin 60s infinite linear;
    animation: fa-spin 60s infinite linear;
}

.speaker-block {
    position: relative;
    margin-bottom: 40px;
}

.speaker-block .inner-box {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.speaker-block .image-box {
    position: relative;
    padding: 17px 22px 0 0;
}

.speaker-block .image {
    position: relative;
    border: 5px solid #ffffff;
    -webkit-box-shadow: 0 14px 20px rgba(0, 0, 0, .20);
    box-shadow: 0 14px 20px rgba(0, 0, 0, .20);
    border-radius: 0 0 250px 250px;
    overflow: hidden;
    margin-bottom: 0;
}

.speaker-block .image-box:before {
    position: absolute;
    left: 40px;
    right: 0;
    top: 0;
    bottom: 17px;
    border: 3px solid #dddddd;
    border-radius: 0 0 250px 250px;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block .inner-box:hover .image-box:before {
    border: 3px solid #081245;
    border-color: #fdb900;
    opacity: 1;
}

.speaker-block .image img {
    width: 100%;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.speaker-block .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.speaker-block .plus-icon {
    position: absolute;
    right: 25px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: #081245;
    border-radius: 50%;
    background-color: #ffba00;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block .social-links {
    position: absolute;
    right: 30px;
    bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #ffba00;
    border-radius: 50px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.speaker-block .inner-box:hover .social-links {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.speaker-block .social-links a {
    position: relative;
    margin: 5px 0;
    height: 40px;
    width: 40px;
    display: block;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffba00;
    color: #081245;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block .social-links a:hover {
    color: #ffffff;
    background-color: #081245;
}

.speaker-block .info-box {
    position: relative;
    padding-top: 25px;
}

.speaker-block h4 {
    display: block;
    font-size: 24px;
    color: #001376;
}

.speaker-block h4 a {
    color: #001376;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block .designation {
    font-size: 14px;
    color: #555555;
}


/***

====================================================================
    Speakers Section Two
====================================================================

***/

.speakers-section-two {
    padding: 90px 0 50px;
    background-color: #081245;
    background-image: url(../images/background/10.jpg);
    overflow: hidden;
}

.speakers-section-two .icon-object-10 {
    left: -310px;
    bottom: 100px;
    -webkit-animation: fa-spin 30s infinite linear;
    animation: fa-spin 30s infinite linear;
}

.speakers-section-two .icon-object-15 {
    right: -115px;
    top: 65px;
    -webkit-animation: fa-spin 90s infinite linear;
    animation: fa-spin 90s infinite linear;
}

.speakers-section-two .icon-object-16 {
    display: block;
    left: -290px;
    bottom: 560px;
    -webkit-animation: fa-spin 60s infinite linear;
    animation: fa-spin 60s infinite linear;
}

.speaker-block-two {
    position: relative;
    margin-bottom: 50px;
}

.speaker-block-two .inner-box {
    position: relative;
}

.speaker-block-two .image-box {
    position: relative;
    padding: 20px 20px;
    max-width: 270px;
    margin: 0 auto;
}

.speaker-block-two .image {
    position: relative;
    height: 230px;
    width: 230px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
}

.speaker-block-two .image-box:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 140px;
    width: 140px;
    background-image: url(../images/icons/curved-border.png);
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-two .image img {
    width: 100%;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.speaker-block-two .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.speaker-block-two .plus-icon {
    position: absolute;
    left: 20px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: #081245;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-two .social-links {
    position: absolute;
    left: 25px;
    bottom: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #ffba00;
    border-radius: 50px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.speaker-block-two .inner-box:hover .social-links {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.speaker-block-two .social-links a {
    position: relative;
    margin: 5px 0;
    height: 40px;
    width: 40px;
    display: block;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffba00;
    color: #081245;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-two .social-links a:first-child,
.speaker-block-two .social-links a:last-child {
    margin: 0;
}

.speaker-block-two .social-links a:hover {
    color: #ffffff;
    background-color: #081245;
}

.speaker-block-two .info-box {
    position: relative;
    padding: 10px 0 30px;
    border-bottom: 1px solid #001373;
    text-align: center;
    max-width: 230px;
    margin: 0 auto;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-two .inner-box:hover .info-box {
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 20px 0 20px;
}

.speaker-block-two .info-box:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    content: "";
    background: #001373;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-two .inner-box:hover .info-box:before {
    height: 100%;
}

.speaker-block-two h4 {
    display: block;
    font-size: 24px;
    color: #ffffff;
}

.speaker-block-two h4 a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-two .designation {
    position: relative;
    font-size: 14px;
    color: #ffffff;
}


/***

====================================================================
    Speakers Section Three
====================================================================

***/

.speakers-section-three {
    padding: 90px 0 50px;
    background-color: #f4f7ff;
    overflow: hidden;
}

.speakers-section-three .icon-dotted-circle {
    left: -560px;
    top: -120px;
    -webkit-animation: fa-spin 60s infinite linear;
    animation: fa-spin 60s infinite linear;
}

.speaker-block-three {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

.speaker-block-three .inner-box {
    position: relative;
    padding: 20px 25px 25px;
    text-align: center;
}

.speaker-block-three .inner-box:before {
    position: absolute;
    left: 7px;
    top: 0;
    height: 230px;
    width: 230px;
    border: 5px solid #ffffff;
    content: "";
}

.speaker-block-three .inner-box:after {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 230px;
    width: 220px;
    border: 10px solid #247ffb;
    content: "";
}

.speaker-block-three .image-box {
    position: relative;
    padding: 10px;
    z-index: 1;
}

.speaker-block-three .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 9;
}

.speaker-block-three .image-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background: #0019b2;
    background: -o-linear-gradient(45deg, #0019b2 0%, #2d0060 100%);
    background: linear-gradient(45deg, #0019b2 0%, #2d0060 100%);
    z-index: 1;
}

.speaker-block-three .image-box:after {
    position: absolute;
    left: -10px;
    bottom: -10px;
    height: 70px;
    width: 70px;
    background-color: rgba(255, 255, 255, .10);
    content: "";
}

.speaker-block-three .image img {
    width: 100%;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.speaker-block-three .info-box {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    padding: 30px;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0 3px 16px rgba(0, 0, 0, .10);
    box-shadow: 0 3px 16px rgba(0, 0, 0, .10);
    background-color: rgba(255, 255, 255, .90);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-three h4 {
    display: block;
    font-size: 24px;
    color: #001376;
    font-weight: 600;
    margin-bottom: 5px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-three h4 a {
    color: #001376;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-three .designation {
    font-size: 14px;
    color: #555555;
    margin-bottom: 20px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-three .social-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-three .social-links a {
    display: block;
    text-align: center;
    line-height: 38px;
    margin: 0 3px 10px;
    height: 40px;
    width: 40px;
    border: 1px solid #1f1b79;
    border-radius: 50%;
    color: #081245;
    font-size: 16px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-three .social-links a:hover {
    background: #ff7500;
    border-color: #ff7500;
    color: #ffffff;
}

.speaker-block-three .text {
    position: relative;
}


/* Animate 1 */

.speaker-block-three h4,
.speaker-block-three .designation,
.speaker-block-three .info-box,
.speaker-block-three .social-links,
.speaker-block-three .text {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-three .image-box:hover h4,
.speaker-block-three .image-box:hover .info-box,
.speaker-block-three .image-box:hover .designation,
.speaker-block-three .image-box:hover .social-links,
.speaker-block-three .image-box:hover .text {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}


/* Animate 2 */

.speaker-block-three .image-box:hover h4 {
    -webkit-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}


/* Animate 3 */

.speaker-block-three .image-box:hover .designation {
    -webkit-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms;
}


/* Animate 4 */

.speaker-block-three .image-box:hover .social-links {
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}


/* Animate 5 */

.speaker-block-three .image-box:hover .text {
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
}


/***

====================================================================
    Speaker Detail
====================================================================

***/

.speaker-detail-section {
    position: relative;
    padding: 50px 0;
}

.speaker-details {
    position: relative;
    padding-left: 20px;
    padding-top: 10px;
    margin-bottom: 30px;
}

.speaker-details .name {
    font-size: 30px;
    line-height: 1em;
    color: #001376;
    font-weight: 600;
    margin-bottom: 10px;
}

.speaker-details .name a {
    color: #001376;
}

.speaker-details .designation {
    font-size: 14px;
    color: #ffba00;
}

.speaker-info-list {
    margin-top: 40px;
}

.speaker-info-list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 18px;
    color: #555555;
}

.speaker-info-list li a {
    color: #555555;
}

.speaker-info-list li strong {
    display: block;
    font-weight: 600;
    color: #001376;
    min-width: 140px;
}

.speaker-detail-section .info-column h3 {
    font-size: 30px;
    line-height: 1.2em;
    color: #001376;
    font-weight: 600;
    margin-bottom: 15px;
}

.speaker-detail-section .info-column p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.speaker-detail-section .other-info h2 {
    font-size: 36px;
    line-height: 1.2em;
    color: #001376;
    font-weight: 700;
    margin-bottom: 40px;
}

.speaker-session-info {
    position: relative;
    margin-bottom: 30px;
}

.speaker-session-info .inner-box {
    position: relative;
    padding: 35px 40px;
    border: 1px solid #d7d7d7;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-session-info h4 {
    position: relative;
    font-size: 24px;
    color: #fe00c5;
    font-weight: 600;
    margin-bottom: 15px;
}

.speaker-session-info .time {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #ffba00;
    font-weight: 600;
    margin-bottom: 25px;
}

.speaker-session-info p {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    color: #555555;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-session-info .place {
    font-weight: 600;
    color: #001376;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-session-info .inner-box:hover p {
    color: #ffffff;
}

.speaker-session-info .inner-box:hover .place {
    color: #ffba00;
}

.speaker-session-info .inner-box:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    content: "";
    background-color: #071248;
    border-bottom: 3px solid #ffba00;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-session-info .inner-box:hover:before {
    height: 100%;
}


/*** 

====================================================================
  Dchedule Section
====================================================================

***/

.schedule-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.schedule-section .icon-circle-2 {
    left: -120px;
    top: 100px;
}

.schedule-section .pattern-4 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/pattern-4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    -webkit-animation: bounce-y 10s infinite;
    animation: bounce-y 10s infinite;
}

.schedule-tabs {
    position: relative;
}

.schedule-tabs .btns-box {
    position: relative;
    display: block;
    margin-bottom: 70px;
}

.schedule-tabs .tab-buttons {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.schedule-tabs .tab-buttons li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 125px;
    width: 190px;
    background-color: #ffffff;
    border: 1px solid #ff7c00;
    margin: 0 -1px;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-tabs .tab-buttons li .day {
    position: absolute;
    left: 35px;
    top: -1px;
    min-width: 120px;
    padding: 10px 20px;
    color: #081245;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #ff7c00;
    border-top: 0;
    border-radius: 0 0 10px 10px;
}

.schedule-tabs .tab-buttons li.active-btn {
    -webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, .20);
    box-shadow: 0 15px 20px rgba(0, 0, 0, .20);
}

.schedule-tabs .tab-buttons li.active-btn .day {
    background-color: #081245;
    border: 1px solid #081245;
    color: #ffffff;
}

.schedule-tabs .tab-buttons li .date-box {
    position: relative;
    padding-left: 65px;
    min-height: 40px;
    margin-bottom: 15px;
}

.schedule-tabs .tab-buttons li .date {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 48px;
    line-height: 40px;
    font-weight: 700;
    color: #ffba00;
    font-family: 'Exo', sans-serif;
}

.schedule-tabs .tab-buttons li .month {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #081245;
    line-height: 1em;
    text-transform: uppercase;
    font-family: 'Exo', sans-serif;
}

.schedule-tabs .tab-buttons li .month .colored {
    display: block;
    font-size: 24px;
    line-height: 1em;
    color: #fe00c5;
}

.schedule-timeline {
    position: relative;
}


/*=== Schedule Block ===*/

.schedule-block {
    position: relative;
    overflow: hidden;
}

.schedule-block:after {
    display: table;
    clear: both;
    content: "";
}

.schedule-block .inner-box {
    position: relative;
    float: right;
    width: 50%;
    text-align: left;
}

.schedule-block .inner-box .inner {
    position: relative;
    padding: 30px 30px 24px;
    background-color: #ffffff;
    margin-left: 120px;
    min-height: 210px;
    background: #f5f5f5;
    border: 1px solid transparent;
    background: -o-linear-gradient(45deg, #f5f5f5 1%, #ffffff 100%);
    background: linear-gradient(45deg, #f5f5f5 1%, #ffffff 100%);
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.10);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-block .inner-box .inner:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 113px;
    width: 113px;
    background-image: url(../images/icons/icon-bull-eye.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    content: "";
    -webkit-animation: pulse2 3s infinite;
    animation: pulse2 3s infinite;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

@-webkit-keyframes pulse2 {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.25, 1.25, 1.25);
        transform: scale3d(1.25, 1.25, 1.25);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse2 {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.25, 1.25, 1.25);
        transform: scale3d(1.25, 1.25, 1.25);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.schedule-block .inner-box:hover .inner {
    border: 1px solid #dddddd;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.schedule-block .date {
    position: absolute;
    left: -225px;
    top: 0px;
    height: 210px;
    width: 210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.schedule-block .date span {
    position: relative;
    height: 100px;
    width: 100px;
    border: 5px dashed #ffffff;
    font-size: 14px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background: #9207e1;
    text-align: center;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(#9207e1), to(#300079));
    background: -o-linear-gradient(top, #9207e1 0%, #300079 100%);
    background: linear-gradient(to bottom, #9207e1 0%, #300079 100%);
}

.schedule-block .date span:before {
    position: absolute;
    left: 100%;
    top: 50%;
    width: 75px;
    height: 5px;
    margin-top: 1px;
    background: -webkit-gradient(linear, left top, left bottom, from(#9207e1), to(#300079));
    background: -o-linear-gradient(top, #9207e1 0%, #300079 100%);
    background: linear-gradient(to bottom, #9207e1 0%, #300079 100%);
    content: "";
}

.schedule-block .date:before {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border: 5px solid #6503b2;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 50%;
    content: "";
}

.schedule-block .date:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background-color: #ffffff;
    content: "";
}

.schedule-block .speaker-info {
    position: relative;
    padding-left: 95px;
    min-height: 80px;
}

.schedule-block .speaker-info .thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.schedule-block .speaker-info .icon {
    font-size: 27px;
    color: #ffba00;
    line-height: 1em;
    margin-bottom: 10px;
}

.schedule-block .speaker-info .name {
    font-size: 20px;
    color: #ff4200;
    font-weight: 700;
    line-height: 1em;
}

.schedule-block .speaker-info .designation {
    font-size: 16px;
    color: #555555;
}

.schedule-block h4 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: #081245;
    font-weight: 700;
    padding-top: 15px;
}

.schedule-block h4 a {
    color: #081245;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-block h4 a:hover {
    color: #fd00c5;
}

.schedule-block.even .inner-box {
    float: left;
    text-align: right;
}

.schedule-block.even .inner-box .inner {
    margin-left: 0;
    margin-right: 120px;
}

.schedule-block.even .inner:before {
    left: 0;
    right: auto;
    background-position: right bottom;
}

.schedule-block.even .date {
    left: auto;
    right: -225px;
}

.schedule-block.even .date:after {
    right: auto;
    left: 0;
}

.schedule-block.even .date span:before {
    left: auto;
    right: 100%;
}

.schedule-block.even .speaker-info {
    padding-left: 0;
    padding-right: 95px;
}

.schedule-block.even .speaker-info .thumb {
    left: auto;
    right: 0;
}

.schedule-block:nth-child(4n+2) .date span:before,
.schedule-block:nth-child(4n+2) .date span {
    background: #f84900;
    background: -o-linear-gradient(45deg, #f84900 1%, #ff9c00 100%);
    background: linear-gradient(45deg, #f84900 1%, #ff9c00 100%);
}

.schedule-block:nth-child(4n+2) .date:before {
    border-color: #f96426;
}

.schedule-block:nth-child(4n+3) .date span:before,
.schedule-block:nth-child(4n+3) .date span {
    background: #08cdd2;
    background: -o-linear-gradient(45deg, #08cdd2 0%, #0b8aeb 100%);
    background: linear-gradient(45deg, #08cdd2 0%, #0b8aeb 100%);
}

.schedule-block:nth-child(4n+3) .date:before {
    border-color: #08cdd2;
}

.schedule-block:nth-child(4n+4) .date span:before,
.schedule-block:nth-child(4n+4) .date span {
    background: #cdd00e;
    background: -o-linear-gradient(45deg, #cdd00e 0%, #6eba3a 100%);
    background: linear-gradient(45deg, #cdd00e 0%, #6eba3a 100%);
}

.schedule-block:nth-child(4n+4) .date:before {
    border-color: #cdd00e;
}


/*** 

====================================================================
  schedule Section Two
====================================================================

***/

.schedule-section-two {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.schedule-section-two .icon-circle-2 {
    right: -500px;
    top: 400px;
}

.schedule-section-two .sec-title-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.schedule-section-two .sec-title {
    max-width: 470px;
    padding-right: 30px;
}


/*=== Schedule Block ===*/

.schedule-block-two {
    position: relative;
    margin-bottom: 10px;
}

.schedule-block-two .inner-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ebebeb;
    padding: 40px 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-block-two .inner-box:hover {
    background-color: #f5f5f5;
}

.schedule-block-two .date-box {
    position: relative;
    padding-left: 90px;
    min-width: 270px;
    padding-right: 20px;
}

.schedule-block-two .date-box .count {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background: #ffffff;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    color: #081245;
    font-weight: 700;
    font-family: 'Evo', sans-serif;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .13);
    box-shadow: 0 0 10px rgba(0, 0, 0, .13);
}

.schedule-block-two .date-box h4 {
    position: relative;
    padding-top: 5px;
    font-size: 16px;
    line-height: 1.2em;
    color: #ff4200;
    font-weight: 700;
}

.schedule-block-two .date-box .time {
    position: relative;
    font-size: 12px;
    line-height: 1.2em;
    color: #081245;
}

.schedule-block-two h3 {
    position: relative;
    font-size: 24px;
    line-height: 1.2em;
    color: #081245;
    font-weight: 700;
    max-width: 380px;
    padding-right: 20px;
}

.schedule-block-two h3 a {
    color: #081245;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-block-two h3 a:hover {
    color: #ffba00;
}

.schedule-block-two .speaker-info {
    position: relative;
    padding-left: 95px;
    min-height: 70px;
    min-width: 280px;
}

.schedule-block-two .speaker-info .thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.schedule-block-two .speaker-info .icon {
    font-size: 27px;
    color: #ffba00;
    line-height: 1em;
    margin-bottom: 10px;
}

.schedule-block-two .speaker-info .name {
    font-size: 20px;
    color: #ff4200;
    font-weight: 700;
    line-height: 1em;
}

.schedule-block-two .speaker-info .designation {
    font-size: 16px;
    color: #555555;
}

.schedule-block-two .theme-btn {
    margin-left: auto;
    min-width: 100px;
    white-space: nowrap;
}


/*** 

====================================================================
  schedule Section Three
====================================================================

***/

.schedule-section-three {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.schedule-section-three .sec-bottom-text {
    margin-top: 60px;
}

.schedule-tabs .tab-buttons.style-two li {
    height: 75px;
    width: 190px;
    background-color: #ffffff;
    border: 1px solid #ff7c00;
    margin: 0 -1px;
}

.schedule-tabs .tab-buttons.style-two li:first-child {
    border-radius: 100px 0 0 100px;
}

.schedule-tabs .tab-buttons.style-two li:last-child {
    border-radius: 0 100px 100px 0;
}

.schedule-tabs .tab-buttons.style-two li.active-btn {
    background-color: #081245;
    -webkit-box-shadow: 0 10px 16px rgba(0, 0, 0, .30);
    box-shadow: 0 10px 16px rgba(0, 0, 0, .30);
}

.schedule-tabs .tab-buttons.style-two li .month {
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-tabs .tab-buttons.style-two li.active-btn .month {
    color: #ffffff;
}

.schedule-timeline {
    position: relative;
}


/*=== Schedule Block ===*/

.schedule-block-three {
    position: relative;
    margin-bottom: 40px;
}

.schedule-block-three .inner-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 970px;
    margin: 0 auto;
}

.schedule-block-three .date {
    height: 130px;
    min-width: 230px;
    margin-left: -30px;
    padding-right: 40px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url(../images/icons/schedule-1.png);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.schedule-block-three .date .time {
    text-align: right;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

.schedule-block-three .date .icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 70px;
    height: 76px;
    background: #ffffff;
    font-size: 27px;
    color: #ffc500;
    padding-right: 10px;
}

.schedule-block-three .date .icon:after {
    position: absolute;
    right: -20px;
    border-top: 38px solid transparent;
    border-bottom: 38px solid transparent;
    border-left: 20px solid #ffffff;
    content: "";
}

.schedule-block-three .inner {
    position: relative;
    width: 100%;
    min-height: 240px;
    padding: 35px 60px;
    padding-right: 255px;
    border-radius: 500px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .10);
    box-shadow: 0 0 10px rgba(0, 0, 0, .10);
    text-align: right;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.schedule-block-three .inner:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 500px;
    -webkit-box-shadow: inset 0 0 30px rgba(0, 0, 0, .40);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, .40);
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    opacity: 0;
}

.schedule-block-three .inner-box:hover .inner:before {
    opacity: 1;
}

.schedule-block-three .thumb {
    position: absolute;
    right: 30px;
    top: 30px;
    height: 188px;
    width: 188px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
}

.schedule-block-three .speaker-info .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 20px;
    color: #ff4200;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.schedule-block-three .speaker-info .designation {
    display: block;
    margin-left: 10px;
    font-size: 16px;
    color: #555555;
    font-weight: 400;
    text-transform: capitalize;
}

.schedule-block-three .speaker-info h3 {
    position: relative;
    font-size: 30px;
    line-height: 1.2em;
    color: #081245;
    font-weight: 700;
    margin-bottom: 25px;
}

.schedule-block-three .speaker-info h3 a {
    color: #081245;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-block-three .speaker-info h3 a:hover {
    color: #ffba00;
}

.schedule-block-three .speaker-info .location {
    font-size: 16px;
    color: #555555;
    font-family: Exo, sans-serif;
}

.schedule-block-three .speaker-info .location strong {
    color: #081245;
    font-weight: 700;
}


/*=== Schedule Block Even ===*/

.schedule-block-three.even .date {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    height: 130px;
    min-width: 230px;
    margin-left: 0;
    margin-right: -30px;
    padding-right: 0;
    padding-left: 40px;
    background-position: center left;
    background-image: url(../images/icons/schedule-2.png);
}

.schedule-block-three.even .date .icon {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.schedule-block-three.even .inner {
    padding: 35px 60px;
    padding-left: 255px;
    text-align: left
}

.schedule-block-three.even .thumb {
    right: auto;
    left: 30px;
}

.schedule-block-three.even .speaker-info .name {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.schedule-block-three:nth-child(4n+2) .date {
    background-image: url(../images/icons/schedule-2.png);
}

.schedule-block-three:nth-child(4n+3) .date {
    background-image: url(../images/icons/schedule-3.png);
}

.schedule-block-three:nth-child(4n+4) .date {
    background-image: url(../images/icons/schedule-4.png);
}


/*** 

====================================================================
    Event Detail
====================================================================

***/

.schedule-detail {
    position: relative;
    padding: 100px 0 90px;
}

.schedule-detail .auto-container {
    max-width: 1000px;
}

.schedule-detail .image-box {
    position: relative;
    margin-bottom: 50px;
}

.schedule-detail .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.schedule-detail .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
}

.schedule-detail .content-box {
    position: relative;
}

.schedule-detail .upper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.schedule-detail .speaker-info {
    position: relative;
    padding-left: 125px;
    padding-top: 10px;
    min-height: 100px;
    margin-bottom: 20px;
}

.schedule-detail .speaker-info .thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    overflow: hidden;
}

.schedule-detail .speaker-info .thumb img {
    width: 100%;
}

.schedule-detail .speaker-info .icon {
    font-size: 27px;
    color: #ffba00;
    line-height: 1em;
    margin-bottom: 15px;
}

.schedule-detail .speaker-info .name {
    font-size: 20px;
    color: #ff4200;
    font-weight: 700;
    line-height: 1em;
}

.schedule-detail .speaker-info .designation {
    font-size: 16px;
    color: #555555;
}

.schedule-detail .upper-info {
    position: relative;
    margin-bottom: 20px;
}

.schedule-detail .upper-info li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 30px;
    margin-right: 20px;
    margin-top: 6px;
}

.schedule-detail .upper-info .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 24px;
    color: #ffba00;
}

.schedule-detail .upper-box .theme-btn {
    margin-bottom: 20px;
}

.schedule-detail .content-box h2 {
    display: block;
    font-size: 32px;
    line-height: 1.2em;
    color: #081245;
    font-weight: 700;
    margin-bottom: 25px;
}

.schedule-detail .content-box p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #555555;
    font-weight: 400;
    margin-bottom: 30px;
}

.schedule-detail .two-column {
    position: relative;
}

.schedule-detail .two-column .column {
    margin-bottom: 30px;
}

.schedule-detail .two-column .image {
    position: relative;
    margin-bottom: 0;
}

.schedule-detail .two-column .image img {
    display: block;
    width: 100%;
}

.schedule-detail .two-column h4 {
    font-size: 24px;
    line-height: 1.2em;
    color: #081245;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}


/*** 

====================================================================
    FAQ's Section
====================================================================

***/

.faq-section {
    position: relative;
    padding: 50px 0 85px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.faq-section .icon-dotted-world.left {
    left: -280px;
    top: 50%;
    margin-top: -200px;
    -webkit-animation: bounce-x 10s infinite;
    animation: bounce-x 10s infinite;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.faq-section .icon-dotted-world.right {
    right: -280px;
    top: 50%;
    margin-top: -200px;
    -webkit-animation: bounce-x 10s infinite;
    animation: bounce-x 10s infinite;
}


/*==========================
Accordian Box
===========================*/

.accordion-box {
    position: relative;
    margin-bottom: 30px;
}

.accordion-box .block {
    position: relative;
    margin-bottom: 15px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background: #ffffff;
}

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 18px;
    padding: 15px 20px;
    padding-left: 90px;
    line-height: 30px;
    color: #001376;
    font-weight: 600;
    cursor: pointer;
    background: #ffffff;
    font-family: 'Exo', sans-serif;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.accordion-box .block .acc-btn.active {
    background: #f5f5f5;
    color: #ff4200;
}

.accordion-box .block .acc-btn .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background-color: #ffba00;
    font-size: 14px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.accordion-box .block .acc-btn.active .icon {
    background-color: #ff4200;
}

.accordion-box .block .acc-btn.active .icon:before {
    content: "\f068";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .content {
    position: relative;
    padding: 20px 30px;
}

.accordion-box .block .content p {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #555555;
    font-weight: 400;
    margin-bottom: 30px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.accordion-box .block .content p:last-child {
    margin-bottom: 0;
}


/*** 

====================================================================
      FAQ Form Section
====================================================================

***/

.faq-form-section {
    position: relative;
    padding: 0px 0 70px;
}

.faq-form-section .faq-form {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.faq-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.faq-form .form-group input[type="text"],
.faq-form .form-group input[type="email"],
.faq-form .form-group input[type="url"],
.faq-form .form-group textarea,
.faq-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    color: #777777;
    line-height: 30px;
    padding: 14px 25px;
    background-color: transparent;
    font-weight: 400;
    height: 60px;
    border: 1px solid #e1e1e1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.faq-form .form-group input:focus,
.faq-form .form-group select:focus,
.faq-form .form-group textarea:focus {
    border-color: #ff8a00;
}

.faq-form .form-group textarea {
    height: 180px;
    resize: none;
}

.faq-form .form-group button {
    padding: 15px 30px;
    line-height: 20px;
}


/*** 

====================================================================
    Call to Action
====================================================================

***/

.call-to-action {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 110px 0;
}

.call-to-action .icon-dotted-world.left {
    left: -280px;
    top: 30px;
    -webkit-animation: bounce-x 10s infinite;
    animation: bounce-x 10s infinite;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.call-to-action .icon-dotted-world.right {
    right: -280px;
    top: 30px;
    -webkit-animation: bounce-x 10s infinite;
    animation: bounce-x 10s infinite;
}

.call-to-action:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #00082e;
    background: -o-linear-gradient(45deg, #00082e 0%, #081245 100%);
    background: linear-gradient(45deg, #00082e 0%, #081245 100%);
    opacity: .90;
    content: "";
}

.call-to-action .content-box {
    position: relative;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.call-to-action .content-box h2 {
    display: block;
    font-size: 48px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 35px;
}

.call-to-action .content-box .text {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 36px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 40px;
}

.call-to-action .content-box .theme-btn {
    position: relative;
    font-size: 16px;
}


/*** 

====================================================================
    Call to Action Two
====================================================================

***/

.call-to-action-two {
    position: relative;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    background: #011372;
    padding: 85px 0;
}

.call-to-action-two:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55%;
    background-image: url(../images/icons/cta-bg.png);
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
}

.call-to-action-two .content-column {
    position: relative;
}

.call-to-action-two .content-box {
    position: relative;
    padding-left: 50px;
    max-width: 500px;
}

.call-to-action-two .content-box .sub-title {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.call-to-action-two .content-box h2 {
    display: block;
    font-size: 36px;
    line-height: 1.3em;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 35px;
}

.call-to-action-two .content-box .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 40px;
}

.call-to-action-two .content-box .theme-btn {
    position: relative;
    font-size: 16px;
}


/***

====================================================================
        Pricing Section
====================================================================

***/

.pricing-section {
    position: relative;
    padding: 100px 0 50px;
    background-color: #f2f2f2;
}

.pricing-section .row {
    margin: 0 -25px;
}

.pricing-block {
    position: relative;
    padding: 0 25px;
    margin-bottom: 50px;
}

.pricing-block .inner-box {
    position: relative;
    background: #081245;
    background: -o-linear-gradient(45deg, #081245 0%, #001376 100%);
    background: linear-gradient(45deg, #081245 0%, #001376 100%);
    max-width: 370px;
    margin: 0 auto;
    padding: 50px 55px 50px;
    -webkit-box-shadow: 0 6px 28px rgba(0, 0, 0, .13);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .13);
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block .inner-box:before {
    position: absolute;
    right: -29%;
    bottom: -20px;
    height: 200%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    content: "";
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
}

.pricing-block .inner-box:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block .inner-box:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-block .title {
    position: relative;
    font-size: 16px;
    line-height: 36px;
    color: #ffc200;
    font-weight: 700;
    display: block;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 2;
}

.pricing-block h3 {
    font-size: 30px;
    line-height: 1.2em;
    color: #01136d;
    font-weight: 700;
    margin-bottom: 25px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 2;
}

.pricing-block .price {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 72px;
    color: #ff4200;
    font-weight: bold;
    line-height: 1.2;
    font-family: 'Exo', sans-serif;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 2;
}

.pricing-block .price sup {
    font-size: 24px;
    color: #ffba00;
    font-weight: 400;
    top: -20px;
    font-family: 'Archivo', sans-serif;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block .price sub {
    font-size: 16px;
    color: #ff7f1a;
    font-weight: 400;
    margin-left: 5px;
    top: 15px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block .features {
    position: relative;
    padding: 30px 0 25px;
    z-index: 2;
}

.pricing-block .features li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 26px;
    color: #494949;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block .features li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #494949;
    content: "\f00c";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block .theme-btn {
    position: relative;
    z-index: 2;
}

.pricing-block.tagged .inner-box:after {
    opacity: 0;
}

.pricing-block .inner-box:hover .features li:before,
.pricing-block .inner-box:hover .features li,
.pricing-block .inner-box:hover .price sup,
.pricing-block .inner-box:hover .price,
.pricing-block .inner-box:hover h3,
.pricing-block.tagged .features li:before,
.pricing-block.tagged .features li,
.pricing-block.tagged .price sup,
.pricing-block.tagged .price,
.pricing-block.tagged h3 {
    color: #ffffff;
}

.pricing-block.tagged .price sub {
    color: #ffba00;
}

.pricing-block .inner-box:hover:after {
    opacity: 0;
}


/***

====================================================================
        Pricing Section Two
====================================================================

***/

.pricing-section-two {
    position: relative;
    padding: 40px 0 20px;
    background-color: #f5f5f5;
}

.pricing-section-two .row {
    margin: 0 -25px;
}

.pricing-block-two {
    position: relative;
    padding: 0 25px;
    margin-bottom: 50px;
}

.pricing-block-two .inner-box {
    position: relative;
    background: #081245;
    background: -o-linear-gradient(45deg, #081245 0%, #001376 100%);
    background: linear-gradient(45deg, #081245 0%, #001376 100%);
    -webkit-box-shadow: 0 6px 28px rgba(0, 0, 0, .13);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .13);
    max-width: 350px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .inner-box:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .inner-box:before {
    position: absolute;
    right: -29%;
    bottom: -20px;
    height: 200%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    content: "";
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .title-box {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    padding: 10px 20px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .title-box:before {
    position: absolute;
    left: -50px;
    top: 0;
    height: 100%;
    width: 90%;
    background: #06124f;
    content: "";
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .title {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #ffc200;
    font-weight: 700;
    display: block;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two h3 {
    font-size: 30px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .price-box {
    position: relative;
    min-height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 2;
}

.pricing-block-two .price-box:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/pricing-bg.png);
    background-repeat: no-repeat;
    background-position: center right;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .price {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 72px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
    padding: 15px 35px 0;
    font-family: 'Exo', sans-serif;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .price sup {
    position: relative;
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
    top: -20px;
    font-family: 'Archivo', sans-serif;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .price sub {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    margin-left: 5px;
    top: 15px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .features {
    position: relative;
    padding: 30px 70px 25px;
    z-index: 2;
}

.pricing-block-two .features li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 26px;
    color: #494949;
    margin-bottom: 14px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .features li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #494949;
    content: "\f00c";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .btn-box {
    position: relative;
    padding: 0 70px 50px;
    z-index: 2;
}

.pricing-block-two.tagged .inner-box:after {
    opacity: 0;
}

.pricing-block-two .inner-box:hover .features li:before,
.pricing-block-two .inner-box:hover .features li,
.pricing-block-two .inner-box:hover .price sup,
.pricing-block-two .inner-box:hover .price,
.pricing-block-two .inner-box:hover h3,
.pricing-block-two.tagged .features li:before,
.pricing-block-two.tagged .features li,
.pricing-block-two.tagged .price sup,
.pricing-block-two.tagged .price,
.pricing-block-two.tagged h3 {
    color: #ffffff;
}

.pricing-block-two .inner-box:hover .price sub,
.pricing-block-two.tagged .price sub {
    color: #ffba00;
}

.pricing-block-two .inner-box:hover:after {
    opacity: 0;
}


/***

====================================================================
        Pricing Section Three
====================================================================

***/

.pricing-section-three {
    position: relative;
    padding: 100px 0 50px;
}

.pricing-section-three .icon-object-11 {
    top: 165px;
    left: -505px;
    -webkit-animation: fa-spin 10s infinite linear;
    animation: fa-spin 10s infinite linear;
}

.pricing-section-three .icon-object-12 {
    bottom: 85px;
    left: -35px;
    -webkit-animation: bounce-x 10s infinite linear;
    animation: bounce-x 10s infinite linear;
}

.pricing-section-three .icon-object-13 {
    right: -505px;
    bottom: 130px;
    -webkit-animation: fa-spin 10s infinite linear;
    animation: fa-spin 10s infinite linear;
}

.pricing-section-three .icon-object-14 {
    top: 270px;
    right: -240px;
    -webkit-animation: fa-spin 10s infinite linear;
    animation: fa-spin 10s infinite linear;
}

.pricing-section-three .row {
    margin: 0 -25px;
}

.pricing-block-three {
    position: relative;
    padding: 0 25px;
    margin-bottom: 50px;
}

.pricing-block-three .inner-box {
    position: relative;
    background-color: #f6f6f6;
    padding: 40px 30px 50px;
    border: 1px solid #e1e1e1;
    overflow: hidden;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-three .inner-box:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}

.pricing-block-three .title {
    font-size: 16px;
    line-height: 36px;
    color: #ffc200;
    text-transform: uppercase;
    display: block;
}

.pricing-block-three h3 {
    font-size: 30px;
    line-height: 1.2em;
    color: #01136d;
    font-weight: 700;
}

.pricing-block-three .text {
    font-size: 12px;
    line-height: 24px;
    color: #555555;
    display: block;
    margin-bottom: 20px;
}

.pricing-block-three .price-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pricing-block-three .price {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 72px;
    color: #ff4200;
    font-weight: bold;
    line-height: 1.2;
    font-family: 'Exo', sans-serif;
}

.pricing-block-three .price sup {
    top: -20px;
    text-align: left;
    font-size: 24px;
    color: #ffba00;
    font-weight: 400;
    font-family: 'Archivo', sans-serif;
}

.pricing-block-three .price sup em {
    position: relative;
    display: block;
    top: 20px;
    font-size: 16px;
    color: #ff7f1a;
}

.pricing-block-three .features {
    position: relative;
    padding: 30px 0 0;
}

.pricing-block-three .features li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    margin-bottom: 25px;
}

.pricing-block-three .features li.false {
    opacity: .50;
}

.pricing-block-three .features li strong {
    display: block;
    font-size: 24px;
    line-height: 34px;
    color: #01136d;
    font-weight: 700;
    font-family: 'Exo', sans-serif;
}

.pricing-block-three .theme-btn {
    min-width: 100px;
    margin: 0 auto;
}

.pricing-block-three .inner-box:hover,
.pricing-block-three.tagged .inner-box {
    background-image: url(../images/icons/pricing-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
}


/*** 

====================================================================
  Testimonial Section
====================================================================

***/

.testimonial-section {
    position: relative;
    padding: 90px 0;
    background-color: #f5f5f5;
}

.testimonial-section-three .outer-box {
    margin: 0 -15px;
}

.testimonial-block {
    position: relative;
    padding: 15px;
}

.testimonial-block .inner-box {
    position: relative;
}


.testimonial-block .text-box1 {
    position: relative;
    background-color: #ffffff;
    padding: 40px 40px 35px;
    -webkit-box-shadow: 0 0px 15px rgba(8, 0, 0, .15);
    box-shadow: 0 0px 15px rgba(8, 0, 0, .15);
    margin-bottom: 35px;
}

.testimonial-block .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #555555;
    font-weight: 400;
}

.testimonial-block .text-box:before {
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 80px;
    line-height: 1em;
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #555555;
    opacity: .10;
}

.testimonial-block .text-box:after {
    position: absolute;
    left: 25px;
    bottom: -15px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #ffffff;
    z-index: 1;
    content: "";
}

.testimonial-block .info-box {
    position: relative;
    min-height: 100px;
    padding-left: 125px;
    padding-top: 20px;
}

.testimonial-block .info-box .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 100px;
    width: 100px;
    overflow: hidden;
}

.testimonial-block .info-box .thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.testimonial-block .info-box .rating {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    line-height: 20px;
    color: #ffba00;
    margin-bottom: 15px;
}

.testimonial-block .info-box .name {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.2em;
    color: #081245;
    font-weight: 700;
}

.testimonial-block .info-box .designation {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 25px;
    color: #555555;
    font-weight: 700;
}

.testimonial-carousel-two .owl-nav {
    display: none;
}


/*** 

====================================================================
    News Section
====================================================================

***/

.news-section {
    position: relative;
    padding: 100px 0 100px;
    overflow: hidden;
}

.news-section.alternate {
    padding: 50px 0 70px;
    background-image: url(../images/icons/pattern-5.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.news-section.bg-none {
    background: none;
}

.news-section .icon-circle-1 {
    left: -180px;
    top: 200px;
}

.news-block {
    position: relative;
    margin-bottom: 40px;
}

.news-block .inner-box {
    position: relative;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
}

.news-block .image-box {
    position: relative;
}

.news-block .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.news-block .image-box .image a:after {
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.13);
    background: -webkit-gradient( linear, left top, right top, from(rgba(255, 255, 255, 0.13)), color-stop(77%, rgba(255, 255, 255, 0.13)), color-stop(92%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.0)));
    background: -o-linear-gradient( left, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
    background: linear-gradient( to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
}

.news-block .inner-box:hover .image-box .image a:after {
    opacity: 1;
    top: -20%;
    left: -30%;
    -webkit-transition-property: left, top, opacity;
    -o-transition-property: left, top, opacity;
    transition-property: left, top, opacity;
    -webkit-transition-duration: 0.7s, 0.7s, 0.15s;
    -o-transition-duration: 0.7s, 0.7s, 0.15s;
    transition-duration: 0.7s, 0.7s, 0.15s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

.news-block .image img {
    display: block;
    width: 100%;
}

.news-block .image-box .tag {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1;
    font-size: 16px;
    color: #fdfdfd;
    background: #ffc600;
    background: -o-linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
    background: linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
    padding: 5px 20px;
    font-weight: 600;
    color: #ffffff;
}

.news-block .lower-content {
    position: relative;
    padding: 30px 30px 30px;
}

.news-block .author {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.news-block .author .thumb {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
    margin-right: 15px;
}

.news-block .author .name {
    font-size: 18px;
    line-height: 1em;
    color: #031367;
    font-weight: 700;
    margin-right: auto;
}

.news-block .author .likes {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    font-weight: 400;
    margin-left: 25px;
}

.news-block .author .likes span {
    margin-right: 5px;
    color: #ff4200;
}

.news-block h4 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.4em;
    color: #081245;
    font-weight: 700;
    margin-bottom: 15px;
}

.news-block h4 a {
    color: #081245;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block h4 a:hover {
    color: #ffba00;
}

.news-block .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #555555;
    font-weight: 400;
    margin-bottom: 20px;
}

.news-block .post-info {
    position: relative;
}

.news-block .post-info li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    font-weight: 400;
    margin-right: 25px;
}

.news-block .post-info li span {
    margin-right: 10px;
    color: #ff4200;
}


/* Style Two */

.news-block.style-two {
    margin-bottom: 30px;
}

.news-block.style-two .inner-box {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.news-block.style-two .author {
    padding-bottom: 20px;
    border-bottom: 2px dashed #dddddd;
}

.news-block.style-two .lower-content {
    padding: 0;
    padding-top: 30px;
}


/* Style Three */

.news-block.style-three {
    margin-bottom: 30px;
}

.news-block.style-three .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.news-block.style-three .author {
    padding-bottom: 20px;
    border-bottom: 2px dashed #dddddd;
}

.news-block.style-three .image-box {
    max-width: 375px;
    min-width: 40%;
    width: 100%;
}

.news-block.style-three .lower-content {
    padding: 0;
    padding-left: 30px;
}


/* Style Four */

.news-block.style-four {
    padding-top: 20px;
    margin-bottom: 30px;
}

.news-block.style-four .tag {
    left: auto;
    top: -20px;
    right: 30px;
}

.news-block.style-four .lower-content {
    padding-top: 0 !important;
}

.news-block.style-four .author {
    top: -20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-right: 10px;
    background: #1e1d27;
    border-radius: 30px 10px 10px 30px;
    margin-bottom: 0px;
}

.news-block.style-four .author .name {
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.news-block.style-four .author .thumb {
    margin-right: 10px;
}

.news-block.style-four .post-info {
    margin-bottom: 10px;
}

.news-block.style-four .text {
    margin-bottom: 0;
}

.sidebar-page-container .news-block.style-four {
    padding-top: 0;
}

.sidebar-page-container .news-block.style-four .tag {
    bottom: -20px;
    top: auto;
}


/*** 

====================================================================
  Blog Detail
====================================================================

***/

.blog-detail {
    position: relative;
}

.blog-detail .news-block p {
    margin-bottom: 30px;
}

.blockquote-one {
    position: relative;
    padding: 35px 60px;
    background-color: #f9f9f9;
    font-size: 18px;
    line-height: 2em;
    color: #555555;
    text-align: center;
    margin: 45px 0;
}

.blockquote-one:before {
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    text-align: center;
    font-size: 60px;
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
    opacity: .10;
    color: #555555;
    font-weight: 900;
}

.blockquote-one .icon {
    position: absolute;
    left: 40px;
    top: 40px;
    font-size: 30px;
    line-height: 1em;
    color: #f20487;
}

.blockquote-one cite {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ff801a;
    font-weight: 400;
    font-style: normal;
    margin-top: 10px;
}


/*post share options*/

.post-share-options {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 2px solid #ebebeb;
    margin-bottom: -5px;
}

.post-share-options .tags {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post-share-options .tags li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px;
}

.post-share-options .tags li .title {
    margin-right: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    color: #081245;
}

.post-share-options .tags a {
    position: relative;
    font-size: 16px;
    color: #555555;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.post-share-options .tags a:hover {
    color: #ff4200;
}

.post-share-options .social-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post-share-options .social-icon li {
    position: relative;
    margin-left: 2px;
}

.post-share-options .social-icon li a {
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    color: #081245;
    width: 30px;
    text-align: center;
    background: #ebebeb;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.post-share-options .social-icon li a:hover {
    color: #ffffff;
    background-color: #ff4200;
}


/*Author Box*/

.author-box {
    position: relative;
    background-color: #ffffff;
    margin-top: 60px;
    margin-bottom: 70px;
}

.author-box .inner-box {
    position: relative;
    padding-left: 200px;
    padding-top: 40px;
    padding-right: 40px;
    min-height: 240px;
}

.author-box .inner-box:before {
    position: absolute;
    left: 85px;
    right: 0;
    top: 0px;
    height: 100%;
    background: #f5f5f5;
    content: "";
}

.author-box .thumb {
    position: absolute;
    left: 0px;
    top: 40px;
    height: 170px;
    width: 170px;
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .20);
    box-shadow: 0 0 10px rgba(0, 0, 0, .20);
    z-index: 9;
}

.author-box .thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.author-box .name {
    position: relative;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}

.author-box .title {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #ffbf26;
    margin-bottom: 20px;
    display: block;
}

.author-box .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #555555;
    font-weight: 400;
}

.author-box .social-links {
    position: absolute;
    right: 40px;
    top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.author-box .social-links li {
    position: relative;
    margin-left: 2px;
}

.author-box .social-links li a {
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    color: #081245;
    width: 30px;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.author-box .social-links li a:hover {
    color: #ff4200;
}


/*** 

====================================================================
  Sidebar Page Container
====================================================================

***/

.sidebar-page-container {
    position: relative;
    padding: 120px 0px 70px;
}

.sidebar {
    position: relative;
}

.sidebar.padding-left {
    padding-left: 15px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side {
    margin-bottom: 50px;
}

.sidebar-widget {
    position: relative;
    margin-bottom: 50px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}


/* Sidebar Title */

.sidebar-title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.2em;
    color: #000000;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.sidebar-title:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: #ffba00;
    content: "";
}


/*Search Box Widget*/

.sidebar .search-box {
    margin-bottom: 40px;
    padding: 20px 20px;
    background: #f5f5f5;
}

.sidebar .search-box .form-group {
    position: relative;
    margin: 0px;
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
    position: relative;
    padding: 14px 40px;
    border: 1px solid #e1e1e1;
    background: #ffffff;
    display: block;
    font-size: 16px;
    line-height: 30px;
    width: 100%;
    height: 60px;
    color: #555555;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar .search-box .form-group input[type="text"]:focus,
.sidebar .search-box .form-group input[type="search"]:focus {
    color: #666666;
}

.sidebar .search-box .form-group button {
    position: absolute;
    right: 0;
    top: 10px;
    height: 40px;
    width: 60px;
    display: block;
    font-size: 18px;
    color: #000000;
    line-height: 45px;
    font-weight: normal;
    border-left: 1px solid #e1e1e1;
    background: #ffffff;
    z-index: 9;
    cursor: pointer;
}

.sidebar .search-box .form-group button:hover {
    color: #e1137b;
}


/* Blog Categories */

.sidebar .categories {
    position: relative;
    padding: 40px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .10);
    box-shadow: 0 0 20px rgba(0, 0, 0, .10);
}

.blog-categories {
    position: relative;
}

.blog-categories li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.blog-categories li:before {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -4px;
    height: 8px;
    width: 8px;
    background: #ff801a;
    border-radius: 50%;
    content: "";
}

.blog-categories li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #555555;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-categories li:last-child {
    margin-bottom: 0;
}

.blog-categories li a:hover {
    color: #ff841a;
}


/*Post Widget*/

.author-block {
    position: relative;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.author-block .author-image {
    position: relative;
    max-width: 200px;
    margin: 0 auto;
}

.author-block .author-image img {
    width: 100%;
}

.author-block .social-links {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #e1e1e1;
    border-right: 0;
    margin-top: -20px;
    z-index: 1;
    margin-bottom: 20px;
}

.author-block .social-links a {
    position: relative;
    height: 40px;
    width: 40px;
    display: block;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    background-color: #ffffff;
    border-right: 1px solid #e1e1e1;
    color: #081245;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.author-block .social-links a:hover {
    color: #ffffff;
    background-color: #ff801a;
}

.author-block h5 {
    font-size: 20px;
    color: #081245;
    font-weight: 700;
    margin-bottom: 10px;
}

.author-block p {
    font-size: 16px;
    line-height: 27px;
    color: #555555;
}


/*Post Widget*/

.sidebar .popular-posts .post {
    position: relative;
    margin-bottom: 30px;
}

.sidebar .popular-posts .post .post-inner {
    position: relative;
    padding-left: 130px;
    min-height: 110px;
}

.sidebar .popular-posts .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 110px;
}

.sidebar .popular-posts .post .post-thumb img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar .popular-posts .post h6 {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #081245;
    margin: 0px;
}

.sidebar .popular-posts .post h6 a {
    color: #081245;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar .popular-posts .post a:hover {
    color: #ffba00;
}

.sidebar .popular-posts .post-info {
    position: relative;
    font-size: 16px;
    color: #555555;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 5px;
}

.sidebar .popular-posts .post-info i {
    font-size: 16px;
    color: #ff4200;
    margin-right: 10px;
}


/*Popular Tags*/

.sidebar .popular-tags .widget-content {
    position: relative;
}

.sidebar .popular-tags a {
    position: relative;
    float: left;
    padding: 5px;
    color: #555555;
    text-align: center;
    font-size: 16px;
    padding: 10px 20px 8px;
    line-height: 25px;
    background: none;
    font-weight: 400;
    border-bottom: 2px solid #ebebeb;
    background-color: #ffffff;
    margin: 0 5px 10px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar .popular-tags a:hover {
    background: #081245;
    border-color: #081245;
    color: #ffffff;
}


/*** 

====================================================================
    Comment Area
====================================================================

 ***/

.group-title {
    position: relative;
    margin-bottom: 40px;
}

.group-title h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #081245;
    font-weight: 600;
}

.comments-area {
    position: relative;
    margin-bottom: 70px;
}

.comments-area .comment-box {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #dddddd;
}

.comments-area .comment-box.reply-comment {
    margin-left: 100px;
}

.comments-area .comment-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.comments-area .comment {
    position: relative;
    min-height: 120px;
    padding-left: 150px;
}

.comments-area .comment-box .author-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 120px;
    width: 120px;
    overflow: hidden;
    background-color: #7d7d7d;
}

.comments-area .comment-box .author-thumb img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.comments-area .comment-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comments-area .comment-box .name {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #081245;
    margin-right: 10px;
}

.comments-area .comment-box .date {
    position: relative;
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    color: #ffba00;
}

.comments-area .comment-box .text {
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    font-weight: 400;
    margin-bottom: 10px;
}

.comments-area .comment-box .reply-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    color: #ff4200;
}

.comments-area .comment-box .reply-btn i {
    margin-left: 10px;
}


/*** 

====================================================================
    Comment Form
====================================================================

 ***/

.comment-form {
    position: relative;
}

.comment-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.comment-form .form-group:last-child {
    margin-bottom: 0;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="email"],
.comment-form .form-group textarea,
.comment-form .form-group select {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    font-size: 14px;
    color: #878787;
    line-height: 28px;
    font-weight: 400;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.comment-form .form-group input:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus {
    border-color: #12114a;
}

.comment-form .form-group textarea {
    height: 190px;
    resize: none;
}

.comment-form .form-group input[type="submit"],
.comment-form .form-group button {
    margin-top: 10px;
    font-size: 15px;
    padding: 10px 30px;
    font-weight: 500;
    cursor: pointer;
}


/*** 

====================================================================
  Error Section
====================================================================

***/

.error-section {
    position: relative;
    text-align: center;
    padding: 150px 0px;
}

.error-section .error-title {
    position: relative;
    color: #ec167f;
    font-size: 200px;
    font-weight: 700;
    line-height: 1em;
    text-shadow: 0 20px 30px rgba(0, 0, 0, 0.20);
}

.error-section h4 {
    color: #394963;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.error-section .text {
    color: #888888;
    font-size: 22px;
    line-height: 1.4em;
    margin-bottom: 30px;
}

.error-section .theme-btn {
    border-radius: 5px;
    font-weight: 500;
    margin: 0 10px 10px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.error-section .icon-object-2 {
    left: -80px;
    bottom: 80px;
    -webkit-animation: fa-spin 30s infinite alternate;
    animation: fa-spin 30s infinite alternate;
}

.error-section .icon-object-3 {
    left: 15%;
    top: 20%;
}

.error-section .icon-object-4 {
    right: 15%;
    bottom: 20%;
    -webkit-animation: fa-spin 30s infinite alternate;
    animation: fa-spin 30s infinite alternate;
}

.error-section .icon-object-5 {
    right: -200px;
    top: 200px;
}


/*** 

====================================================================
    Gallery Section
====================================================================

***/

.gallery-section {
    position: relative;
}

.gallery-section .row {
    margin: 0 -5px;
}

.gallery-block {
    position: relative;
    padding: 0 5px;
    margin-bottom: 10px;
}

.gallery-block .image-box {
    position: relative;
    overflow: hidden;
}

.gallery-block .image {
    position: relative;
    margin-bottom: 0;
}

.gallery-block .image img {
    display: block;
    width: 100%;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.gallery-block .overlay-box {
    position: absolute;
    left: 20px;
    top: 20px;
    right: 20px;
    bottom: 20px;
    background: #ffc600;
    background: -o-linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
    background: linear-gradient(45deg, #ffc600 1%, #ff6c00 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    opacity: 0;
    visibility: hidden;
}

.gallery-block .image-box:hover .overlay-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.gallery-block .overlay-box .icon {
    position: relative;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.gallery-block .overlay-box h3 {
    font-size: 30px;
    color: #fefefe;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.gallery-block .overlay-box h3 a {
    color: #fefefe;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.gallery-block .overlay-box h3 a:hover {
    color: #081245;
}

.gallery-block .overlay-box .text {
    font-size: 24px;
    line-height: 30px;
    color: #fefefe;
    opacity: 0;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.gallery-block .image-box:hover .overlay-box .icon,
.gallery-block .image-box:hover .overlay-box h3,
.gallery-block .image-box:hover .overlay-box .text {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.gallery-section.style-two {
    padding: 100px 0;
}

.gallery-section.style-two .row {
    margin: 0 -15px;
}

.gallery-section.style-two .gallery-block {
    position: relative;
    padding: 0 15px;
    margin-bottom: 30px;
}


/*** 

====================================================================
      Styled Pagination
====================================================================

***/

.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 70px;
}

.styled-pagination ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.styled-pagination li {
    position: relative;
    margin: 0 10px 8px;
    background: #f8f8f8;
}

.styled-pagination li a {
    position: relative;
    display: block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 37px;
    font-weight: 400;
    font-size: 18px;
    color: #081245;
    z-index: 2;
    border-bottom: 3px solid #d9d9d9;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.styled-pagination li:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    z-index: 1;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(221, 221, 221, 0)), to(rgba(221, 221, 221, 1)));
    background: -o-linear-gradient(top, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 1) 100%);
    background: linear-gradient(to bottom, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 1) 100%);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.styled-pagination li:hover:before {
    height: 100%;
}

.styled-pagination li a:hover,
.styled-pagination li.active a {}

.styled-pagination li.next-post a,
.styled-pagination li.prev-post a {
    background: #081245;
    font-size: 16px;
    color: #ffffff;
    border-color: #081245;
}

.styled-pagination li.next-post a:hover,
.styled-pagination li.prev-post a:hover {
    color: #ffffff;
    background: #ffae00;
    border-color: #ffae00;
}


/*** 

====================================================================
    Contact Section
====================================================================

***/

.contact-section {
    position: relative;
    padding: 100px 0;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form .form-group .input-outer {
    position: relative;
}

.contact-form .form-group .icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    color: #dddddd;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group input[type="url"],
.contact-form .form-group textarea,
.contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    color: #aaaaaa;
    line-height: 30px;
    padding: 15px 20px;
    border-bottom: 1px solid #e1e1e1;
    font-weight: 400;
    height: 60px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #f20487;
}

.contact-form .form-group textarea {
    height: 156px;
    resize: none;
}

.contact-form .form-group button {
    text-transform: capitalize;
}

.contact-form input.error:focus,
.contact-form select.error:focus,
.contact-form textarea.error:focus {
    border-color: #ff0000;
}

.contact-form label.error {
    display: block;
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
    line-height: 24px;
    color: #ff0000;
    padding-top: 7px;
    margin-bottom: 0;
}


/*** 

====================================================================
    Map Section
====================================================================

***/

.map-section {
    position: relative;
    padding: 0 0 50px;
}

.map-section .contact-column {
    position: relative;
    margin-bottom: 50px;
}

.map-section .sec-title {
    margin-bottom: 40px;
}

.map-section .sec-title .divider {
    margin-top: 20px;
}

.map-section .sec-title .text {
    margin-top: 20px;
}

.map-section .contact-info {
    position: relative;
}

.map-section .contact-info li {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px;
}

.map-section .contact-info li p {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    font-weight: 400;
    margin: 0;
}

.map-section .contact-info li h4 {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #081245;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-section .contact-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    text-align: center;
    font-size: 30px;
    line-height: 58px;
    background-color: #f5f5f5;
    border-bottom: 2px solid #001376;
    color: #081245;
}

.map-section .contact-info li a {
    color: #777777;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.map-section .contact-info li a:hover {
    color: #f20487;
}

.map-section .contact-info li:nth-child(2) .icon {
    color: #fe00c5;
    border-color: #fe00c5;
}

.map-section .contact-info li:nth-child(3) .icon {
    color: #ff4200;
    border-color: #ff4200;
}

.map-section .map-outer {
    position: relative;
    padding-right: 40px;
}

.map-data {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
}

.map-data a {
    display: block;
}

.map-data h6 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #121212;
}

.map-outer iframe {
    height: 530px;
    width: 100%;
    background-color: #f9f9f9;
}


/*** 

====================================================================
    Clients Section
====================================================================

***/

.clients-section {
    position: relative;
    padding: 0 0 20px;
}

.clients-section.alternate {
    padding: 100px 0 70px;
}

.clients-section.alternate2 {
    padding: 100px 0 20px;
}

.clients-section .sponsors-outer {
    position: relative;
    margin-bottom: 50px;
}

.clients-section .sponsors-outer .owl-dots,
.clients-section .sponsors-outer .owl-nav {
    display: none;
}

.client-block {
    position: relative;
    margin-bottom: 30px;
}

.client-block .image-box {
    position: relative;
    text-align: center;
    margin-bottom: 0;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
    border: 1px solid transparent;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.client-block .image-box:hover {
    border: 1px solid #dddddd;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.client-block .image-box img {
    width: auto;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.client-block .image-box:hover img {
    opacity: .70;
}


/*** 

====================================================================
    Clients Section Two
====================================================================

***/

.clients-section-two {
    position: relative;
}

.clients-section-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
    background: #f5f5f5;
    content: "";
}

.clients-section-two .auto-container {
    max-width: 1400px;
}

.clients-section-two .sponsors-outer {
    position: relative;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 0 30px;
}

.clients-section-two .owl-stage-outer {}

.clients-section-two .slide-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 160px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.clients-section-two .slide-item .image-box {
    position: relative;
    text-align: center;
    margin-bottom: 0;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.clients-section-two .slide-item .image-box img {
    width: 100%;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.clients-section-two .slide-item:hover {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .10);
    box-shadow: 0 0 10px rgba(0, 0, 0, .10);
}

.clients-section-two .default-nav .owl-nav {
    margin-top: -15px;
}


/*** 

====================================================================
    Subscribe Section
====================================================================

***/

.subscribe-section {
    position: relative;
    background-image: url(../images/background/2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 50px;
}

.subscribe-section .title-column {
    position: relative;
    margin-bottom: 50px;
}

.subscribe-section .title {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 5px;
    display: block;
}

.subscribe-section h3 {
    font-size: 36px;
    color: #081245;
    font-weight: 700;
}

.subscribe-section .form-column {
    position: relative;
    margin-bottom: 50px;
}

.subscribe-section .newsletter-form {
    position: relative;
    max-width: 670px;
    margin: 0 auto;
}

.subscribe-section .newsletter-form .form-group {
    position: relative;
    padding-right: 170px;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 0;
}

.subscribe-section .newsletter-form .form-group input[type="text"],
.subscribe-section .newsletter-form .form-group input[type="email"] {
    display: block;
    height: 75px;
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    color: #555555;
    font-weight: 400;
    padding: 25px 30px;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.subscribe-section .newsletter-form .form-group .theme-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    min-width: 160px;
    line-height: 25px;
    padding: 20px 30px;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
}


/*** 

====================================================================
    Subscribe Section Two
====================================================================

***/

.subscribe-section-two {
    position: relative;
    z-index: 1;
}

.subscribe-section-two .content-box {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 90px 50px;
    background-image: url(../images/background/8.jpg);
}

.subscribe-section-two .content-box .text {
    font-size: 16px;
    color: #ffffff;
}

.subscribe-section-two .content-box .text a {
    color: #ffc300;
}

.newsletter-form-two {
    position: relative;
    max-width: 870px;
    margin: 0 auto 25px;
}

.newsletter-form-two .form-group {
    position: relative;
    padding-right: 170px;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 0;
}

.newsletter-form-two .form-group input[type="text"],
.newsletter-form-two .form-group input[type="email"] {
    display: block;
    height: 75px;
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    color: #555555;
    font-weight: 400;
    padding: 25px 30px;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.newsletter-form-two .form-group .theme-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    min-width: 160px;
    line-height: 25px;
    padding: 10px 30px;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
}


/***

==================================================================
    Main Footer
==================================================================

***/

.main-footer {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 0;
    background-color:#1b2132;
}

.main-footer .footer-content {
    position: relative;
}

.main-footer .footer-logo {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}

.main-footer .footer-logo a {
    display: inline-block;
}

.main-footer .footer-logo img {
    display: inline-block;
}

.main-footer .footer-content .text {
    position: relative;
    max-width: 650px;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
    margin: 0 auto 30px;
}

.main-footer .footer-content .social-icon-two {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 60px;
}

.main-footer .contact-list-one {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-footer .contact-list-one li {
    margin-bottom: 50px;
}

.main-footer .footer-column {
    position: relative;
    margin-bottom: 40px;
}

.main-footer .widgets-section {
    padding-bottom: 50px;
}

.main-footer .footer-widget {
    position: relative;
}

.main-footer .footer-column .widget-title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 30px;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.main-footer .footer-column .widget-title:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #ffae00;
    content: '';
}

.footer-column .widget-title:after,
.footer-column .widget-title:before {
    background-color: #ffae00 !important;
}

.main-footer .about-widget {
    position: relative;
}

.main-footer .logo {
    position: relative;
    margin-bottom: 30px;
}

.main-footer .footer-logo figure {
    margin: 0;
}

.main-footer .footer-logo img {
    display: block;
    max-width: 100%;
}

.main-footer .about-widget p {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
}


/*=== User LInks ===*/

.main-footer .lnks-widget {
    position: relative;
    padding-left: 30px;
}

.user-links {
    position: relative;
    margin-top: 30px;
}

.user-links li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.user-links li a:before {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 14px;
    line-height: 24px;
    color: #ffae00;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
}

.user-links li a:hover:before {
    color: #ffb200;
}

.user-links li a {
    position: relative;
    padding-left: 20px;
    display: block;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.user-links li a:hover {
    color: #ffb200;
    text-decoration: underline;
}

.contact-list-three {
    position: relative;
}

.contact-list-three li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 22px;
}

.contact-list-three li:last-child {
    margin-bottom: 0;
}

.contact-list-three li .icon {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 36px;
    line-height: 1em;
    color: #ffb200;
}

.contact-list-three li strong {
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-list-three li .text {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
}

.contact-list-three li .text a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-list-three li .text a:hover {
    color: #ffb200;
}

.gallery-widget {
    position: relative;
    max-width: 400px;
}

.gallery-widget .outer {
    position: relative;
    margin: 0px -2px 0;
}

.gallery-widget .outer .image {
    position: relative;
    float: left;
    width: 33.3333%;
    padding: 0px 2px;
    margin-bottom: 4px;
}

.gallery-widget .image img {
    display: block;
    width: 100%;
}

.gallery-widget .image a {
    position: relative;
    display: block;
}

.gallery-widget .image a:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #ffc600 padding-box content-box;
    padding: 5px;
    opacity: .80;
    content: "";
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.gallery-widget .image a:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.gallery-widget .image a:after {
    position: absolute;
    height: 20px;
    width: 20px;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
    content: "\f16d";
    text-align: center;
    line-height: 20px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 900;
    font-family: 'Font Awesome 5 Brands';
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.gallery-widget .image a:hover:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


/*=== Footer Bottom ===*/

.main-footer .footer-bottom {
    position: relative;
    width: 100%;
}

.main-footer .footer-bottom .inner-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
}

.main-footer .footer-bottom .inner-container:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 1000%;
    height: 100%;
    border-radius: 50px;
    background: #ffc600;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #ffc600), to(#ff6c00));
    background: -o-linear-gradient(top, #ffc600 1%, #ff6c00 100%);
    background: linear-gradient(180deg, #ffc600 1%, #ff6c00 100%);
    content: "";
}

.main-footer .footer-bottom .copyright-text {
    position: relative;
    padding: 20px 0;
}

.main-footer .footer-bottom .copyright-text p {
    position: relative;
    line-height: 20px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}

.main-footer .footer-bottom .copyright-text a {
    color: #ffffff;
    font-weight: 700;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .footer-bottom .copyright-text a:hover {
    text-decoration: underline;
}

.main-footer .footer-bottom .footer-nav {
    position: relative;
}

.main-footer .footer-bottom .footer-nav {
    position: relative;
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.main-footer .footer-bottom .footer-nav li {
    position: relative;
    padding-left: 22px;
    margin-left: 30px;
}

.main-footer .footer-bottom .footer-nav li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .footer-bottom .footer-nav li:before {
    position: absolute;
    left: 0;
    top: 7px;
    height: 6px;
    width: 6px;
    background-color: #001376;
    content: '';
}

.main-footer .footer-bottom .footer-nav li a:hover {
    color: #002121;
}


/***

==================================================================
    Main Footer / Style Two
==================================================================

***/

.main-footer.style-two {
    background-image: url(../images/background/7.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 240px;
    margin-top: -240px;
}

.main-footer.style-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/pattern-6.png);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}

.main-footer.style-two .footer-content {
    padding: 70px 0;
}

.main-footer.style-two .footer-bottom {
    background: #081245;
    padding: 15px 0;
}

.main-footer.style-two .copyright-text {
    position: relative;
    display: block;
    text-align: center;
    padding: 0;
    font-size: 16px;
    color: #ffc400;
}

.main-footer.style-two .copyright-text a {
    color: #ffc400;
    font-weight: 400;
}


/***

==================================================================
    Main Footer / Style Three
==================================================================

***/

.main-footer.style-three {
    background-image: url(../images/background/7.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 240px;
    margin-top: -240px;
    background-size: cover;
}

.main-footer.style-three:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/pattern-6.png);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -webkit-animation: bounce-y 15s infinite linear;
    animation: bounce-y 15s infinite linear;
}

.main-footer .events-list {
    position: relative;
    margin-bottom: 30px;
}

.main-footer .events-list li {
    font-size: 18px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 5px;
}

.main-footer.style-three .widgets-section {
    padding: 100px 0 30px;
}

.main-footer.style-three .about-widget p {
    font-size: 16px;
    line-height: 36px;
}

.main-footer.style-three .user-links li {
    margin-bottom: 10px;
}

.main-footer.style-three .footer-bottom {
    background: #081245;
    padding: 15px 0;
}

.main-footer.style-three .copyright-text {
    position: relative;
    display: block;
    text-align: center;
    padding: 0;
    font-size: 16px;
    color: #ffc400;
}

.main-footer.style-three .copyright-text a {
    color: #ffc400;
    font-weight: 400;
}


/*** 

====================================================================
  Coming Soon
====================================================================

***/

.coming-soon {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: auto;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    text-align: center;
}

.coming-soon .content {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
}

.coming-soon .content:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    content: "";
    opacity: .30;
}

.coming-soon .content .content-inner {
    position: relative;
    padding: 90px 15px;
    display: table-cell;
    vertical-align: middle;
}

.coming-soon .content .content-inner .logo {
    position: relative;
    margin-bottom: 200px;
}

.coming-soon .content .content-inner .sec-title {
    display: none;
    margin-bottom: 50px;
}

.coming-soon .content .content-inner h2 {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2em;
    padding-bottom: 0;
    font-variant: small-caps;
}

.coming-soon .content .content-inner h2:after {
    display: none;
}

.time-counter {
    position: relative;
}

.time-counter .time-countdown-two {
    position: relative;
    margin-bottom: 180px;
}

.time-counter .time-countdown-two .counter-column {
    position: relative;
    display: inline-block;
    width: 180px;
    height: 180px;
    font-size: 20px;
    line-height: 1em;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    z-index: 7;
    border-radius: 20px;
    padding: 0;
    margin: 0;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    background-color: rgba(54, 54, 54, .40);
    margin: 0 15px 20px;
}

.time-counter .time-countdown-two .counter-column .count {
    position: relative;
    display: block;
    font-size: 72px;
    line-height: 30px;
    padding: 60px 0px 30px;
    color: #ffffff;
    font-weight: 600;
}

.coming-soon .emailed-form {
    position: relative;
    margin-bottom: 40px;
}

.coming-soon .emailed-form h3 {
    line-height: 1.2em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.coming-soon .emailed-form .text {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8em;
    margin-bottom: 40px;
}

.coming-soon .emailed-form .form-group {
    position: relative;
    display: block;
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
}

.coming-soon .emailed-form .form-group input[type="text"],
.coming-soon .emailed-form .form-group input[type="tel"],
.coming-soon .emailed-form .form-group input[type="email"],
.coming-soon .emailed-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    height: 60px;
    font-size: 16px;
    color: #000000;
    overflow: hidden;
    padding: 15px 50px 15px 20px;
    background: #ffffff;
    border: 1px solid #f1f1f1;
    -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.10);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.coming-soon .emailed-form .form-group input:focus,
.coming-soon .emailed-form .form-group select:focus,
.coming-soon .emailed-form .form-group textarea:focus {}

.coming-soon .emailed-form .form-group input[type="submit"],
.coming-soon .emailed-form button {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 60px;
    height: 60px;
    line-height: 40px;
    font-size: 18px;
    color: #081245;
    background-color: transparent;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.coming-soon .emailed-form .form-group input[type="submit"]:hover,
.coming-soon .emailed-form button:hover {
    color: #353535;
}

.coming-soon .copyright-text {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
}

.coming-soon .copyright-text a {
    color: #ff9600;
}

.coming-soon .copyright-text a:hover {
    text-decoration: underline;
}

.clock-wrapper {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 250px;
    height: 250px;
    margin: auto;
    margin-top: -145px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 0, 0, .40);
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

.clock-base {
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.click-indicator {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    width: 230px;
    height: 230px;
}

.click-indicator div {
    position: absolute;
    width: 2px;
    height: 4px;
    margin: 113px 114px;
}

.click-indicator div>span {
    height: 5px;
    width: 5px;
    background-color: #ffffff;
    display: inline-block;
    border-radius: 50%;
    margin-left: -1px;
    margin-top: -1px;
}

.click-indicator div:nth-child(1) {
    -webkit-transform: rotate(30deg) translateY(-120px);
    -ms-transform: rotate(30deg) translateY(-120px);
    transform: rotate(30deg) translateY(-120px);
}

.click-indicator div:nth-child(2) {
    -webkit-transform: rotate(60deg) translateY(-120px);
    -ms-transform: rotate(60deg) translateY(-120px);
    transform: rotate(60deg) translateY(-120px);
}

.click-indicator div:nth-child(3) {
    -webkit-transform: rotate(90deg) translateY(-120px);
    -ms-transform: rotate(90deg) translateY(-120px);
    transform: rotate(90deg) translateY(-120px);
    background-color: #F00;
}

.click-indicator div:nth-child(4) {
    -webkit-transform: rotate(120deg) translateY(-120px);
    -ms-transform: rotate(120deg) translateY(-120px);
    transform: rotate(120deg) translateY(-120px);
}

.click-indicator div:nth-child(5) {
    -webkit-transform: rotate(150deg) translateY(-120px);
    -ms-transform: rotate(150deg) translateY(-120px);
    transform: rotate(150deg) translateY(-120px);
}

.click-indicator div:nth-child(6) {
    -webkit-transform: rotate(180deg) translateY(-120px);
    -ms-transform: rotate(180deg) translateY(-120px);
    transform: rotate(180deg) translateY(-120px);
    background-color: #F00;
}

.click-indicator div:nth-child(7) {
    -webkit-transform: rotate(210deg) translateY(-120px);
    -ms-transform: rotate(210deg) translateY(-120px);
    transform: rotate(210deg) translateY(-120px);
}

.click-indicator div:nth-child(8) {
    -webkit-transform: rotate(240deg) translateY(-120px);
    -ms-transform: rotate(240deg) translateY(-120px);
    transform: rotate(240deg) translateY(-120px);
}

.click-indicator div:nth-child(9) {
    -webkit-transform: rotate(270deg) translateY(-120px);
    -ms-transform: rotate(270deg) translateY(-120px);
    transform: rotate(270deg) translateY(-120px);
    background-color: #F00;
}

.click-indicator div:nth-child(10) {
    -webkit-transform: rotate(300deg) translateY(-120px);
    -ms-transform: rotate(300deg) translateY(-120px);
    transform: rotate(300deg) translateY(-120px);
}

.click-indicator div:nth-child(11) {
    -webkit-transform: rotate(330deg) translateY(-120px);
    -ms-transform: rotate(330deg) translateY(-120px);
    transform: rotate(330deg) translateY(-120px);
}

.click-indicator div:nth-child(12) {
    -webkit-transform: rotate(360deg) translateY(-120px);
    -ms-transform: rotate(360deg) translateY(-120px);
    transform: rotate(360deg) translateY(-120px);
    background-color: #F00;
}

.clock-hour {
    position: absolute;
    z-index: 2;
    top: 75px;
    left: 123px;
    width: 4px;
    height: 65px;
    background-color: #ee3611;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    -webkit-transform-origin: 2px 50px;
    -ms-transform-origin: 2px 50px;
    transform-origin: 2px 50px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-animation: rotate-hour 43200s linear infinite;
    -moz-animation: rotate-hour 43200s linear infinite;
}

.clock-minute {
    position: absolute;
    z-index: 3;
    top: 55px;
    left: 123px;
    width: 4px;
    height: 85px;
    background-color: #ee3611;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    -webkit-transform-origin: 2px 70px;
    -ms-transform-origin: 2px 70px;
    transform-origin: 2px 70px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-animation: rotate-minute 3600s linear infinite;
    -moz-animation: rotate-minute 3600s linear infinite;
}

.clock-second {
    position: absolute;
    z-index: 4;
    top: 15px;
    left: 124px;
    width: 2px;
    height: 130px;
    background-color: #ffffff;
    opacity: .9;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    -webkit-transform-origin: 1px 110px;
    -ms-transform-origin: 1px 110px;
    transform-origin: 1px 110px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-animation: rotate-second 60s linear infinite;
    -moz-animation: rotate-second 60s linear infinite;
}

.clock-second:after {
    content: "";
    display: block;
    position: absolute;
    left: -3px;
    bottom: 16px;
    width: 8px;
    height: 8px;
    background-color: #a00;
    border: solid 2px #a00;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.clock-center {
    position: absolute;
    z-index: 1;
    width: 150px;
    height: 150px;
    top: 50px;
    left: 50px;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    border-radius: 50%;
}

.clock-center:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin: 65px;
    background-color: #ddd;
    border-radius: 50%;
}

.coming-soon .social-icon-two {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/*** 

====================================================================
  Our Shop
====================================================================

***/


/* Item Sorting */

.shop-section .items-sorting {
    position: relative;
    margin-bottom: 20px;
}

.shop-section .items-sorting .results-column,
.shop-section .items-sorting .select-column {
    margin-bottom: 20px;
}

.shop-section .items-sorting .results-column h6 {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    padding: 13px 0px;
}

.shop-section .items-sorting .form-group {
    margin-bottom: 0px;
}

.shop-section .items-sorting select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 9px 20px 9px;
    height: 50px;
    font-size: 14px;
    border: 1px solid #eeeeee;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    background: url(../images/icons/icon-select.png) right center no-repeat;
    color: #666666;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.shop-section .items-sorting select option {
    text-indent: 15px;
}


/*Shop Item*/


/****** Shop Style *********/

.single-product-item {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 50px;
}

.single-product-item .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0px;
    border: 4px solid #081245;
}

.single-product-item .img-holder::before {
    background: rgba(255, 255, 255, 0.20);
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.single-product-item:hover .img-holder::before {
    opacity: 1;
}

.single-product-item .img-holder a {
    position: relative;
    display: block;
}

.single-product-item .img-holder img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
    width: 100%;
}

.single-product-item:hover .img-holder img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.single-product-item .title-holder {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 22px 0 18px;
    -webkit-box-shadow: 0 2px 27px rgba(54, 54, 54, .13);
    box-shadow: 0 2px 27px rgba(54, 54, 54, .13);
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -30px;
    z-index: 9;
}

.single-product-item .title-holder .static-content {
    position: relative;
    display: block;
}

.single-product-item .title-holder .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    padding: 0 0 3px;
}

.single-product-item .title-holder .title a {
    color: #1b1b1b;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.single-product-item .title-holder .static-content span {
    display: inline-block;
    padding-right: 0px;
    color: #666666;
}

.single-product-item .title-holder .static-content del {
    position: relative;
    display: inline-block;
    color: #c2c2c2;
    font-size: 16px;
    font-weight: 700;
}

.single-product-item .title-holder .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    text-align: center;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -webkit-transition: all 700ms ease 300ms;
    -o-transition: all 700ms ease 300ms;
    transition: all 700ms ease 300ms;
}

.single-product-item:hover .title-holder .overlay-content {
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -webkit-transition: all 700ms ease 100ms;
    -o-transition: all 700ms ease 100ms;
    transition: all 700ms ease 100ms;
}

.single-product-item .title-holder .overlay-content ul {
    position: relative;
    display: block;
    padding: 23px 0 23px;
    width: 153px;
    margin: 0 auto;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 700ms ease 100ms;
    -o-transition: all 700ms ease 100ms;
    transition: all 700ms ease 100ms;
}

.single-product-item:hover .title-holder .overlay-content ul {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 700ms ease 600ms;
    -o-transition: all 700ms ease 600ms;
    transition: all 700ms ease 600ms;
}

.single-product-item .title-holder .overlay-content ul li {
    position: relative;
    display: inline-block;
    float: left;
    width: 51px;
    text-align: center;
    border-right: 1px solid #ededed;
}

.single-product-item .title-holder .overlay-content ul li:last-child {
    border: none;
}

.single-product-item .title-holder .overlay-content ul li a {
    position: relative;
    display: block;
}

.single-product-item .title-holder .overlay-content ul li a span {
    position: relative;
    display: block;
}

.single-product-item .title-holder .overlay-content ul li a span:before {
    position: relative;
    display: block;
    width: 100%;
    height: 45px;
    color: #666666;
    font-size: 18px;
    line-height: 45px;
    margin: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.single-product-item .title-holder .overlay-content ul li a:hover span:before {
    color: #ffffff;
    background: #ff801a;
}

.single-product-item .title-holder .overlay-content ul li a .toltip-content {
    position: absolute;
    left: -50%;
    right: 0;
    top: -25px;
    margin-left: -15px;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    text-align: center;
    background-color: #0a0a0a;
    -webkit-transition: all 300ms ease 100ms;
    -o-transition: all 300ms ease 100ms;
    transition: all 300ms ease 100ms;
    z-index: 999;
    min-width: 130px;
}

.single-product-item .title-holder .overlay-content ul li a .toltip-content:before {
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    bottom: -8px;
    right: 0;
    content: "\f0d7";
    color: #0a0a0a;
    font-size: 25px;
    text-align: center;
    line-height: 10px;
}

.single-product-item .title-holder .overlay-content ul li a .toltip-content p {
    color: #ffffff;
    font-size: 14px;
    line-height: 30px;
    margin: 0;
}

.single-product-item .title-holder .overlay-content ul li a:hover .toltip-content {
    top: -40px;
    visibility: visible;
    opacity: 1;
}

.shop-single-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 90px;
    z-index: 9;
    background-color: #ffffff;
}


/*** 

====================================================================
  Product Details
====================================================================

***/

.product-details .basic-details {
    position: relative;
    margin-bottom: 20px;
}

.product-details .image-column .image-carousel {
    background-color: #eeeeee;
    border-radius: 4px;
}

.product-details .image-column,
.product-details .info-column {
    margin-bottom: 50px;
}

.product-details .info-column .add-to-cart {
    padding: 13px 43px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-right: 10px;
}

.product-details .basic-details .other-options>div {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-details .image-column .image-box img {
    position: relative;
    display: block;
    width: 100%;
}

.product-details .image-column .thumbs-carousel {
    margin-top: 20px;
}

.product-details .image-column .thumbs-carousel li {
    background-color: #f2f2f2;
    text-align: center;
    padding: 0px 0px;
    cursor: pointer;
}

.product-details .image-column .thumbs-carousel li img {
    width: 100%;
    display: inline-block;
}

.product-details .image-column .owl-dots,
.product-details .image-column .owl-nav {
    display: none;
}

.product-details .basic-details .details-header {
    position: relative;
    margin-bottom: 0px;
}

.product-details .basic-details .details-header h2 {
    font-weight: 700;
    margin: 0px 0px;
    line-height: 1.4em;
    color: #222222;
    margin-bottom: 8px;
}

.product-details .basic-details .details-header h2 a {
    color: #333333;
}

.product-details .basic-details .details-header .rating {
    font-size: 16px;
    margin-bottom: 25px;
    display: inline-block;
}

.product-details .basic-details .details-header .rating span {
    color: #081245;
}

.product-details .basic-details .details-header .rating .fa {
    display: inline-block;
    margin-right: 1px;
}

.product-details .basic-details .details-header .rating .fa.light {
    color: #dadada;
}

.product-details .basic-details .details-header .item-price {
    position: relative;
    font-size: 24px;
    font-weight: 400;
    color: #222222;
    line-height: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-details .basic-details .text {
    position: relative;
    color: #666666;
    font-size: 14px;
    line-height: 1.9em;
    margin-bottom: 30px;
}

.product-details .basic-details .availablity {
    position: relative;
    float: left;
    padding-right: 40px;
    line-height: 32px;
    margin-bottom: 27px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #777777;
}

.product-details .basic-details .availablity strong {
    font-size: 14px;
    letter-spacing: 2px;
    color: #11da61;
    font-weight: 600;
    text-transform: uppercase;
}

.product-details .basic-details .item-quantity {
    position: relative;
    float: left;
    width: 120px;
    margin: 10px 0;
    margin-right: 20px;
    border: 1px solid #eae8e8;
    text-align: left;
    direction: ltr;
}

.product-details .basic-details .btns-box {
    position: relative;
}

.product-details .basic-details .quantity-spinner,
.cart-section input.quantity-spinner {
    line-height: 24px;
    padding: 10px 15px !important;
    height: 54px !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.product-details .basic-details .bootstrap-touchspin .input-group-btn-vertical>.btn,
.cart-section .bootstrap-touchspin .input-group-btn-vertical>.btn {
    padding: 13px 10px;
    background: #f4f5f6;
}

.product-details .bootstrap-touchspin .input-group-btn-vertical i,
.cart-section .bootstrap-touchspin .input-group-btn-vertical i {
    top: 1px;
    font-weight: 900;
}

.shop-list {
    position: relative;
    margin-top: 20px;
}

.shop-list li {
    position: relative;
    color: #666666;
    font-size: 14px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.shop-list li strong {
    color: #222222;
    font-size: 16px;
    margin-right: 5px;
    text-transform: uppercase;
}

.shop-list li a {
    position: relative;
    color: #081245;
    font-size: 14px;
    font-weight: 700;
    margin-top: 0px;
    display: inline-block;
    text-transform: uppercase;
}


/*** 

====================================================================
  Product Tabs Style
====================================================================

***/

.shop-page .prod-tabs {
    position: relative;
}

.shop-page .prod-tabs .tab-btns {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.shop-page .prod-tabs .tab-btns .tab-btn {
    position: relative;
    display: block;
    margin-right: 8px;
    font-size: 16px;
    background: none;
    color: #222222;
    border: 1px solid #222222;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    margin-bottom: 12px;
    display: inline-block;
    padding: 12px 40px 10px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.shop-page .prod-tabs .tab-btns .tab-btn:hover,
.shop-page .prod-tabs .tab-btns .tab-btn.active-btn {
    color: #ffffff;
    background: #222222;
    border-color: #222222;
}

.shop-page .prod-tabs .tabs-content {
    position: relative;
}

.shop-page .prod-tabs .tabs-content .tab {
    position: relative;
    display: none;
}

.shop-page .prod-tabs .tabs-content .tab.active-tab {
    display: block;
}

.shop-page .prod-tabs .tabs-content .tab p {
    font-size: 14px;
    line-height: 2em;
    color: #666666;
    margin-bottom: 20px;
}

.shop-page .prod-tabs .tabs-content .tab p:last-child {
    margin-bottom: 0px;
}

.shop-page .prod-tabs .tabs-content .tab h3,
.shop-page .prod-tabs .tabs-content .tab h4,
.shop-page .prod-tabs .tabs-content .tab h5,
.shop-page .prod-tabs .tabs-content .tab h6 {
    margin-bottom: 15px;
}

.shop-page .prod-tabs .tabs-content .tab h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222222;
}

.shop-page .prod-tabs .reviews-container {
    position: relative;
    padding-bottom: 1px;
}

.shop-page .prod-tabs .reviews-container .review-box {
    position: relative;
    margin-bottom: 30px;
    padding-left: 120px;
    min-height: 130px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.shop-page .prod-tabs .reviews-container .review-box:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border: none;
}

.bootstrap-touchspin .input-group-btn-vertical {
    width: auto;
    right: 0px;
    position: absolute;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bootstrap-touchspin .glyphicon-chevron-up:before {
    content: "\f106";
    font-size: 18px;
    font-style: normal;
    font-family: 'Font Awesome 5 Free';
}

.bootstrap-touchspin .glyphicon-chevron-down:before {
    content: "\f107";
    font-size: 18px;
    font-style: normal;
    font-family: 'Font Awesome 5 Free';
}

.shop-page .prod-tabs .reviews-container .rev-thumb {
    position: absolute;
    left: 0px;
    top: 5px;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 3px;
    margin-bottom: 20px;
}

.shop-page .prod-tabs .reviews-container .rev-thumb img {
    display: block;
    width: 100%;
    border-radius: 3px;
}

.shop-page .prod-tabs .reviews-container .rev-content {
    position: relative;
    background: #ffffff;
}

.shop-page .prod-tabs .reviews-container .rev-header {
    position: relative;
}

.shop-page .prod-tabs .reviews-container .rev-header h4 {
    float: left;
    line-height: 30px;
    color: #222222;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.shop-page .prod-tabs .reviews-container .rev-header .rating {
    position: relative;
    float: left;
    margin-left: 40px;
    color: #081245;
    line-height: 30px;
    font-size: 14px;
    margin-bottom: 10px;
}

.shop-page .prod-tabs .reviews-container .rev-header .rating .fa {
    margin-right: 3px;
}

.shop-page .prod-tabs .reviews-container .rev-header .time {
    position: relative;
    float: right;
    color: #000000;
    line-height: 30px;
    font-size: 14px;
}

.shop-page .prod-tabs .reviews-container .rev-option {
    font-size: 14px;
    color: #9e9e9e;
}

.shop-page .prod-tabs .reviews-container .rev-option a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.shop-page .prod-tabs .reviews-container .rev-text {
    font-size: 14px;
    color: #9e9e9e;
    line-height: 1.8em;
    margin-bottom: 15px;
}


/*Add Review*/

.shop-page .prod-tabs .add-review {
    position: relative;
    margin: 30px 0px 20px;
    font-size: 14px;
}

.shop-page .prod-tabs .add-review h2 {
    color: #000000;
}

.shop-page .prod-tabs .add-review .rating {
    position: relative;
    padding-top: 8px;
}

.shop-page .prod-tabs .add-review .rating .rate-box {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    color: #555555;
}

.shop-page .prod-tabs .add-review .rating .rate-box:hover,
.shop-page .prod-tabs .add-review .rating .rate-box:focus,
.shop-page .prod-tabs .add-review .rating .rate-box:active {
    color: #081245;
}

.shop-page .prod-tabs .add-review label {
    position: relative;
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 400;
    color: #303030;
}

.shop-page .prod-tabs .add-review h3 {
    margin-bottom: 20px;
}

.shop-page .prod-tabs .add-review .form-group {
    position: relative;
    margin-bottom: 20px;
}

.shop-page .prod-tabs .add-review .form-group input[type="text"],
.shop-page .prod-tabs .add-review .form-group input[type="password"],
.shop-page .prod-tabs .add-review .form-group input[type="tel"],
.shop-page .prod-tabs .add-review .form-group input[type="email"],
.shop-page .prod-tabs .add-review .form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 22px;
    padding: 9px 15px;
    color: #222222;
    border: 1px solid #e0e0e0;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
}

.shop-page .prod-tabs .add-review .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 22px;
    padding: 8px 15px;
    color: #222222;
    border: 1px solid #e0e0e0;
    height: 150px;
    resize: none;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
}

.shop-page .prod-tabs .add-review button {
    padding: 8px 35px;
}


/*** 

====================================================================
  Cart Section style
====================================================================

***/

.cart-section {
    position: relative;
    z-index: 9;
    background-color: #ffffff;
    padding: 100px 0px 120px;
}

.cart-section .cart-outer {
    position: relative;
}

.cart-section .table-outer {
    position: relative;
    width: 100%;
    overflow-x: auto;
}

.cart-section .cart-table {
    width: 100%;
    min-width: 900px;
    border: 1px solid #eeeeee;
}

.cart-section .cart-table tbody tr {
    border-bottom: 1px solid #eeeeee;
}

.cart-table .cart-header {
    position: relative;
    width: 100%;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0px;
    background: #081245;
    color: #1f1f1f;
}

.cart-table thead tr th {
    line-height: 24px;
    padding: 20px 15px;
    min-width: 120px;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
}

.cart-table thead tr th.prod-column {
    text-align: left;
    padding-left: 40px;
}

.cart-table tbody tr td {
    line-height: 24px;
    padding: 40px 40px 40px;
    min-width: 100px;
}

.cart-table tbody tr .qty {
    width: 90px;
    padding-right: 40px;
    padding-left: 10px;
}

.cart-table tbody tr .qty .quantity-spinner {
    background: #f5f5f5;
}

.cart-table tbody tr .prod-column .column-box {
    position: relative;
    min-height: 100px;
    padding-left: 130px;
    padding-top: 40px;
    text-align: left;
}

.column.default-column .cart-table tbody tr .qty {
    width: 110px;
    padding-right: 20px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb {
    position: absolute;
    width: 100px;
    left: 0px;
    top: 0px;
}

.cart-table tbody tr .prod-column .column-box .prod-thumb img {
    display: block;
    max-width: 100%;
}

.cart-table tbody tr .prod-column .column-box h6 {
    color: #222222;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-table tbody tr .sub-total {
    font-weight: 400;
    color: #222222;
    font-size: 18px;
    padding-left: 20px;
}

.cart-table tbody tr .remove-btn {
    position: relative;
    font-size: 18px;
    color: #081245;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cart-table tbody tr .remove-btn .fa {
    position: relative;
    top: 2px;
    font-size: 16px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: #222222;
    text-align: center;
    overflow: hidden;
}

.cart-table tbody tr .remove {}

.cart-table tbody tr .remove-btn:hover {}

.cart-table tbody tr .remove-btn:hover .fa {
    color: #fa9928;
}

.cart-table tbody tr td {
    vertical-align: middle;
}

.cart-table tbody tr td.price {
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    padding-left: 10px;
}

.cart-table tbody tr td .quantity-spinner {
    padding: 5px 0px 5px 20px;
    line-height: 24px;
    height: 34px;
    display: block;
    width: 100%;
    position: relative;
}

.cart-table tbody .available-info {
    position: relative;
    padding-left: 50px;
    color: #727272;
    font-size: 16px;
}

.cart-table tbody .available-info .icon {
    position: absolute;
    left: 0px;
    top: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    background: #3e4494;
    border-radius: 50%;
}

.cart-section .coupon-outer {
    position: relative;
    margin: 40px 0px 50px;
}

.cart-section .coupon-outer .cart-btn {
    font-size: 14px;
    padding: 14px 43px;
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cart-section .apply-coupon {
    position: relative;
}

.cart-section .apply-coupon .form-group {
    position: relative;
    float: left;
    margin-right: 20px;
}

.cart-section .apply-coupon .form-group .coupon-btn {
    padding: 11px 28px;
    line-height: 30px;
    cursor: pointer;
}

.cart-section .apply-coupon .form-group input[type="text"] {
    display: block;
    line-height: 26px;
    padding: 12px 0px;
    border-bottom: 2px solid #081245;
    height: 54px;
    width: 230px;
    background: none;
    font-size: 14px;
}

.cart-section .estimate-form {
    position: relative;
}

.cart-section .sec-title {
    margin-bottom: 25px;
}

.cart-section .sec-title h2 {
    font-size: 26px;
    color: #222222;
}

.cart-section .estimate-form .row {
    margin-left: -7px;
    margin-right: -7px;
}

.cart-section .estimate-form .row .form-group {
    padding: 0px 7px !important;
    margin-bottom: 30px;
}

.cart-section .cart-note {
    position: relative;
    margin-bottom: 50px;
    padding: 16px 20px;
    text-align: center;
    border: 1px dashed #b2dd4c;
    background: #f4f4f4;
    line-height: 1.7em;
}

.product-details .basic-details .item-quantity input[type="text"],
.cart-table tbody tr .qty input[type="text"] {
    position: relative;
    line-height: 46px;
    height: 46px;
    background: #f4f4f4;
}

.bootstrap-touchspin .input-group-btn-vertical>.btn {
    height: 27px;
    line-height: 25px;
    width: 25px;
    padding: 0 !important;
    background: #e9e9e9;
}

.bootstrap-touchspin .input-group-btn-vertical i {
    left: 6px;
    top: 6px;
}

.cart-total-box {
    position: relative;
    max-width: 490px;
    margin-bottom: 40px;
    padding: 40px 40px 30px;
    background-color: #f4f4f4;
}

.cart-total-box h4 {
    position: relative;
    color: #222222;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 25px;
}

.totals-table {
    position: relative;
}

.totals-table li {
    position: relative;
    color: #222222;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px;
}

.totals-table li .col {
    float: right;
    width: auto;
}

.totals-table li .col-title {
    font-weight: 600;
    float: left;
}

.totals-table li.total {
    margin-top: 25px;
    padding-top: 30px;
    border-top: 1px solid #cccccc;
}

.checkout-btn {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding: 17px 43px 14px;
    cursor: pointer;
    background-color: #081245;
}


/*** 

====================================================================
  Checkout Page
====================================================================

***/

.checkout-page {
    position: relative;
    z-index: 9;
    background-color: #ffffff;
    padding: 100px 0px 80px;
}

.checkout-page .default-links {
    position: relative;
    margin-bottom: 40px;
}

.checkout-page .default-links li {
    margin-bottom: 15px;
    line-height: 24px;
    padding: 18px 28px;
    background: #f9f9f9;
    color: #797979;
    font-size: 17px;
    font-weight: 600;
    border: 1px solid #ebebeb;
}

.checkout-page .default-links li a {
    color: #081245;
    text-decoration: underline;
}

.shop-form .billing-inner {
    position: relative;
    padding-right: 100px;
}

.shop-form .sec-title h2 {
    font-size: 24px;
}

.shop-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.billing-details .shop-form .sec-title {
    margin-bottom: 20px;
}

.billing-details .shop-form .form-group.sec-title {
    margin-bottom: 10px;
    padding-bottom: 30px;
    margin-top: 20px;
}

.shop-form .form-group .field-label {
    display: block;
    line-height: 24px;
    margin-bottom: 8px;
    color: #797979;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.shop-form .form-group .field-label sup {
    position: relative;
    top: 0px;
    color: #797979;
    font-size: 16px;
}

.shop-form input[type="text"],
.shop-form input[type="email"],
.shop-form input[type="password"],
.shop-form input[type="tel"],
.shop-form input[type="number"],
.shop-form input[type="url"],
.shop-form select,
.shop-form textarea {
    position: relative;
    display: block;
    width: 100%;
    background: #ffffff;
    line-height: 16px;
    padding: 10px 15px;
    height: 50px;
    border: 1px solid #eeeeee;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
}

.shop-form input.address-two {
    margin-top: 12px;
}

.shop-form input::-webkit-input-placeholder,
.shop-form select::-webkit-input-placeholder,
.shop-form textarea-webkit-input-placeholder {
    color: #c6c6c6;
}

.shop-form select {
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    background: #ffffff url(../images/icons/icon-select.png) right center no-repeat;
    cursor: pointer;
}

.shop-form select option {
    text-indent: 15px;
}

.shop-form textarea {
    resize: none;
    height: 100px !important;
    overflow: hidden;
}

.shop-form input:focus,
.shop-form select:focus,
.shop-form textarea:focus {
    border-color: #081245;
}


/* Shop Order Box */

.shop-order-box {
    position: relative;
    padding: 20px 28px 50px;
    border: 1px solid #d9d9d9;
    background-color: #fdfdfd;
}

.shop-order-box .order-list {
    position: relative;
}

.shop-order-box .order-list li {
    position: relative;
    color: #797979;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
}

.shop-order-box .order-list li span {
    float: right;
    width: 35%;
    text-align: left;
    font-size: 17px;
    text-transform: capitalize;
}

.shop-order-box .order-list li span.dark {
    color: #242424;
}

.shop-order-box .order-list li.total {
    padding: 8px 0px;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.payment-options {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

.checkout-page .payment-options li {
    position: relative;
    margin-bottom: 15px;
}

.checkout-page .payment-options li .radio-option {
    position: relative;
}

.checkout-page .payment-options li .radio-option label {
    position: relative;
    display: block;
    padding-left: 30px;
    font-weight: 600 !important;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #797979;
    cursor: pointer;
    font-size: 15px;
}

.checkout-page .payment-options li .radio-option label strong {
    font-weight: 500;
    display: inline-block;
    color: #797979;
    font-size: 15px;
}

.checkout-page .payment-options li .radio-option input[type="radio"] {
    position: absolute;
    left: 0px;
    top: 7px;
}

.checkout-page .payment-options li .radio-option #payment-3 {
    top: 9px;
}

.checkout-page .payment-options li .what-paypall {
    font-size: 13px;
    font-weight: 500;
    margin-left: 15px;
    color: #4349d9;
}

.checkout-page .payment-options li .radio-option label .small-text {
    position: relative;
    display: none;
    padding: 18px 26px;
    letter-spacing: 0px;
    text-transform: none;
    font-weight: normal;
    font-size: 15px;
    color: #8e8d8d;
    border-radius: 4px;
    line-height: 20px;
    line-height: 1.8em;
    margin-top: 20px;
    margin-left: -30px;
    background-color: #ececec;
}

.checkout-page .payment-options li .radio-option label .small-text:before {
    position: absolute;
    content: '';
    left: 24px;
    top: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #ececec;
}

.checkout-page .payment-options li .radio-option input[type="radio"]:checked+label .small-text {
    display: block;
}

.checkout-page .payment-options li .radio-option label img {
    position: relative;
    top: -3px;
    display: inline-block;
    max-width: 100%;
    padding-left: 30px;
}

.checkout-page .payment-options li .radio-option label img {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding-left: 30px;
}


/*** 

====================================================================
  Login / Register Section
====================================================================

***/

.register-section {
    position: relative;
    z-index: 9;
    background-color: #ffffff;
    padding: 60px 0px 40px;
}

.register-section .form-column {
    margin-bottom: 40px;
}

.register-section .form-column .sec-title {
    position: relative;
    margin-bottom: 30px;
}

.register-section .form-column .sec-title h2 {}

.styled-form {
    position: relative;
}

.styled-form .submit-text {
    font-size: 15px;
    color: #9e9e9e;
    font-weight: 400;
    margin-top: 10px;
}

.styled-form .form-group {
    position: relative;
    margin-bottom: 30px;
    font-size: 14px;
    color: #848484;
}

.checkout-section .styled-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.styled-form .form-group .check-box {
    line-height: 24px;
    font-size: 15px;
    font-weight: normal;
    padding-top: 5px;
    color: #272727;
}

.styled-form .form-group .check-box label {
    position: relative;
    top: -1px;
    font-weight: normal;
    padding: 0px;
    font-size: 15px;
    cursor: pointer;
}

.styled-form .pull-left label,
.styled-form .pull-right label {
    cursor: pointer;
}

.styled-form .form-group .adon-icon {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 15px;
    color: #999999;
    z-index: 2;
}

.styled-form .form-group .field-label {
    display: block;
    color: #272727;
    text-transform: capitalize;
    font-size: 16px;
    margin-bottom: 7px;
    font-weight: 400;
}

.styled-form input[type="text"],
.styled-form input[type="email"],
.styled-form input[type="password"],
.styled-form input[type="tel"],
.styled-form input[type="number"],
.styled-form input[type="url"],
.styled-form select,
.styled-form textarea {
    position: relative;
    display: block;
    width: 100%;
    background: #ffffff;
    line-height: 30px;
    padding: 8px 20px;
    height: 50px;
    border: 1px solid #f4f4f4;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
}

.checkout-section .styled-form input[type="text"],
.checkout-section .styled-form input[type="email"],
.checkout-section .styled-form input[type="password"],
.checkout-section .styled-form select {
    line-height: 26px;
    height: 44px;
}

.styled-form select {
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    background: #ffffff url(../images/icons/icon-select.png) right center no-repeat;
    cursor: pointer;
}

.styled-form select option {
    text-indent: 20px;
}

.styled-form textarea {
    resize: none;
    height: 110px;
}

.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
    border-color: #081245;
}

.styled-form .form-group .theme-btn {
    min-width: 150px;
    text-align: center;
    padding: 10px 34px;
    line-height: 20px;
    border-radius: 0px;
    cursor: pointer;
}

.styled-form .remember-me {
    position: relative;
    color: #222222;
    font-size: 16px;
    font-weight: 500;
}

.social-links-two a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    color: #ffffff;
    background: #fc721e;
    margin: 0px 0px 0px 5px;
    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;
}

.social-links-two a:hover {
    opacity: 0.80;
}

.social-links-two .facebook {
    background: #3b5998;
}

.social-links-two .twitter {
    background: #33ccfe;
}

.social-links-two .google-plus {
    background: #dd4b39;
}


/***

==================================================================
    Right To Left Style
==================================================================

***/

.rtl .contact-section .contact-info-box ul,
.rtl .styled-pagination,
.rtl .owl-carousel {
    direction: ltr !important;
}

.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .main-slider {
    direction: ltr;
    text-align: left;
}

.rtl .main-header .main-box:before,
.rtl .contact-list-one li i {
    left: auto;
    right: 0;
}

.rtl .header-top .top-left {
    padding-left: 0;
    padding-right: 20px;
}

.rtl .header-top .top-right {
    padding-left: 0;
    padding-right: 70px;
}

.rtl .main-header .logo-box {
    margin-right: 0;
    margin-left: 70px;
    border-radius: 10px 10px 40px 0;
}

.rtl .main-header .main-box,
.rtl .main-header .main-box:before {
    border-radius: 10px 10px 40px 0;
}

.rtl .social-icon-one li {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .contact-list-one li {
    text-align: right;
    padding-left: 0;
    padding-right: 55px;
    margin-left: 60px;
    margin-right: 0;
}

.rtl .hidden-bar .contact-list-one li {
    padding-right: 50px;
    padding-left: 0;
    margin-left: 0;
}

.rtl .nav-toggler {
    margin-left: 0;
}

.rtl .btn-style-one i {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .main-header .theme-btn {
    margin-left: 0;
    margin-right: 30px;
}

.rtl .main-menu .navigation>li {
    margin-right: 0;
    margin-left: 40px;
}

.rtl .main-menu {
    float: right;
}

.rtl .main-menu .navigation>li>ul {
    left: auto;
    right: 0;
    text-align: right;
}

.rtl .main-menu .navigation>li.dropdown:hover>ul {
    left: auto;
    right: 0px;
}

.rtl .main-menu .navigation>li>ul>li:hover>a {
    padding-left: 18px;
    padding-right: 30px;
}

.rtl .main-menu .navigation>li.dropdown>a:after {
    right: auto;
    left: -14px;
}

.rtl .main-menu .navigation>li>ul>li>a:before {
    right: auto;
    left: 10px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rtl .main-menu .navigation>li>ul>li.dropdown>a:after {
    right: auto;
    left: 15px;
}

.rtl .main-menu .navigation>li>ul>li>ul {
    left: auto;
    right: 100%;
}

.rtl .about-section .image-3 {
    left: auto;
    right: -50px;
}

.rtl .about-section .image-2 {
    right: auto;
    left: 0;
}

.rtl .about-section .image-1 {
    margin-left: 0;
    margin-right: -80px;
}

.rtl .about-section .about-image-wrapper .play-btn {
    left: auto;
    right: 50%;
    margin-right: -20px;
    margin-left: 0;
}

.rtl .fact-counter .counter-column .inner-box {
    padding-left: 0;
    padding-right: 130px;
}

.rtl .fact-counter .counter-column .count-box {
    left: auto;
    right: 0;
}

.rtl .fact-counter .counter-column .icon:before {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.rtl .speaker-block .social-links {
    right: auto;
    left: 30px;
}

.rtl .speaker-block .plus-icon {
    right: auto;
    left: 25px;
}

.rtl .speaker-block .image-box {
    padding: 17px 0px 0 22px;
}

.rtl .speaker-block .image-box:before {
    right: 40px;
    left: 0px;
}

.rtl .schedule-tabs .tab-buttons li .date-box {
    padding-left: 0;
    padding-right: 65px;
}

.rtl .schedule-tabs .tab-buttons li .date {
    left: auto;
    right: 0;
}

.rtl .pricing-block .features li {
    padding-left: 0;
    padding-right: 30px;
}

.rtl .pricing-block .features li:before {
    left: auto;
    right: 0;
}

.rtl .news-block .author .thumb {
    margin-left: 15px;
    margin-right: 0;
}

.rtl .news-block .author .name {
    margin-right: 0;
    margin-left: auto;
}

.rtl .news-block .post-info li {
    margin-right: 0;
    margin-left: 25px;
}

.rtl .news-block .post-info li span {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .header-style-two .header-top .inner-container {
    padding-left: 0;
    padding-right: 270px;
}

.rtl .header-style-two .header-top .top-left {
    padding-left: 20px;
    padding-right: 0;
}

.rtl .contact-list-two li {
    margin-right: 0;
    margin-left: 60px;
}

.rtl .header-style-two .logo-box {
    border-radius: 0;
}

.rtl .header-style-two .nav-toggler {
    margin-left: 0;
    margin-right: 30px;
}

.rtl .event-search-form form {
    padding-right: 0;
    padding-left: 255px;
}

.rtl .event-search-form .btn-box {
    right: auto;
    left: 0;
}

.rtl .event-search-form .ui-selectmenu-button.ui-button,
.rtl .event-search-form .form-group input,
.rtl .event-search-form .form-group select,
.rtl .event-search-form .form-group textarea {
    padding-left: 0;
    padding-right: 45px;
}

.rtl .event-search-form .icon {
    left: auto;
    right: 0;
}

.rtl .ui-selectmenu-text {
    margin-right: 0;
    margin-left: 20px;
    text-align: right;
}

.rtl .ui-button .ui-icon {
    display: none;
}

.rtl .about-section-two .fact-counter-two {
    margin-left: 0;
    margin-right: 100px;
}

.rtl .video-box-one {
    margin-left: 0;
    margin-right: -90px;
}

.rtl .about-section-two .video-box-outer {
    padding-right: 50px;
    padding-left: 70px;
}

.rtl .feature-block-three {
    margin-left: 0;
    margin-right: 100px;
}

.rtl .speaker-block-two .plus-icon {
    left: auto;
    right: 20px;
}

.rtl .speaker-block-two .social-links {
    left: auto;
    right: 25px;
}

.rtl .speaker-block-two .image-box:before {
    right: auto;
    left: 0px;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.rtl .schedule-block-two .date-box {
    padding-right: 90px;
    padding-left: 20px;
}

.rtl .schedule-block-two .date-box .count {
    left: auto;
    right: 20px;
}

.rtl .schedule-block-two .speaker-info {
    padding-right: 95px;
    padding-left: 0;
}

.rtl .schedule-block-two .speaker-info .thumb {
    left: auto;
    right: 0;
}

.rtl .pricing-block-two .title-box:before {
    left: auto;
    right: -50px;
}

.rtl .pricing-block-two .price-box:before {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.rtl .testimonial-block .info-box .thumb,
.rtl .pricing-block-two .features li:before {
    left: auto;
    right: 0;
}

.rtl .pricing-block-two .features li {
    padding-left: 0;
    padding-right: 30px;
}

.rtl .testimonial-block .info-box {
    padding-left: 0;
    padding-right: 125px;
}

.rtl .testimonial-carousel .testimonial-block .info-box .rating {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.rtl .testimonial-block .text-box:after {
    left: auto;
    right: 25px;
}

.rtl .news-block.style-three .lower-content {
    padding-left: 0;
    padding-right: 30px;
}

.rtl .news-block .author .likes {
    margin-left: 0;
    margin-right: 25px;
}

.rtl .news-block .author .likes span {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .user-links li a:before,
.rtl .main-footer .footer-column .widget-title:before {
    left: auto;
    right: 0;
}

.rtl .user-links li a:before {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.rtl .user-links li a {
    padding-left: 0;
    padding-right: 20px;
}

.rtl .contact-list-three li {
    padding-left: 0;
    padding-right: 60px;
}

.rtl .contact-list-three li .icon {
    left: auto;
    right: 0;
}

.rtl .header-top-two .inner-container {
    padding-left: 0;
    padding-right: 250px;
}

.rtl .header-top-two .inner-container:before {
    left: -15px;
    right: -45px;
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
}

.rtl .header-top-two .top-right {
    padding-right: 0;
    padding-left: 30px;
}

.rtl .contact-list-four li {
    padding-left: 0;
    padding-right: 55px;
    margin-left: 60px;
    margin-right: 0;
}

.rtl .contact-list-four li i {
    left: auto;
    right: 0;
}

.rtl .header-style-three .header-lower .logo-box {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: -30px;
}

.rtl .header-style-three .header-lower .logo-box:before {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
}

.rtl .header-style-three .header-lower .social-icon-four {
    margin-right: 0;
    margin-left: 55px;
}

.rtl .social-icon-four:before {
    left: -20px;
    right: -55px;
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
}

.rtl .header-style-three .header-lower .main-menu {
    padding-left: 0;
    padding-right: 20px;
    margin-right: auto;
    margin-left: 0;
}

.rtl .header-style-three .header-lower .main-menu:before {
    right: -15px;
    left: 30px;
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    border-radius: 30px 0 0 30px;
}

.rtl .header-style-three .header-lower .main-menu .navigation>li {
    margin-right: 0;
    margin-left: 40px;
}

.rtl .info-list-two li {
    padding-left: 0;
    padding-right: 50px;
    margin-right: 0;
    margin-left: 50px;
}

.rtl .info-list-two li i {
    left: auto;
    right: 0;
}

.rtl .banner-section-two .content-box .info-list-two {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.rtl .banner-section-two .theme-btn {
    margin-right: 0;
    margin-left: 30px;
}

.rtl .time-countdown-two .counter-column {
    padding-right: 0;
    margin-right: 0;
    padding-left: 50px;
    margin-left: 50px;
}

.rtl .time-countdown-two .counter-column:last-child {
    padding-left: 0;
    margin-left: 0;
}

.rtl .time-countdown-two .counter-column:before {
    right: auto;
    left: -5px;
}

.rtl .about-section-three .info-box {
    right: auto;
    left: 50px;
}

.rtl .about-section-three .info-box:before {
    left: auto;
    right: -30px;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.rtl .about-section-three .image-1:before {
    left: auto;
    right: 0;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.rtl .about-section-three .image-2 {
    right: auto;
    left: 0;
}

.rtl .feature-block-four .inner-box {
    padding-left: 0;
    padding-right: 70px;
}

.rtl .feature-block-five .inner-box h4:before,
.rtl .feature-block-four .icon-box {
    left: auto;
    right: 0;
}

.rtl .about-section-three .about-image-wrapper {
    margin-right: 0;
    margin-left: 30px;
}

.rtl .schedule-tabs .tab-buttons.style-two li:first-child {
    border-radius: 0 100px 100px 0;
}

.rtl .schedule-tabs .tab-buttons.style-two li:last-child {
    border-radius: 100px 0 0 100px;
}

.rtl .schedule-section .schedule-timeline {
    direction: ltr;
}

.rtl .accordion-box .block .acc-btn {
    padding-left: 30px;
    padding-right: 90px;
}

.rtl .accordion-box .block .acc-btn .icon {
    left: auto;
    right: 0;
}

.rtl .news-block.style-four .author {
    padding-right: 0;
    padding-left: 10px;
    border-radius: 10px 30px 30px 10px;
}

.rtl .newsletter-form-two .form-group {
    padding-right: 0;
    padding-left: 170px;
}

.rtl .newsletter-form-two .form-group .theme-btn {
    right: auto;
    left: 15px;
}

.rtl .feature-block-five .theme-btn i {
    margin-left: 0;
    margin-right: 10px;
}

.rtl .page-breadcrumb li:after {
    right: auto;
    left: -5px;
}

.rtl .time-counter .time-countdown-two .counter-column {
    padding: 0;
}

.rtl .coming-soon .emailed-form .form-group input[type="submit"],
.rtl .coming-soon .emailed-form button {
    right: auto;
    left: 0;
}

.rtl .coming-soon .emailed-form .form-group input[type="text"],
.rtl .coming-soon .emailed-form .form-group input[type="tel"],
.rtl .coming-soon .emailed-form .form-group input[type="email"],
.rtl .coming-soon .emailed-form .form-group textarea {
    padding-left: 50px;
    padding-right: 20px;
}

.rtl .schedule-detail .speaker-info {
    padding-left: 0;
    padding-right: 125px;
}

.rtl .checkout-page .payment-options li .radio-option input[type="radio"],
.rtl .sidebar .popular-posts .post .post-thumb,
.rtl .blog-categories li:before,
.rtl .list-style-one li:before,
.rtl .sidebar-title:before,
.rtl .schedule-detail .upper-info .icon,
.rtl .schedule-detail .speaker-info .thumb {
    left: auto;
    right: 0;
}

.rtl .schedule-detail .upper-info li {
    padding-left: 0;
    padding-right: 30px;
    margin-right: 0;
    margin-left: 20px;
}

.rtl .list-style-one li {
    padding-left: 0;
    padding-right: 30px;
}

.rtl .sidebar .search-box .form-group button {
    right: auto;
    left: 0;
}

.rtl .blog-categories li {
    padding-left: 0;
    padding-right: 20px;
}

.rtl .sidebar .popular-posts .post .post-inner {
    padding-left: 0;
    padding-right: 130px;
}

.rtl .sidebar .popular-posts .post-info i {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .sidebar .popular-tags a {
    float: right;
}

.rtl .product-details .basic-details .item-quantity {
    margin-right: 0;
    margin-left: 20px;
}

.rtl .shop-list li strong {
    margin-right: 0px;
    margin-left: 5px;
}

.rtl .shop-page .prod-tabs .reviews-container .review-box {
    padding-left: 0;
    padding-right: 120px;
}

.rtl .shop-page .prod-tabs .reviews-container .rev-thumb {
    left: auto;
    right: 0;
}

.rtl .shop-page .prod-tabs .reviews-container .rev-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rtl .shop-page .prod-tabs .reviews-container .rev-header .rating {
    margin-left: 0;
    margin-right: 40px;
}

.rtl .shop-page .prod-tabs .reviews-container .rev-header .time {
    margin-right: auto;
}

.rtl .cart-section .table-outer {
    direction: ltr;
    text-align: center;
}

.rtl .shop-form .billing-inner {
    padding-right: 0;
    padding-left: 100px;
}

.rtl .shop-order-box .order-list li {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rtl .checkout-page .payment-options li .radio-option label {
    padding-left: 0;
    padding-right: 30px;
}

.rtl .checkout-page .payment-options li .radio-option label img {
    padding-left: 0;
    padding-right: 30px;
}

.rtl .styled-form .form-group .adon-icon {
    right: auto;
    left: 10px;
}

.rtl .sidebar-page-container .news-block.style-four .tag {
    right: auto;
    left: 30px;
}

.rtl .post-share-options .tags li .title {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .author-box .social-links {
    right: auto;
    left: 40px;
}

.rtl .author-box .inner-box:before {
    left: 0;
    right: 85px;
}

.rtl .author-box .thumb {
    left: auto;
    right: 0;
}

.rtl .author-box .inner-box {
    padding-right: 200px;
    padding-left: 40px;
}

.rtl .comments-area .comment {
    padding-left: 0;
    padding-right: 150px;
}

.rtl .comments-area .comment-box .author-thumb {
    left: auto;
    right: 0;
}

.rtl .map-section .contact-info li {
    padding-left: 0;
    padding-right: 90px;
}

.rtl .map-section .contact-info li .icon {
    left: auto;
    right: 0;
}

.rtl .checkout-page .payment-options li .radio-option label .small-text {
    margin-left: 0;
    margin-right: -30px;
}

.rtl .mobile-nav-toggler {
    margin-left: 0;
    margin-right: 20px;
}

.rtl .date-box-one.bg_yellow {
    margin-left: 0;
    margin-right: -30px;
}

.rtl .mobile-menu .navigation li.dropdown .dropdown-btn {
    right: auto;
    left: 0;
}

.rtl .mobile-menu .nav-logo {
    text-align: right;
}

.rtl .mobile-menu .contact-list-one li {
    padding-right: 45px;
}

.rtl .checkout-page .payment-options li .radio-option label .small-text:before {
    left: auto;
    right: 24px;
}

.rtl .header-style-two .header-top .top-right {
    padding: 0;
}

.rtl .search-popup .form-group input[type="submit"],
.rtl .search-popup .form-group button {
    right: auto;
    left: 0;
}

.rtl .comments-area .comment-box.reply-comment {
    margin-left: 0;
    margin-right: 100px;
}

.rtl .main-menu .navigation > li > .mega-menu,
.rtl .main-menu .navigation > li .mega-menu-bar .column > ul > li > a{
    text-align: right;
}

/*** 

====================================================================
    Box Layout
====================================================================

***/

.box-layout .page-wrapper{
    max-width: 1280px;
    margin: 0 auto;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.10);
}

.box-layout .main-header{
    max-width: 1280px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.box-layout{
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    background-image: url(../images/icons/boxed-bg.png);
}

.box-layout .coming-soon{
    position: relative;
}

.cd{
	    font-family: 'Kurale', serif;
        padding-bottom: 10px;
        font-size: 22px;
        color: #081245; 
	     
	 }
	 
	 .rd{
          font-family: 'Kurale', serif;
          font-size: 18px;
          font-weight: 500;
          color: #000!important;
          text-align: right;
          display:block;cursor: pointer;
         }
         .ds{display:none;}
         
         
         
       



.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px; } }

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%; }

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%; }

.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%; }

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%; }

.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .order-sm-last {
    order: 13; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .order-sm-11 {
    order: 11; }
  .order-sm-12 {
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .order-md-last {
    order: 13; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .order-md-11 {
    order: 11; }
  .order-md-12 {
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .order-lg-last {
    order: 13; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .order-lg-11 {
    order: 11; }
  .order-lg-12 {
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    order: -1; }
  .order-xl-last {
    order: 13; }
  .order-xl-0 {
    order: 0; }
  .order-xl-1 {
    order: 1; }
  .order-xl-2 {
    order: 2; }
  .order-xl-3 {
    order: 3; }
  .order-xl-4 {
    order: 4; }
  .order-xl-5 {
    order: 5; }
  .order-xl-6 {
    order: 6; }
  .order-xl-7 {
    order: 7; }
  .order-xl-8 {
    order: 8; }
  .order-xl-9 {
    order: 9; }
  .order-xl-10 {
    order: 10; }
  .order-xl-11 {
    order: 11; }
  .order-xl-12 {
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529; }
  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6; }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6; }
  .table tbody + tbody {
    border-top: 2px solid #dee2e6; }





@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; } }

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }
  .embed-responsive::before {
    display: block;
    content: ""; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9::before {
  padding-top: 42.85714%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.embed-responsive-21by9::before {
  padding-top: 42.85714%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-none {
  float: none !important; }

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal; }

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.shadow-none {
  box-shadow: none !important; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.w-auto {
  width: auto !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.min-vw-100 {
  min-width: 100vw !important; }

.min-vh-100 {
  min-height: 100vh !important; }

.vw-100 {
  width: 100vw !important; }

.vh-100 {
  height: 100vh !important; }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0); }

.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

.m-n2 {
  margin: -0.5rem !important; }

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important; }

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important; }

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important; }

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important; }

.m-n3 {
  margin: -1rem !important; }

.mt-n3,
.my-n3 {
  margin-top: -1rem !important; }

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important; }

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important; }

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important; }

.m-n4 {
  margin: -1.5rem !important; }

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important; }

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important; }

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important; }

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important; }

.m-n5 {
  margin: -3rem !important; }

.mt-n5,
.my-n5 {
  margin-top: -3rem !important; }

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important; }

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important; }

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

.mr-auto,
.mx-auto {
  margin-right: auto !important; }

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

.ml-auto,
.mx-auto {
  margin-left: auto !important; }

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important; }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important; } }

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }

.text-justify {
  text-align: justify !important; }

.text-wrap {
  white-space: normal !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-light {
  font-weight: 300 !important; }

.font-weight-lighter {
  font-weight: lighter !important; }

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-bold {
  font-weight: 700 !important; }

.font-weight-bolder {
  font-weight: bolder !important; }

.font-italic {
  font-style: italic !important; }

.text-white {
  color: #fff !important; }

.text-primary {
  color: #3f51b5 !important; }

a.text-primary:hover, a.text-primary:focus {
  color: #2b387c !important; }

.text-secondary {
  color: #0077f0 !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #aa1145 !important; }

.text-success {
  color: #28a745 !important; }

a.text-success:hover, a.text-success:focus {
  color: #19692c !important; }

.text-info {
  color: #17a2b8 !important; }

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important; }

.text-warning {
  color: #ffc107 !important; }

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important; }

.text-danger {
  color: #dc3545 !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important; }

.text-light {
  color: #f8f9fa !important; }

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important; }

.text-dark {
  color: #343a40 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important; }

.text-body {
  color: #212529 !important; }

.text-muted {
  color: #6c757d !important; }

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.text-decoration-none {
  text-decoration: none !important; }

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important; }

.text-reset {
  color: inherit !important; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important; }
  a:not(.btn) {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  @page {
    size: a3; }
  body {
    min-width: 992px !important; }
  .container {
    min-width: 992px !important; }
  .navbar {
    display: none; }
  .badge {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important; }
  .table-dark {
    color: inherit; }
    .table-dark th,
    .table-dark td,
    .table-dark thead th,
    .table-dark tbody + tbody {
      border-color: #dee2e6; }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6; } }

:root {
  --theme-color: #3f51b5;
  --secondary-color: #0077f0;
  --opposite-color: #0077f0;
  --text-color: #585858;
  --title-color: #1A1D2D;
  --white-color: #ffffff;
  --light-bg-color: #f6f6f6; }

html {
  scroll-behavior: smooth; }

.noscroll {
  overflow: hidden;
  height: 100vh; }

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Muli',sans-serif;
    font-size: 14px;}

* {
  box-sizing: border-box; }

.clear {
  clear: both; }

.img-responsive {
  max-width: 100%;
  display: block; }

.d-grid {
  display: grid; }

.d-flex {
  display: flex;
  display: -webkit-flex; }

button,
input,
select {
  outline: none;
  font-family: 'Karla', sans-serif; }

button,
.btn,
select {
  cursor: pointer;
  font-family: 'Karla', sans-serif; }

a,
a:hover {
  text-decoration: none; }

iframe {
  border: none; }

ul {
  margin: 0;
  padding: 0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-family: 'Karla', sans-serif; }

p {
  margin: 0;
  padding: 0; }

span.diff {
  color: var(--secondary-color); }

.btn-theme {
  padding: 12px 30px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s ease-in;
  border: 0; }

.btn-theme:hover {
  background: var(--theme-color);
  outline: none; }

.btn-secondary:focus, .btn-secondary.focus {
  background-color: none !important;
  border-color: none !important;
  box-shadow: none !important; }

.btn-theme1 {
  padding: 8px 16px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s ease-in;
  border: 0; }

.btn-theme1:hover {
  background: var(--theme-color);
  outline: none; }

.btn-secondary:focus, .btn-secondary.focus {
  background-color: none !important;
  border-color: none !important;
  box-shadow: none !important; }

.btn-theme1:focus {
  border-color: none !important; }

.btn-theme2 {
  padding: 10px 30px;
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
  transition: 0.3s ease-in;
  border: 2px solid #000;
  background: #000; font-family:'Muli',sans-serif;}

.btn-theme2:hover {
  background: #eb7e26;
  border: 2px solid #eb7e26;
  color: #fff; }

.btn-theme2:focus {
  border-color: none !important; }

.btn-theme3 {
  padding: 12px 30px;
  background: var(--theme-color);
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s ease-in;
  border: 0; }

.btn-theme3:hover {
  background: var(--opposite-color);
  outline: none;
  color: #fff; }

.btn-theme3:focus {
  border-color: none !important; }

a.read {
  font-size: 16px;
  font-weight: 700;
  color: var(--opposite-color); }

a.read:hover {
  color: var(--theme-color); }

.heading {
  max-width: 750px; }

.heading h3 {
  font-size: 31px;
  line-height: 40px;
  color: #081245;
  font-weight: 700; 
  font-family: 'Kurale', serif;
  }

.heading p {
  color: #757373;
    font-size: 14px;
    line-height: 14px;}

h4.sub-title {
  font-size: 18px;
  margin: 0;
  text-align: center; }




@media (max-width: 569px) {
  .w3l-bootstrap-header nav.navbar {
    padding: 0 15px; } }

@media (max-width: 320px) {
  .w3l-bootstrap-header a.navbar-brand {
    font-size: 28px; }
  .w3l-bootstrap-header .navbar-brand {
    margin-right: 0rem; } }

.w3l-header-4 .button span.fa {
  color: var(--icon-color); }

.w3l-header-4 a.brand-logo span.fa {
  color: var(--opposite-color); }

.w3l-header-4 #headers4-block {
  margin: 0px auto; }




@media (max-width: 800px) {
  .w3l-header-4 .logo,
  .w3l-header-4 .button {
    z-index: 9; }
  .w3l-header-4 a.actionbg {
    width: 90px;
    height: 35px;
    line-height: 35px; }
  .w3l-header-4 .button {
    right: 8em; } }

@media (max-width: 768px) {
  .w3l-header-4 .button {
    right: 7em; } }

@media (max-width: 736px) {
  .w3l-header-4 .button {
    right: 12em; } }

@media (max-width: 668px) {
  .w3l-header-4 .button {
    right: 10em; } }

@media (max-width: 641px) {
  .w3l-header-4 .button {
    right: 9em; } }

@media (max-width: 601px) {
  .w3l-header-4 .button {
    right: 8em; } }

@media (max-width: 569px) {
  .w3l-header-4 .button {
    right: 6em; } }

@media (max-width: 441px) {
  .w3l-header-4 .button {
    top: 1.2em; } }

@media (max-width: 387px) {
  .w3l-header-4 a.brand-logo {
    font-size: 30px; }
  .w3l-header-4 .toggle {
    margin-top: 2px; }
  .w3l-header-4 ul.menu {
    top: 59px; } }

@media (max-width: 320px) {
  .w3l-header-4 a.brand-logo {
    font-size: 30px; }
  .w3l-header-4 .toggle {
    margin-top: 2px; }
  .w3l-header-4 .button {
    right: 5.8em;
    top: 0.9em; } }

.form-12 .form-12-content {
    background: url("https://saraswatfilm.com/new/front/images/banner.jpg") no-repeat center;
    background-size: cover;
    padding: 5rem 0px;
    background-attachment: fixed; }

.form-12 .grid {
  display: grid; }

.form-12 .grid-column-2 {
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  grid-column-gap: 30px; }

.form-12 .tagline {
  color:#081245;
  text-transform: uppercase;
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;     font-family: 'Muli',sans-serif;}

.form-12 .column1 {
  align-self: center;
  background: rgba(255, 255, 255, 0.97);
  padding: 3rem;
  border-radius: 4px; 
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;}

.form-12 .form-para {
  margin: 10px 0;
  color: var(--title-color);
  line-height: 35px;
  font-size: 26px;
  font-weight: normal;
  font-style: normal; }

.form-12 .form-input {
  margin-top: 15px;
  width: 100%;
  height: 45px;
  background: #fff;
  color: #000000;
  border: 1px solid #eee;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 45px;
  padding-left: 15px;
  padding-right: 15px;     font-family: 'Muli',sans-serif; }

.form-12 .form-input:focus {
  border: 1px solid var(--theme-color);
  outline: none; }

.form-12 button.btn {
  background:#081245;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 30px;
  font-weight: 700;
  padding: 12px 25px;
  border: none;
  display: block;
  width: 100%; }

.form-12 button.btn:hover {
  background: var(--opposite-color);
  transition: 0.3s ease-in; }

@media (max-width: 1080px) {
  .form-12 .column1 {
    align-self: center;
    background: rgba(255, 255, 255, 0.97);
    padding: 2rem; } }

@media (max-width: 992px) {
  .form-12 .grid-column-2 {
    grid-template-columns: 0.5fr 1fr; } }

@media (max-width: 768px) {
  .form-12 .form-12 {
    padding: 30px 0px; } }

@media (max-width: 736px) {
  .form-12 .grid-column-2 {
    grid-template-columns: 1fr; } }

@media (max-width: 480px) {
  .form-12 .form-12-content {
    padding: 3em 0px; } }

@media (max-width: 414px) {
  .form-12 .tagline {
    line-height: 24px;
    font-size: 18px; } }

@media (max-width: 374px) {
  .form-12 .column1 {
    padding: 1.5rem; } }

.w3l-top-menu-1 {
  /*-- Bottom Menu Styling --*/
  /*-- //Bottom Menu Styling --*/
  /*-- responsive design --*/
  /*-- //responsive design --*/ }
  .w3l-top-menu-1 .top-hd {
    background: #081245;
    padding: 16px 0px; }
  .w3l-top-menu-1 .social-top li {
    display: inline-block; }
  .w3l-top-menu-1 .social-top li a {
    font-size: 14px;
    color: #ffffff; }
  .w3l-top-menu-1 .social-top li a:hover {
    opacity: 0.8; }
  .w3l-top-menu-1 .social-top {
    text-align: right; }
  .w3l-top-menu-1 .top-head li {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin: 0px 10px;
    display: inline-block; }
  .w3l-top-menu-1 .accounts li:nth-child(1) {
    margin-left: 0; }
  .w3l-top-menu-1 .top-head li span.fa {
    font-size: 16px;
    color: #ffffff; }
  .w3l-top-menu-1 ul li {
    display: inline-block; }
  .w3l-top-menu-1 .accounts li span.fa {
    padding-right: 5px; }
  .w3l-top-menu-1 .accounts li {
    display: inline-block;
    margin: 0 24px;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff; }
  .w3l-top-menu-1 .accounts li a {
    color: #ffffff; }
  .w3l-top-menu-1 .accounts li:nth-child(3) {
    margin-right: 0; }
  @media (max-width: 1080px) {
    .w3l-top-menu-1 .accounts li {
      margin: 0 6px; } }
  @media (max-width: 767px) {
    .w3l-top-menu-1 li.top_li2 {
      display: none; } }
  @media (max-width: 568px) {
    .w3l-top-menu-1 li.top_li1 {
      display: none; }
    .w3l-top-menu-1 .top-hd {
      padding: 12px 0px; } }

.w3l-inner-banner-main .about-inner {
  background: url(../images/3.jpg) no-repeat center; }

.w3l-inner-banner-main .about-inner {
  background-color: #727576;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 220px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1; }

.w3l-inner-banner-main .about-inner:before {
  content: "";
  background: rgba(16, 16, 16, 0.65);
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0; }

.w3l-inner-banner-main .ser-1 {
  background-color: #727576;
  background: url(../images/4.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 220px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1; }

.w3l-inner-banner-main .tea-1 {
  background-color: #727576;
  background: url(../images/5.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 220px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1; }

.w3l-inner-banner-main .tim-1 {
  background-color: #727576;
  background: url(../images/6.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 220px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1; }

.w3l-inner-banner-main .ecomerce-1 {
  background-color: #727576;
  background: url(../images/7.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 220px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1; }

.w3l-inner-banner-main .blog-1 {
  background-color: #727576;
  background: url(../images/1.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 220px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1; }

.w3l-inner-banner-main .faq-1 {
  background-color: #727576;
  background: url(../images/log3.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 220px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1; }

.w3l-inner-banner-main .portfolo-1 {
  background-color: #727576;
  background: url(../images/3.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 220px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1; }

.w3l-inner-banner-main .sear-1 {
  background-color: #727576;
  background: url(../images/1.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 220px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1; }

.w3l-inner-banner-main ul.breadcrumbs-custom-path li {
  display: inline-block; }

.w3l-inner-banner-main ul.breadcrumbs-custom-path li,
.w3l-inner-banner-main ul.breadcrumbs-custom-path li a {
  color: #fff;
  font-size: 17px;
  font-weight: 700; }

.w3l-inner-banner-main ul.breadcrumbs-custom-path {
  z-index: 9;
  position: relative; }

.w3l-inner-banner-main ul.breadcrumbs-custom-path li span {
  margin: 0 6px; }

.w3l-inner-banner-main ul.breadcrumbs-custom-path span.fa {
  color: var(--opposite-color); }

.w3l-inner-banner-main ul.breadcrumbs-custom-path li.active {
  font-weight: 100; }

.w3l-inner-banner-main .breadcrumbs-custom-path h3 {
  font-size: 30px;
  color: #fff;
  line-height: 35px;
  margin-bottom: 30px; }

@media (max-width: 568px) {
  .w3l-inner-banner-main .banner-9,
  .w3l-inner-banner-main .about-inner {
    min-height: 150px; }
  .w3l-inner-banner-main ul.breadcrumbs-custom-path li,
  .w3l-inner-banner-main ul.breadcrumbs-custom-path li a {
    font-size: 16px; }
  .w3l-inner-banner-main ul.breadcrumbs-custom-path li span {
    margin: 0 6px; } }

@media (max-width: 387px) {
  .w3l-inner-banner-main .breadcrumbs-custom-path h3 {
    margin-bottom: 16px; } }

@media (max-width: 320px) {
  .w3l-inner-banner-main .banner-9,
  .w3l-inner-banner-main .about-inner {
    min-height: 100px; } }

.w3l-features-1 {
  /*--//content--*/
  /*--/responsive-code--*/
  /*--//responsive-code--*/ }
  .w3l-features-1 .features {
    background: var(--opposite-color); }
  .w3l-features-1 .features h5 {
    font-size: 20px;
    line-height: 30px;
    color: var(--white-color);
    font-weight: 700; }
  .w3l-features-1 .icon span.fa {
    font-size: 36px;
    color: var(--white-color);
    opacity: .5; }
  .w3l-features-1 .feature-gd {
    grid-template-columns: auto 1fr;
    display: grid;
    grid-gap: 20px;
    align-items: center; }

.w3l-content-with-photo-4 {
  /*-- content-with-photo4 block --*/ }
  .w3l-content-with-photo-4 .cwp4-two img {
    border-radius: 5px; }
  .w3l-content-with-photo-4 .cwp4-text {
    align-self: center; }
  .w3l-content-with-photo-4 .cwp4-text h3 {
    font-size: 36px;
    line-height: 44px;
    color: var(--title-color);
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 600; }
  .w3l-content-with-photo-4 .cwp4-text h4 {
    font-size: 26px;
    line-height: 32px;
    color: var(--title-color);
    font-weight: 700; }
  .w3l-content-with-photo-4 .cwp4-text p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin: 25px 0; }
  .w3l-content-with-photo-4 ul.cont-4 li {
    display: block; }
  .w3l-content-with-photo-4 ul.cont-4 li span.fa {
    color: var(--opposite-color);
    padding-right: 5px; }
  .w3l-content-with-photo-4 .cwp4-text ul li {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin: 10px 0; }
  @media all and (max-width: 991px) {
    .w3l-content-with-photo-4 .cwp4-image img {
      width: 100%; } }
  @media all and (max-width: 600px) {
    .w3l-content-with-photo-4 .cwp4-text h3 {
      font-size: 30px;
      line-height: 35px; } }
  @media all and (max-width: 387px) {
    .w3l-content-with-photo-4 .cwp4-text h3 {
      font-size: 26px;
      line-height: 32px; } }
  @media all and (max-width: 320px) {
    .w3l-content-with-photo-4 .cwp4-text h4 {
      font-size: 23px;
      line-height: 28px; }
    .w3l-content-with-photo-4 #content-with-photo4-block {
      padding: 0 0 2.5rem 0; } }

.w3l-specifications-9 {
  /* //Reset Code */
  /* specifications */
  /* //specifications */
  /* responsive */
  /* //responsive */ }


@media (max-width: 1366px) {
  .w3l-footer-29-main .bottom-source {
    grid-template-columns: .4fr 1.5fr 1.5fr .5fr; } }

@media (max-width: 1080px) {
  .w3l-footer-29-main .footer-29 {
    padding: 50px 0 70px; }
  .w3l-footer-29-main .footer-top-29 {
    grid-gap: 10px; } }

@media (max-width: 1080px) {
  .w3l-footer-29-main .midd-footer-29 {
    margin-top: 6em; }
  .w3l-footer-29-main .bottom-source {
    grid-template-columns: .6fr 1.5fr 2fr .5fr;
    grid-gap: 60px; } }

@media (max-width: 1024px) {
  .w3l-footer-29-main .grid-col-2 {
    grid-template-columns: 1fr; }
  .w3l-footer-29-main .copy-footer-29 {
    text-align: center; }
  .w3l-footer-29-main ul.list-btm-29 {
    text-align: center;
    margin-top: 10px; } }

@media (max-width: 991px) {
  .w3l-footer-29-main .footer-top-29 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px; }
  .w3l-footer-29-main .main-social-footer-29 a {
    margin-right: 6px; } }

@media (max-width: 667px) {
  .w3l-footer-29-main .footer-29 {
    padding: 40px 0 50px; }
  .w3l-footer-29-main .main-social-footer-29 a {
    margin-right: 5px; }
  .w3l-footer-29-main ul.list-btm-29 li:nth-child(2) {
    margin: 0 18px; }
  .w3l-footer-29-main .midd-footer-29 {
    margin-top: 5em;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em; }
  .w3l-footer-29-main ul.list-btm-29 li:nth-child(2) {
    margin: 0 12px; } }

@media (max-width: 700px) {
  .w3l-footer-29-main .footer-top-29 {
    grid-template-columns: 1fr 1fr; }
  .w3l-footer-29-main .midd-footer-29,
  .w3l-footer-29-main ul.list-btm-29 {
    grid-template-columns: 1fr;
    text-align: center;
    grid-gap: 20px; } }

@media (max-width: 480px) {
  .w3l-footer-29-main .grid-1-footer:nth-child(1) {
    grid-column-start: span 2; }
  .w3l-footer-29-main .footer-1 {
    grid-column: span 2; }
  .w3l-footer-29-main .footer-3 {
    grid-column: span 2;
    order: 2; } }

@media (max-width: 440px) {
  .w3l-footer-29-main .footer-top-29 {
    grid-template-columns: 1fr 1fr; } }

@media (max-width: 384px) {
  .w3l-footer-29-main .footer-top-29 {
    grid-gap: 40px;
    grid-template-columns: 1fr 1fr; }
  .w3l-footer-29-main .midd-footer-29 {
    margin-top: 4em; }
  .w3l-footer-29-main .bottom-source {
    margin-top: 40px; } }

.w3l-index1 .calltoaction-20 h5 {
  font-size: 30px;
  line-height: 38px;
  color: #081245;
  text-transform: math-auto;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Kurale', serif;
  }

.w3l-index1 li {
  display: block;
  color: var(--text-color);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px; }

.w3l-index1 span.fa {
  color: var(--opposite-color);
  padding-right: 5px; }

.w3l-index1 .column.ccont-left img {
  border-radius: 4px; 
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
 }

.w3l-index1 .calltoaction-20-content p {
  font-size: 15px;
    line-height: 24px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.8em;
    font-family: 'Muli',sans-serif; }

.w3l-index1 a.theme-button.btn {
  font-weight: normal;
  display: inline-block;
  font-size: 16px;
  background: var(--opposite-color);
  color: var(--white-color);
  text-align: center;
  border: 2px solid var(--opposite-color);
  padding: 8px 22px;
  border-radius: 4px; }

.w3l-index1 a.theme-button.btn:hover {
  background: var(--theme-color);
  border: 2px solid var(--theme-color); }

@media (max-width: 1080px) {
  .w3l-index1 .calltoaction-20 h5 {
    margin-bottom: 10px; }
  .w3l-index1 .calltoaction-20-content {
    grid-column-gap: 40px; } }

@media (max-width: 991px) {
  .w3l-index1 .column.ccont-left img {
    width: 100%; } }
    

@media (max-width: 768px) {
  .w3l-index1 .calltoaction-20-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr; }
  .w3l-index1 .calltoaction-20 {
    padding: 3rem 0; } }

@media (max-width: 568px) {
  .w3l-index1 .calltoaction-20-content {
    grid-column-gap: 20px; }
  .w3l-index1 p.more-gap {
    margin-bottom: 30px; } }

@media (max-width: 480px) {
  .w3l-index1 .text-11-content p {
    margin-top: 15px; }
  .w3l-index1 p.more-gap {
    margin-bottom: 25px; }
  .w3l-index1 .text-11 {
    padding: 40px 0px; }
  .w3l-index1 .calltoaction-20-content {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 30px; }
  .w3l-index1 .calltoaction-20 h5 {
    font-size: 26px;
    line-height: 31px;
    margin-bottom: 20px; } }
    
    
 

.w3l-features-7 {
  /*--//content--*/
  /*--/responsive-code--*/
  /*--//responsive-code--*/ }
  .w3l-features-7 .features {
    background: #f7f7f7; }
  .w3l-features-7 .features h4 {
    font-size: 28px;
    line-height: 34px;
    color: var(--opposite-color);
    font-weight: 700; }
  .w3l-features-7 .features h6 {
    font-size: 24px;
    line-height: 30px;
    color: var(--title-color);
    font-weight: 700;
    margin: 15px 0; }
  .w3l-features-7 .features h5 {
    font-size: 20px;
    line-height: 28px;
    color: var(--title-color);
    font-weight: 700;
    margin: 15px 0 0; }
  .w3l-features-7 .feature-gd {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px; }
  .w3l-features-7 .float-rt {
    border-right: 1px solid #eee;
    border-top: 1px solid #eee; }
  .w3l-features-7 .float-mid {
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee; }
  .w3l-features-7 .icon span.fa {
    font-size: 30px;
    color: var(--opposite-color); }
  .w3l-features-7 .features p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color); }
  @media (max-width: 568px) {
    .w3l-features-7 .float-rt {
      border-right: none;
      border-top: none; }
    .w3l-features-7 .float-mid {
      border-left: none;
      border-bottom: none; }
    .w3l-features-7 .feature-gd-right {
      margin: 0; } }

/* /team-61*/
.w3l-team-61 {
  /*--/grid-alignment--*/
  /*--//grid-alignment--*/
  /*--/team-single--*/
  /*--//team-single--*/
  /*--/responsive-code--*/
  /*--//responsive-code--*/ }
  .w3l-team-61 .heading-title h3 {
    margin-bottom: 0;
    letter-spacing: 2px;
    font-weight: normal; }
  .w3l-team-61 .p-top-30 {
    padding-top: 30px; }
  .w3l-team-61 .half-txt {
    width: 60%;
    margin: 0 auto;
    display: inline-block;
    line-height: 25px;
    color: #7e7e7e; }
  .w3l-team-61 .text-uppercase {
    text-transform: uppercase; }
  .w3l-team-61 .team-member, .w3l-team-61 .team-member .team-img {
    position: relative; }
  .w3l-team-61 .team-member {
    overflow: hidden; }
  .w3l-team-61 .team-member, .w3l-team-61 .team-member .team-img {
    position: relative; }
  .w3l-team-61 .team-hover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    background-color: rgba(0, 74, 226, 0.44);
    opacity: 0;
    transition: all 0.3s; }
  .w3l-team-61 .team-member:hover .team-hover .desk {
    top: 35%; }
  .w3l-team-61 .team-member:hover .team-hover, .w3l-team-61 .team-member:hover .team-hover .desk, .w3l-team-61 .team-member:hover .team-hover .s-link {
    opacity: 1; }
  .w3l-team-61 .team-hover .desk {
    position: absolute;
    top: 0%;
    width: 100%;
    opacity: 0;
    transform: translateY(-55%);
    transition: all 0.3s 0.2s;
    padding: 0 20px; }
  .w3l-team-61 .desk, .w3l-team-61 .desk h4, .w3l-team-61 .team-hover .s-link a {
    text-align: center;
    color: #1e272e; }
  .w3l-team-61 .team-member:hover .team-hover .s-link {
    bottom: 10%; }
  .w3l-team-61 .team-member:hover .team-hover, .w3l-team-61 .team-member:hover .team-hover .desk, .w3l-team-61 .team-member:hover .team-hover .s-link {
    opacity: 1; }
  .w3l-team-61 .team-hover .s-link {
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    text-align: center;
    transform: translateY(45%);
    transition: all 0.3s 0.2s;
    font-size: 35px; }
  .w3l-team-61 .desk p {
    color: #fff; }
  .w3l-team-61 .desk h4 a {
    text-align: center;
    color: #fff; }
  .w3l-team-61 .teams-gd h5 a {
    color: var(--title-color); }
  .w3l-team-61 .team-member .s-link a {
    margin: 0 10px;
    color: #1e272e;
    font-size: 16px; }
  .w3l-team-61 .s-link span.fa {
    color: #fff; }
  .w3l-team-61 .s-link span.fa:hover {
    color: var(--opposite-color); }
  .w3l-team-61 .team-member .s-link a:hover {
    color: var(--opposite-color); }
  .w3l-team-61 .teams-gd a:hover {
    color: var(--opposite-color); }
  .w3l-team-61 .desk h4 {
    margin-bottom: 10px; }
  .w3l-team-61 .team-title {
    padding: 20px 0;
    text-align: center; }
  .w3l-team-61 .team-title h5 {
    margin-bottom: 0px;
    display: block;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--title-color);
    font-size: 22px; }
  .w3l-team-61 .team-title span {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--opposite-color); }
  .w3l-team-61 .team-61_sur {
    padding: 100px 0; }
  .w3l-team-61 .discover {
    margin-top: 30px; }
  .w3l-team-61 .read-more.black {
    border: 1px solid #1e272e;
    background: none;
    color: #1e272e;
    padding: 0.7em 3em;
    display: inline-block;
    font-size: 15px;
    border-radius: 0;
    outline: none;
    margin-top: 1.5em;
    font-weight: 600; }
  .w3l-team-61 .read-more.black:hover {
    background: #0fbcf9;
    border: 1px solid #0fbcf9; }
  .w3l-team-61 .grid {
    display: grid; }
  .w3l-team-61 .team-sigle-grids {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 40px; }
  .w3l-team-61 h3.hny-title.single-page {
    margin-bottom: 20px; }
  .w3l-team-61 .team-content-single p, .w3l-team-61 .details-gd a {
    line-height: 29px;
    font-size: 16px;
    color: #485460; }
  .w3l-team-61 h4.count-title {
    font-size: 17px;
    line-height: 30px;
    color: #2c3842;
    margin-bottom: 10px; }
  .w3l-team-61 .team-content-single {
    width: 80%;
    margin: 0 auto; }
  .w3l-team-61 .team-expe-grids {
    display: grid;
    grid-template-columns: 0.5fr 4.5fr;
    grid-gap: 40px;
    margin-top: 30px; }
  .w3l-team-61 .team-expe-grids h5 {
    color: #2c3842;
    font-size: 22px;
    line-height: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: capitalize; }
  .w3l-team-61 .team-expe-year h6 {
    color: #0fbcf9;
    font-weight: bold;
    font-size: 50px;
    line-height: 35px; }
  .w3l-team-61 .sub-info {
    margin-bottom: 50px; }
  .w3l-team-61 h4.hny-title {
    font-size: 30px;
    line-height: 30px;
    color: #2c3842;
    margin: 60px 0 40px 0; }
  .w3l-team-61 .team-single-bottom {
    margin-top: 50px; }
  .w3l-team-61 .single-team-projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px; }
  .w3l-team-61 .process-info-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px; }
  .w3l-team-61 .social-media-contact-61 a {
    background: transparent;
    text-align: center;
    display: inline-block;
    margin-right: 12px;
    color: #485460; }
  .w3l-team-61 .social-media-contact-61 a:hover {
    opacity: 0.9;
    color: #0fbcf9; }
  .w3l-team-61 .contact-single-team {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px; }
  .w3l-team-61 .team-img img {
    width: 100%;
    border-radius: 4px; }
  @media (max-width: 1280px) {
    .w3l-team-61 .team-61_sur {
      padding: 80px 0; }
    .w3l-team-61 .team-content-single {
      width: 90%; } }
  @media (max-width: 992px) {
    .w3l-team-61 .team-61_sur {
      padding: 70px 0; }
    .w3l-team-61 .team-61_sur p {
      font-size: 16px; }
    .w3l-team-61 .team-content-single {
      width: 100%; } }
  @media (max-width: 667px) {
    .w3l-team-61 h4.hny-title {
      font-size: 27px; } }

/* //team-61*/
.w3l-features-8 {
  /*--//content--*/
  /*--/responsive-code--*/
  /*--//responsive-code--*/ }
  .w3l-features-8 .features {
    background: #f6f6f6;

 }
  .w3l-features-8 .feature-gd h3 {
    font-size: 22px;
    line-height: 30px;
    color: var(--title-color);
    font-weight: 700;
     }
  .w3l-features-8 .features h3 a 
  {color:#081245; font-weight:600; font-family:'Kurale', serif;}
	
  .w3l-features-8 .features h3 a:hover {
    color: #081245; }
  .w3l-features-8 a.red {
    font-size: 14px;
    line-height: 24px;
    color: #5c5c5c;
    display: inline-block;
    font-weight: 700; }
  .w3l-features-8 a.red:hover {
    color: #081245; }
  .w3l-features-8 .float-lt.feature-gd {
    padding: 30px 30px;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    text-align: left;
	box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; }
  .w3l-features-8 .feature-gd p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color); }
  .w3l-features-8 .float-top img {
    border-radius:4px 4px 0 0; width:100%;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;}
  @media (max-width: 700px) {
    .w3l-features-8 .feature-gd h3 {
      font-size: 24px; } }

.w3l-features-3 {
  /*--//content--*/
  /*--/responsive-code--*/
  /*--//responsive-code--*/ }
  .w3l-features-3 .features {
    background: #f8fbff; }
  .w3l-features-3 a.red {
    font-size: 16px;
    line-height: 24px;
    color: var(--opposite-color);
    display: inline-block;
    font-weight: 700; }
  .w3l-features-3 a.red:hover {
    color: var(--theme-color); }
  .w3l-features-3 .features h5 {
    font-size: 20px;
    line-height: 30px;
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 15px; }
  .w3l-features-3 .features h5 a {
    color: var(--title-color); }
  .w3l-features-3 .features h5 a:hover {
    color: var(--opposite-color); }
  .w3l-features-3 .icon span.fa {
    font-size: 36px;
    color: var(--opposite-color); }
  .w3l-features-3 .feature-gd {
    grid-template-columns: auto 1fr;
    display: grid;
    grid-gap: 20px; }
  .w3l-features-3 .features p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color); }

.w3l-contacts-12 .cont-subs {
  padding: 50px 50px;
  background: #f7f7f7; }

.w3l-contacts-12 .cont-subs h5 {
  font-size: 24px;
  font-weight: 700;
  color: var(--title-color); 
  font-family:'Kurale', serif;
  }

.w3l-contacts-12 h3.title-main-cont {
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 10px; }

.w3l-contacts-12 p.sub-title-cont {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 40px; }

.w3l-contacts-12 .cont-add {
  grid-template-columns: auto 1fr;
  display: grid;
  grid-gap: 20px; }

.w3l-contacts-12 .cont-add span.fa {
  color: #081245;
  font-size: 26px;
  width: 30px;
  text-align: center; }

.w3l-contacts-12 .top-inputs {
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 1.5rem; }

.w3l-contacts-12 form.main-input input,
.w3l-contacts-12 textarea {
  color: #222;
  font-size: 14px;
  border: none;
  padding: 12px;
  border: 1px solid #ddd;
  width: 100%;
  line-height: 24px;
  outline: none;     font-family: 'Muli',sans-serif; }

.w3l-contacts-12 textarea {
  min-height: 140px;
  margin: 1.5rem 0;
  resize: none; }

.w3l-contacts-12 p {
      font-family: 'Muli',sans-serif;
    color: #000;     line-height: 24px;   font-size: 15px; }

.w3l-contacts-12 .cont-add h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;     font-family: 'Muli',sans-serif;}

.w3l-contacts-12 .contact-text-sub {
  line-height: 25px;
  font-size: 14px; }

.w3l-contacts-12 .social-icons-con {
  margin-top: 2.5em; }

.w3l-contacts-12 .social-icons-con a span {
  font-size: 23px;
  margin: 0 5px; }

.w3l-contacts-12 .social-icons-con a span.fa-facebook-square {
  color: #3b5998; }

.w3l-contacts-12 .social-icons-con a span.fa-twitter-square {
  color: #00acee; }

.w3l-contacts-12 .social-icons-con a span.fa-google-plus-square {
  color: #DD4B39; }


@media screen and (max-width: 991px) {
  .w3l-contacts-12 .contact-top,
  .w3l-contacts-12 .map {
    padding-top: 60px; } }

@media screen and (max-width: 768px) {
  .w3l-contacts-12 .cont-main-top {
    grid-template-columns: 1fr; }
  .w3l-contacts-12 .social-icons-con {
    margin-top: 1.5em; } }

@media screen and (max-width: 600px) {
  .w3l-contacts-12 h3.title-main-cont {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 6px; }
  .w3l-contacts-12 p.sub-title-cont {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 30px; }
  .w3l-contacts-12 .map iframe {
    height: 350px; } }


.

.products-4 {
  /*-- Products4-block --*/ }

.products-4 #products4-block {
  padding: 70px 0; 
}
     
.products-4 .d-grid {
  display: grid; }

.products-4 .grid-col-3 {
  grid-template-columns:  1fr 1fr 1fr 1fr;
  grid-gap: 7px; }

.products-4 .product a {
  display: block; }

.products-4 .product {
  position: relative; 

}

.products-4 .product-details {
  position: absolute;
  bottom: 30px;
  width: 100%; }

.products-4 .product-details a {
  font-size: 20px;
  line-height: 25px;
  color: #304659;
  margin-bottom: 10px;
  font-weight: bold; }

.products-4 .product-details a:hover {
  opacity: 0.8; }

.products-4 span.price {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 25px;
  color: #3B5266; }

.products-4 section.tab-content {
  display: none;
  padding: 38px 0 0; }

.products-4 input {
  display: none; }

.products-4 label.tabtle {
  display: inline-block;
  text-align: center;
  color: var(--title-color);
  margin: 0 5px;
  font-size: 16px;
  line-height: 25px;
  border: 1px solid var(--title-color);
  padding: 10px 30px;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  }

.products-4 figure {
  margin: 0; }

.products-4 label.tabtle:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px; }

.products-4 input:checked + label.tabtle, .products-4 label.tabtle:hover {
  text-align: center;
  background: var(--opposite-color);
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  border: 1px solid var(--opposite-color); }

.products-4 #tab1:checked ~ #content1,
.products-4 #tab2:checked ~ #content2,
.products-4 #tab3:checked ~ #content3,
.products-4 #tab4:checked ~ #content4 {
  display: block; }

.products-4 .info-bg {
  background: #fff;
  padding: 25px 20px;
  box-shadow: 0 10px 30px 0 rgba(17, 17, 17, 0.09);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px; }

.products-4 .product a img {
  border-radius: 4px; 
 }

.products-4 .info-bg h5 a {
  font-size: 20px;
  line-height: 25px;
  color: var(--heading-color);
  display: block;
  text-transform: capitalize;
  margin-bottom: 5px; }

.product:hover .info-bg h5 a {
  color: var(--theme-alt-color); }

.products-4 .info-bg h5 a:hover {
  color: #000000; }

.products-4 .info-bg p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  color: var(--para-color);
  margin-top: 10px;
  margin-bottom: 20px; }

.products-4 .info-bg span.price {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 25px; }

@media all and (max-width: 1080px) {
  .products-4 .grid-col-3 {
    grid-gap: 15px; }
  .products-4 .info-bg h5 a {
    font-size: 20px; } }

@media all and (max-width: 1024px) {
  .products-4 h3.heading-title {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 46px; } }

@media screen and (max-width: 992px) {
  .products-4 .grid-col-3 {
    grid-template-columns: 1fr 1fr; } }

@media screen and (max-width: 800px) {
  .products-4 label.tabtle:before {
    margin: 0;
    font-size: 18px; }
  .products-4 .grid-col-4 {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 30px; }
  .products-4 h3.heading-title {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 40px; }
  .products-4 #products4-block {
    padding: 60px 0; }
  .products-4 label.tabtle, .products-4 input:checked + label.tabtle, .products-4 label.tabtle:hover {
    margin: 0 0px;
    padding: 8px 25px;
    margin-bottom: 5px; } }

@media screen and (max-width: 600px) {
  .products-4 h3.heading-title {
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 30px; }
  .products-4 .grid-col-3 {
    grid-template-columns: 1fr; } }

@media screen and (max-width: 480px) {
  .products-4 #products4-block {
    padding: 50px 0; }
  .products-4 label.tabtle, .products-4 input:checked + label.tabtle, .products-4 label.tabtle:hover {
    padding: 8px 12px; } }

@media screen and (max-width: 440px) {
  .products-4 h3.heading-title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 25px; }
  .products-4 label.tabtle,
  .products-4 input:checked + label.tabtle {
    font-size: 15px; }
  .products-4 section.tab-content {
    padding: 28px 0 0; } }

@media screen and (max-width: 384px) {
  .products-4 label.tabtle, .products-4 input:checked + label.tabtle, .products-4 label.tabtle:hover {
    padding: 6px 8px;
    font-size: 14px; } }
    
    
    
    
    
    
    
    



 
/* Preload images */
body:after {
  display: none; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  border-radius: 3px; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-container {
  padding: 4px; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

/*.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}*/
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 4em;
  float: left;
  background: url(../images/img-sprite.png) 36px 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 5em;
  right: 0;
  float: right;
  background: url(../images/img-sprite.png) -23px 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 90%;
  float: left;
  text-align: left;
  line-height: 1.1em;
  margin-top: 1em; }

.lb-data .lb-caption {
  font-size: 16px;
  line-height: 25px;
  color: #fff; }

.lb-data .lb-number {
  display: none;
  clear: left;
  padding-top: 1em;
  font-size: 1em;
  color: #fff; display:none!important;}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  margin-top: 1.5em;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

@media screen and (max-width: 320px) {
  .lb-data .lb-details {
    width: 89%;
    margin-top: 1em; }
  .lb-data .lb-caption {
    font-size: 12px; } }

.w3l-galleries-14 .top-main-content img {
  border-radius: 4px; }

.w3l-galleries-14 h4 {
  font-size: 26px;
  line-height: 30px;
  color: var(--title-color);
  margin-top: 30px;
  font-weight: 700;
  display: inline-block; }

.w3l-galleries-14 p {
  font-size: 16px;
  line-height: 25px;
  color: var(--text-color);
  margin-top: 15px; }

.w3l-galleries-14 .slide img {
  width: 100%; }

.w3l-galleries-14 .project-grids-two {
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-top: 30PX; }

.w3l-galleries-14 .project-grids-three {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-top: 30PX; }

.w3l-galleries-14 h5.proj {
  font-size: 26px;
  line-height: 30px;
  color: var(--title-color);
  font-weight: 700;
  display: inline-block; }

.w3l-galleries-14 .project-list li span.fa {
  color: var(--opposite-color); }

.w3l-galleries-14 .project-list li {
  list-style: none;
  font-size: 16px;
  color: var(--title-color);
  line-height: 28px; }

.w3l-galleries-14 .top-main-content {
  max-width: 950px;
  margin: 0 auto; }

.w3l-galleries-14 .d-grid.margins {
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 3em; }

@media (max-width: 992px) {
  .w3l-galleries-14 .project-grids-two {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-top: 30PX; }
  .w3l-galleries-14 #gallery14-block {
    padding: 50px 0; } }

@media (max-width: 736px) {
  .w3l-galleries-14 .project-grids-three {
    grid-template-columns: 1fr; } }

@media (max-width: 600px) {
  .w3l-galleries-14 h5.proj {
    font-size: 22px;
    line-height: 25px; }
  .w3l-galleries-14 #gallery14-block {
    padding: 40px 0; } }

@media (max-width: 480px) {
  .w3l-galleries-14 h4 {
    font-size: 22px;
    line-height: 25px;
    margin-top: 30px; } }

@media (max-width: 415px) {
  .w3l-galleries-14 .project-grids-two {
    grid-gap: 30px;
    margin-top: 30px; }
  .w3l-galleries-14 p {
    font-size: 16px;
    margin-top: 10px; } }

@media (max-width: 384px) {
  .w3l-galleries-14 .gallery14-head h3 {
    font-size: 32px;
    line-height: 36px; }
  .w3l-galleries-14 .slider-wrap {
    margin-top: 40px; } }

.w3l-faq .accordion__single__hidden {
  display: none; }

.w3l-faq .accordion__single__hidden:checked ~ .accordion__single__answer {
  max-height: 400px;
  opacity: 1;
  transform: translate(0, 0);
  color: var(--para-color);
  font-size: 16px;
  line-height: 25px;
  border-left: 2px solid var(--opposite-color);
  padding-left: 1rem;
  padding-bottom: 10px; }

.w3l-faq .accordion__single__hidden:checked ~ .accordion__single__question:after {
  content: '-'; }

.w3l-faq .accordion__single__answer {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  position: relative; }

.w3l-faq html,
.w3l-faq body {
  height: 100%; }

h3.global-title {
  font-size: 26px;
  line-height: 31px;
  font-weight: 700;
  color: var(--title-color); }

.w3l-faq .accordion {
  font-weight: 300;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto; }

.w3l-faq .accordion__single {
  padding: 10px 20px;
  background: rgba(149, 149, 149, 0.04);
  margin: 10px 0;
  border-radius: 4px; }

.w3l-faq .accordion__single__question {
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--title-color); }

.w3l-faq .accordion__single:hover,
.w3l-faq .accordion__single:focus {
  transition: 0.3s ease; }

.w3l-faq .accordion__single__question:after {
  display: inline-block;
  margin-left: 10px;
  color: var(--opposite-color);
  content: '+';
  float: right;
  font-size: 20px; }

.w3l-coming-soon-page .coming-page-info-6 {
  background: url(../images/2.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 100vh;
  position: relative;
  z-index: 0;
  display: grid;
  align-items: center; }

.w3l-coming-soon-page .coming-page-info-6:before {
  content: "";
  background: rgba(0, 0, 0, 0.86);
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1; }

.w3l-coming-soon-page .top-hny-logo {
  padding: 2em 0; }

.w3l-coming-soon-page a.brand-logo {
  color: var(--white-color);
  font-weight: 700;
  font-size: 40px; }

.w3l-coming-soon-page .coming-block {
  margin: 30px auto 0;
  max-width: 650px;
  text-align: center;
  padding: 1em;
  display: grid; }

.w3l-coming-soon-page h1 {
  margin: 0;
  font-size: 55px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 60px; }

.w3l-coming-soon-page span.fa {
  color: var(--opposite-color); }

.w3l-coming-soon-page .countdown {
  margin: auto;
  display: table;
  font-size: 28px;
  font-weight: 500; }

.w3l-coming-soon-page .countdown > div {
  float: left;
  min-width: 115px;
  margin: 40px 0;
  font-size: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: bold;
  color: var(--white-color); }

.w3l-coming-soon-page .countdown > div:last-child {
  border-right: none; }

.w3l-coming-soon-page .comingsoon-form {
  display: grid;
  grid-template-columns: 1fr .4fr;
  margin-top: 40px; }

.w3l-coming-soon-page .comingsoon-form .form-control {
  font-size: 16px;
  border: none;
  background: #fff;
  padding: 15px 20px;
  color: #333;
  outline: none;
  width: 100%;
  border-radius: 4px 0 0 4px; }

.w3l-coming-soon-page .comingsoon-form button.btn {
  background: var(--opposite-color);
  outline: none;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 0 4px 4px 0; }

.w3l-coming-soon-page .comingsoon-form button.btn:hover {
  background: var(--theme-color); }

.w3l-coming-soon-page p {
  color: var(--white-color);
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: capitalize; }

.w3l-coming-soon-page .countdown span {
  position: relative;
  display: block;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 1px; }

@media (max-width: 800px) {
  .w3l-coming-soon-page p {
    margin-top: 10px; } }

@media (max-width: 736px) {
  .w3l-coming-soon-page h1 {
    font-size: 42px;
    line-height: 47px; } }



