/*-----------------------------------------------------------------------------------

    Template Name: Arch
    Author: UIdeck
    Author URI: uideck.com
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/


/*===========================
      01.COMMON css 
===========================*/

@import url("https://fonts.googleapis.com/css?family=Alata:300,400,600,700,800,900|Blinker:300,400,500,600,700,800,900");
body {
    font-family: "Blinker", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #677284;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
    margin-top: 50px;
}

a {
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:hover {
    color: #E91C23;
}

.main-btn-3:hover {
    color: #FFF;
    border-color: #FFF;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Blinker", sans-serif;
    font-weight: 700;
    color: #000;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p,
a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    margin: 0px;
}

.line-shape-white,
.line-shape {
    width: 80px;
    height: 1px;
    background-color: #FFF;
    /* margin-top: 10px; */
    margin-bottom: 15px;
}

.line-shape {
    margin-left: calc(50% - 50%);
}

.line-shape-white2,
.line-shape2 {
    width: 80px;
    height: 5px;
    background-color: #E91C23;
    margin-top: 15px;
    margin-bottom: 25px;
}

.line-shape2 {
    margin-left: calc(50% - 5%);
}

@media (max-width: 767px) {
    .line-shape2 {
        margin-left: calc(50% - 10%);
    }
}

.line-shape-white3,
.line-shape3 {
    width: 80px;
    height: 5px;
    background-color: #fff;
    margin-top: 15px;
    margin-bottom: 25px;
}

.line-shape3 {
    margin-left: calc(50% - 5%);
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .bg_cover {
        background-position: calc(50% - -25%);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
    }
}


/*===== All Button Style =====*/

.main-btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    letter-spacing: 0.60px;
    user-select: none;
    padding: 17px 37px;
    font-size: 18px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease-in-out;
    border: none;
    background: #E91C23;
    overflow: hidden;
}

.main-btn-3 {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    letter-spacing: 0.60px;
    user-select: none;
    padding: 17px 37px;
    font-size: 18px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease-in-out;
    border-color: #FFF;
    /* border: none; */
    /* background: #1C5D99; */
    overflow: hidden;
}

.main-btn:hover {
    color: #fff;
    border-color: #FFF;
}

.main-btn-3 {
    background-color: #1C5D99;
    color: #FFF;
    border-color: #FFF;
}

.main-btn.main-btn-2.main-btn-3:hover {
    color: #fff;
}

.btn-hover {
    position: relative;
    overflow: hidden
}

.btn-hover-3 {
    position: relative;
    overflow: hidden;
    border-color: #FFF;
}

.btn-hover::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background: #000;
    color: #fff;
    top: 50%;
    left: 50%;
    padding: 50%;
    z-index: -1;
    transition: all .3s ease-out 0s;
    transform: translate3d(-50%, -50%, 0) scale(0)
}

.btn-hover-3::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background: #940509;
    color: #fff;
    top: 50%;
    left: 50%;
    padding: 50%;
    z-index: -1;
    transition: all .3s ease-out 0s;
    transform: translate3d(-50%, -50%, 0) scale(0)
}

.btn-hover:hover::after {
    transform: translate3d(-50%, -50%, 0) scale(1.3)
}

.btn-hover-3:hover::after {
    transform: translate3d(-50%, -50%, 0) scale(1.3)
}


/*===== All Button Style =====*/

