/*============================================

   Theme Name: Consl - Consulting Business HTML5 Template
   Author : envalab
   Author URI: https://themeforest.net/user/envalab
   Description: Consl - Consulting Business HTML5 Template
   Version: 1.0

==============================================*/


/* CSS Index
==============================================

    01. Theme Default CSS
    02. Header Style
    03. Footer
    04. Hero
    05. About-section
    06. Features-section
    07. Animate-marque-sec
    08. Service-section
    09. Video-section
    10. Funfact-section
    11. Case-section
    12. Testimonial-section
    13. Team-section
    14. Faq-section
    15. Contact-area
    16. Blog-section
    17. Cta-section
    18. Home-style-2
    19. Home-style-3
    20. About Page
    21. Services Page
    22. Team Page
    23. Project-page
    24. Faq-page
    25. Blog Page
    26. Blog Single Page
    27. Contact Page
    28. 404 page

==============================================*/


/*=========================================
 01. Theme Default CSS  
 ==========================================*/


/*---------------------------
	Fonts
----------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap");

/* 1.0 Common css  */

html {
    font-size: 15px;
}

:root {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans";
    color: #707070;
    background-color: #fff;
    font-size: 16px;
    font-size: calc-rem-value(16);
    overflow-x: hidden;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

body.dark-page {
    background-color: #fff;
}

p {
    font-size: 16px;
    color: #707070;
    line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1F212D;
    font-family: "Cormorant";
    font-weight: 400;
}

ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-fluid {
    padding: 120px 65px;
}

@media (max-width: 991px) {
    .section-fluid {
        padding: 90px 30px;
    }
}

@media (max-width: 575px) {
    .section-fluid {
        padding: 80px 0px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}

.hidden {
    display: none;
}

.sr-only {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}


/* 1.2 Global Elements */

.page-wrap {
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .page-wrapper {
        overflow: hidden;
    }
}

.wow {
    visibility: hidden;
}

.fi:before {
    margin: 0;
}

.section-bg {
    background: #F5F5F5 !important;
}

.separator-padding {
    padding: 120px 0;
}

@media (max-width: 991px) {
    .separator-padding {
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .separator-padding {
        padding: 80px 0;
    }
}

@media (max-width: 575px) {
    .separator-padding {
        padding: 60px 0;
    }
}

.pt-120 {
    padding-top: 120px;
}

@media (max-width: 991px) {
    .pt-120 {
        padding-top: 90px;
    }
}

@media (max-width: 767px) {
    .pt-120 {
        padding-top: 80px;
    }
}

@media (max-width: 575px) {
    .pt-120 {
        padding-top: 60px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .pb-120 {
        padding-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}


/*** contact form error handling ***/

.contact-activation .error-handling-messages {
    width: 100% !important;
    margin-top: 15px !important;
}

.contact-activation label.error {
    color: red;
    font-size: 13px;
    font-weight: normal;
    margin: 5px 0 0 0;
    text-align: left;
    display: block;
    margin-bottom: 10px;
}

.contact-activation #c-loader,
.contact-activation #loader {
    display: none;
    margin-top: 10px;
}

.contact-activation #c-loader i,
.contact-activation #loader i {
    font-size: 30px;
    font-size: calc-rem-value(30);
    color: #EC2526;
    display: inline-block;
    -webkit-animation: rotating linear 2s infinite;
    animation: rotating linear 2s infinite;
}

.contact-activation #success,
.contact-activation #c-success,
.contact-activation #c-error,
.contact-activation #error {
    width: 100%;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    text-align: center;
    display: none;
}

@media (max-width: 767px) {
    .contact-activation #success,
    .contact-activation #c-success,
    .contact-activation #c-error,
    .contact-activation #error {
        font-size: 15px;
    }
}

.contact-activation #c-success,
.contact-activation #success {
    background-color: #009a00;
    border-left: 5px solid green;
    margin-bottom: 5px;
}

.contact-activation #c-error,
.contact-activation #error {
    background-color: #ff1a1a;
    border-left: 5px solid red;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 5s alternate infinite;
    animation: rotating 5s alternate infinite;
}


/*** back to top **/