.section_title .title {
    font-size: 40px;
    font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section_title .title {
        font-size: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section_title .title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .section_title .title {
        font-size: 24px;
    }
}

.section_title.section_title_2 .title {
    color: #fff;
}


/*===== All Slick Slide Outline Style =====*/

.slick-slide {
    outline: 0;
}


/*===== SLIDER =====*/

.single_slider {
    height: 750px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 250px;
}

@media only screen and (min-width: 1980px) {
    .single_slider {
        height: 900px;
    }
}

@media only screen and (max-width: 1440px) {
    .single_slider {
        height: 750px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_slider {
        height: 650px;
        border-bottom-left-radius: 100px;
    }
}

@media (max-width: 767px) {
    .single_slider {
        height: 650px;
        border-bottom-left-radius: 10px;
        background-color: rgba(255, 255, 255, 0.5);
    }
}

.single_slider::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.slider_content {
    padding-top: 50px;
}

.slider_content .slider_title {
    font-size: 60px;
    color: #000;
    margin-top: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider_content .slider_title {
        font-size: 44px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider_content .slider_title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .slider_content .slider_title {
        font-size: 30px;
        margin-top: 250px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider_content .slider_title {
        font-size: 40px;
    }
}

.slider_content .slider_title span {
    display: contents;
    color: #E91C23;
}

.slider_content p {
    font-size: 16px;
    color: #666666;
    margin-top: 30px;
    max-width: 550px;
}

@media (max-width: 767px) {
    .slider_content p {
        font-size: 16px;
        color: #000;
    }
}

@media (max-width: 767px) {
    .single_slider {
        background-color: rgba(255, 255, 255, 0.5);
    }
}

.slider_content .main-btn {
    margin-top: 45px;
}


/*===========================
     02.HEADER css 
===========================*/


/*===== NAVBAR =====*/

.header_navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sticky {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
    padding: 15px 0;
}

.navbar {
    padding: 20px 0;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    width: 150px;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #000000;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-item {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item {
        margin: 0;
    }
}

.navbar-nav .nav-item a .footer_menu a {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 10px 0;
    position: relative;
}

.navbar-nav .nav-item a::before {
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #E91C23;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item a::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item a::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #222;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #222;
    }
}

.navbar-nav .nav-item.active>a::before,
.navbar-nav .nav-item:hover>a::before {
    width: 100%;
}

.navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

.navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

.navbar-nav .nav-item .sub-menu li {
    display: block;
}

.navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 25px;
    color: #E91C23;
}

.navbar-nav .sub-nav-toggler {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}

.navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}

.sticky .navbar-toggler .toggler-icon {
    background-color: #222;
}

.sticky .navbar-nav .nav-item a {
    color: #222;
}

.sticky .navbar-nav .nav-item.active>a,
.sticky .navbar-nav .nav-item:hover>a {
    color: #E91C23;
}


/*===== All Preloader Style =====*/

.preloader {
    /* Body Overlay */
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    /* Change Background Color */
    background: #fff;
    z-index: 99999;
}

.preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.preloader .loader .ytp-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    -webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    -moz-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    -o-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
    animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    -moz-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    -o-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    right: 50%;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    left: 50%;
}

.preloader .loader .ytp-spinner-circle {
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    /* Spinner Color */
    border-color: #E91C23 #E91C23 #f7f7fd;
    border-radius: 50%;
    border-width: 6px;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: #f7f7fd;
    -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    -moz-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    -o-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: #f7f7fd;
    -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    -moz-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    -o-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}


/* Preloader Animations */

@-webkit-keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
        -moz-transform: rotate(405deg);
        -ms-transform: rotate(405deg);
        -o-transform: rotate(405deg);
        transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
        -moz-transform: rotate(540deg);
        -ms-transform: rotate(540deg);
        -o-transform: rotate(540deg);
        transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
        -moz-transform: rotate(675deg);
        -ms-transform: rotate(675deg);
        -o-transform: rotate(675deg);
        transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
        -moz-transform: rotate(810deg);
        -ms-transform: rotate(810deg);
        -o-transform: rotate(810deg);
        transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
        -moz-transform: rotate(1080deg);
        -ms-transform: rotate(1080deg);
        -o-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

@keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    25% {
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    37.5% {
        -webkit-transform: rotate(405deg);
        -moz-transform: rotate(405deg);
        -ms-transform: rotate(405deg);
        -o-transform: rotate(405deg);
        transform: rotate(405deg);
    }
    50% {
        -webkit-transform: rotate(540deg);
        -moz-transform: rotate(540deg);
        -ms-transform: rotate(540deg);
        -o-transform: rotate(540deg);
        transform: rotate(540deg);
    }
    62.5% {
        -webkit-transform: rotate(675deg);
        -moz-transform: rotate(675deg);
        -ms-transform: rotate(675deg);
        -o-transform: rotate(675deg);
        transform: rotate(675deg);
    }
    75% {
        -webkit-transform: rotate(810deg);
        -moz-transform: rotate(810deg);
        -ms-transform: rotate(810deg);
        -o-transform: rotate(810deg);
        transform: rotate(810deg);
    }
    87.5% {
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        transform: rotate(945deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
        -moz-transform: rotate(1080deg);
        -ms-transform: rotate(1080deg);
        -o-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

@-webkit-keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        -moz-transform: rotate(130deg);
        -ms-transform: rotate(130deg);
        -o-transform: rotate(130deg);
        transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
        -moz-transform: rotate(130deg);
        -ms-transform: rotate(130deg);
        -o-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}

@keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        -moz-transform: rotate(130deg);
        -ms-transform: rotate(130deg);
        -o-transform: rotate(130deg);
        transform: rotate(130deg);
    }
    50% {
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(130deg);
        -moz-transform: rotate(130deg);
        -ms-transform: rotate(130deg);
        -o-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}

@-webkit-keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        -moz-transform: rotate(-130deg);
        -ms-transform: rotate(-130deg);
        -o-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -o-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
        -moz-transform: rotate(-130deg);
        -ms-transform: rotate(-130deg);
        -o-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
}

@keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        -moz-transform: rotate(-130deg);
        -ms-transform: rotate(-130deg);
        -o-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -o-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    to {
        -webkit-transform: rotate(-130deg);
        -moz-transform: rotate(-130deg);
        -ms-transform: rotate(-130deg);
        -o-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
}


/*===== DESCRIPTION=====*/

.description-area {
    padding-top: 90px;
    padding-bottom: 100px;
}

.description-style-one {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    padding: 24px 14px 38px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.description-p {
    font-size: 15px;
    color: #FFF;
    text-align: center;
}

.description-style-one .description-icon img {
    width: 200px;
}

.description-style-one .description-header .sub-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #FFF;
    position: relative;
    margin-top: 24px;
}

.description-style-one .description-header {
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #FFF;
    margin-top: 3px;
}

.description-style-one .description-header {
    font-size: 36px;
    font-weight: 600;
    line-height: 45px;
    color: #FFF;
    margin-top: 8px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .description-style-one .description-header {
        font-size: 24px;
        margin-top: 32px;
        line-height: 30px;
    }
}

.description-style-one .description-list {
    margin-top: 24px;
}

.description-style-one .description-list ul li {
    font-size: 16px;
    line-height: 24px;
    color: #121212;
    margin-top: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .description-style-one .description-list ul li {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .description-style-one .description-list ul li {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .description-style-one .description-list ul li {
        font-size: 16px;
        margin-top: 16px;
    }
}

.description-style-one .description-btn {
    margin-top: 31px;
}


/*===== TIMELINE======*/

.timeline-title {
    text-align: center;
}

.timeline-img {
    size: 100%;
}

@media (max-width: 700px) {
    .timeline-mobile {
        display: block;
    }
    .timeline-img {
        display: none;
    }
}

@media (min-width: 700px) {
    .timeline-mobile {
        display: none;
    }
    .timeline-img {
        display: block;
    }
}


/*===== ABOUT ======*/

.about_area {
    /* position: relative; */
    /* z-index: 5; */
    background-color: #940509;
}

.about-title {
    color: #FFF;
    font-size: 43px;
}

.about-title-h4 {
    color: #FFF;
    font-size: 24px;
}

.about-sub-title {
    color: #FFF;
    font-size: 16px;
    font-weight: 100;
}


/*===== SOLUTION =====*/

.solution-area {
    padding-top: 90px;
    padding-bottom: 100px;
}

.solution-style-one {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    /* padding: 24px 20px 38px; */
    position: relative;
    overflow: hidden;
    /* background-color: #000; */
    width: 500px;
}

.solution-title,
.solution-sub-title {
    padding-top: 50px;
    align-items: center;
}

.solution-p {
    font-size: 14px;
    color: #FFF;
    text-align: center;
    margin: 25px;
    padding: 10px;
}

.solution-style-one .solution-icon img {
    width: 200px;
}

.solution-style-one .solution-header .sub-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #000;
    position: relative;
    margin-top: 24px;
}

.solution-style-one .solution-header {
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #FFF;
    margin-top: 3px;
}

.solution-style-one .solution-header {
    font-size: 36px;
    font-weight: 600;
    line-height: 45px;
    color: #FFF;
    margin-top: 8px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .solution-style-one .solution-header {
        font-size: 24px;
        margin-top: 32px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .carousel {
        font-size: 24px;
        margin-top: 32px;
        line-height: 30px;
        width: 100px;
        height: 150px;
    }
}

.solution-style-one .solution-list {
    margin-top: 24px;
    align-items: center;
    text-align: center;
}

.solution-style-one .solution-list ul li {
    font-size: 16px;
    line-height: 24px;
    color: #121212;
    margin-top: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .solution-style-one .solution-list ul li {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .solution-style-one .solution-list ul li {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .solution-style-one .solution-list ul li {
        font-size: 16px;
        margin-top: 16px;
    }
}

.solution-style-one .solution-btn {
    margin-top: 31px;
}

@media (min-width: 767px) {
    .solution-ocult {
        display: none;
    }
}

@media (max-width: 767px) {
    .solution-area {
        display: none;
    }
}


/*===== PARTNERS =====*/

#partners {
    background-color: #F6F7F9;
}


/*===== SERVICES =====*/

.services-area {
    padding-bottom: 100px
}

.services-style-one {
    padding: 10px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    height: 385px;
    background-repeat: round;
}

.services-sub-title {
    font-size: 44px;
    margin-top: 150px;
}

.services-p {
    font-size: 13px;
    color: #FFF;
    text-align: center;
}

.services-style-one .services-icon img {
    width: 200px;
}

.services-style-one .services-header .services-sub-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #FFF;
    position: relative;
    margin-top: 24px;
}

.services-style-one .services-header {
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #FFF;
    margin-top: 3px;
}

.services-style-one .services-header {
    font-size: 36px;
    font-weight: 600;
    line-height: 45px;
    color: #FFF;
    margin-top: 8px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services-style-one .services-header {
        font-size: 24px;
        margin-top: 32px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .services-port-ocult {
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    .services-ocult {
        display: none;
    }
}

.services-style-one .services-list {
    margin-top: 24px;
}

.services-style-one .services-list ul li {
    font-size: 16px;
    line-height: 24px;
    color: #121212;
    margin-top: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .services-style-one .services-list ul li {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .services-style-one .services-list ul li {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services-style-one .services-list ul li {
        font-size: 16px;
        margin-top: 16px;
    }
}

.services-style-one .services-btn {
    margin-top: 31px;
}


/* ===== SUPPORT =====*/

.support-area {
    /* padding-top: 90px; */
    padding-bottom: 100px;
    background-color: #940509;
}

.support-style-one {
    padding: 20px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    height: 280px;
    background-repeat: round;
}

.support-title {
    font-size: 48px;
    color: #FFF;
    margin: 30px;
}

.sub-title {
    color: #FFF;
    font-size: 16px;
    text-align: center;
    margin: 30px;
}

.support-p {
    font-size: 16px;
    font-weight: 600;
    margin: 10px;
    color: #000;
    text-align: center;
}

.support-style-one .support-header .support-sub-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 25px;
    color: #000;
    position: relative;
    margin-top: 24px;
}

.support-style-one .support-header {
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #000;
    margin-top: 3px;
}

.support-style-one .support-header {
    font-size: 36px;
    font-weight: 600;
    line-height: 45px;
    color: #000;
    margin-top: 8px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .support-style-one .support-header {
        font-size: 24px;
        margin-top: 32px;
        line-height: 30px;
    }
}

.support-style-one .support-list {
    margin-top: 24px;
}

.support-list {
    text-align: center;
    align-items: center;
    font-weight: 800;
}

.support-style-one .support-list ul li {
    font-size: 16px;
    line-height: 24px;
    color: #121212;
    margin-top: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .support-style-one .support-list ul li {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .support-style-one .support-list ul li {
        font-size: 14px;
        margin-top: 12px;
        width: 300px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .support-style-one .support-list ul li {
        font-size: 16px;
        margin-top: 16px;
    }
}

.support-style-one .support-btn {
    margin-top: 31px;
}


/* ===== MAPS =====*/


/* .map-responsive {
        position: relative;
        display: inline-block;
    }

    .map-responsive-sobreposition {
        position: absolute;
        top: 100;
        bottom: 0;
        left: 0;
        right: 0;
        transition: .5s ease;
    } */

.map-responsive {
    overflow: hidden;
    padding-bottom: 142%;
    position: relative;
    height: 0;
}

.map-responsive-sobreposition {
    position: absolute;
    top: 100;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .5s ease;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
}


/* @media (max-width: 700px) {
    .map-responsive-sobreposition {
        display: none;
    }
} */


/*===========================
     04.FOOTER css 
===========================*/

.footer_content .footer_social li {
    display: inline-block;
    margin: 0 10px
}

.footer_content {
    font-size: 44px;
    font-weight: 600;
    color: #000;
    margin-top: 10px
}

.footer_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    margin: 0px;
}

.lni {
    color: #940509;
    font-size: 25px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

@media(max-width:767px) {
    .footer_content {
        font-size: 20px;
        margin-top: 25px
    }
}

.footer_content .footer_menu {
    padding-top: 20px
}

.footer_content .footer_menu li {
    display: inline-block;
    margin: 10px 20px 0
}

@media(max-width:767px) {
    .footer_content .footer_menu li {
        margin: 10px 12px 0
    }
}

.footer_content .footer_menu li {
    font-size: 16px;
    font-weight: 600;
}

@media(max-width:767px) {
    .footer_content .footer_menu li a {
        font-size: 15px
    }
}