.back-btn {
    background-color: #EC2526;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 4px solid #eb1c1d;
    border-radius: 3px;
    text-align: center;
    display: none;
    position: fixed;
    z-index: 999;
    right: 100px;
    bottom: 15px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

@media (max-width: 991px) {
    .back-btn {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

.back-btn:hover {
    background-color: #EC2526;
}

.back-btn i {
    font-size: 18px;
    font-size: calc-rem-value(18);
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/** for popup image ***/

.mfp-wrap {
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}


/*** for fancybox video ***/

.fancybox-overlay {
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999 !important;
}

.fancybox-wrap {
    z-index: 99999 !important;
}

.ui-widget.ui-widget-content {
    box-shadow: 0px 1px 13.5px 1.5px rgba(46, 49, 108, 0.08);
    border: none;
    padding: 10px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #e3e3e3;
    background: #f9f9f9;
    font-weight: normal;
    color: #454545;
    text-align: center;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #e3d9d9;
    background: #7f91a6;
    color: #ffffff;
}

.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 {
    border: 1px solid #EC2526;
    background: #EC2526;
    font-weight: normal;
    color: #ffffff;
}

body.dark-page .mouse-circle {
    background-color: #fff;
}

body.dark-page .mouse-circle-follow {
    border-color: #fff;
}

.sticky {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s ease;
    animation: smoothScroll 1s forwards;
    box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
    z-index: 999;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-142px);
    }
    100% {
        transform: translateY(0px);
    }
}

.header-style-2 .sticky {
    background: #5b0000;
}

@media (max-width: 991px) {
    .header-style-1 .sticky {
        padding: 15px;
        background: #1F212D;
    }
}

@media (max-width: 575px) {
    .header-style-1 .sticky {
        padding: 15px 0;
    }
}

.header-style-1 .sticky .mean-container .mean-nav {
    margin-top: 15px;
}

@media (max-width: 991px) {
    .header-style-3 .sticky {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .header-style-3 .sticky {
        padding: 15px 0;
    }
}

.heading-title,
.heading-title-s2,
.heading-title-s3 {
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .heading-title,
    .heading-title-s2,
    .heading-title-s3 {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .heading-title,
    .heading-title-s2,
    .heading-title-s3 {
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .heading-title,
    .heading-title-s2,
    .heading-title-s3 {
        margin-bottom: 20px;
        text-align: center;
    }
}

.heading-title small,
.heading-title-s2 small,
.heading-title-s3 small {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    display: inline-block;
    font-family: "Cormorant";
    padding-bottom: 10px;
    margin-bottom: 15px;
    position: relative;
    color: #912323;
}

.heading-title small:before,
.heading-title-s2 small:before,
.heading-title-s3 small:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 63px;
    background: #912323;
    content: "";
}

@media (max-width: 991px) {
    .heading-title small:before,
    .heading-title-s2 small:before,
    .heading-title-s3 small:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.heading-title small:after,
.heading-title-s2 small:after,
.heading-title-s3 small:after {
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 8px;
    width: 8px;
    background: #fff;
    content: "";
    border: 1px solid #912323;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .heading-title small:after,
    .heading-title-s2 small:after,
    .heading-title-s3 small:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.heading-title h2,
.heading-title-s2 h2,
.heading-title-s3 h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
}

.heading-title h2 span,
.heading-title-s2 h2 span,
.heading-title-s3 h2 span {
    color: #872c2c;
}

@media (max-width: 1399px) {
    .heading-title h2,
    .heading-title-s2 h2,
    .heading-title-s3 h2 {
        font-size: 45px;
    }
}

@media (max-width: 1199px) {
    .heading-title h2,
    .heading-title-s2 h2,
    .heading-title-s3 h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .heading-title h2,
    .heading-title-s2 h2,
    .heading-title-s3 h2 {
        font-size: 42px;
        line-height: 48px;
    }
}

@media (max-width: 575px) {
    .heading-title h2,
    .heading-title-s2 h2,
    .heading-title-s3 h2 {
        font-size: 35px;
        margin-top: 0;
        line-height: 40px;
    }
}

.heading-title p,
.heading-title-s2 p,
.heading-title-s3 p {
    font-size: 18px;
}

.heading-title-s2 {
    text-align: center;
}

.heading-title-s2 small {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    display: inline-block;
    font-family: "Cormorant";
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    color: #891313;
}

.heading-title-s2 small:before {
    left: 50%;
    transform: translateX(-50%);
}

.heading-title-s2 small:after {
    left: 50%;
    transform: translateX(-50%);
}

.heading-title-s3 small:after {
    background: transparent;
}

.heading-title-s3 small:before {
    left: 8px;
}

@media (max-width: 991px) {
    .heading-title-s3 small:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.heading-title-s3 h2 {
    color: #fff;
}

.btn-style-1,
.btn-style-2 {
    background: #5b0000;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 29px;
    padding: 12px 35px;
    padding-right: 60px;
    border: 0;
    z-index: 1;
    border: 2px solid #ffffff;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    transition: all 0.8s;
}

.btn-style-1:before,
.btn-style-2:before {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 10px;
    width: 10px;
    z-index: -1;
    content: "";
    border-radius: 0px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}

.btn-style-1:after,
.btn-style-2:after {
    position: absolute;
    right: 30px;
    top: 13px;
    content: "\e912";
    font-family: "icomoon" !important;
    transform: rotate(-45deg);
    transition: all 0.3s;
}

.btn-style-1.btn-style-1-s3,
.btn-style-2.btn-style-1-s3 {
    width: 100%;
    height: 100%;
    background: #fff;
    color: #EC2526;
}

.btn-style-1.btn-style-1-s3:after,
.btn-style-2.btn-style-1-s3:after {
    border: 1px solid #fff;
}

.btn-style-1.btn-style-1-s4,
.btn-style-2.btn-style-1-s4 {
    background: #EC2526;
    color: #fff;
}

.btn-style-1.btn-style-1-s4:after,
.btn-style-2.btn-style-1-s4:after {
    border: 1px solid #EC2526;
}

.btn-style-1:hover,
.btn-style-1:focus,
.btn-style-1:active,
.btn-style-2:hover,
.btn-style-2:focus,
.btn-style-2:active {
    color: #EC2526;
}

.btn-style-1:hover:before,
.btn-style-1:focus:before,
.btn-style-1:active:before,
.btn-style-2:hover:before,
.btn-style-2:focus:before,
.btn-style-2:active:before {
    width: 100%;
    height: 100%;
    left: 0%;
    right: auto;
}

.btn-style-1:hover:after,
.btn-style-1:focus:after,
.btn-style-1:active:after,
.btn-style-2:hover:after,
.btn-style-2:focus:after,
.btn-style-2:active:after {
    transform: rotate(0deg);
}

.btn-style-1:hover:after,
.btn-style-2:hover:after {
    opacity: 1;
}

@media (max-width: 991px) {
    .btn-style-1,
    .btn-style-2 {
        font-size: 18px;
        font-size: calc-rem-value(18);
    }
}

@media (max-width: 767px) {
    .btn-style-1,
    .btn-style-2 {
        padding: 10px 18px;
        padding-right: 40px;
        font-size: 14px;
    }
    .btn-style-1:after,
    .btn-style-2:after {
        right: 16px;
        top: 12px;
    }
}

.btn-style-2 {
    background: #1F212D;
    border-color: #1F212D;
}

.form input,
.form textarea,
.form select {
    border-color: #bfbfbf;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    color: #595959;
    font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #EC2526;
    -webkit-box-shadow: 0 0 5px 0 #f05455;
    -moz-box-shadow: 0 0 5px 0 #f05455;
    -o-box-shadow: 0 0 5px 0 #f05455;
    -ms-box-shadow: 0 0 5px 0 #f05455;
    box-shadow: 0 0 5px 0 #f05455;
}

.form ::-webkit-input-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form :-moz-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form ::-moz-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form :-ms-input-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form select {
    font-style: normal;
    background: url(../images/select-icon.png) no-repeat right center;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form select::-ms-expand {
    /* for IE 11 */
    display: none;
}

.form ::-webkit-input-placeholder {
    /* Edge */
    font-style: normal;
}

.form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-style: normal;
}

.form ::placeholder {
    font-style: normal;
}

.social-links {
    overflow: hidden;
}

.social-links li {
    float: left;
    width: 35px;
    height: 35px;
    margin-right: 1px;
}

.social-links li a {
    background-color: #f05455;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    color: #fff;
    text-align: center;
}

.social-links li a:hover {
    background-color: #EC2526;
}

.header-search-form {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.header-search-form .close-header-search {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 50px;
    height: 50px;
    background: #EC2526;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
}

.header-search-form .close-header-search i {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 20px;
}

.header-search-form form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-search-form .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
    border-radius: 40px;
}

.header-search-form .form-group input[type=text],
.header-search-form .form-group input[type=search] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 40px;
    border: 0;
}

.header-search-form .form-group input[type=text]:focus,
.header-search-form .form-group input[type=search]:focus {
    outline: none;
    border-color: #EC2526;
}

.header-search-form .form-group input[type=submit] {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.header-search-form .form-group input[type=submit]:hover,
.header-search-form .form-group button:hover {
    color: #000000;
}

.header-search-form .form-group .search-btn {
    width: 60px;
    height: 70px;
    background: #EC2526;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
}

.header-search-form input::placeholder,
.header-search-form textarea::placeholder {
    color: #000000;
}

.header-search-form.active {
    transform: translateY(0%);
    margin-top: 0;
}

.header-search-form.active .close-header-search {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.header-search-form.active form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.page-title {
    background: #FDF9F6;
    min-height: 640px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #270000 29.03%, rgba(31, 33, 45, 0) 100%);
    z-index: -1;
}

@media (max-width: 991px) {
    .page-title {
        min-height: 350px;
    }
}

@media (max-width: 575px) {
    .page-title {
        min-height: 250px;
    }
}

.page-title .breadcumb-wrap {
    padding-top: 150px;
}

@media (max-width: 991px) {
    .page-title .breadcumb-wrap {
        padding-top: 0;
    }
}

@media (max-width: 575px) {
    .page-title .breadcumb-wrap {
        text-align: center;
    }
}

.page-title .breadcumb-wrap h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    color: #fff;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .page-title .breadcumb-wrap h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.page-title .breadcumb-wrap ol {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
}

@media (max-width: 575px) {
    .page-title .breadcumb-wrap ol {
        justify-content: center;
    }
}

.page-title .breadcumb-wrap ol li {
    display: inline-block;
    padding: 0px 15px;
    color: #EC2526;
    position: relative;
    font-size: 16px;
}

.page-title .breadcumb-wrap ol li i {
    color: #707070;
    margin-right: 5px;
}

.page-title .breadcumb-wrap ol li:first-child {
    padding-left: 0;
}

@media (max-width: 767px) {
    .page-title .breadcumb-wrap ol li {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .page-title .breadcumb-wrap ol li {
        font-size: 16px;
        padding: 0 10px;
    }
    .page-title .breadcumb-wrap ol li:first-child {
        padding-left: 0;
    }
}

.page-title .breadcumb-wrap ol li:after {
    content: "/";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.page-title .breadcumb-wrap ol li:last-child span {
    color: #cbd4fd;
}

.page-title .breadcumb-wrap ol li:last-child:after {
    display: none;
}

.page-title .breadcumb-wrap ol li a {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.page-title .breadcumb-wrap ol li a:hover {
    color: #EC2526;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1F212D;
    z-index: 999999;
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #EC2526;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f23538;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #eb2529;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/**** pagination ****/

.pagination-wrapper {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .pagination-wrapper {
        text-align: left;
        margin-top: 40px;
    }
}

.pagination-wrapper .pg-pagination {
    display: inline-block;
    overflow: hidden;
    list-style-type: none;
    text-align: center;
}

.pagination-wrapper .pg-pagination li {
    float: left;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .pagination-wrapper .pg-pagination li {
        margin-right: 5px;
    }
}

.pagination-wrapper .pg-pagination li:last-child {
    margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
    background-color: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-size: calc-rem-value(16);
    font-weight: 600;
    color: #1F212D;
    background: #f9f7f6;
    display: block;
}

@media (max-width: 991px) {
    .pagination-wrapper .pg-pagination li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        font-size: calc-rem-value(15);
    }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
    background: #EC2526;
    border-color: #EC2526;
    color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
    font-size: 15px;
    font-size: calc-rem-value(15);
}

.pagination-wrapper-left {
    text-align: left;
}

.pagination-wrapper-right {
    text-align: right;
}

@media screen and (min-width: 1200px) {
    .pagination-wrapper-right {
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .pagination-wrapper-right {
        margin-top: 45px;
        text-align: left;
    }
}


/*--------------------------------------------------------------
02. Header Style
--------------------------------------------------------------*/


/*-- 2.1 topbar --*/

.topbar {
    background: #5b0000;
}

@media (max-width: 575px) {
    .topbar {
        padding: 20px 0;
    }
}

@media (max-width: 991px) {
    .topbar .container-fluid {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .topbar .container-fluid {
        padding: 0 15px;
    }
}

.topbar .contact-info ul {
    display: flex;
}

@media (max-width: 991px) {
    .topbar .contact-info ul {
        justify-content: center;
    }
}

.topbar .contact-info ul li {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    padding: 10px 0;
    color: #fff;
}

.topbar .contact-info.social {
    background: #fff;
    padding-left: 0px;
    margin-left: -20px;
    clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}

@media (max-width: 991px) {
    .topbar .contact-info.social {
        clip-path: unset;
        margin: 0;
    }
}

@media (max-width: 575px) {
    .topbar .contact-info.social {
        background: none;
    }
}

.topbar .contact-info.social ul {
    justify-content: center;
}

.topbar .contact-info.social li {
    color: #fff;
}

@media (max-width: 575px) {
    .topbar .contact-info.social li {
        padding: 0;
    }
}

.topbar .contact-info.social li+li {
    margin-left: 15px;
}

.topbar .contact-info.social li a {
    color: #1F212D;
}

@media (max-width: 575px) {
    .topbar .contact-info.social li a {
        color: #fff;
    }
}

@media (max-width: 575px) {
    .topbar .contact-intro {
        text-align: center;
    }
}

.topbar .contact-intro ul {
    display: flex;
}

@media (max-width: 991px) {
    .topbar .contact-intro ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.topbar .contact-intro ul li {
    padding: 10px 0;
    color: #fff;
}

@media (max-width: 1399px) {
    .topbar .contact-intro ul li {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .topbar .contact-intro ul li {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .topbar .contact-intro ul li {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .topbar .contact-intro ul li {
        padding-bottom: 0;
    }
}

.topbar .contact-intro ul li a {
    color: #fff;
}

.topbar .contact-intro ul li i {
    margin-right: 10px;
}

@media (max-width: 1199px) {
    .topbar .contact-intro ul li i {
        margin-right: 5px;
    }
}

.topbar .col:last-child {
    padding-right: 20px;
}

.topbar .col:last-child .contact-intro ul {
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .topbar .col:last-child .contact-intro ul {
        justify-content: center;
    }
}

.topbar .col:last-child .contact-intro ul li+li {
    margin-left: 20px;
}

.header-area {
    z-index: 99;
}

@media (max-width: 991px) {
    .header-area {
        padding: 15px 0;
    }
}

.header-area .main-menu .row {
    width: 100%;
}

.header-area ul.nav {
    list-style: none;
    justify-content: flex-start;
}

.header-area .main-menu>ul {
    display: flex;
    list-style: none;
}

@media screen and (min-width: 992px) {
    .header-area .main-menu #navbar li {
        position: relative;
    }
    .header-area .main-menu ul li.has-submenu {
        position: relative;
    }
    .header-area .main-menu ul>li>a {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 29px;
        padding: 35px 40px;
        display: block;
        color: #1F212D;
        position: relative;
    }
}

@media screen and (min-width: 992px) and (max-width: 1650px) {
    .header-area .main-menu ul>li>a {
        padding: 35px 30px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1500px) {
    .header-area .main-menu ul>li>a {
        padding: 35px 20px;
    }
}

@media screen and (min-width: 992px) {
    .header-area .main-menu ul>li>a:hover,
    .header-area .main-menu ul>li>a.active {
        background: #C2971E;
        background: linear-gradient(to right, #C2971E 0%, #F0DB72 50%, #BB9621 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .header-area .main-menu ul>li>a:hover:before,
    .header-area .main-menu ul>li>a.active:before {
        opacity: 1;
        visibility: visible;
    }
    .header-area .main-menu ul .sub-menu {
        background-color: #fff;
        box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
        width: 230px;
        position: absolute;
        padding: 20px 0;
        left: 0;
        top: 110%;
        z-index: 10;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform-origin: center top 0;
        -webkit-transform-origin: center top 0;
        -moz-transform-origin: center top 0;
        -ms-transform-origin: center top 0;
        -o-transform-origin: center top 0;
        transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
        visibility: hidden;
    }
    .header-area .main-menu ul .sub-menu .third-lavel-menu {
        position: relative;
    }
    .header-area .main-menu ul .sub-menu .third-lavel-menu:before {
        position: absolute;
        right: 10px;
        top: 20px;
        content: "\e906";
        font-family: "icomoon";
        transform: rotate(270deg);
        font-size: 12px;
    }
    .header-area .main-menu ul .sub-menu .third-lavel-menu .sub-menu {
        top: 0;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area .main-menu ul .sub-menu .third-lavel-menu .sub-menu {
        left: auto;
        right: 100%;
    }
}

@media screen and (min-width: 992px) {
    .header-area .main-menu ul .sub-menu .third-lavel-menu:hover .sub-menu {
        top: 0;
        left: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area .main-menu ul .sub-menu .third-lavel-menu:hover .sub-menu {
        top: 0;
        left: auto;
    }
}

@media screen and (min-width: 992px) {
    .header-area .main-menu ul>li .sub-menu a {
        font-size: 16px;
        font-size: calc-rem-value(16);
        display: block;
        padding: 12px 20px;
        color: #1F212D;
        position: relative;
        overflow: hidden;
    }
    .header-area .main-menu ul>li .sub-menu a:hover,
    .header-area .main-menu ul>li .sub-menu a.active {
        color: #EC2526;
    }
    .header-area .main-menu ul>li>.sub-menu .sub-menu {
        left: 100%;
        top: 0;
    }
    .header-area .main-menu ul>li>.sub-menu>.menu-item-has-children>a {
        position: relative;
    }
    .header-area .main-menu ul>li>.sub-menu>.menu-item-has-children>a:before {
        font-family: "themify";
        content: "\e649";
        font-size: 11px;
        font-size: 0.73333rem;
        position: absolute;
        right: 15px;
        top: 58%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .header-area .main-menu ul>li:hover>.sub-menu {
        opacity: 1;
        top: 100%;
        transform: scaleY(100%);
        -webkit-transform: scaleY(100%);
        -moz-transform: scaleY(100%);
        -ms-transform: scaleY(100%);
        -o-transform: scaleY(100%);
        visibility: visible;
    }
    .header-area .main-menu #navbar .sub-menu>li:hover>.sub-menu {
        visibility: visible;
        opacity: 1;
    }
}

.header-area .header-area-right>ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 991px) {
    .header-area .main-menu .navigation {
        padding: 20px 0;
    }
}

@media (max-width: 1700px) {
    .header-area .main-menu ul>li>a {
        padding: 35px 20px;
    }
}

@media (max-width: 1399px) {
    .header-area .main-menu ul>li>a {
        padding: 35px 18px;
    }
}

@media (max-width: 1199px) {
    .header-area .main-menu ul>li>a {
        padding: 35px 8px;
        font-size: 15px;
    }
}

.header-area .header-area-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .header-area .header-area-right {
        padding-right: 80px;
    }
}

@media (max-width: 575px) {
    .header-area .header-area-right {
        padding-right: 65px;
    }
}

.header-area .header-area-right .search-toggle-btn {
    margin-right: 20px;
}

.header-area .header-area-right .search-toggle-btn i {
    font-size: 25px;
    color: #1F212D;
}

@media (max-width: 991px) {
    .header-area .header-area-right .search-toggle-btn i {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .header-area .header-area-right .search-toggle-btn i {
        font-size: 25px;
    }
}

.header-area .header-area-right .contact-ft {
    margin-top: -2px;
}

@media (max-width: 991px) {
    .header-area .header-area-right .contact-ft {
        margin-top: 0;
    }
}

.header-area .header-area-right .contact-ft a {
    display: flex;
    align-items: center;
    padding: 26px 40px;
    padding-left: 70px;
    background: #1F212D;
    padding-right: 40px;
    margin-right: -20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 28% 100%);
}

@media (max-width: 1399px) {
    .header-area .header-area-right .contact-ft a {
        padding-right: 30px;
        padding-left: 50px;
    }
}

@media (max-width: 1199px) {
    .header-area .header-area-right .contact-ft a {
        padding-right: 20px;
        padding-left: 35px;
    }
}

@media (max-width: 991px) {
    .header-area .header-area-right .contact-ft a {
        padding: 12px;
        margin: 0;
        border: 1px solid #fff;
        clip-path: unset;
        text-align: center;
        border-radius: 50%;
    }
}

.header-area .header-area-right .contact-ft a i {
    margin-right: 10px;
}

@media (max-width: 991px) {
    .header-area .header-area-right .contact-ft a i {
        margin-right: 0;
    }
}

@media (max-width: 1399px) {
    .header-area .header-area-right .contact-ft a i img {
        max-width: 28px;
    }
}

@media (max-width: 991px) {
    .header-area .header-area-right .contact-ft a span {
        display: none;
    }
}

.header-area .header-area-right .contact-ft a span small {
    display: block;
    color: #fff;
}

@media (max-width: 1199px) {
    .header-area .header-area-right .contact-ft a span small {
        font-size: 13px;
    }
}

.header-area .header-area-right .contact-ft a span b {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: #fff;
}

@media (max-width: 1399px) {
    .header-area .header-area-right .contact-ft a span b {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .header-area .header-area-right .contact-ft a span b {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    .header-area .header-area-right .btn-style-1 {
        padding: 12px 20px;
        padding-right: 60px;
    }
}

.header-area.header-style-1 {
    border-bottom: 1px solid #D7D7D7;
}

@media (max-width: 991px) {
    .header-area.header-style-1 {
        background: #1F212D;
    }
}

@media (max-width: 991px) {
    .header-area.header-style-1 .header-area-right .search-toggle-btn i {
        color: #fff;
    }
}

.header-area.header-style-1 .logo {
    position: relative;
    background: #1F212D;
    z-index: 1;
    padding: 30px 0;
    padding-left: 40px;
    margin-left: -20px;
    clip-path: polygon(0 0, 100% 0, 72% 100%, 0% 100%);
}

@media (max-width: 1399px) {
    .header-area.header-style-1 .logo {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .header-area.header-style-1 .logo {
        clip-path: unset;
        padding: 0;
        margin-left: 0px;
    }
}

.header-style-2 {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
    .header-style-2 {
        position: relative;
        background: #1F212D;
        padding: 0;
    }
}

.header-style-2 .menu-area {
    padding: 0 40px;
}

@media (max-width: 1800px) {
    .header-style-2 .menu-area {
        padding: 0 30px;
    }
}

@media (max-width: 1399px) {
    .header-style-2 .menu-area {
        padding: 0 10px;
    }
}

@media (max-width: 991px) {
    .header-style-2 .menu-area {
        padding: 20px 0px;
        background: linear-gradient(to right, #C2971E 0%, #F0DB72 50%, #BB9621 100%);
    }
}

.header-style-2 .mean-container a.meanmenu-reveal {
    margin-top: -52px;
}

@media (max-width: 450px) {
    .header-style-2 .mean-container a.meanmenu-reveal {
        margin-top: -45px;
    }
}

@media (max-width: 991px) {
    .header-style-2 .btn-style-1 {
        display: none;
    }
}

.header-style-2 .topbar .contact-info.social {
    background: #230000d1;
    clip-path: polygon(0 0, 84% 0, 100% 100%, 100% 100%, 0 100%, 0% 50%);
    padding-left: 60px;
}

@media (max-width: 991px) {
    .header-style-2 .topbar .contact-info.social {
        clip-path: unset;
        padding-left: 0;
        background: none;
    }
}

.header-style-2 .topbar .contact-info.social ul {
    justify-content: flex-start;
}

@media (max-width: 991px) {
    .header-style-2 .topbar .contact-info.social ul {
        justify-content: center;
    }
}

.header-style-2 .topbar .contact-info.social li a {
    color: #fff;
}

.header-style-2 .main-menu ul>li>a {
    color: #fff;
}

.header-style-2 .header-area-right .search-toggle-btn i {
    color: #fff;
}

@media (max-width: 991px) {
    .header-style-2 .header-area-right .search-toggle-btn {
        margin-right: 0;
    }
}

.header-style-2 ul.nav {
    justify-content: center;
}

.header-style-3 {
    padding: 0 65px;
    z-index: 99;
}

@media (max-width: 1700px) {
    .header-style-3 {
        padding: 0 45px;
    }
}

@media (max-width: 1199px) {
    .header-style-3 {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .header-style-3 {
        padding: 30px 15px;
    }
}

.header-style-3 .mean-container a.meanmenu-reveal {
    margin-top: -52px;
}

@media (max-width: 450px) {
    .header-style-3 .mean-container a.meanmenu-reveal {
        margin-top: -45px;
    }
}

@media (max-width: 991px) {
    .header-style-3 .btn-style-1 {
        display: none;
    }
}


/*--------------------------------------------------------------
04. Hero
--------------------------------------------------------------*/


/*1.2.1 static-hero */

.static-hero {
    position: relative;
    z-index: 1;
    padding-bottom: 120px;
}

.static-hero .back-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70%;
    z-index: -1;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .static-hero {
        padding: 80px 30px;
    }
}

@media (max-width: 575px) {
    .static-hero {
        padding: 70px 0px;
    }
}

.static-hero .static-banner-sec {
    position: relative;
    z-index: 1;
}

@media (max-width: 575px) {
    .static-hero .static-banner-sec img {
        min-height: 200px;
    }
}

.static-hero .static-banner-sec .hero-img {
    position: absolute;
    right: 15px;
    bottom: 0;
}

@media (max-width: 1199px) {
    .static-hero .static-banner-sec .hero-img {
        max-width: 485px;
    }
}

@media (max-width: 991px) {
    .static-hero .static-banner-sec .hero-img {
        max-width: 50%;
    }
}

@media (max-width: 400px) {
    .static-hero .static-banner-sec .hero-img {
        max-width: 70%;
        right: -70px;
    }
}

@media (max-width: 575px) {
    .static-hero .static-banner-sec .hero-img img {
        min-height: unset;
    }
}

.static-hero .static-banner-sec .radial-bar {
    position: absolute;
    bottom: -115px;
    right: 50px;
    z-index: -1;
}

@media (max-width: 991px) {
    .static-hero .static-banner-sec .radial-bar {
        max-width: 200px;
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 575px) {
    .static-hero .static-banner-sec .radial-bar {
        display: none;
    }
}

.static-hero .static-hero-text {
    display: flex;
    padding-top: 60px;
}

@media (max-width: 991px) {
    .static-hero .static-hero-text {
        text-align: center;
        padding-top: 0;
        display: block;
        margin-bottom: 50px;
    }
}

.static-hero .static-hero-text h2 {
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: #1F212D;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    max-width: 1000px;
}

@media (max-width: 1500px) {
    .static-hero .static-hero-text h2 {
        font-size: 100px;
        line-height: 100px;
    }
}

@media (max-width: 1199px) {
    .static-hero .static-hero-text h2 {
        font-size: 70px;
        line-height: 70px;
        max-width: 715px;
    }
}

@media (max-width: 767px) {
    .static-hero .static-hero-text h2 {
        font-size: 50px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .static-hero .static-hero-text h2 {
        font-size: 44px;
        line-height: 44px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {
    .static-hero .static-hero-text h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

.static-hero .static-hero-text h2 span {
    color: #EC2526;
}

.static-hero .static-hero-text h2 span i {
    display: block;
    line-height: 20px;
}

@media (max-width: 991px) {
    .static-hero .static-hero-text h2 span i img {
        max-width: 45%;
    }
}

.static-hero .static-hero-text h2 small {
    position: absolute;
    right: -20px;
    top: -65px;
}

@media (max-width: 450px) {
    .static-hero .static-hero-text h2 small {
        display: none;
    }
}

.static-hero .static-hero-text .rotate-text-wrap {
    position: absolute;
    right: 200px;
    top: 100px;
    width: 200px;
    height: 200px;
    line-height: 200px;
    border-radius: 50%;
    z-index: 11;
    border: 1px dashed #707070;
}

@media (max-width: 1500px) {
    .static-hero .static-hero-text .rotate-text-wrap {
        right: 100px;
    }
}

@media (max-width: 1400px) {
    .static-hero .static-hero-text .rotate-text-wrap {
        right: 40px;
    }
}

@media (max-width: 1199px) {
    .static-hero .static-hero-text .rotate-text-wrap {
        top: 50px;
    }
}

@media (max-width: 991px) {
    .static-hero .static-hero-text .rotate-text-wrap {
        position: relative;
        left: 0;
        margin: 0 auto;
        top: 0;
    }
}

.static-hero .static-hero-text .rotate-text-wrap .rotate-text {
    position: relative;
    top: 0px;
    animation: circle 30s linear infinite;
    max-width: 200px;
}

.static-hero .static-hero-text .rotate-text-wrap .rotate-text svg path {
    fill: transparent;
}

.static-hero .static-hero-text .rotate-text-wrap .rotate-text text {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #1F212D;
    text-transform: uppercase;
    font-family: "Cormorant";
    letter-spacing: 9px;
}

.static-hero .static-hero-text .rotate-text-wrap .icon {
    position: absolute;
    left: 20%;
    top: 15px;
}

.static-hero .static-hero-text .rotate-text-wrap .icon i {
    display: inline-block;
    font-size: 50px;
    color: #fff;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    background: #EC2526;
    border-radius: 50%;
}

.static-hero .progress-wrap {
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(191, 191, 191, 0.25);
    text-align: center;
    padding: 20px;
    max-width: 142px;
    position: absolute;
    left: -80px;
    top: 50px;
}

@media (max-width: 1500px) {
    .static-hero .progress-wrap {
        left: -50px;
    }
}

@media (max-width: 767px) {
    .static-hero .progress-wrap {
        left: 20px;
        top: 30px;
    }
}

.static-hero .progress-wrap span {
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #1F212D;
    display: block;
    margin-bottom: 10px;
}

.static-hero .progress-wrap .progress {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

.static-hero .progress-wrap .progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.static-hero .progress-wrap .progress>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.static-hero .progress-wrap .progress .progress-left {
    left: 0;
}

.static-hero .progress-wrap .progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 6px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.static-hero .progress-wrap .progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.static-hero .progress-wrap .progress .progress-right {
    right: 0;
}

.static-hero .progress-wrap .progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}

.static-hero .progress-wrap .progress .progress-value {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: #ffffff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #1F212D;
    line-height: 65px;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 5%;
    font-family: "Cormorant";
}

.static-hero .progress-wrap .progress.blue .progress-bar {
    border-color: #EC2526;
}

.static-hero .progress-wrap .progress.blue .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.8s;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(144deg);
        transform: rotate(144deg);
    }
}

@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes loading-4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);
    }
}

@keyframes loading-5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(126deg);
        transform: rotate(126deg);
    }
}

.static-hero .vector-shape {
    position: absolute;
    right: 10%;
    bottom: 20%;
    animation: zoom-in-zoom-out 5s ease infinite;
}


/*3.1 hero-slider*/

.hero-slider {
    width: 100%;
    height: 900px;
    display: flex;
    position: relative;
    z-index: 0;
}

/* @media (max-width: 991px) {
    .hero-slider {
        height: 700px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 600px;
    }
} */

.hero-slider .swiper-slide {
    overflow: hidden;
}

.hero-slider .swiper-container,
.hero-slider .hero-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .slide-inner:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #230000d1 29.03%, rgba(31, 33, 45, 0) 100%);
    content: "";
}

.hero-slider .slide-inner .left-shape-1 {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 1;
}

.hero-slider .slide-inner .left-shape-2 {
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-slider .slide-inner .frame {
    position: absolute;
    right: 0;
    bottom: 0px;
    z-index: 1;
}

@media (max-width: 1399px) {
    .hero-slider .slide-inner .frame {
        max-width: 350px;
    }
}

@media (max-width: 1199px) {
    .hero-slider .slide-inner .frame {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .hero-slider .slide-inner .frame {
        display: none;
    }
}

.hero-slider .slide-inner .slide-content {
    padding-top: 95px;
    position: relative;
    z-index: 11;
}

@media (max-width: 991px) {
    .hero-slider .slide-inner .slide-content {
        padding-top: 0;
    }
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: rgba(236, 37, 38, 0.1);
    width: 50px;
    height: 50px;
    line-height: 48px;
    border: 2px solid #EC2526;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: -25px;
}

.hero-slider .swiper-button-prev:before {
    font-family: "icomoon";
    content: "\e913";
    font-size: 20px;
    color: #fff;
}

.hero-slider .swiper-button-next {
    right: -25px;
}

.hero-slider .swiper-button-next:before {
    font-family: "icomoon";
    content: "\e912";
    font-size: 20px;
    color: #fff;
}

@media (max-width: 991px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 992px) {
    .hero-slider .swiper-pagination-bullet {
        display: none;
    }
}

.hero-slider .swiper-pagination-bullet-active {
    color: #fff;
    background: #fff;
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 12px;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
}

.hero-slider:hover .swiper-button-prev {
    left: 25px;
}

.hero-slider:hover .swiper-button-next {
    right: 25px;
}

@media (max-width: 991px) {
    .hero-slider .slide-content {
        text-align: center;
        padding-top: 0;
        display: block;
        margin-bottom: 50px;
    }
}

.hero-slider .slide-content h2 {
    font-size: 90px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    max-width: 1000px;
    padding-bottom: 30px;
}

@media (max-width: 1500px) {
    .hero-slider .slide-content h2 {
        font-size: 100px;
        line-height: 100px;
    }
}

@media (max-width: 1199px) {
    .hero-slider .slide-content h2 {
        font-size: 70px;
        line-height: 70px;
        max-width: 715px;
    }
}

@media (max-width: 767px) {
    .hero-slider .slide-content h2 {
        font-size: 50px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .hero-slider .slide-content h2 {
        font-size: 44px;
        line-height: 44px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {
    .hero-slider .slide-content h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

.hero-slider .slide-content h2 span {
    background: #C2971E;
    background: linear-gradient(to right, #C2971E 0%, #F0DB72 50%, #BB9621 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slider .slide-content h2 span i {
    display: block;
    line-height: 20px;
    position: absolute;
    left: 0;
    bottom: -30px;
}

@media (max-width: 991px) {
    .hero-slider .slide-content h2 span i img {
        max-width: 45%;
    }
}

.hero-slider .slide-content p {
    max-width: 598px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    color: #fff;
    padding-left: 30px;
    position: relative;
    margin-bottom: 60px;
}

.hero-slider .slide-content p:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    content: "";
    background: linear-gradient(to right, #C2971E 0%, #F0DB72 50%, #BB9621 100%);
    border-radius: 5px;
}

@media (max-width: 991px) {
    .hero-slider .slide-content p:before {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-slider .slide-content p {
        margin: 0 auto;
        margin-bottom: 20px;
        padding-left: 0;
    }
}

.hero-slider .slide-content .slide-title {
    position: relative;
    max-width: 850px;
}

@media (max-width: 1199px) {
    .hero-slider .slide-content .slide-title {
        max-width: 720px;
    }
}

.hero-slider .slide-content .customer-review {
    display: flex;
    align-items: center;
    padding: 15px;
    padding-left: 20px;
    border-radius: 40px;
    border: 4px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2.5px);
    max-width: 275px;
    position: absolute;
    right: 0;
    bottom: 50px;
}

@media (max-width: 1199px) {
    .hero-slider .slide-content .customer-review {
        bottom: 30px;
    }
}

@media (max-width: 991px) {
    .hero-slider .slide-content .customer-review {
        position: relative;
        margin: 0 auto;
        bottom: 0;
        margin-bottom: 20px;
    }
}

.hero-slider .slide-content .customer-review .customer-review-img {
    margin-right: 20px;
    display: flex;
}

.hero-slider .slide-content .customer-review .customer-review-img img {
    margin: -10px;
    border-radius: 50%;
}

.hero-slider .slide-content .customer-review .customer-review-text span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
    display: block;
}

.hero-slider .slide-content .customer-review .customer-review-text ul {
    display: flex;
    margin-top: 3px;
}

.hero-slider .slide-content .customer-review .customer-review-text ul li {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #fff;
}


/*1.2.1 static-hero-s2  */

@media (max-width: 991px) {
    .static-hero-s2 {
        padding-top: 20px;
    }
}

.static-hero-s2 .static-hero-text {
    display: flex;
    padding-top: 100px;
    text-align: center;
    position: relative;
}

@media (max-width: 991px) {
    .static-hero-s2 .static-hero-text {
        text-align: center;
        padding-top: 0;
        display: block;
        margin-bottom: 0px;
    }
}

.static-hero-s2 .static-hero-text .vector-shape {
    position: absolute;
    left: 200px;
    bottom: 100px;
}

@media (max-width: 1199px) {
    .static-hero-s2 .static-hero-text .vector-shape {
        display: none;
    }
}

.static-hero-s2 .static-hero-text h2 {
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #1F212D;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 1500px) {
    .static-hero-s2 .static-hero-text h2 {
        font-size: 100px;
        line-height: 100px;
    }
}

@media (max-width: 1199px) {
    .static-hero-s2 .static-hero-text h2 {
        font-size: 70px;
        line-height: 70px;
        max-width: 715px;
    }
}

@media (max-width: 991px) {
    .static-hero-s2 .static-hero-text h2 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .static-hero-s2 .static-hero-text h2 {
        font-size: 50px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .static-hero-s2 .static-hero-text h2 {
        font-size: 44px;
        line-height: 44px;
        margin-top: 10px;
        margin-bottom: 0px;
    }
}

@media (max-width: 450px) {
    .static-hero-s2 .static-hero-text h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

.static-hero-s2 .static-hero-text h2 b {
    position: relative;
    top: -30px;
}

.static-hero-s2 .static-hero-text h2 b img {
    border-radius: 84px 84px 0px 84px;
}

@media (max-width: 767px) {
    .static-hero-s2 .static-hero-text h2 b img {
        max-width: 120px;
    }
}

@media (max-width: 575px) {
    .static-hero-s2 .static-hero-text h2 b img {
        max-width: 80px;
        top: -20px;
    }
}

.static-hero-s2 .static-hero-text h2 span {
    color: #EC2526;
}

.static-hero-s2 .static-hero-text h2 span i {
    display: block;
    line-height: 20px;
}

@media (max-width: 991px) {
    .static-hero-s2 .static-hero-text h2 span i img {
        max-width: 45%;
    }
}

.static-hero-s2 .static-hero-text h2 small {
    position: absolute;
    right: -20px;
    top: -65px;
}

@media (max-width: 991px) {
    .static-hero-s2 .static-hero-text h2 small {
        right: -44px;
        top: -20px;
    }
}

@media (max-width: 767px) {
    .static-hero-s2 .static-hero-text h2 small {
        display: none;
    }
}

.static-hero-s2 .about-text {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .static-hero-s2 .about-text {
        padding-left: 0;
        padding-top: 30px;
        text-align: center;
        margin-bottom: 30px;
    }
}

.static-hero-s2 .about-text .about-icon-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .static-hero-s2 .about-text .about-icon-wrap {
        justify-content: center;
    }
}

.static-hero-s2 .about-text .about-icon-wrap i {
    font-size: 70px;
    color: #EC2526;
    margin-right: 20px;
}

.static-hero-s2 .about-text .about-icon-wrap h4 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
}

.static-hero-s2 .about-text .about-icon-wrap small {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

.static-hero-s2 .about-text span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

.static-hero-s2 .about-text p {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: #1F212D;
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .static-hero-s2 .about-text p {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .static-hero-s2 .about-text p {
        font-size: 19px;
        line-height: 25px;
    }
}

.static-hero-s2 .about-text p b {
    color: #EC2526;
}

.static-hero-s2 .static-banner-sec {
    position: relative;
    z-index: 1;
}

.static-hero-s2 .static-banner-sec .left-shape {
    position: absolute;
    left: -30px;
    top: 0;
}

@media (max-width: 991px) {
    .static-hero-s2 .static-banner-sec .left-shape {
        max-width: 100px;
    }
}

@media (max-width: 575px) {
    .static-hero-s2 .static-banner-sec .left-shape {
        max-width: 80px;
    }
}

.static-hero-s2 .static-banner-sec .radial-shape {
    position: absolute;
    right: -150px;
    bottom: -100px;
    z-index: -1;
}

@media (max-width: 1399px) {
    .static-hero-s2 .static-banner-sec .radial-shape {
        max-width: 200px;
        right: -80px;
        bottom: -50px;
    }
}

@media (max-width: 575px) {
    .static-hero-s2 .static-banner-sec .radial-shape {
        display: none;
    }
}

.static-hero-s2 .funfact-section {
    padding-top: 50px;
}


/*--------------------------------------------------------------
03. Footer
--------------------------------------------------------------*/

.footer-section,
.footer-section-s2 {
    background: #1F212D;
    font-size: 15px;
    overflow: hidden;
}

.footer-section ul,
.footer-section-s2 ul {
    list-style: none;
}

.footer-section p,
.footer-section-s2 p {
    color: #fff;
    margin-top: 30px;
}

.footer-section li,
.footer-section-s2 li {
    color: #fff;
}

.footer-section .container,
.footer-section-s2 .container {
    position: relative;
}

.footer-section .upper-footer,
.footer-section-s2 .upper-footer {
    padding: 120px 0 70px;
}

@media (max-width: 991px) {
    .footer-section .upper-footer,
    .footer-section-s2 .upper-footer {
        padding: 80px 0 0px;
    }
}

@media (max-width: 767px) {
    .footer-section .upper-footer,
    .footer-section-s2 .upper-footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 991px) {
    .footer-section .upper-footer .col,
    .footer-section-s2 .upper-footer .col {
        min-height: 235px;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .footer-section .upper-footer .col,
    .footer-section-s2 .upper-footer .col {
        min-height: auto;
    }
}

.footer-section .widget-title,
.footer-section-s2 .widget-title {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .footer-section .widget-title,
    .footer-section-s2 .widget-title {
        margin-bottom: 20px;
    }
}

.footer-section .widget-title h3,
.footer-section-s2 .widget-title h3 {
    color: #fff;
    margin: 0;
    position: relative;
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

@media (max-width: 1399px) {
    .footer-section .widget-title h3,
    .footer-section-s2 .widget-title h3 {
        font-size: 29px;
    }
}

@media (max-width: 1199px) {
    .footer-section .widget-title h3,
    .footer-section-s2 .widget-title h3 {
        font-size: 24px;
    }
}

.footer-section .about-widget .widget-title,
.footer-section-s2 .about-widget .widget-title {
    margin-bottom: 0;
}

.footer-section .about-widget p,
.footer-section-s2 .about-widget p {
    margin-bottom: 0.8em;
    line-height: 1.9em;
}

.footer-section .about-widget p:last-child,
.footer-section-s2 .about-widget p:last-child {
    margin-bottom: 0;
}

.footer-section .link-widget,
.footer-section-s2 .link-widget {
    overflow: hidden;
}

.footer-section .link-widget ul li,
.footer-section-s2 .link-widget ul li {
    position: relative;
}

.footer-section .link-widget ul li a,
.footer-section-s2 .link-widget ul li a {
    color: #fff;
    font-size: 16px;
    line-height: 35px;
    display: block;
}

.footer-section .link-widget ul li a:hover,
.footer-section-s2 .link-widget ul li a:hover {
    color: #EC2526;
}

.footer-section .link-widget ul li+li,
.footer-section-s2 .link-widget ul li+li {
    margin-top: 5px;
}

.footer-section .contact-ft,
.footer-section-s2 .contact-ft {
    margin-top: 20px;
}

.footer-section .contact-ft ul li,
.footer-section-s2 .contact-ft ul li {
    padding-bottom: 8px;
    position: relative;
    color: #e5e3e3;
    font-size: 16px;
}

.footer-section .contact-ft ul li i,
.footer-section-s2 .contact-ft ul li i {
    position: absolute;
    left: 0;
    top: 0;
}

.footer-section .contact-ft ul li .fi:before,
.footer-section-s2 .contact-ft ul li .fi:before {
    font-size: 20px;
    margin-right: 15px;
}

.footer-section .subscribe h3,
.footer-section-s2 .subscribe h3 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section .subscribe .form-field,
.footer-section-s2 .subscribe .form-field {
    position: relative;
}

.footer-section .subscribe .form-field input,
.footer-section-s2 .subscribe .form-field input {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    border: 0;
    background: #292C39;
    padding: 15px;
    padding-right: 70px;
    color: #fff;
}

.footer-section .subscribe .form-field input:focus,
.footer-section-s2 .subscribe .form-field input:focus {
    outline: none;
    border-color: #EC2526;
}

.footer-section .subscribe .form-field button,
.footer-section-s2 .subscribe .form-field button {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 60px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 20px;
}

.footer-section .subscribe .radio-buttons label,
.footer-section-s2 .subscribe .radio-buttons label {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #fff;
}

.footer-section .subscribe [type=radio]:checked,
.footer-section .subscribe [type=radio]:not(:checked),
.footer-section-s2 .subscribe [type=radio]:checked,
.footer-section-s2 .subscribe [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.footer-section .subscribe [type=radio]:checked+label,
.footer-section .subscribe [type=radio]:not(:checked)+label,
.footer-section-s2 .subscribe [type=radio]:checked+label,
.footer-section-s2 .subscribe [type=radio]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-family: "Cormorant";
}

.footer-section .subscribe [type=radio]:checked+label:before,
.footer-section .subscribe [type=radio]:not(:checked)+label:before,
.footer-section-s2 .subscribe [type=radio]:checked+label:before,
.footer-section-s2 .subscribe [type=radio]:not(:checked)+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: transparent;
}

.footer-section .subscribe [type=radio]:checked+label:after,
.footer-section .subscribe [type=radio]:not(:checked)+label:after,
.footer-section-s2 .subscribe [type=radio]:checked+label:after,
.footer-section-s2 .subscribe [type=radio]:not(:checked)+label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #EC2526;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.footer-section .subscribe [type=radio]:not(:checked)+label:after,
.footer-section-s2 .subscribe [type=radio]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.footer-section .subscribe [type=radio]:checked+label:after,
.footer-section-s2 .subscribe [type=radio]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.footer-section .social ul,
.footer-section-s2 .social ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-section .social ul li+li,
.footer-section-s2 .social ul li+li {
    margin-left: 15px;
}

.footer-section .social ul li a,
.footer-section-s2 .social ul li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 35px;
    border-radius: 50%;
    background: #707070;
    text-align: center;
    color: #1F212D;
}

.footer-section .social ul li a:hover,
.footer-section-s2 .social ul li a:hover {
    background: #EC2526;
}

.footer-section .lower-footer,
.footer-section-s2 .lower-footer {
    text-align: center;
    position: relative;
}

.footer-section .lower-footer .row,
.footer-section-s2 .lower-footer .row {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-section .lower-footer .lower-footer-link,
.footer-section-s2 .lower-footer .lower-footer-link {
    display: flex;
}

@media (max-width: 991px) {
    .footer-section .lower-footer .lower-footer-link,
    .footer-section-s2 .lower-footer .lower-footer-link {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.footer-section .lower-footer .lower-footer-link li a,
.footer-section-s2 .lower-footer .lower-footer-link li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    color: #fff;
}

.footer-section .lower-footer .lower-footer-link li a:hover,
.footer-section-s2 .lower-footer .lower-footer-link li a:hover {
    color: #EC2526;
}

.footer-section .lower-footer .lower-footer-link li+li,
.footer-section-s2 .lower-footer .lower-footer-link li+li {
    padding-left: 70px;
}

@media (max-width: 1199px) {
    .footer-section .lower-footer .lower-footer-link li+li,
    .footer-section-s2 .lower-footer .lower-footer-link li+li {
        padding-left: 50px;
    }
}

@media (max-width: 991px) {
    .footer-section .lower-footer .lower-footer-link li+li,
    .footer-section-s2 .lower-footer .lower-footer-link li+li {
        padding: 0 20px;
    }
}

.footer-section .lower-footer .copy-right,
.footer-section-s2 .lower-footer .copy-right {
    text-align: right;
}

@media (max-width: 991px) {
    .footer-section .lower-footer .copy-right,
    .footer-section-s2 .lower-footer .copy-right {
        text-align: center;
        margin-top: 10px;
    }
}

.footer-section .lower-footer .copyright,
.footer-section-s2 .lower-footer .copyright {
    display: inline-block;
    font-size: 14px;
    margin: 0;
}

.footer-section .lower-footer .copyright a,
.footer-section-s2 .lower-footer .copyright a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-section .lower-footer .copyright,
    .footer-section-s2 .lower-footer .copyright {
        float: none;
        display: block;
    }
}

.footer-section-s2 .top-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 40px;
    padding-top: 50px;
}

@media (max-width: 767px) {
    .footer-section-s2 .top-title {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-section-s2 .top-title {
        display: block;
    }
}

.footer-section-s2 .top-title h2 {
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .footer-section-s2 .top-title h2 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .footer-section-s2 .top-title h2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .footer-section-s2 .top-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 450px) {
    .footer-section-s2 .top-title h2 {
        font-size: 30px;
    }
}

.footer-section-s2 .top-title h2 span {
    font-weight: 300;
    color: #EC2526;
}

.footer-section-s2 .upper-footer {
    padding-top: 50px;
}

.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: -200px;
    z-index: 9999;
    opacity: 0;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
}

.sticky-on {
    opacity: 1;
    top: 0;
}


/*--------------------------------------------------------------
2.0 Home-style-1
--------------------------------------------------------------*/


/*==================================
 05. About-section 
 ==================================*/

.about-section .about-img-1,
.about-section-s2 .about-img-1 {
    margin-top: 40px;
    margin-bottom: 30px;
}

.about-section .about-img-1 img,
.about-section-s2 .about-img-1 img {
    width: 100%;
}

.about-section .about-img-2,
.about-section-s2 .about-img-2 {
    position: relative;
}

.about-section .about-img-2 img,
.about-section-s2 .about-img-2 img {
    width: 100%;
}

.about-section .about-img-2 .shape,
.about-section-s2 .about-img-2 .shape {
    position: absolute;
    bottom: -30px;
    right: 0;
    animation: bounceTopToBottom 4s infinite;
}

.about-section .about-text,
.about-section-s2 .about-text {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .about-section .about-text,
    .about-section-s2 .about-text {
        padding-left: 0;
        padding-top: 30px;
    }
}

.about-section .about-text .about-icon-wrap,
.about-section-s2 .about-text .about-icon-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-section .about-text .about-icon-wrap i,
.about-section-s2 .about-text .about-icon-wrap i {
    font-size: 70px;
    color: #EC2526;
    margin-right: 20px;
}

.about-section .about-text .about-icon-wrap h4,
.about-section-s2 .about-text .about-icon-wrap h4 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
}

.about-section .about-text .about-icon-wrap small,
.about-section-s2 .about-text .about-icon-wrap small {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

.about-section .about-text span,
.about-section-s2 .about-text span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

.about-section .about-text p,
.about-section-s2 .about-text p {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: #1F212D;
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .about-section .about-text p,
    .about-section-s2 .about-text p {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .about-section .about-text p,
    .about-section-s2 .about-text p {
        font-size: 19px;
        line-height: 25px;
    }
}

.about-section .about-text p b,
.about-section-s2 .about-text p b {
    color: #EC2526;
}


/*=================================
 06. Features-section 
 ==================================*/

.features-section {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
    padding-top: 90px;
}

@media (max-width: 991px) {
    .features-section {
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .features-section {
        padding-bottom: 10px;
    }
}

.features-section .back-shape {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.features-section .features-btn {
    text-align: right;
}

@media (max-width: 991px) {
    .features-section .features-btn {
        text-align: center;
        margin-bottom: 30px;
    }
}

.features-section .features-item {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .features-section .features-item {
        text-align: center;
    }
}

.features-section .features-item h3 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.features-section .features-item h3 i {
    color: #EC2526;
    margin-right: 10px;
}

@media (max-width: 1199px) {
    .features-section .features-item h3 {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .features-section .features-item h3 {
        font-size: 25px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .features-section .features-item h3 {
        justify-content: center;
    }
}

.features-section .features-item ul li {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
}

.features-section .features-item ul li+li {
    margin-top: 10px;
}


/*===================================
 07. Animate-marque-sec 
 ====================================*/

.animate-marque-sec {
    position: relative;
    z-index: -1;
}

.animate-marque-sec .animate-marque {
    position: relative;
    left: -10%;
    width: 120%;
    z-index: -1;
}

.animate-marque-sec .animate-marque .track {
    animation: marquee 200s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.animate-marque-sec .animate-marque h1 {
    white-space: nowrap;
    will-change: transform;
    animation: marquee 20s linear infinite;
    margin-bottom: 0;
    color: #1F212D;
}

.animate-marque-sec .animate-marque h1 span {
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    line-height: 120px;
}

@media (max-width: 991px) {
    .animate-marque-sec .animate-marque h1 span {
        font-size: 50px;
        line-height: 80px;
    }
}

@media (max-width: 575px) {
    .animate-marque-sec .animate-marque h1 span {
        font-size: 30px;
        line-height: 15px;
        animation: marquee 10s linear infinite;
    }
}

.animate-marque-sec .animate-marque h1 span:nth-child(even) {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #1F212D;
}

.animate-marque-sec .animate-marque-s2 {
    position: relative;
    left: -100%;
    width: 120%;
    z-index: -1;
}

.animate-marque-sec .animate-marque-s2 .track {
    animation: marquee2 200s linear infinite;
}

@keyframes marquee2 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(50%);
    }
}

.animate-marque-sec .animate-marque-s2 h1 {
    white-space: nowrap;
    will-change: transform;
    animation: marquee2 20s linear infinite;
    margin-bottom: 0;
    color: #1F212D;
}

.animate-marque-sec .animate-marque-s2 h1 span {
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    line-height: 120px;
}

@media (max-width: 991px) {
    .animate-marque-sec .animate-marque-s2 h1 span {
        font-size: 50px;
        line-height: 80px;
    }
}

@media (max-width: 575px) {
    .animate-marque-sec .animate-marque-s2 h1 span {
        font-size: 30px;
        animation: marquee2 10s linear infinite;
    }
}

.animate-marque-sec .animate-marque-s2 h1 span:nth-child(even) {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #1F212D;
}


/*=====================================
 08. Service-section 
 ======================================*/

.service-section,
.service-section-s2 {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .service-section,
    .service-section-s2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .service-section,
    .service-section-s2 {
        padding-bottom: 50px;
    }
}

.service-section .service-wrap .service-item,
.service-section-s2 .service-wrap .service-item {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
}

.service-section .service-wrap .service-item:before,
.service-section-s2 .service-wrap .service-item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    content: "";
    background: #EC2526;
    transition: all 0.4s;
}

.service-section .service-wrap .service-item .service-top,
.service-section-s2 .service-wrap .service-item .service-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-section .service-wrap .service-item .service-top i,
.service-section-s2 .service-wrap .service-item .service-top i {
    display: block;
    width: 86px;
    height: 86px;
    line-height: 86px;
    font-size: 45px;
    text-align: center;
    margin-right: 20px;
    transition: all 0.3s;
    border-radius: 5px;
}

.service-section .service-wrap .service-item .service-text h2,
.service-section-s2 .service-wrap .service-item .service-text h2 {
    color: #5b0000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 0;
}

@media (max-width: 450px) {
    .service-section .service-wrap .service-item .service-text h2,
    .service-section-s2 .service-wrap .service-item .service-text h2 {
        font-size: 38px;
    }
}

.service-section .service-wrap .service-item .service-text h3,
.service-section-s2 .service-wrap .service-item .service-text h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

@media (max-width: 450px) {
    .service-section .service-wrap .service-item .service-text h3,
    .service-section-s2 .service-wrap .service-item .service-text h3 {
        font-size: 20px;
    }
}

.service-section .service-wrap .service-item .service-text h3 a,
.service-section-s2 .service-wrap .service-item .service-text h3 a {
    color: #1F212D;
}

.service-section .service-wrap .service-item .service-text h3 a:hover,
.service-section-s2 .service-wrap .service-item .service-text h3 a:hover {
    color: #EC2526;
}

.service-section .service-wrap .service-item:hover:before,
.service-section-s2 .service-wrap .service-item:hover:before {
    width: 100%;
}

.service-section .service-wrap .service-item:hover .service-top i,
.service-section-s2 .service-wrap .service-item:hover .service-top i {
    background: #EC2526;
    color: #fff;
}


/*===============================
 09. Video-section 
 ===============================*/

.video-section .video-text {
    max-width: 414px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .video-section .video-text {
        margin: 0 auto;
        text-align: center;
        margin-bottom: 30px;
    }
}

.video-section .video-text p {
    margin-bottom: 0;
}

.video-section .video-wrap {
    padding: 70px 50px 40px;
}

@media (max-width: 575px) {
    .video-section .video-wrap {
        padding: 40px 20px 40px;
    }
}

.video-section .video-wrap h2 {
    text-align: center;
    font-size: 200px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .video-section .video-wrap h2 {
        font-size: 100px;
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {
    .video-section .video-wrap h2 {
        font-size: 70px;
    }
}

.video-section .skill-section {
    padding: 50px 40px;
    background: #1F212D;
    max-width: 586px;
    border-bottom: 3px solid #EC2526;
}

@media (max-width: 575px) {
    .video-section .skill-section {
        padding: 30px 20px;
    }
}

.video-section .skill-section .progress-single {
    margin-bottom: 30px;
    position: relative;
}

.video-section .skill-section .progress-single h5 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #fff;
}

@media (max-width: 767px) {
    .video-section .skill-section .progress-single h5 {
        font-size: 18px;
    }
}

.video-section .skill-section .progress-single:last-child {
    margin-bottom: 0;
}

.video-section .skill-section .progress-single .progress {
    background: #2E2E2E;
    height: 6px;
    position: relative;
}

.video-section .skill-section .progress-single .progress .progress-bar {
    background-color: #707070;
}

.video-section .skill-section .progress-number {
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
}

@media (max-width: 767px) {
    .video-section .skill-section .progress-number {
        font-size: 18px;
        top: -5px;
    }
}

.video-section .video-btn-wrap {
    position: relative;
}

.video-section .video-btn-wrap .shape {
    position: absolute;
    right: 0;
    top: -110%;
    animation: bounceTopToBottom 2s infinite;
}

@media (max-width: 767px) {
    .video-section .video-btn-wrap .shape {
        top: -50px;
    }
}

.video-section .video-btn-wrap .video-btn {
    display: block;
    width: 124px;
    height: 124px;
    line-height: 124px;
    background: linear-gradient(328deg, #EC2526 -9.33%, #30323D 125.4%);
    border-radius: 50%;
    z-index: 1;
    position: relative;
    margin-left: auto;
}

@media (max-width: 767px) {
    .video-section .video-btn-wrap .video-btn {
        margin: 0 auto;
        width: 100px;
        height: 100px;
        line-height: 100px;
        margin-top: 50px;
    }
}

.video-section .video-btn-wrap .video-btn:before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    position: absolute;
    left: 52%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-section .video-btm-text {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .video-section .video-btm-text {
        text-align: center;
    }
}


/*===================================
 10. Funfact-section 
 ===================================*/

.funfact-section .heading-title {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .funfact-section .heading-title {
        margin-bottom: 40px;
    }
}

.funfact-section .fun-fact-wrap {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .funfact-section .fun-fact-wrap {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .funfact-section .fun-fact-wrap {
        flex-wrap: wrap;
    }
}

.funfact-section .fun-fact-wrap .info {
    flex-basis: 33.33%;
}

@media (max-width: 767px) {
    .funfact-section .fun-fact-wrap .info {
        flex-basis: auto;
        text-align: center;
        padding: 0 15px;
    }
}

.funfact-section .fun-fact-wrap .info h3 {
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 1199px) {
    .funfact-section .fun-fact-wrap .info h3 {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .funfact-section .fun-fact-wrap .info h3 {
        font-size: 50px;
    }
}

.funfact-section .fun-fact-wrap .info h3 span {
    font-family: "Cormorant";
}

.funfact-section .fun-fact-wrap .info h3 small {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #EC2526;
}

.funfact-section .fun-fact-wrap .info p {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    font-family: "Cormorant";
    padding-left: 50px;
    color: #EC2526;
    margin-top: -30px;
}

@media (max-width: 767px) {
    .funfact-section .fun-fact-wrap .info p {
        padding-left: 10px;
        margin-top: -10px;
    }
}


/*==============================
 11. Case-section 
 ===============================*/

.case-section {
    background: #FAFAFA;
}

.case-section .case-left-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 530px;
}

@media (max-width: 1199px) {
    .case-section .case-left-image-wrap {
        min-height: 425px;
    }
}

@media (max-width: 991px) {
    .case-section .case-left-image-wrap {
        min-height: 100%;
    }
}

.case-section .case-left-image-wrap .case-left-image-group {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.case-section .case-left-image-wrap .case-left-image-group .img-item {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: all 0.8s;
    transform: translateX(-100%);
    z-index: -1;
}

.case-section .case-left-image-wrap .case-left-image-group .img-item.active {
    position: relative;
    opacity: 1;
    z-index: 1;
    transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(0);
}

.case-section .case-left-image-wrap .case-left-image-group .img-item img {
    width: 100%;
}

.case-section .case-right-items {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(201, 201, 201, 0.1);
}

@media (max-width: 991px) {
    .case-section .case-right-items {
        margin-top: 30px;
    }
}

.case-section .case-right-items .item {
    padding: 28px 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

@media (max-width: 1399px) {
    .case-section .case-right-items .item {
        padding: 20px 50px;
    }
}

@media (max-width: 1199px) {
    .case-section .case-right-items .item {
        padding: 15px 30px;
    }
}

@media (max-width: 767px) {
    .case-section .case-right-items .item {
        padding: 15px;
    }
}

.case-section .case-right-items .item:last-child {
    border: 0;
}

.case-section .case-right-items .item h2 {
    margin-bottom: 0;
    transition: all 0.3s;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-top: 3px;
}

@media (max-width: 1399px) {
    .case-section .case-right-items .item h2 {
        font-size: 25px;
    }
}

@media (max-width: 1199px) {
    .case-section .case-right-items .item h2 {
        font-size: 22px;
        line-height: 25px;
        margin-top: 2px;
    }
}

.case-section .case-right-items .item span {
    transition: all 0.3s;
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #1F212D;
}

@media (max-width: 1199px) {
    .case-section .case-right-items .item span {
        font-size: 16px;
    }
}

.case-section .case-right-items .item a i {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    text-align: center;
    color: #1F212D;
}

.case-section .case-right-items .item.active {
    background: #EC2526;
}

.case-section .case-right-items .item.active h2 {
    color: #fff;
}

.case-section .case-right-items .item.active span {
    color: #fff;
}

.case-section .case-right-items .item.active a i {
    background: #1F212D;
    color: #fff;
}


/*=======================================
 12. Testimonial-section 
 =======================================*/

.testimonial-section,
.testimonial-section-s2 {
    position: relative;
    z-index: 1;
}

.testimonial-section .testimonial-left,
.testimonial-section-s2 .testimonial-left {
    padding: 60px 40px;
    background: #FAFAFA;
    max-width: 526px;
}

@media (max-width: 991px) {
    .testimonial-section .testimonial-left,
    .testimonial-section-s2 .testimonial-left {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .testimonial-section .testimonial-left,
    .testimonial-section-s2 .testimonial-left {
        padding: 30px 20px;
    }
}

.testimonial-section .testimonial-left .heading-title,
.testimonial-section-s2 .testimonial-left .heading-title {
    border-bottom: 1px solid #D7D7D7;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.testimonial-section .testimonial-left p,
.testimonial-section-s2 .testimonial-left p {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .testimonial-section .testimonial-item .testimonial-text,
    .testimonial-section-s2 .testimonial-item .testimonial-text {
        text-align: center;
    }
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap {
    display: flex;
    margin-bottom: 25px;
    align-items: center;
}

@media (max-width: 991px) {
    .testimonial-section .testimonial-item .testimonial-text .ratting-wrap,
    .testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap {
        justify-content: center;
    }
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting {
    display: flex;
    margin-right: 20px;
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting li,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting li {
    width: 36px;
    height: 36px;
    line-height: 38px;
    background: #EC2526;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting li,
    .testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting li {
        width: 26px;
        height: 26px;
        line-height: 26px;
    }
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .ratting li+li,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .ratting li+li {
    margin-left: 10px;
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .count,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .count {
    display: flex;
}

.testimonial-section .testimonial-item .testimonial-text .ratting-wrap .count li,
.testimonial-section-s2 .testimonial-item .testimonial-text .ratting-wrap .count li {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: #1F212D;
}

.testimonial-section .testimonial-item .testimonial-text p,
.testimonial-section-s2 .testimonial-item .testimonial-text p {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: #151515;
}

@media (max-width: 575px) {
    .testimonial-section .testimonial-item .testimonial-text p,
    .testimonial-section-s2 .testimonial-item .testimonial-text p {
        font-size: 20px;
    }
}

.testimonial-section .testimonial-item .testimonial-text .testimonial-avatar,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar {
    max-width: 100px;
    border-radius: 50%;
    border: 2px solid #EC2526;
    margin-top: 30px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .testimonial-section .testimonial-item .testimonial-text .testimonial-avatar,
    .testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar {
        margin: 20px auto;
    }
}

.testimonial-section .testimonial-item .testimonial-text .testimonial-avatar img,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar img {
    border-radius: 50%;
}

.testimonial-section .testimonial-item .testimonial-text .testimonial-text-btm h3,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-text-btm h3 {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 0px;
}

.testimonial-section .testimonial-item .testimonial-text .testimonial-text-btm span,
.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-text-btm span {
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #EC2526;
}

.testimonial-section .owl-nav,
.testimonial-section-s2 .owl-nav {
    display: none;
}

.testimonial-section .back-shape,
.testimonial-section-s2 .back-shape {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


/*==================================
 13. Team-section 
 ==================================*/

.team-section {
    position: relative;
    padding-top: 100px;
    z-index: 1;
    padding-right: 85px;
    border-bottom: 3px solid #EC2526;
    margin-bottom: 60px;
}

@media (max-width: 1700px) {
    .team-section {
        padding-right: 45px;
    }
}

@media (max-width: 1399px) {
    .team-section {
        padding-right: 0px;
    }
}

@media (max-width: 991px) {
    .team-section {
        padding-top: 90px;
    }
}

@media (max-width: 767px) {
    .team-section {
        padding-top: 70px;
    }
}

.team-section::before {
    position: absolute;
    bottom: -60px;
    right: 0;
    height: 60px;
    content: "";
    background: #1F212D;
    width: 30%;
}

.team-section .team-wrap {
    padding-left: 100px;
    margin-bottom: -60px;
}

@media (max-width: 1700px) {
    .team-section .team-wrap {
        padding-left: 0px;
    }
}

.team-section .team-wrap .heading-title {
    max-width: 470px;
}

@media (max-width: 991px) {
    .team-section .team-wrap .heading-title {
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

.team-section .team-wrap .heading-title h2 {
    color: #fff;
}

.team-section .team-wrap .team-item {
    position: relative;
    overflow: hidden;
}

.team-section .team-wrap .team-item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 78%;
    content: "";
    background: #1F212D;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-section .team-wrap .team-item::after {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 0;
    content: "";
    background: #EC2526;
    opacity: 0.75;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.team-section .team-wrap .team-item .team-img-wrap {
    position: relative;
    z-index: 1;
}

.team-section .team-wrap .team-item .team-img-wrap .team-shape {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team-section .team-wrap .team-item .team-img {
    margin: 0 auto;
    position: relative;
}

.team-section .team-wrap .team-item .team-img img {
    transition: all 0.3s;
    display: unset;
    max-width: 300px;
    filter: grayscale(100%);
}

.team-section .team-wrap .team-item .team-text {
    position: absolute;
    left: 50%;
    bottom: -200px;
    padding: 15px 45px;
    transform: translateX(-50%);
    min-width: 80%;
    border-radius: 10px 10px 0px 0px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.6s;
    text-align: center;
    z-index: 11;
}

@media (max-width: 1700px) {
    .team-section .team-wrap .team-item .team-text {
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .team-section .team-wrap .team-item .team-text {
        padding: 10px 15px;
    }
}

.team-section .team-wrap .team-item .team-text h3 {
    margin-bottom: 0;
}

.team-section .team-wrap .team-item .team-text h3 a {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #fff;
}

@media (max-width: 1700px) {
    .team-section .team-wrap .team-item .team-text h3 a {
        font-size: 25px;
    }
}

@media (max-width: 1399px) {
    .team-section .team-wrap .team-item .team-text h3 a {
        font-size: 22px;
    }
}

.team-section .team-wrap .team-item .team-text span {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    color: #fff;
    font-family: "Cormorant";
}

@media (max-width: 1399px) {
    .team-section .team-wrap .team-item .team-text span {
        font-size: 16px;
    }
}

.team-section .team-wrap .team-item:hover .team-text {
    bottom: 0px;
}

.team-section .team-wrap .team-item .right-title {
    position: absolute;
    right: -36%;
    bottom: 40%;
    transform: rotate(-90deg);
    z-index: 1;
    width: 320px;
}

@media (max-width: 1700px) {
    .team-section .team-wrap .team-item .right-title {
        right: -46%;
    }
}

@media (max-width: 575px) {
    .team-section .team-wrap .team-item .right-title {
        right: -60%;
    }
}

@media (max-width: 450px) {
    .team-section .team-wrap .team-item .right-title {
        right: -40%;
    }
}

@media (max-width: 375px) {
    .team-section .team-wrap .team-item .right-title {
        right: -41%;
    }
}

@media (max-width: 350px) {
    .team-section .team-wrap .team-item .right-title {
        right: -45%;
    }
}

.team-section .team-wrap .team-item .right-title h3 {
    font-family: "Cormorant";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 5px;
    display: inline-block;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.6);
}

.team-section .team-wrap .owl-item.active.center .team-item::after,
.team-section .team-wrap .owl-item:hover .team-item::after {
    height: 78%;
    bottom: 0;
}

.team-section .team-wrap .owl-item.active.center .team-item .team-text,
.team-section .team-wrap .owl-item:hover .team-item .team-text {
    bottom: 0px;
}

.team-section .team-wrap .owl-nav [class*=owl-] {
    background: #1F212D;
    width: 60px;
    height: 60px;
    line-height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0;
    font-size: 20px;
    margin: 0;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
}

.team-section .team-wrap .owl-nav [class*=owl-]:hover {
    background: #EC2526;
}

.team-section .team-wrap .owl-nav [class*=owl-]:hover:before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .team-section .team-wrap .owl-nav [class*=owl-] {
        display: none;
    }
}

.team-section .team-wrap .owl-dots {
    text-align: center;
}

.team-section .team-wrap .owl-dots button {
    width: 10px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    margin: 5px;
    background-color: #d6d6d6;
}

.team-section .team-wrap .owl-dots button.active {
    background-color: #EC2526;
}

.team-section .team-wrap .owl-next {
    position: absolute;
    top: -120px;
    right: 0;
}

.team-section .team-wrap .owl-prev {
    position: absolute;
    top: -120px;
    right: 80px;
}


/*===============================
 14. Faq-section 
 ================================*/

.faq-section .faq-img-wrap,
.faq-section-s2 .faq-img-wrap {
    display: flex;
}

@media (max-width: 1199px) {
    .faq-section .faq-img-wrap,
    .faq-section-s2 .faq-img-wrap {
        margin-bottom: 30px;
    }
}

.faq-section .faq-img-wrap .faq-img,
.faq-section-s2 .faq-img-wrap .faq-img {
    flex-basis: 50%;
}

.faq-section .faq-img-wrap .faq-img img,
.faq-section-s2 .faq-img-wrap .faq-img img {
    width: 100%;
}

.faq-section .faq-img-wrap .faq-img-with-bg,
.faq-section-s2 .faq-img-wrap .faq-img-with-bg {
    min-height: 100%;
    width: 100%;
    background: #FAFAFA;
    flex-basis: 50%;
    margin-left: 20px;
    position: relative;
}

.faq-section .faq-img-wrap .faq-img-with-bg .shape,
.faq-section-s2 .faq-img-wrap .faq-img-with-bg .shape {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.faq-section .accordion-item,
.faq-section-s2 .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-section .accordion-item button,
.faq-section-s2 .accordion-item button {
    padding: 28px 0;
    color: #1F212D;
    text-align: left;
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    background: none;
}

@media (max-width: 1399px) {
    .faq-section .accordion-item button,
    .faq-section-s2 .accordion-item button {
        padding: 20px 0;
    }
}

@media (max-width: 1199px) {
    .faq-section .accordion-item button,
    .faq-section-s2 .accordion-item button {
        font-size: 20px;
        padding: 24px 0;
        line-height: 28px;
    }
}

.faq-section .accordion-item button::after,
.faq-section-s2 .accordion-item button::after {
    background: none;
    content: "\e906";
    font-family: "icomoon";
    font-size: 15px;
    font-weight: 700;
}

.faq-section .accordion-item button.collapsed,
.faq-section-s2 .accordion-item button.collapsed {
    color: #373b3e;
}

.faq-section .accordion-item button:focus,
.faq-section-s2 .accordion-item button:focus {
    box-shadow: none;
    outline: none;
    border-color: #e1e1e1;
}

.faq-section .accordion-item .accordion-body,
.faq-section-s2 .accordion-item .accordion-body {
    padding: 20px 0;
}

.faq-section .accordion-item .accordion-collapse,
.faq-section-s2 .accordion-item .accordion-collapse {
    border: 0;
}


/*==================================
 15. Contact-area 
 ===================================*/

.contact-area,
.contact-area-s2 {
    position: relative;
    z-index: 1;
    background: #F5F5F5;
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .contact-area,
    .contact-area-s2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .contact-area,
    .contact-area-s2 {
        padding-bottom: 50px;
    }
}

.contact-area .left-img,
.contact-area-s2 .left-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 43%;
    min-height: 845px;
    height: 100%;
}

@media (max-width: 991px) {
    .contact-area .left-img,
    .contact-area-s2 .left-img {
        display: none;
    }
}

.contact-area .left-img img,
.contact-area-s2 .left-img img {
    min-height: 845px;
    object-fit: cover;
}

.contact-area .left-img .shape,
.contact-area-s2 .left-img .shape {
    position: absolute;
    right: 0;
    top: 0;
}

.contact-area .right-shape,
.contact-area-s2 .right-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}

.contact-area .contact-area-wrapper,
.contact-area-s2 .contact-area-wrapper {
    position: relative;
}

.contact-area .contact-area-wrapper .contact-form-area,
.contact-area-s2 .contact-area-wrapper .contact-form-area {
    position: relative;
    z-index: 9;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    z-index: 1;
}

@media (max-width: 991px) {
    .contact-area .contact-area-wrapper .contact-form-area,
    .contact-area-s2 .contact-area-wrapper .contact-form-area {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .contact-area .contact-area-wrapper .contact-form-area,
    .contact-area-s2 .contact-area-wrapper .contact-form-area {
        margin-top: 50px;
    }
}

.contact-area .contact-area-wrapper .contact-form-area .shape,
.contact-area-s2 .contact-area-wrapper .contact-form-area .shape {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.contact-area .contact-area-wrapper .contact-form-area .form-control,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control {
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    border: 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    color: #707070;
    border: 1px solid rgba(31, 33, 45, 0.15);
}

.contact-area .contact-area-wrapper .contact-form-area .form-control:focus,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control:focus {
    outline: none;
    box-shadow: none;
}

.contact-area .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder {
    color: #707070;
}

.contact-area .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder {
    color: #707070;
}

.contact-area .contact-area-wrapper .contact-form-area .form-control::placeholder,
.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control::placeholder {
    color: #707070;
}

.contact-area .contact-area-wrapper .contact-form-area textarea.form-control,
.contact-area-s2 .contact-area-wrapper .contact-form-area textarea.form-control {
    height: 130px;
}

.contact-area .contact-area-wrapper .contact-form-area select.form-control,
.contact-area-s2 .contact-area-wrapper .contact-form-area select.form-control {
    color: #707070;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -moz-appearance: none;
    background: #fff url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
    position: relative;
}

.contact-area .contact-area-wrapper .contact-form-area select.form-control option,
.contact-area-s2 .contact-area-wrapper .contact-form-area select.form-control option {
    border: 0;
}

.contact-area .contact-area-wrapper .contact-form-area .submit-area,
.contact-area-s2 .contact-area-wrapper .contact-form-area .submit-area {
    margin-top: 20px;
}


/*=================================
 16. Blog-section 
 ==================================*/

.blog-section {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .blog-section {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding-bottom: 50px;
    }
}

.blog-section .blog-items .blog-item {
    display: flex;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 94.4px 0px rgba(224, 224, 224, 0.2);
    padding: 40px 30px;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .blog-section .blog-items .blog-item {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .blog-section .blog-items .blog-item {
        display: block;
        text-align: center;
    }
}

.blog-section .blog-items .blog-item .blog-img-left {
    flex-basis: 35%;
}

@media (max-width: 575px) {
    .blog-section .blog-items .blog-item .blog-img-left img {
        width: 100%;
    }
}

.blog-section .blog-items .blog-item .blog-content {
    padding-left: 25px;
    flex-basis: 65%;
}

@media (max-width: 575px) {
    .blog-section .blog-items .blog-item .blog-content {
        padding-left: 0;
        margin-top: 20px;
    }
}

.blog-section .blog-items .blog-item .blog-content ul {
    display: flex;
    align-items: center;
}

@media (max-width: 575px) {
    .blog-section .blog-items .blog-item .blog-content ul {
        justify-content: center;
    }
}

.blog-section .blog-items .blog-item .blog-content ul li {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-section .blog-items .blog-item .blog-content ul li+li {
    margin-left: 20px;
}

.blog-section .blog-items .blog-item .blog-content ul li i {
    color: #EC2526;
}

.blog-section .blog-items .blog-item .blog-content ul li strong {
    color: #1F212D;
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.blog-section .blog-items .blog-item .blog-content h2 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .blog-section .blog-items .blog-item .blog-content h2 {
        font-size: 25px;
    }
}

@media (max-width: 1199px) {
    .blog-section .blog-items .blog-item .blog-content h2 {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .blog-section .blog-items .blog-item .blog-content h2 {
        margin-top: 5px;
    }
}

.blog-section .blog-items .blog-item .blog-content h2 a {
    color: #1F212D;
}

.blog-section .blog-items .blog-item .blog-content h2 a:hover {
    color: #EC2526;
}


/*===============================
 17. Cta-section 
 ================================*/

.cta-section {
    position: relative;
}

.cta-section:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #2d0303 16.03%, rgba(31, 33, 45, 0.31) 50.8%, #2d0303 89.47%), url(../images/cta.jpg), lightgray 0px -229.955px/100% 238.363% no-repeat;
}

.cta-section .cta-title {
    position: relative;
}

.cta-section .cta-title h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .cta-section .cta-title h2 {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .cta-section .cta-title h2 {
        font-size: 30px;
        line-height: 38px;
    }
}

.cta-section .cta-btn {
    text-align: right;
}

@media (max-width: 991px) {
    .cta-section .cta-btn {
        text-align: center;
        margin-top: 20px;
    }
}


/*--------------------------------------------------------------
18. Home-style-2
--------------------------------------------------------------*/


/* about-section-s2 */

.about-section-s2 {
    position: relative;
    z-index: 1;
    padding-bottom: 150px;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .about-section-s2 {
        padding-bottom: 100px;
    }
}

.about-section-s2 .back-shape {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.about-section-s2 .top-shape {
    position: absolute;
    right: 0;
    top: -2px;
    z-index: -1;
}

.about-section-s2 .top-shape svg {
    width: 720px;
    height: 92px;
}

@media (max-width: 1399px) {
    .about-section-s2 .top-shape svg {
        width: 520px;
        height: 68px;
    }
}

@media (max-width: 1199px) {
    .about-section-s2 .top-shape svg {
        width: 220px;
        height: 32px;
    }
}

@media (max-width: 991px) {
    .about-section-s2 .top-shape svg {
        display: none;
    }
}

.about-section-s2 .top-shape svg path {
    fill: #5b0000;
}

.about-section-s2 .about-wrap .row {
    align-items: flex-end;
}

.about-section-s2 .about-top-left {
    background: #FAFAFA;
    padding: 40px;
}

@media (max-width: 1399px) {
    .about-section-s2 .about-top-left {
        padding: 20px 15px;
    }
}

@media (max-width: 991px) {
    .about-section-s2 .about-top-left {
        text-align: center;
    }
}

.about-section-s2 .about-top-left .about-top-text {
    display: flex;
    padding-bottom: 20px;
}

@media (max-width: 991px) {
    .about-section-s2 .about-top-left .about-top-text {
        justify-content: center;
    }
}

.about-section-s2 .about-top-left .about-top-right {
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #D7D7D7;
}

.about-section-s2 .about-top-left .about-top-right p {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    color: #1F212D;
    margin-bottom: 10px;
}

.about-section-s2 .about-top-left .about-top-right span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    color: #1F212D;
}

@media (max-width: 350px) {
    .about-section-s2 .about-top-left .btn-style-1 {
        padding: 5px 10px;
    }
    .about-section-s2 .about-top-left .btn-style-1::after {
        display: none;
    }
}

.about-section-s2 .about-top-left h2 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-section-s2 .about-text {
    border-bottom: 1px solid #D7D7D7;
    padding-bottom: 20px;
}

@media (max-width: 991px) {
    .about-section-s2 .about-text {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .about-section-s2 .about-text .about-icon-wrap {
        justify-content: center;
        text-align: left;
    }
}

.about-section-s2 .about-bottom-wrap {
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .about-section-s2 .about-bottom-wrap {
        padding-top: 90px;
    }
}

@media (max-width: 767px) {
    .about-section-s2 .about-bottom-wrap {
        padding-top: 70px;
    }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left .heading-title {
    max-width: 654px;
}

@media (max-width: 1199px) {
    .about-section-s2 .about-bottom-wrap .about-bottom-left .heading-title {
        max-width: 454px;
    }
}

@media (max-width: 991px) {
    .about-section-s2 .about-bottom-wrap .about-bottom-left .heading-title {
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left img {
    width: 100%;
}

.about-section-s2 .about-bottom-wrap .ab-shape {
    position: absolute;
    left: -200px;
    bottom: -70px;
    z-index: -1;
}

@media (max-width: 1399px) {
    .about-section-s2 .about-bottom-wrap .ab-shape {
        left: -80px;
        bottom: 0px;
    }
    .about-section-s2 .about-bottom-wrap .ab-shape img {
        max-width: 200px;
    }
}

@media (max-width: 1199px) {
    .about-section-s2 .about-bottom-wrap .ab-shape {
        display: none;
    }
}

@media (max-width: 991px) {
    .about-section-s2 .about-bottom-wrap .about-bottom-left-text {
        margin: 30px 0;
    }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text h2 {
    font-family: "Cormorant";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text p {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 29px;
    padding-left: 20px;
    border-left: 3px solid #5b0000;
    margin-bottom: 20px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text ul li {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

@media (max-width: 1399px) {
    .about-section-s2 .about-bottom-wrap .about-bottom-left-text ul li {
        font-size: 18px;
    }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text ul li i {
    color: #5b0000;
    margin-right: 10px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text ul li+li {
    margin-top: 10px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wraps {
    display: flex;
    margin-top: 20px;
}

@media (max-width: 450px) {
    .about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wraps {
        flex-wrap: wrap;
    }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap+.icon-wrap {
    margin-left: 20px;
}

@media (max-width: 450px) {
    .about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap+.icon-wrap {
        margin-left: 0;
    }
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #1F212D;
    display: block;
    font-size: 30px;
    text-align: center;
    margin-right: 15px;
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text .icon-wrap:hover i {
    background-color: #EC2526;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text a {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 29px;
    text-decoration-line: underline;
    position: relative;
    padding-right: 30px;
    color: #5b0000;
    transition: all 0.3s;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text a:after {
    position: absolute;
    right: 0;
    top: -2px;
    content: "\e912";
    font-family: "icomoon" !important;
    transform: rotate(-45deg);
    transition: all 0.3s;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text a:hover {
    letter-spacing: 1px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-left-text a:hover:after {
    transform: rotate(0);
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .about-bottom-right-img {
    position: relative;
    margin-bottom: 30px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .about-bottom-right-img:last-child {
    margin-bottom: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .about-bottom-right-img img {
    width: 100%;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap {
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(191, 191, 191, 0.25);
    text-align: center;
    padding: 20px;
    max-width: 142px;
    position: absolute;
    left: -80px;
    top: 50px;
}

@media (max-width: 1500px) {
    .about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap {
        left: -50px;
    }
}

@media (max-width: 767px) {
    .about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap {
        left: 20px;
        top: 30px;
    }
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap span {
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #1F212D;
    display: block;
    margin-bottom: 10px;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-left {
    left: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 6px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-right {
    right: 0;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress .progress-value {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: #ffffff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #1F212D;
    line-height: 65px;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 5%;
    font-family: "Cormorant";
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress.blue .progress-bar {
    border-color: #872c2c;
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .progress-wrap .progress.blue .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.8s;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(144deg);
        transform: rotate(144deg);
    }
}

@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes loading-4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);
    }
}

@keyframes loading-5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(126deg);
        transform: rotate(126deg);
    }
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn {
    display: block;
    width: 124px;
    height: 124px;
    line-height: 124px;
    background: linear-gradient(328deg, #EC2526 -9.33%, #30323D 125.4%);
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn:before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    position: absolute;
    left: 52%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn:after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    left: -12.5px;
    top: -12.5px;
    border: 1px dashed #fff;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn {
        margin: 0 auto;
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
    .about-section-s2 .about-bottom-wrap .about-bottom-right .video-btn-wrap .video-btn:after {
        content: "";
        width: 120px;
        height: 120px;
        position: absolute;
        left: -10px;
        top: -10px;
        border: 1px dashed #fff;
        border-radius: 50%;
    }
}

.animate-marque-sec.style-2 {
    margin-bottom: -25px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .animate-marque-sec.style-2 {
        margin-bottom: -20px;
    }
}

@media (max-width: 575px) {
    .animate-marque-sec.style-2 {
        margin-bottom: -5px;
    }
}

.animate-marque-sec.style-2 .animate-marque h1 {
    color: #871010;
}


/* service-section-s2 */

.service-section-s2 {
    background: #FAFAFA;
}

.service-section-s2 .service-wrap {
    background: #fdf1f1;
    background-image: url(../images/home1.jpg);
    padding: 80px 70px 70px;
}

@media (max-width: 991px) {
    .service-section-s2 .service-wrap {
        padding: 50px 25px 40px;
    }
}

@media (max-width: 575px) {
    .service-section-s2 .service-wrap {
        padding: 30px 10px 20px;
    }
}

.service-section-s2 .service-wrap .service-item {
    padding-right: 40px;
}

@media (max-width: 575px) {
    .service-section-s2 .service-wrap .service-item .service-top i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 30px;
        margin-right: 8px;
    }
}

.service-section-s2 .service-wrap .service-item .right-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: transparent;
    text-align: center;
    border-radius: 5px;
    color: #1F212D;
    transition: all 0.3s;
}

.service-section-s2 .service-wrap .service-item:hover .right-btn {
    background: #5b0000;
    color: #fff;
}

.service-section-s2 .bottom-link {
    text-align: center;
    margin-top: 40px;
}

.service-section-s2 .bottom-link p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

.service-section-s2 .bottom-link a {
    color: #810505;
}

.service-section-s2 .bottom-link a.s-btn {
    display: inline-block;
    padding: 5px 15px;
    background: #5b0000;
    color: #fff;
    margin-left: 20px;
}


/* choose-section */

.choose-section {
    position: relative;
    z-index: 1;
    padding-bottom: 85px;
}

.choose-section:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #230202 33.88%, rgba(31, 33, 45, 0) 100%);
    z-index: -1;
}

.choose-section::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url(../images/choose/shape.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.choose-section .heading-title-s3 p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 20px;
}

.choose-section .choose-items {
    padding-right: 60px;
}

@media (max-width: 991px) {
    .choose-section .choose-items {
        text-align: center;
        padding-right: 0;
    }
}

.choose-section .choose-items .choose-item {
    padding-left: 60px;
    position: relative;
}

@media (max-width: 991px) {
    .choose-section .choose-items .choose-item {
        text-align: center;
        margin-bottom: 30px;
        padding: 0;
    }
}

.choose-section .choose-items .choose-item h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: #fff;
}

@media (max-width: 991px) {
    .choose-section .choose-items .choose-item h3 {
        margin-top: 20px;
    }
}

.choose-section .choose-items .choose-item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    color: #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 470px;
}

@media (max-width: 991px) {
    .choose-section .choose-items .choose-item p {
        margin: 0 auto;
    }
}

.choose-section .choose-items .choose-item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 40px;
    color: #EC2526;
}

@media (max-width: 991px) {
    .choose-section .choose-items .choose-item i {
        position: relative;
    }
}

.choose-section .choose-items .btn-style-1 {
    margin-top: 20px;
}

.choose-section .choose-list {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 50px;
    margin-top: 20px;
}

.choose-section .choose-list ul {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .choose-section .choose-list ul {
        display: block;
    }
}

.choose-section .choose-list ul li {
    flex-basis: 50%;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: #fff;
    margin-bottom: 20px;
    font-family: "Cormorant";
}

@media (max-width: 1199px) {
    .choose-section .choose-list ul li {
        font-size: 17px;
    }
}

.choose-section .choose-list ul li i {
    margin-right: 10px;
    color: #EC2526;
}

.choose-section .choose-right-wrap {
    position: absolute;
    right: 120px;
    top: 45%;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .choose-section .choose-right-wrap {
        position: relative;
        transform: unset;
        right: auto;
        margin: 0 auto;
    }
}

.choose-section .choose-right-wrap .choose-img {
    position: relative;
}

@media (max-width: 1399px) {
    .choose-section .choose-right-wrap .choose-img {
        max-width: 400px;
    }
}

@media (max-width: 1199px) {
    .choose-section .choose-right-wrap .choose-img {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .choose-section .choose-right-wrap .choose-img {
        margin: 0 auto;
        margin-top: 100px;
    }
}

@media (max-width: 575px) {
    .choose-section .choose-right-wrap .choose-img {
        max-width: 250px;
    }
}

.choose-section .choose-right-wrap .choose-img img {
    border-radius: 40px;
    border: 8px solid #fff;
    /* transform: rotate(45deg); */
}

.choose-section .choose-right-wrap .choose-img .flot-img {
    position: absolute;
    left: -70px;
    bottom: -70px;
}

@media (max-width: 1399px) {
    .choose-section .choose-right-wrap .choose-img .flot-img {
        max-width: 200px;
        left: -40px;
        bottom: -40px;
    }
}

@media (max-width: 1199px) {
    .choose-section .choose-right-wrap .choose-img .flot-img {
        max-width: 150px;
    }
}


/* case-section-s2 */

.case-section-s2 {
    margin-top: -50px;
    position: relative;
    background: transparent;
    z-index: 1;
}

@media (max-width: 991px) {
    .case-section-s2 {
        margin-top: 0px;
        overflow: hidden;
    }
}

.case-section-s2 .case-wrap {
    display: flex;
}

@media (max-width: 991px) {
    .case-section-s2 .case-wrap {
        display: block;
    }
}

.case-section-s2 .case-left-wrap {
    min-height: 100%;
    flex-basis: 50%;
}

.case-section-s2 .case-left {
    padding: 120px 0 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
}

@media (max-width: 991px) {
    .case-section-s2 .case-left {
        position: relative;
        padding: 80px 0;
    }
}

.case-section-s2 .case-left-text {
    padding-left: 315px;
    padding-right: 45px;
}

@media (max-width: 1700px) {
    .case-section-s2 .case-left-text {
        padding-left: 250px;
    }
}

@media (max-width: 1500px) {
    .case-section-s2 .case-left-text {
        padding-left: 200px;
    }
}

@media (max-width: 1400px) {
    .case-section-s2 .case-left-text {
        padding-left: 150px;
    }
}

@media (max-width: 1300px) {
    .case-section-s2 .case-left-text {
        padding-left: 100px;
    }
}

@media (max-width: 1199px) {
    .case-section-s2 .case-left-text {
        padding-left: 60px;
    }
}

@media (max-width: 991px) {
    .case-section-s2 .case-left-text {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
}

.case-section-s2 .case-left-text .heading-title {
    margin-bottom: 30px;
}

.case-section-s2 .case-left-text .funfact {
    max-width: 265px;
    text-align: right;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .case-section-s2 .case-left-text .funfact {
        margin: 0 auto;
        text-align: center;
    }
}

.case-section-s2 .case-left-text .funfact small {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    font-family: "Cormorant";
    color: #1F212D;
}

.case-section-s2 .case-left-text .funfact h2 {
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
    margin-top: -20px;
}

@media (max-width: 575px) {
    .case-section-s2 .case-left-text .funfact h2 {
        font-size: 80px;
    }
}

.case-section-s2 .case-left-text .funfact h2 span {
    font-family: "Cormorant";
    line-height: 100px;
}

.case-section-s2 .case-left-text p {
    padding-left: 25px;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 29px;
    border-left: 2px solid #EC2526;
    margin-bottom: 60px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .case-section-s2 .case-left-text p {
        border: 0;
        padding-left: 0;
        margin-bottom: 20px;
        margin-top: 10px;
    }
}

.case-section-s2 .bottom-shape {
    margin-top: -100px;
    z-index: -1;
}

@media (max-width: 991px) {
    .case-section-s2 .bottom-shape {
        display: none;
    }
}

.case-section-s2 .case-right {
    flex-basis: 50%;
    padding-top: 150px;
    padding-right: 80px;
}

@media (max-width: 991px) {
    .case-section-s2 .case-right {
        padding: 0 15px;
        padding-top: 70px;
    }
}

.case-section-s2 .case-right .case-right-item {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .case-section-s2 .case-right .case-right-item {
        margin-bottom: 30px;
    }
}

.case-section-s2 .case-right .case-right-item:last-child {
    margin-bottom: 0;
}

.case-section-s2 .case-right .case-right-item img {
    width: 100%;
}

.case-section-s2 .case-right .case-right-item a {
    position: relative;
}

.case-section-s2 .case-right .case-right-item a i {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: #EC2526;
    color: #fff;
    text-align: center;
    font-size: 40px;
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.case-section-s2 .case-right .case-right-item:hover a i {
    top: 50%;
    opacity: 1;
    visibility: visible;
}


/* benefit-section */

.benefit-section {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .benefit-section {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .benefit-section {
        padding-bottom: 50px;
    }
}

.benefit-section .benefit-item {
    background: #FAFAFA;
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .benefit-section .benefit-item {
        padding: 30px;
    }
}

@media (max-width: 1199px) {
    .benefit-section .benefit-item {
        padding: 20px 20px;
    }
}

@media (max-width: 575px) {
    .benefit-section .benefit-item {
        padding: 40px 20px;
    }
}

.benefit-section .benefit-item i {
    font-size: 60px;
    color: #EC2526;
}

.benefit-section .benefit-item h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.benefit-section .benefit-item p {
    margin-bottom: 0;
}

.benefit-section .benefit-item .bottom-text {
    position: absolute;
    left: 0;
    bottom: -200px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: #fff;
    align-items: center;
    transition: all 0.3s;
    border-bottom: 5px solid var(--Primary, #EC2526);
    box-shadow: 0px 4px 20px 0px rgba(236, 236, 236, 0.25);
}

.benefit-section .benefit-item .bottom-text h3 {
    margin: 0;
}

.benefit-section .benefit-item .bottom-text h3 a {
    color: #1F212D;
}

.benefit-section .benefit-item .bottom-text a.right-btn {
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: block;
    text-align: center;
    background: #EC2526;
    color: #fff;
    border-radius: 50%;
}

.benefit-section .benefit-item .bottom-text a.right-btn i {
    font-size: 10px;
    color: #fff;
}

.benefit-section .benefit-item .benefit-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 80%;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.benefit-section .benefit-item .benefit-img img {
    width: 100%;
}

.benefit-section .benefit-item .benefit-img:before {
    position: absolute;
    left: 50%;
    top: 35%;
    width: 122px;
    height: 122px;
    background: #EC2526;
    filter: blur(60px);
    content: "";
    transform: translateX(-50%);
}

@media (max-width: 1199px) {
    .benefit-section .benefit-item .benefit-img:before {
        width: 70px;
        height: 70px;
        filter: blur(28px);
    }
}

@media (max-width: 991px) {
    .benefit-section .benefit-item .benefit-img:before {
        filter: blur(60px);
    }
}

.benefit-section .benefit-item:hover {
    background: #fff;
}

.benefit-section .benefit-item:hover .bottom-text {
    bottom: 0;
}

.benefit-section .benefit-item:hover .benefit-img {
    width: 100%;
    padding: 15px;
    opacity: 1;
    visibility: visible;
}


/* faq-section-s2 */

.faq-section-s2 {
    position: relative;
    z-index: 1;
    padding-bottom: 150px;
}

@media (max-width: 991px) {
    .faq-section-s2 {
        padding-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .faq-section-s2 {
        padding-bottom: 80px;
    }
}

.faq-section-s2:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, rgba(31, 33, 45, 0) 0%, #270707d6 55.49%);
    z-index: -1;
}

@media (max-width: 991px) {
    .faq-section-s2:before {
        background: linear-gradient(90deg, rgba(31, 33, 45, 0) 0%, #270707d6 55.49%);
    }
}

.faq-section-s2::after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 67px;
    content: "";
    background: #fff;
    width: 50%;
    border-top: 3px solid #EC2526;
}

@media (max-width: 991px) {
    .faq-section-s2::after {
        display: none;
    }
}

.faq-section-s2 .faq-img {
    position: relative;
}

@media (max-width: 991px) {
    .faq-section-s2 .faq-img {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
        margin-bottom: 50px;
    }
}

.faq-section-s2 .faq-img .sball-1 {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 80px;
    height: 80px;
    background: #EC2526;
    border-radius: 50%;
    animation: zoom-in-zoom-out 5s ease infinite;
}

.faq-section-s2 .faq-img .sball-1:before {
    position: absolute;
    left: -20px;
    top: -20px;
    width: 30px;
    height: 30px;
    content: "";
    background: #EC2526;
    border-radius: 50%;
    animation: zoom-in-zoom-out 6s ease infinite;
}

.faq-section-s2 .faq-img .sball-2 {
    position: absolute;
    left: 100px;
    bottom: 40px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    animation: zoom-in-zoom-out 5s ease infinite;
}

.faq-section-s2 .faq-img .sball-2:before {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 18px;
    height: 18px;
    content: "";
    background: #fff;
    border-radius: 50%;
    animation: zoom-in-zoom-out 6s ease infinite;
}

.faq-section-s2 .accordion-item {
    background: none;
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-section-s2 .accordion-item button {
    color: #fff;
}

.faq-section-s2 .accordion-item button.collapsed {
    color: #fff;
}

.faq-section-s2 .accordion-item button:not(.collapsed) {
    box-shadow: none;
}

.faq-section-s2 .accordion-item button:focus {
    box-shadow: none;
    outline: none;
    border-color: #e1e1e1;
}

.faq-section-s2 .accordion-item p {
    color: #B1B1B1;
}


/* testimonial-section-s2 */

.testimonial-section-s2 {
    padding: 200px 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .testimonial-section-s2 {
        padding: 120px 0 80px;
    }
}

.testimonial-section-s2 .testimonial-left-wrap {
    position: relative;
    max-width: 720px;
}

@media (max-width: 991px) {
    .testimonial-section-s2 .testimonial-left-wrap {
        margin: 0 auto;
    }
}

.testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img {
    border-radius: 40px;
    border: 15px solid #EFEFEF;
    max-width: 459.076px;
    transform: rotate(45deg);
    position: relative;
}

@media (max-width: 1399px) {
    .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img {
        margin: 0 auto;
        margin-bottom: 100px;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img {
        max-width: 250px;
    }
}

.testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img img {
    border-radius: 25px;
}

.testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img .testimonial-left-img-inner {
    border-radius: 40px;
    border: 15px solid #EFEFEF;
    max-width: 459.076px;
    transform: rotate(0);
    position: absolute;
    left: -110px;
    top: 60%;
}

@media (max-width: 1399px) {
    .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img .testimonial-left-img-inner {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img .testimonial-left-img-inner {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .testimonial-section-s2 .testimonial-left-wrap .testimonial-left-img .testimonial-left-img-inner {
        display: none;
    }
}

.testimonial-section-s2 .testimonial-left-wrap .quote {
    position: absolute;
    right: 110px;
    bottom: 0;
    width: 182px;
    height: 182px;
    line-height: 205px;
    background: #EC2526;
    transform: unset;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 100px;
}

@media (max-width: 575px) {
    .testimonial-section-s2 .testimonial-left-wrap .quote {
        width: 130px;
        height: 130px;
        line-height: 155px;
        font-size: 60px;
        right: 30px;
    }
}

.testimonial-section-s2 .testimonial-item {
    text-align: center;
}

.testimonial-section-s2 .testimonial-item .ratting-wrap {
    justify-content: center;
}

.testimonial-section-s2 .testimonial-item .testimonial-text .testimonial-avatar {
    margin: 20px auto;
}


/* partner-section */

.partner-section {
    background: #FAFAFA;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .partner-section {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .partner-section {
        padding-bottom: 70px;
    }
}

.partner-section .container-fluid {
    padding: 0;
}

@media (max-width: 991px) {
    .partner-section .container-fluid {
        padding: 0 15px;
    }
}

.partner-section .heading-title {
    margin-bottom: 0;
}

.partner-section .heading-title p {
    margin-top: 20px;
    margin-bottom: 30px;
}

.partner-section .partner-left {
    padding-left: 315px;
    padding-right: 45px;
}

@media (max-width: 1700px) {
    .partner-section .partner-left {
        padding-left: 250px;
    }
}

@media (max-width: 1500px) {
    .partner-section .partner-left {
        padding-left: 200px;
    }
}

@media (max-width: 1400px) {
    .partner-section .partner-left {
        padding-left: 150px;
    }
}

@media (max-width: 1300px) {
    .partner-section .partner-left {
        padding-left: 100px;
    }
}

@media (max-width: 1199px) {
    .partner-section .partner-left {
        padding-left: 60px;
    }
}

@media (max-width: 991px) {
    .partner-section .partner-left {
        padding: 70px 15px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .partner-section .partner-left {
        padding: 70px 0px;
    }
}

.partner-section .partner-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: -1px;
    margin-right: -5px;
}

@media (max-width: 991px) {
    .partner-section .partner-wrap {
        margin: 0;
    }
}

.partner-section .partner-wrap .partner-item {
    flex-basis: 33.33%;
    height: 176px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: -1px;
    margin-left: -1px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s;
}

@media (max-width: 575px) {
    .partner-section .partner-wrap .partner-item {
        flex-basis: 50%;
    }
}

@media (max-width: 450px) {
    .partner-section .partner-wrap .partner-item {
        flex-basis: 100%;
    }
}

.partner-section .partner-wrap .partner-item:hover {
    background-color: #fff;
}


/* blog-section-s2 */

.blog-section-s2 {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .blog-section-s2 {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .blog-section-s2 {
        padding-bottom: 50px;
    }
}

.blog-section-s2 .blog-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 94.4px 0px rgba(224, 224, 224, 0.2);
    padding: 40px 30px;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .blog-section-s2 .blog-item {
        padding: 40px 20px;
    }
}

.blog-section-s2 .blog-item .blog-content ul {
    display: flex;
    align-items: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .blog-section-s2 .blog-item .blog-content ul {
        justify-content: center;
    }
}

.blog-section-s2 .blog-item .blog-content ul li {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-section-s2 .blog-item .blog-content ul li+li {
    margin-left: 20px;
}

.blog-section-s2 .blog-item .blog-content ul li i {
    color: #EC2526;
}

.blog-section-s2 .blog-item .blog-content ul li strong {
    color: #1F212D;
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

@media (max-width: 1199px) {
    .blog-section-s2 .blog-item .blog-content p {
        font-size: 14px;
    }
}

.blog-section-s2 .blog-item .blog-content h2 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .blog-section-s2 .blog-item .blog-content h2 {
        font-size: 25px;
    }
}

@media (max-width: 1199px) {
    .blog-section-s2 .blog-item .blog-content h2 {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .blog-section-s2 .blog-item .blog-content h2 {
        margin-top: 5px;
    }
}

.blog-section-s2 .blog-item .blog-content h2 a {
    color: #1F212D;
}

.blog-section-s2 .blog-item .blog-content h2 a:hover {
    color: #EC2526;
}

.blog-section-s2 .blog-item .blog-flip-box {
    background-color: transparent;
    perspective: 1000px;
    margin-bottom: 30px;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    min-height: 116px;
    max-height: 116px;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-front,
.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-back {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-front p,
.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-back p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-back {
    background-color: #ffffff;
    color: #000;
    transform: rotateY(180deg);
    border-radius: 10px;
}

.blog-section-s2 .blog-item .blog-flip-box .blog-flip-box-back img {
    min-height: 116px;
    object-fit: cover;
}

.blog-section-s2 .blog-item:hover .blog-flip-box .blog-flip-box-inner {
    transform: rotateY(180deg);
}

.instagram-section {
    padding-bottom: 10px;
}

.instagram-section .instagram-item a {
    position: relative;
    display: block;
}

.instagram-section .instagram-item a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "\e902";
    border-radius: 5px;
    background: rgba(236, 37, 38, 0.8);
    font-family: "icomoon";
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1;
    font-size: 40px;
    transition: all 0.6s;
}

.instagram-section .instagram-item:hover a:before {
    opacity: 1;
    visibility: visible;
}

.instagram-section .owl-nav {
    display: none;
}


/*--------------------------------------------------------------
19. Home-style-3
--------------------------------------------------------------*/


/* business-section */

.business-section {
    position: relative;
    z-index: 1;
    padding-bottom: 85px;
    margin-bottom: 320px;
    padding-top: 90px;
}

@media (max-width: 575px) {
    .business-section {
        padding-top: 70px;
        padding-bottom: 45px;
        margin-bottom: 280px;
    }
}

.business-section:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, #1F212D 33.88%, rgba(31, 33, 45, 0) 100%);
    z-index: -1;
}

.business-section::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url(../images/choose/shape.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.business-section .business-bottom-img {
    position: relative;
    margin-bottom: -320px;
}

.business-section .business-bottom-img img {
    border-radius: 40px;
}

@media (max-width: 575px) {
    .business-section .business-bottom-img img {
        min-height: 250px;
        object-fit: cover;
    }
}

.business-section .business-bottom-img .video-btn-wrap .video-btn {
    display: block;
    width: 124px;
    height: 124px;
    line-height: 124px;
    background: linear-gradient(328deg, #EC2526 -9.33%, #30323D 125.4%);
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 575px) {
    .business-section .business-bottom-img .video-btn-wrap .video-btn {
        top: 120px;
    }
}

.business-section .business-bottom-img .video-btn-wrap .video-btn:before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    position: absolute;
    left: 52%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.business-section .business-bottom-img .video-btn-wrap .video-btn:after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    left: -12.5px;
    top: -12.5px;
    border: 1px dashed #fff;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .business-section .business-bottom-img .video-btn-wrap .video-btn {
        margin: 0 auto;
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
    .business-section .business-bottom-img .video-btn-wrap .video-btn:after {
        content: "";
        width: 120px;
        height: 120px;
        position: absolute;
        left: -10px;
        top: -10px;
        border: 1px dashed #fff;
        border-radius: 50%;
    }
}

.business-section .business-bottom-img .rotate-outer {
    width: 230px;
    height: 230px;
    line-height: 230px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: -50px;
    bottom: -50px;
}

@media (max-width: 575px) {
    .business-section .business-bottom-img .rotate-outer {
        position: relative;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        margin-top: 40px;
    }
}

.business-section .business-bottom-img .rotate-text-wrap {
    width: 200px;
    height: 200px;
    line-height: 200px;
    border-radius: 50%;
    z-index: 11;
    border: 1px dashed #707070;
    position: relative;
    left: 15px;
    top: 15px;
}

.business-section .business-bottom-img .rotate-text-wrap .rotate-text {
    position: relative;
    top: 0px;
    animation: circle 30s linear infinite;
    max-width: 200px;
}

.business-section .business-bottom-img .rotate-text-wrap .rotate-text svg path {
    fill: transparent;
}

.business-section .business-bottom-img .rotate-text-wrap .rotate-text text {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #1F212D;
    text-transform: uppercase;
    font-family: "Cormorant";
    letter-spacing: 9px;
}

.business-section .business-bottom-img .rotate-text-wrap .icon {
    position: absolute;
    left: 20%;
    top: 15px;
}

.business-section .business-bottom-img .rotate-text-wrap .icon i {
    display: inline-block;
    font-size: 50px;
    color: #fff;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    background: #EC2526;
    border-radius: 50%;
}


/* about-section-s3 */

.about-section-s3 .about-wrap .about-img-1 .shape {
    padding-left: 40px;
    padding-top: 20px;
}

@media (max-width: 1399px) {
    .about-section-s3 .about-wrap .about-img-1 .shape {
        padding-left: 10px;
    }
}

.about-section-s3 .about-wrap .about-img-2 .shape {
    margin-bottom: 20px;
}

.about-section-s3 .about-wrap .about-img-2 .about-img-inner {
    margin-left: -200px;
}

@media (max-width: 991px) {
    .about-section-s3 .about-wrap .about-img-2 .about-img-inner {
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .about-section-s3 .about-wrap .about-img-2 .about-img-inner {
        margin-left: 0px;
    }
}

@media (max-width: 991px) {
    .about-section-s3 .about-bottom-left {
        margin-top: 30px;
    }
}

.about-section-s3 .about-bottom-left .heading-title {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .about-section-s3 .about-bottom-left .heading-title {
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

.about-section-s3 .about-bottom-left img {
    width: 100%;
}

@media (max-width: 991px) {
    .about-section-s3 .about-bottom-left-text {
        margin: 30px 0;
    }
}

.about-section-s3 .about-bottom-left-text h2 {
    font-family: "Cormorant";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

.about-section-s3 .about-bottom-left-text p {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 29px;
    padding-left: 20px;
    border-left: 3px solid #EC2526;
    margin-bottom: 20px;
}

.about-section-s3 .about-bottom-left-text ul li {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

@media (max-width: 1399px) {
    .about-section-s3 .about-bottom-left-text ul li {
        font-size: 18px;
    }
}

.about-section-s3 .about-bottom-left-text ul li i {
    color: #EC2526;
    margin-right: 10px;
}

.about-section-s3 .about-bottom-left-text ul li+li {
    margin-top: 10px;
}

.about-section-s3 .about-bottom-left-text .icon-wraps {
    display: flex;
    margin-top: 20px;
}

@media (max-width: 450px) {
    .about-section-s3 .about-bottom-left-text .icon-wraps {
        flex-wrap: wrap;
    }
}

.about-section-s3 .about-bottom-left-text .icon-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.about-section-s3 .about-bottom-left-text .icon-wrap+.icon-wrap {
    margin-left: 20px;
}

@media (max-width: 450px) {
    .about-section-s3 .about-bottom-left-text .icon-wrap+.icon-wrap {
        margin-left: 0;
    }
}

.about-section-s3 .about-bottom-left-text .icon-wrap i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #1F212D;
    display: block;
    font-size: 30px;
    text-align: center;
    margin-right: 15px;
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s;
}

.about-section-s3 .about-bottom-left-text .icon-wrap h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.about-section-s3 .about-bottom-left-text .icon-wrap:hover i {
    background-color: #EC2526;
}

.about-section-s3 .about-bottom-left-text a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    text-decoration-line: underline;
    position: relative;
    padding-right: 30px;
    color: #EC2526;
}

.about-section-s3 .about-bottom-left-text a:after {
    position: absolute;
    right: 0;
    top: -2px;
    content: "\e912";
    font-family: "icomoon" !important;
    transform: rotate(-45deg);
    transition: all 0.3s;
}


/* case-section-s3 */

.case-section-s3 .case-filters {
    max-width: 856px;
    margin: 0 auto;
    margin-bottom: 60px;
}

@media (max-width: 575px) {
    .case-section-s3 .case-filters {
        margin-bottom: 40px;
    }
}

.case-section-s3 .case-filters ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.case-section-s3 .case-filters ul li {
    margin: 10px;
}

.case-section-s3 .case-filters ul li a {
    padding: 0px 20px;
    display: block;
    border-radius: 10px;
    background: transparent;
    color: #1F212D;
}

@media (max-width: 575px) {
    .case-section-s3 .case-filters ul li a {
        padding: 0px 15px;
    }
}

.case-section-s3 .case-filters ul li a.current {
    color: #EC2526;
}

.case-section-s3 .case-item {
    position: relative;
    margin-bottom: 22px;
    overflow: hidden;
}

.case-section-s3 .case-item .case-img {
    position: relative;
}

.case-section-s3 .case-item .case-img i {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #EC2526;
    color: #fff;
    text-align: center;
    font-size: 30px;
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.case-section-s3 .case-item .case-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(31, 33, 45, 0.8) 100%);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.case-section-s3 .case-item .case-text {
    padding: 20px 30px;
    position: absolute;
    left: 0;
    bottom: -100%;
    transition: all 0.3s;
}

.case-section-s3 .case-item .case-text span {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    font-family: "Cormorant";
    color: #fff;
}

.case-section-s3 .case-item .case-text h2 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .case-section-s3 .case-item .case-text h2 {
        font-size: 24px;
    }
}

.case-section-s3 .case-item .case-text h2 a {
    color: #fff;
}

.case-section-s3 .case-item .case-text h2 a:hover {
    color: #EC2526;
}

.case-section-s3 .case-item:hover .case-img i {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.case-section-s3 .case-item:hover .case-img:before {
    opacity: 1;
    visibility: visible;
}

.case-section-s3 .case-item:hover .case-text {
    bottom: 0;
}


/* service-section style-3 */

.service-section.style-3 .service-left {
    background: #FAFAFA;
    padding: 40px;
}

@media (max-width: 1399px) {
    .service-section.style-3 .service-left {
        padding: 20px 15px;
    }
}

@media (max-width: 991px) {
    .service-section.style-3 .service-left {
        text-align: center;
        margin-bottom: 30px;
    }
}

.service-section.style-3 .service-left .heading-title {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #D7D7D7;
}

.service-section.style-3 .service-left .heading-title p {
    font-size: 16px;
    margin-bottom: 0;
}

.service-section.style-3 .service-left .service-top-text {
    display: flex;
    padding-bottom: 0px;
}

@media (max-width: 991px) {
    .service-section.style-3 .service-left .service-top-text {
        justify-content: center;
    }
}

.service-section.style-3 .service-left .service-top-right {
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #D7D7D7;
}

.service-section.style-3 .service-left .service-top-right p {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    color: #1F212D;
    margin-bottom: 10px;
}

.service-section.style-3 .service-left .service-top-right span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    color: #1F212D;
}

@media (max-width: 1199px) {
    .service-section.style-3 .service-left .btn-style-1 {
        padding: 5px 10px;
        height: 45px;
    }
    .service-section.style-3 .service-left .btn-style-1::after {
        display: none;
    }
}

.service-section.style-3 .service-left h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 10px;
}


/* choose-section style-3 */

.choose-section.style-3 {
    padding-bottom: 150px;
}


/* graph-section */

.graph-section,
.graph-section-s2 {
    padding-bottom: 120px;
    position: relative;
    z-index: 11;
}

@media (max-width: 991px) {
    .graph-section,
    .graph-section-s2 {
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .graph-section,
    .graph-section-s2 {
        padding: 80px 0;
    }
}

.graph-section::after,
.graph-section-s2::after {
    position: absolute;
    left: 0;
    top: -70px;
    width: 20%;
    height: 50px;
    content: "";
    background: #fff;
    z-index: 1;
}

@media (max-width: 991px) {
    .graph-section::after,
    .graph-section-s2::after {
        display: none;
    }
}

.graph-section:before,
.graph-section-s2:before {
    position: absolute;
    left: 0;
    top: -70px;
    width: 45%;
    height: 90%;
    content: "";
    background: url(../images/graph/left-img.png);
    z-index: 11;
    border-top: 3px solid #EC2526;
}

@media (max-width: 1399px) {
    .graph-section:before,
    .graph-section-s2:before {
        height: 79%;
    }
}

@media (max-width: 1199px) {
    .graph-section:before,
    .graph-section-s2:before {
        height: 70%;
    }
}

@media (max-width: 991px) {
    .graph-section:before,
    .graph-section-s2:before {
        display: none;
    }
}

.graph-section .graph-left-img,
.graph-section-s2 .graph-left-img {
    margin-top: -70px;
    position: relative;
    z-index: 11;
    border-top: 3px solid #910707;
}

@media (max-width: 991px) {
    .graph-section .graph-left-img,
    .graph-section-s2 .graph-left-img {
        margin: 0;
        text-align: center;
    }
    .graph-section .graph-left-img img,
    .graph-section-s2 .graph-left-img img {
        width: 100%;
    }
}

.graph-section .graph-text,
.graph-section-s2 .graph-text {
    padding-top: 120px;
}

@media (max-width: 991px) {
    .graph-section .graph-text,
    .graph-section-s2 .graph-text {
        padding-top: 50px;
    }
}

@media (max-width: 991px) {
    .graph-section .graph-text .grap-img,
    .graph-section-s2 .graph-text .grap-img {
        text-align: center;
    }
}


/* pricing-section */

.pricing-section {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .pricing-section {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .pricing-section {
        padding-bottom: 50px;
    }
}

.pricing-section .pricing-item {
    padding: 50px;
    background: #F5F5F5;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .pricing-section .pricing-item {
        padding: 40px;
    }
}

@media (max-width: 1199px) {
    .pricing-section .pricing-item {
        padding: 30px;
    }
}

.pricing-section .pricing-item .price-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.pricing-section .pricing-item .price-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

@media (max-width: 1199px) {
    .pricing-section .pricing-item .price-price {
        margin-bottom: 30px;
    }
}

.pricing-section .pricing-item .price-price span {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    font-family: "Cormorant";
}

.pricing-section .pricing-item .price-price h3 {
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #EC2526;
}

@media (max-width: 1199px) {
    .pricing-section .pricing-item .price-price h3 {
        font-size: 60px;
    }
}

.pricing-section .pricing-item ul {
    margin-bottom: 50px;
}

.pricing-section .pricing-item ul li {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: #1F212D;
}

@media (max-width: 1399px) {
    .pricing-section .pricing-item ul li {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {
    .pricing-section .pricing-item ul li {
        font-size: 20px;
        line-height: 28px;
    }
}

.pricing-section .pricing-item ul li i {
    margin-right: 10px;
}

.pricing-section .pricing-item ul li i.gray {
    color: #707070;
}

.pricing-section .pricing-item ul li+li {
    margin-top: 40px;
}

.pricing-section .col:nth-child(2) .pricing-item {
    border-top: 10px solid #EC2526;
}

.pricing-section .col:nth-child(odd) .pricing-item {
    margin-top: 40px;
}

@media (max-width: 1199px) {
    .pricing-section .col:nth-child(odd) .pricing-item {
        margin-top: 0px;
    }
}


/* contact-area-s2 */

@media (max-width: 991px) {
    .contact-area-s2 {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .contact-area-s2 {
        padding: 70px 0;
    }
}

.contact-area-s2::after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 67px;
    content: "";
    background: #fff;
    width: 50%;
    border-top: 3px solid #EC2526;
}

@media (max-width: 991px) {
    .contact-area-s2::after {
        display: none;
    }
}

.contact-area-s2 .contact-area-wrapper .contact-form-area {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 80px 40px;
    margin: 0;
}

@media (max-width: 991px) {
    .contact-area-s2 .contact-area-wrapper .contact-form-area {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(15px);
    }
}

@media (max-width: 575px) {
    .contact-area-s2 .contact-area-wrapper .contact-form-area {
        padding: 40px 15px;
    }
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 h2 {
    color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 h2 span {
    color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 small {
    color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 small::after {
    border-color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .heading-title-s3 small::before {
    background-color: #fff;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #A5A5A5;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder {
    color: #A5A5A5;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder {
    color: #A5A5A5;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area .form-control::placeholder {
    color: #A5A5A5;
}

.contact-area-s2 .contact-area-wrapper .contact-form-area select.form-control {
    background: url(../images/select-icon2.png) calc(100% - 15px) center no-repeat transparent;
    color: #A5A5A5;
}


/* ======================================
20. About Page  
========================================*/


/* about-page */

.about-page .graph-section {
    padding: 0;
    background-color: #f9f1f1;
}

.about-page .graph-section:before,
.about-page .graph-section:after {
    display: none;
}

.about-page .graph-section .graph-left-img {
    margin: 0;
}

.about-page .graph-section .graph-text {
    padding: 0;
}

.about-page .graph-section .graph-left-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
}

@media (max-width: 991px) {
    .about-page .graph-section .graph-left-img {
        position: relative;
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
    }
}

.about-page .graph-section .graph-left-img img {
    width: 100%;
    height: 690px;
    object-fit: cover;
}

.about-page .work-section .work-item {
    display: flex;
}

@media (max-width: 991px) {
    .about-page .work-section .work-item {
        display: block;
        margin-bottom: 30px;
    }
}

.about-page .work-section .work-item .work-content {
    flex-basis: 49%;
    padding: 40px 60px;
    border: 1px solid rgba(31, 33, 45, 0.15);
}

.about-page .work-section .work-item .work-content p {
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .about-page .work-section .work-item .work-content {
        padding: 20px;
    }
}

.about-page .work-section .work-item .work-img {
    flex-basis: 51%;
}

.about-page .work-section .work-item .work-img img {
    width: 100%;
}

@media (max-width: 1199px) {
    .about-page .work-section .work-item .work-img img {
        min-height: 395px;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .about-page .work-section .work-item .work-img img {
        min-height: 100%;
    }
}

.about-page .work-section .work-item:nth-child(odd) .work-img {
    order: 1;
}

@media (max-width: 991px) {
    .about-page .work-section .work-item:nth-child(odd) .work-img {
        order: unset;
    }
}

.about-page .work-section .work-item:nth-child(odd) .work-content {
    order: 2;
}

@media (max-width: 991px) {
    .about-page .work-section .work-item:nth-child(odd) .work-content {
        order: unset;
    }
}

.about-page .work-section .work-item .work-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-page .work-section .work-item .work-top i {
    display: block;
    width: 86px;
    height: 86px;
    line-height: 86px;
    font-size: 45px;
    text-align: center;
    margin-right: 20px;
    transition: all 0.3s;
    border-radius: 5px;
}

.about-page .work-section .work-item .work-text h2 {
    color: #707070;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 0;
}

@media (max-width: 450px) {
    .about-page .work-section .work-item .work-text h2 {
        font-size: 38px;
    }
}

.about-page .work-section .work-item .work-text h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

@media (max-width: 450px) {
    .about-page .work-section .work-item .work-text h3 {
        font-size: 20px;
    }
}

.about-page .work-section .work-item .work-text h3 a {
    color: #1F212D;
}

.about-page .work-section .work-item .work-text h3 a:hover {
    color: #EC2526;
}

.about-page .work-section .work-item:hover .work-top i {
    background: #EC2526;
    color: #fff;
}


/* =======================================
21. Services Page    
 =========================================*/

.service-single-page .service-single-text {
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-single-page .service-single-text h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 20px;
}

@media (min-width: 991px) {
    .service-single-page .service-single-grap .col {
        padding: 0;
    }
}

.service-single-page .service-single-grap-text h3 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

.service-single-page .service-single-grap-text ul li {
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 20px;
}

.service-single-page .service-single-grap-text ul li i {
    margin-right: 10px;
    color: #EC2526;
}

.service-single-page .service-wrap {
    margin-top: 30px;
}

.service-single-page .service-wrap .service-item {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
}

.service-single-page .service-wrap .service-item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    content: "";
    background: #EC2526;
    transition: all 0.4s;
}

.service-single-page .service-wrap .service-item .service-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-single-page .service-wrap .service-item .service-top i {
    display: block;
    width: 86px;
    height: 86px;
    line-height: 86px;
    font-size: 45px;
    text-align: center;
    margin-right: 20px;
    transition: all 0.3s;
    border-radius: 5px;
}

.service-single-page .service-wrap .service-item .service-text h2 {
    color: #707070;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 0;
}

@media (max-width: 450px) {
    .service-single-page .service-wrap .service-item .service-text h2 {
        font-size: 38px;
    }
}

.service-single-page .service-wrap .service-item .service-text h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

@media (max-width: 450px) {
    .service-single-page .service-wrap .service-item .service-text h3 {
        font-size: 20px;
    }
}

.service-single-page .service-wrap .service-item .service-text h3 a {
    color: #1F212D;
}

.service-single-page .service-wrap .service-item .service-text h3 a:hover {
    color: #EC2526;
}

.service-single-page .service-wrap .service-item:hover:before {
    width: 100%;
}

.service-single-page .service-wrap .service-item:hover .service-top i {
    background: #EC2526;
    color: #fff;
}

.service-single-page .faq-section-wrap {
    padding: 80px;
    background: #FAFAFA;
    margin-top: 70px;
}

@media (max-width: 767px) {
    .service-single-page .faq-section-wrap {
        padding: 30px;
        margin-top: 40px;
    }
}

.service-single-page .faq-section-wrap .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    background: #FAFAFA;
}

.service-single-page .faq-section-wrap .accordion-item button {
    padding: 28px 0;
    color: #1F212D;
    text-align: left;
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    background: none;
}

@media (max-width: 1399px) {
    .service-single-page .faq-section-wrap .accordion-item button {
        padding: 20px 0;
    }
}

@media (max-width: 1199px) {
    .service-single-page .faq-section-wrap .accordion-item button {
        font-size: 20px;
        padding: 24px 0;
        line-height: 28px;
    }
}

.service-single-page .faq-section-wrap .accordion-item button::after {
    background: none;
    content: "\e906";
    font-family: "icomoon";
    font-size: 15px;
    font-weight: 700;
}

.service-single-page .faq-section-wrap .accordion-item button.collapsed {
    color: #373b3e;
}

.service-single-page .faq-section-wrap .accordion-item button:focus {
    box-shadow: none;
    outline: none;
    border-color: #e1e1e1;
}

.service-single-page .faq-section-wrap .accordion-item .accordion-body {
    padding: 20px 0;
}

.service-single-page .faq-section-wrap .accordion-item .accordion-collapse {
    border: 0;
}

@media (max-width: 991px) {
    .service-single-page .service-sidebar {
        margin-top: 50px;
    }
}

.service-single-page .service-sidebar .service-widget {
    padding: 30px 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #F4F1FA;
    margin-bottom: 30px;
}

.service-single-page .service-sidebar .service-widget ul li a {
    display: block;
    padding: 21px 20px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    color: #1F212D;
    position: relative;
}

@media (max-width: 1199px) {
    .service-single-page .service-sidebar .service-widget ul li a {
        font-size: 18px;
        padding: 15px 20px;
    }
}

.service-single-page .service-sidebar .service-widget ul li a:after {
    position: absolute;
    right: 20px;
    top: 28px;
    content: "\e912";
    font-family: "icomoon";
    transform: rotate(-45deg);
    transition: all 0.3s;
    font-size: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #707070;
    border-radius: 50%;
    color: #fff;
    text-align: center;
}

@media (max-width: 1199px) {
    .service-single-page .service-sidebar .service-widget ul li a:after {
        top: 24px;
    }
}

.service-single-page .service-sidebar .service-widget ul li a:hover {
    background: #EC2526;
    color: #fff;
}

.service-single-page .service-sidebar .service-widget ul li a:hover:after {
    transform: rotate(0deg);
    background-color: #fff;
    color: #EC2526;
}

.service-single-page .service-sidebar .service-widget ul li:last-child a {
    border: 0;
}

.service-single-page .service-sidebar .info-widget {
    padding: 40px 20px 60px;
    background: #1F212D;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.service-single-page .service-sidebar .info-widget .icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: -1;
}

.service-single-page .service-sidebar .info-widget h3 {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 30px;
}

.service-single-page .service-sidebar .info-widget .info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #EC2526;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .service-single-page .service-sidebar .info-widget .info-item {
        padding: 15px;
    }
}

.service-single-page .service-sidebar .info-widget .info-item h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    color: #fff;
}

@media (max-width: 1199px) {
    .service-single-page .service-sidebar .info-widget .info-item h4 {
        font-size: 18px;
    }
}

.service-single-page .service-sidebar .info-widget .info-item h4 i {
    margin-right: 20px;
}

.service-single-page .service-sidebar .info-widget .info-item i {
    color: #fff;
    font-size: 25px;
}

.service-single-page .service-sidebar .info-widget .info-item:last-child {
    background: #707070;
}

.service-single-page .service-sidebar .invest-widget {
    padding: 60px 50px;
    height: 450px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .service-single-page .service-sidebar .invest-widget {
        padding: 30px 20px;
    }
}

.service-single-page .service-sidebar .invest-widget::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(31, 33, 45, 0.8) 64.57%);
    z-index: -1;
}

.service-single-page .service-sidebar .invest-widget h3 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.service-single-page .service-sidebar .invest-widget p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    color: #fff;
    margin-bottom: 30px;
}


/* ===========================
22. Team Page
 =============================*/

.team-page .team-section {
    padding-bottom: 60px;
    border: 0;
    margin: 0;
}

.team-page .team-section:before {
    display: none;
}

.team-page .team-section .team-wrap {
    margin: 0;
}

.team-page .team-section .team-wrap .team-item {
    margin-bottom: 50px;
}

@media (max-width: 1199px) {
    .team-page .team-section .team-wrap .team-item {
        max-width: 300px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

.team-page .team-section .team-wrap .team-item:hover::after {
    height: 78%;
    bottom: 0;
}

.team-page .team-section .team-wrap .team-item:hover .team-text {
    bottom: 0px;
}

@media (max-width: 1700px) {
    .team-page .team-section .team-wrap .team-item .right-title {
        right: -28%;
    }
}

@media (max-width: 1399px) {
    .team-page .team-section .team-wrap .team-item .right-title {
        right: -38%;
    }
}

@media (max-width: 767px) {
    .team-page .team-section .team-wrap .team-item .right-title {
        right: -48%;
    }
}

@media (max-width: 991px) {
    .team-single-page .team-single-sidebar {
        margin-top: 50px;
    }
}

.team-single-page .team-single-sidebar .team-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    max-width: 350px;
}

.team-single-page .team-single-sidebar .team-item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 78%;
    content: "";
    background: #1F212D;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-single-page .team-single-sidebar .team-item::after {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 0;
    content: "";
    background: #EC2526;
    opacity: 0.75;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.team-single-page .team-single-sidebar .team-item .team-img-wrap {
    position: relative;
    z-index: 1;
}

.team-single-page .team-single-sidebar .team-item .team-img-wrap .team-shape {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team-single-page .team-single-sidebar .team-item .team-img {
    margin: 0 auto;
    position: relative;
}

.team-single-page .team-single-sidebar .team-item .team-img img {
    transition: all 0.3s;
    display: unset;
    max-width: 300px;
    filter: grayscale(100%);
}

.team-single-page .team-single-sidebar .team-item .right-title {
    position: absolute;
    right: -23%;
    bottom: 40%;
    transform: rotate(-90deg);
    z-index: 1;
}

@media (max-width: 1700px) {
    .team-single-page .team-single-sidebar .team-item .right-title {
        width: 320px;
        right: -28%;
    }
}

@media (max-width: 450px) {
    .team-single-page .team-single-sidebar .team-item .right-title {
        right: -35%;
    }
}

.team-single-page .team-single-sidebar .team-item .right-title h3 {
    font-family: "Cormorant";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 5px;
    display: inline-block;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.6);
}

.team-single-page .team-single-sidebar .team-info ul li {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    font-family: "Cormorant";
    color: #1F212D;
}

@media (max-width: 1199px) {
    .team-single-page .team-single-sidebar .team-info ul li {
        font-size: 22px;
    }
}

.team-single-page .team-single-sidebar .team-info ul li+li {
    margin-top: 20px;
}

.team-single-page .team-single-sidebar .team-info ul li i {
    margin-right: 10px;
    color: #EC2526;
}

.team-single-page .team-single-sidebar .team-social {
    margin-top: 30px;
}

.team-single-page .team-single-sidebar .team-social ul {
    display: flex;
}

.team-single-page .team-single-sidebar .team-social ul li+li {
    margin-left: 20px;
}

.team-single-page .team-single-sidebar .team-social ul li a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 56px;
    background: #707070;
    color: #fff;
    border-radius: 50%;
    text-align: center;
}

.team-single-page .team-single-content h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .team-single-page .team-single-content h2 {
        font-size: 42px;
        line-height: 48px;
    }
}

@media (max-width: 575px) {
    .team-single-page .team-single-content h2 {
        font-size: 35px;
        margin-top: 0;
        line-height: 40px;
    }
}

.team-single-page .team-single-content p {
    margin-bottom: 0;
}

.team-single-page .team-single-content .skill-section {
    padding: 50px 40px 20px;
    background: #1F212D;
    margin-top: 40px;
}

@media (max-width: 575px) {
    .team-single-page .team-single-content .skill-section {
        padding: 30px 20px;
    }
}

.team-single-page .team-single-content .skill-section .progress-single {
    margin-bottom: 30px;
    position: relative;
}

.team-single-page .team-single-content .skill-section .progress-single h5 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: #fff;
}

@media (max-width: 767px) {
    .team-single-page .team-single-content .skill-section .progress-single h5 {
        font-size: 18px;
    }
}

.team-single-page .team-single-content .skill-section .progress-single .progress {
    background: #2E2E2E;
    height: 6px;
    position: relative;
}

.team-single-page .team-single-content .skill-section .progress-single .progress .progress-bar {
    background-color: #EC2526;
}

.team-single-page .team-single-content .skill-section .progress-number {
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
}

@media (max-width: 767px) {
    .team-single-page .team-single-content .skill-section .progress-number {
        font-size: 18px;
        top: -5px;
    }
}

.team-single-page .team-single-content .service-wrap {
    margin-top: 60px;
    padding-bottom: 70px;
}

@media (max-width: 991px) {
    .team-single-page .team-single-content .service-wrap {
        padding-bottom: 0;
    }
}

.team-single-page .team-single-content .service-wrap .row {
    margin-top: 20px;
}

.team-single-page .team-single-content .service-wrap .service-item {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
}

.team-single-page .team-single-content .service-wrap .service-item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    content: "";
    background: #EC2526;
    transition: all 0.4s;
}

.team-single-page .team-single-content .service-wrap .service-item .service-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.team-single-page .team-single-content .service-wrap .service-item .service-top i {
    display: block;
    width: 86px;
    height: 86px;
    line-height: 86px;
    font-size: 45px;
    text-align: center;
    margin-right: 20px;
    transition: all 0.3s;
    border-radius: 5px;
}

.team-single-page .team-single-content .service-wrap .service-item .service-text h2 {
    color: #707070;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 0;
}

@media (max-width: 450px) {
    .team-single-page .team-single-content .service-wrap .service-item .service-text h2 {
        font-size: 38px;
    }
}

.team-single-page .team-single-content .service-wrap .service-item .service-text h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

@media (max-width: 1199px) {
    .team-single-page .team-single-content .service-wrap .service-item .service-text h3 {
        font-size: 22px;
    }
}

@media (max-width: 450px) {
    .team-single-page .team-single-content .service-wrap .service-item .service-text h3 {
        font-size: 20px;
    }
}

.team-single-page .team-single-content .service-wrap .service-item .service-text h3 a {
    color: #1F212D;
}

.team-single-page .team-single-content .service-wrap .service-item .service-text h3 a:hover {
    color: #EC2526;
}

.team-single-page .team-single-content .service-wrap .service-item:hover:before {
    width: 100%;
}

.team-single-page .team-single-content .service-wrap .service-item:hover .service-top i {
    background: #EC2526;
    color: #fff;
}

.team-single-page .team-single-content .contact-area {
    background: none;
    padding: 0;
}

.team-single-page .team-single-content .contact-area .contact-form-area {
    padding: 120px 95px;
    box-shadow: 0px 4px 30px 0px rgba(149, 149, 149, 0.15);
}

@media (max-width: 1199px) {
    .team-single-page .team-single-content .contact-area .contact-form-area {
        padding: 80px;
    }
}

@media (max-width: 991px) {
    .team-single-page .team-single-content .contact-area .contact-form-area {
        padding: 50px;
    }
}

@media (max-width: 575px) {
    .team-single-page .team-single-content .contact-area .contact-form-area {
        padding: 30px 15px;
    }
}


/* =============================
23. Project-page
 ===============================*/


/* case-section-s3 */

.project-page .case-section-s3 {
    padding-bottom: 80px;
}

@media (max-width: 991px) {
    .project-page .case-section-s3 {
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .project-page .case-section-s3 {
        padding-bottom: 30px;
    }
}

.project-page .case-section-s3 .case-item {
    margin-bottom: 40px;
}

.project-page .case-section-s3 .case-item .case-text {
    position: relative;
    bottom: 0;
    padding: 0;
    padding-top: 20px;
}

.project-page .case-section-s3 .case-item .case-text span {
    color: #EC2526;
}

.project-page .case-section-s3 .case-item .case-text h2 {
    margin-bottom: 15px;
}

.project-page .case-section-s3 .case-item .case-text h2 a {
    color: #1F212D;
}

.project-page .case-section-s3 .case-item .case-text p {
    margin-bottom: 0;
}


/* project-single-page */

.project-single-page .project-single-text {
    margin-bottom: 60px;
}

.project-single-page .project-single-text h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .project-single-page .project-single-text h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 575px) {
    .project-single-page .project-single-text h2 {
        font-size: 28px;
        line-height: 35px;
    }
}

.project-single-page .problem {
    margin-bottom: 30px;
}

.project-single-page .problem h3 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .project-single-page .problem h3 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 575px) {
    .project-single-page .problem h3 {
        font-size: 28px;
        line-height: 35px;
    }
}

.project-single-page .challenges h4 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D7D7D7;
}

@media (max-width: 991px) {
    .project-single-page .challenges h4 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 575px) {
    .project-single-page .challenges h4 {
        font-size: 25px;
        line-height: 35px;
    }
}

.project-single-page .challenges h4 i {
    color: #EC2526;
}

.project-single-page .challenges ul li {
    padding-bottom: 15px;
}

@media (max-width: 991px) {
    .project-single-page .project-sidebar {
        margin-top: 40px;
    }
}

.project-single-page .project-sidebar .project-category {
    padding: 45px 48px;
    background: #FAFAFA;
}

@media (max-width: 1199px) {
    .project-single-page .project-sidebar .project-category {
        padding: 30px 20px;
    }
}

.project-single-page .project-sidebar .project-category ul li {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    font-family: "Cormorant";
    display: flex;
}

@media (max-width: 1199px) {
    .project-single-page .project-sidebar .project-category ul li {
        font-size: 20px;
    }
}

.project-single-page .project-sidebar .project-category ul li+li {
    margin-top: 20px;
}

.project-single-page .project-sidebar .project-category ul li span {
    font-weight: 700;
    color: #1F212D;
    flex-basis: 50%;
    display: flex;
    align-items: center;
}

.project-single-page .project-sidebar .project-category ul li span i {
    color: #EC2526;
    margin-right: 20px;
}

.project-single-page .project-sidebar .project-category .cloud-btn {
    margin-top: 30px;
}

.project-single-page .project-sidebar .project-category .cloud-btn button {
    width: 100%;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    font-family: "Cormorant";
    background: #EC2526;
    padding: 18px 25px;
    border: 0;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1199px) {
    .project-single-page .project-sidebar .project-category .cloud-btn button {
        font-size: 20px;
    }
}

.project-single-page .project-sidebar .project-category .cloud-btn button span {
    display: flex;
    align-items: center;
}

.project-single-page .project-sidebar .project-category .cloud-btn button span i {
    margin-right: 20px;
}

.project-single-page .project-sidebar .project-category .cloud-btn button:last-child {
    margin-top: 20px;
    background-color: #707070;
}

.project-single-page .project-sidebar .project-side {
    margin-top: 80px;
    position: relative;
}

.project-single-page .project-sidebar .project-side img {
    width: 100%;
}

.project-single-page .project-sidebar .project-side:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(31, 33, 45, 0.8) 100%);
}

.project-single-page .project-single-bottom {
    padding-top: 100px;
}

.project-single-page .project-single-bottom h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .project-single-page .project-single-bottom h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 575px) {
    .project-single-page .project-single-bottom h2 {
        font-size: 28px;
        line-height: 35px;
    }
}

.project-single-page .project-single-bottom .challenges ul li {
    padding-left: 25px;
    position: relative;
}

.project-single-page .project-single-bottom .challenges ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "\e914";
    font-family: "icomoon";
    color: #EC2526;
}

.project-single-page .project-single-bottom .service-section {
    padding-bottom: 0;
    padding-top: 60px;
}


/* =============================
24. Faq-page
 ===============================*/


/* faq-page */

.faq-page .choose-section {
    padding-bottom: 100px;
}

.faq-page .case-section {
    position: relative;
}

.faq-page .case-section:after {
    position: absolute;
    left: 0;
    top: -67px;
    height: 67px;
    content: "";
    background: #fff;
    width: 50%;
    border-top: 3px solid #EC2526;
    z-index: 11;
}

@media (max-width: 991px) {
    .faq-page .case-section:after {
        display: none;
    }
}


/* ===============================
25. Blog Page
 =================================*/


/* blog-page */

.blog-grid-page .blog-section-s2 .blog-item {
    margin-bottom: 30px;
}


/* blog-page-area */

.blog-page-area .blog-item {
    margin-bottom: 60px;
}

.blog-page-area .blog-item:last-child {
    margin-bottom: 0;
}

.blog-page-area .blog-item .blog-content {
    padding-top: 30px;
}

.blog-page-area .blog-item .blog-content ul {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.blog-page-area .blog-item .blog-content ul li {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-page-area .blog-item .blog-content ul li+li {
    margin-left: 20px;
}

.blog-page-area .blog-item .blog-content ul li i {
    color: #EC2526;
}

.blog-page-area .blog-item .blog-content ul li strong {
    color: #1F212D;
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.blog-page-area .blog-item .blog-content h2 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .blog-page-area .blog-item .blog-content h2 {
        font-size: 25px;
    }
}

.blog-page-area .blog-item .blog-content h2 a {
    color: #1F212D;
}

.blog-page-area .blog-item .blog-content h2 a:hover {
    color: #EC2526;
}

.blog-page-area .blog-item .blog-content p {
    margin-bottom: 20px;
}

.blog-page-full .blog-img img {
    width: 100%;
}


/* blog-right-sidebar */

.blog-sidebar {
    /*** search-widget ***/
}

@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 50px;
    }
}

.blog-sidebar .widget {
    margin-top: 50px;
    padding: 40px;
    background: #FAFAFA;
}

@media (max-width: 1399px) {
    .blog-sidebar .widget {
        padding: 20px;
    }
}

@media (max-width: 1199px) {
    .blog-sidebar .widget {
        padding: 15px;
    }
}

@media (max-width: 1199px) {
    .blog-sidebar .widget {
        margin-top: 30px;
    }
}

.blog-sidebar .widget h3 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 1199px) {
    .blog-sidebar .widget h3 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width: 575px) {
    .blog-sidebar .widget h3 {
        font-size: 22px;
        line-height: 27px;
    }
}

.blog-sidebar .search-widget {
    padding: 30px;
    background: #FAFAFA;
}

.blog-sidebar .search-widget form div {
    position: relative;
}

.blog-sidebar .search-widget input {
    background: none;
    border: 1px solid rgba(31, 33, 45, 0.15);
    height: 55px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    padding: 6px 50px 6px 20px;
    border-radius: 0;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
    background-color: #fff;
}

.blog-sidebar .search-widget form button {
    background: transparent;
    width: 55px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    font-size: calc-rem-value(20);
    color: #1F212D;
    border: 0;
    outline: 0;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0;
}

.blog-sidebar .search-widget form button i {
    font-size: 14px;
}

.blog-sidebar .blog-right-info p {
    margin-bottom: 0;
}

.blog-sidebar .recent-post .post {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.blog-sidebar .recent-post .post:last-child {
    margin-bottom: 0;
}

.blog-sidebar .recent-post .post .post-img {
    flex-basis: 35%;
    margin-right: 20px;
}

@media (max-width: 1199px) {
    .blog-sidebar .recent-post .post .post-img {
        margin-right: 10px;
    }
}

.blog-sidebar .recent-post .post .post-content {
    flex-basis: 65%;
}

.blog-sidebar .recent-post .post .post-content span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-sidebar .recent-post .post .post-content ul {
    display: flex;
    align-items: center;
}

.blog-sidebar .recent-post .post .post-content ul li {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1199px) {
    .blog-sidebar .recent-post .post .post-content ul li {
        font-size: 11px;
    }
}

.blog-sidebar .recent-post .post .post-content ul li+li {
    margin-left: 10px;
}

@media (max-width: 1199px) {
    .blog-sidebar .recent-post .post .post-content ul li+li {
        margin-left: 5px;
    }
}

.blog-sidebar .recent-post .post .post-content ul li i {
    color: #EC2526;
}

.blog-sidebar .recent-post .post .post-content ul li strong {
    color: #1F212D;
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.blog-sidebar .recent-post .post .post-content h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-top: 6px;
}

.blog-sidebar .recent-post .post .post-content h4 a {
    color: #1F212D;
}

.blog-sidebar .recent-post .post .post-content h4 a:hover {
    color: #EC2526;
}

.blog-sidebar .category-widget ul li+li {
    margin-top: 20px;
}

.blog-sidebar .category-widget ul li a {
    color: #1F212D;
    font-family: "Cormorant";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}

@media (max-width: 1199px) {
    .blog-sidebar .category-widget ul li a {
        font-size: 20px;
        line-height: 27px;
    }
}

.blog-sidebar .category-widget ul li a i {
    margin-right: 20px;
    color: #EC2526;
}

.blog-sidebar .category-widget ul li a:hover {
    color: #EC2526;
}

.blog-sidebar .tag-widget ul {
    display: flex;
    flex-wrap: wrap;
}

.blog-sidebar .tag-widget ul li {
    margin-right: 15px;
    margin-bottom: 15px;
}

.blog-sidebar .tag-widget ul li a {
    color: #1F212D;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    font-family: "Cormorant";
    padding-left: 20px;
    position: relative;
}

.blog-sidebar .tag-widget ul li a:before {
    position: absolute;
    left: 0;
    top: 0;
    content: url(../images/tag.png);
}

.blog-sidebar .tag-widget ul li a:hover {
    color: #EC2526;
}

.blog-sidebar .cta-widget {
    background: url(../images/service/cta.jpg);
    background-size: cover;
    padding-top: 160px;
}

.blog-sidebar .cta-widget .cta-text {
    padding: 120px 45px 50px;
    text-align: center;
    margin-top: 50px;
    background: rgba(31, 31, 31, 0.9);
    clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
}

@media (max-width: 1199px) {
    .blog-sidebar .cta-widget .cta-text {
        padding: 80px 25px 40px;
    }
}

.blog-sidebar .cta-widget p {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    font-family: "Cormorant";
}

@media (max-width: 1199px) {
    .blog-sidebar .cta-widget p {
        font-size: 18px;
    }
}

.blog-sidebar .cta-widget span {
    font-size: 29px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    color: #fff;
}

@media (max-width: 1199px) {
    .blog-sidebar .cta-widget span {
        font-size: 25px;
    }
}


/* =======================
26. Blog Single Page
 ========================*/


/* blog-single-page-area  */

.blog-single-page-area .blog-single-wrap {
    /*** comment-respond ***/
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul li {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul li+li {
    margin-left: 20px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul li i {
    color: #EC2526;
}

.blog-single-page-area .blog-single-wrap .blog-single-text ul li strong {
    color: #1F212D;
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text blockquote {
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Cormorant";
    text-align: center;
    padding: 100px 0;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .blog-single-page-area .blog-single-wrap .blog-single-text blockquote {
        font-size: 45px;
        padding: 70px 0;
    }
}

@media (max-width: 575px) {
    .blog-single-page-area .blog-single-wrap .blog-single-text blockquote {
        font-size: 30px;
        padding: 30px 0;
    }
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap {
    margin-top: 30px;
    margin-bottom: 40px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
        font-size: 25px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap p {
    margin-bottom: 30px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap ul li {
    padding-bottom: 15px;
}

.blog-single-page-area .blog-single-wrap blockquote {
    background: #1F212D;
    padding: 30px;
    font-family: "Cormorant";
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 34px;
    color: #fff;
    margin-bottom: 40px;
}

@media (max-width: 575px) {
    .blog-single-page-area .blog-single-wrap blockquote {
        padding: 15px;
        font-size: 18px;
        line-height: 27px;
    }
}

.blog-single-page-area .blog-single-wrap blockquote span {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    font-family: "DM Sans";
    color: #707070;
    margin-top: 15px;
}

.blog-single-page-area .blog-single-wrap .detail-img {
    margin-top: 40px;
    margin-bottom: 30px;
}

.blog-single-page-area .blog-single-wrap .tag-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .blog-single-page-area .blog-single-wrap .tag-share {
        flex-wrap: wrap;
    }
}

.blog-single-page-area .blog-single-wrap .tag-share h3 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .blog-single-page-area .blog-single-wrap .tag-share h3 {
        font-size: 20px;
        margin-right: 10px;
    }
}

.blog-single-page-area .blog-single-wrap .tag-share ul {
    display: flex;
}

@media (max-width: 767px) {
    .blog-single-page-area .blog-single-wrap .tag-share ul {
        flex-wrap: wrap;
    }
}

.blog-single-page-area .blog-single-wrap .tag-share ul li+li {
    margin-left: 25px;
}

@media (max-width: 767px) {
    .blog-single-page-area .blog-single-wrap .tag-share ul li+li {
        margin-left: 5px;
    }
}

.blog-single-page-area .blog-single-wrap .tag-share ul li a {
    color: #1F212D;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    font-family: "Cormorant";
    padding-left: 20px;
    position: relative;
}

@media (max-width: 767px) {
    .blog-single-page-area .blog-single-wrap .tag-share ul li a {
        font-size: 16px;
    }
}

.blog-single-page-area .blog-single-wrap .tag-share ul li a:before {
    position: absolute;
    left: 0;
    top: 0;
    content: url(../images/tag.png);
}

.blog-single-page-area .blog-single-wrap .tag-share ul li a:hover {
    color: #EC2526;
}

.blog-single-page-area .blog-single-wrap .comment-respond {
    margin-top: 70px;
    padding: 50px;
    background: #FAFAFA;
}

@media (max-width: 1199px) {
    .blog-single-page-area .blog-single-wrap .comment-respond {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .blog-single-page-area .blog-single-wrap .comment-respond {
        padding: 15px;
    }
}

.blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
    background: #fff;
    padding: 70px;
}

@media (max-width: 1199px) {
    .blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
        padding: 40px;
    }
}

@media (max-width: 575px) {
    .blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
        padding: 15px;
    }
}

.blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 991px) {
    .blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
        font-size: 30px;
    }
}

.blog-single-page-area .blog-single-wrap .comment-respond p {
    margin-bottom: 50px;
}

.blog-single-page-area .blog-single-wrap .comment-respond form input,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    color: #A5A5A5;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: none;
    width: 100%;
    height: 55px;
    border: 0;
    padding: 6px 15px;
    margin-bottom: 15px;
    outline: 0;
    border-radius: 0px;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid rgba(31, 33, 45, 0.15);
}

.blog-single-page-area .blog-single-wrap .comment-respond form input:focus,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea:focus {
    box-shadow: none;
    border-color: #EC2526;
}

@media (max-width: 991px) {
    .blog-single-page-area .blog-single-wrap .comment-respond form input,
    .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
        height: 50px;
    }
}

.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    height: 220px;
    padding: 15px;
}

@media (max-width: 991px) {
    .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
        height: 150px;
    }
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea {
    overflow: hidden;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs label,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea label {
    font-family: "Cormorant";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 10px;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs>.form-field:nth-child(1) {
    width: 49%;
    float: left;
}

@media (max-width: 767px) {
    .blog-single-page-area .blog-single-wrap .comment-respond .form-inputs>.form-field:nth-child(1) {
        width: 100%;
        float: none;
    }
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs>.form-field:nth-child(2) {
    width: 49%;
    float: right;
}

@media (max-width: 767px) {
    .blog-single-page-area .blog-single-wrap .comment-respond .form-inputs>.form-field:nth-child(2) {
        width: 100%;
        float: none;
    }
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input {
    max-width: 180px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 0;
    border: 1px solid #EC2526;
    outline: 0;
    background: #EC2526;
    border-radius: 0;
    margin-top: 30px;
    color: #fff;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input:hover {
    background-color: #d11213;
    color: #fff;
}

.blog-single-page-area.full-width .blog-img img {
    width: 100%;
}

.blog-single-page-area.full-width .detail-img img {
    width: 100%;
}


/* ============================
27. Contact Page
 ==============================*/


/* map-section */

.map-section {
    max-width: 1600px;
    margin: 0 auto;
}

.map-section iframe {
    width: 100%;
    height: 400px;
}


/* contact-page */

@media (max-width: 991px) {
    .contact-page .office-info {
        margin-top: 40px;
    }
}

.contact-page .office-info .heading-title h2 {
    margin-bottom: 20px;
}

.contact-page .office-info .contact-info {
    margin-top: 30px;
}

.contact-page .office-info .contact-info ul li {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    font-family: "Cormorant";
    color: #1F212D;
}

@media (max-width: 1199px) {
    .contact-page .office-info .contact-info ul li {
        font-size: 22px;
    }
}

.contact-page .office-info .contact-info ul li+li {
    margin-top: 20px;
}

.contact-page .office-info .contact-info ul li i {
    margin-right: 10px;
    color: #EC2526;
}

.contact-page .office-info .info-social {
    margin-top: 30px;
}

.contact-page .office-info .info-social ul {
    display: flex;
}

@media (max-width: 991px) {
    .contact-page .office-info .info-social ul {
        justify-content: center;
    }
}

.contact-page .office-info .info-social ul li+li {
    margin-left: 20px;
}

.contact-page .office-info .info-social ul li a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 56px;
    background: #707070;
    color: #fff;
    border-radius: 50%;
    text-align: center;
}

.contact-page .office-info .info-social ul li a:hover {
    background: #EC2526;
}

.contact-page .contact-area-wrapper {
    position: relative;
    padding: 50px;
    background: #FAFAFA;
}

@media (max-width: 1199px) {
    .contact-page .contact-area-wrapper {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .contact-page .contact-area-wrapper {
        padding: 15px;
    }
}

.contact-page .contact-area-wrapper .contact-form-area {
    position: relative;
    z-index: 9;
    margin: 0 auto;
    background: #fff;
    padding: 70px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .contact-page .contact-area-wrapper .contact-form-area {
        padding: 30px;
    }
}

.contact-page .contact-area-wrapper .contact-form-area h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .contact-page .contact-area-wrapper .contact-form-area h2 {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .contact-page .contact-area-wrapper .contact-form-area h2 {
        font-size: 30px;
        line-height: 48px;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .contact-page .contact-area-wrapper .contact-form-area {
        padding: 20px;
    }
}

.contact-page .contact-area-wrapper .contact-form-area label {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    font-family: "Cormorant";
    margin-bottom: 15px;
}

.contact-page .contact-area-wrapper .contact-form-area .form-control {
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    border: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    color: #A5A5A5;
    border: 1px solid rgba(31, 33, 45, 0.15);
}

.contact-page .contact-area-wrapper .contact-form-area .form-control:focus {
    outline: none;
    box-shadow: none;
}

.contact-page .contact-area-wrapper .contact-form-area .form-control::-webkit-input-placeholder {
    color: #707070;
}

.contact-page .contact-area-wrapper .contact-form-area .form-control:-ms-input-placeholder {
    color: #707070;
}

.contact-page .contact-area-wrapper .contact-form-area .form-control::placeholder {
    color: #707070;
}

.contact-page .contact-area-wrapper .contact-form-area textarea.form-control {
    height: 130px;
}

.contact-page .contact-area-wrapper .contact-form-area select.form-control {
    color: #707070;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -moz-appearance: none;
    background: #fff url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
    position: relative;
}

.contact-page .contact-area-wrapper .contact-form-area select.form-control option {
    border: 0;
}

.contact-page .contact-area-wrapper .contact-form-area .submit-area {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .contact-page .contact-area-wrapper .contact-form-area .submit-area {
        text-align: center;
    }
}


/* =============================
28. 404 page
 ===============================*/


/* 404-section */

.opps-404-section {
    text-align: center;
}

.opps-404-section .opps-message {
    margin-top: 70px;
    padding: 0 200px;
}

@media (max-width: 991px) {
    .opps-404-section .opps-message {
        margin-top: 50px;
        padding: 0 100px;
    }
}

@media (max-width: 767px) {
    .opps-404-section .opps-message {
        padding: 0;
    }
}

.opps-404-section .opps-message h3 {
    font-size: 30px;
    margin: 0 0 0.8em;
}

.opps-404-section .opps-message p {
    margin-bottom: 1.8em;
}


/*# sourceMappingURL=style.css.map */

.case-section-s3 .case-image-popup img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}