/*===========================
    01.COMMON css
===========================*/


html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #000;
    overflow-x: hidden;
    background: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover {
    color: #4E6EF1;
}

a {
    transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0px;
}

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

h1 {
    font-size: 50px;
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }
}

.section-title h1 {
    margin-bottom: 20px;
}

h2 {
    font-size: 45px;
}

@media (max-width: 767px) {
    h2 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    h2 {
        font-size: 40px;
    }
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 25px;
}

@media (max-width: 767px) {
    h4 {
        font-size: 20px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    h4 {
        font-size: 25px;
    }
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin: 0px;
}

.img-bg {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%
}

.img-bg-large {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh
}

.error {
    color: orangered;
}

.success {
    color: #fff;
}


/*===== All Button Style =====*/

.main-btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 18px 44px;
    font-size: 18px;
    border-radius: 0px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease-in-out;
    border: none;
    background: #ca080c;
    overflow: hidden;
}

.main-btn:hover {
    color: #fff;
}

.btn-hover {
    position: relative;
    overflow: hidden;
}

.btn-hover::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    top: 50%;
    left: 50%;
    padding: 50%;
    z-index: -1;
    transition: all 0.3s ease-out 0s;
    transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-hover:hover::after {
    transform: translate3d(-50%, -50%, 0) scale(1.3);
}

.border-btn {
    border: 2px solid #4E6EF1;
    padding: 15px 30px;
    font-weight: 500;
    color: #4E6EF1;
    background: #fff;
}

.border-btn:hover {
    color: #4E6EF1;
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: #e7e7e7;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #000;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    transition: all 0.3s ease-out 0s;
}

.scroll-top:hover {
    color: #fff;
    background: #535353
}

@keyframes animation1 {
    0% {
        transform: translateY(30px);
    }
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(30px);
    }
}


/*===========================
    02.HEADER css
===========================*/


/*===== NAVBAR =====*/

.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-out 0s;
}

.sticky {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
    padding: 10px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sticky .navbar {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .sticky .navbar {
        padding: 10px 0;
    }
}

.sticky .navbar .navbar-nav .nav-item a {
    color: #000;
}

.sticky .navbar .navbar-nav .nav-item a::before {
    opacity: .2;
}

.sticky .navbar .navbar-toggler .toggler-icon {
    background: #000;
}

.navbar {
    padding: 0;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease-out 0s;
    padding: 20px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar {
        padding: 17px 0;
    }
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    max-width: 180px;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item {
        margin-left: 20px;
    }
}

.navbar-nav .nav-item a {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s ease-out 0s;
    padding: 10px 0;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 20px;
        color: #222;
    }
}

.navbar-nav .nav-item a::before {
    content: '';
    width: 150%;
    height: 100%;
    background: #ca080c;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease-out 0s;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item a::before {
        opacity: .2;
        top: 0;
        left: 0;
        transform: translate(0) scale(1);
        height: 100%;
        width: 0;
        border-radius: 0;
    }
}

.navbar-nav .nav-item a:hover::before,
.navbar-nav .nav-item a.active::before {
    transform: translate(-50%, -50%) scale(1);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .navbar-nav .nav-item a:hover::before,
    .navbar-nav .nav-item a.active::before {
        opacity: .2;
        top: 0;
        left: 0;
        transform: translate(0) scale(1);
        width: 100%;
    }
}

.navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

.navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

.navbar-nav .nav-item .sub-menu li {
    display: block;
}

.navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 25px;
    color: #4E6EF1;
}

.navbar-nav .sub-nav-toggler {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}

.navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}


/* ================= hero-area ================= */

.hero-area::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area .hero-content {
        margin-bottom: 50px;
        padding-top: 50px;
    }
}

@media (max-width: 767px) {
    .hero-area .hero-content {
        margin-bottom: 50px;
    }
}

.hero-area .hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.hero-area .hero-content h1 span {
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-area .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .hero-area .hero-content h1 {
        font-size: 35px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .hero-area .hero-content h1 {
        font-size: 40px;
    }
}

.hero-area .hero-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.hero-area .hero-img img {
    width: 100%;
}

.upcoming-section .single-counter {
    text-align: center;
    padding: 50px 20px;
    background: #535353;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.upcoming-section .single-counter:hover .map-img {
    opacity: 1;
    visibility: visible;
    background-color: #8c1208;
}

.upcoming-section .single-counter .map-img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
}

.upcoming-section .single-counter i {
    font-size: 50px;
    margin-bottom: 35px;
}

.upcoming-section .single-counter h4 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 5px;
}

.upcoming-section .single-counter span {
    font-size: 25px;
    font-weight: 400;
}


/* =============== countdown css ==============*/

.countdown-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .countdown-section {
        padding-top: 100px;
    }
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .countdown-section .section-title h1 {
        font-size: 40px;
    }
}

.countdown-section .countdown-img {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 650px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .countdown-section .countdown-img {
        max-width: 600px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .countdown-section .countdown-img {
        max-width: 500px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .countdown-section .countdown-img {
        max-width: 100%;
        width: 100%;
        position: static;
        margin-bottom: 50px;
    }
}

.countdown-section .countdown-img img {
    max-width: 100%;
}

.countdown-section .countdown {
    margin-top: 40px;
    margin-bottom: 60px;
}

.countdown-section .countdown ul {
    display: flex;
    align-items: center;
}

.countdown-section .countdown ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .countdown-section .countdown ul li {
        margin-right: 25px;
    }
}

.countdown-section .countdown ul li:last-child {
    margin-right: 0;
}

.countdown-section .countdown ul li span {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 600;
    border: 6px solid;
    margin-bottom: 15px;
}

.countdown-section .countdown ul li span#days {
    border-color: #4771EA;
}

.countdown-section .countdown ul li span#hours {
    border-color: #B83AEC;
}

.countdown-section .countdown ul li span#minutes {
    border-color: #E44E83;
}

.countdown-section .countdown ul li span#seconds {
    border-color: #FF6240;
}

.countdown-section .countdown ul li p {
    font-size: 25px;
    font-weight: 400;
}


/* ==================== video css ================== */

.video-section {
    position: relative;
    background-image: url("../img/video/video-bg.webp");
    z-index: 1;
}

.video-section .section-title {
    color: #fff;
}

.video-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(197, 165, 24, 0.192);
    z-index: -1;
}

.video-section .video-btn-wrapper .video-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #000;
    color: #ca080c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: auto;
}

.video-section .video-btn-wrapper .video-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(1.4);
    z-index: -1;
}


/* =============== pricing css ============= */

.pricing-section .single-pricing {
    padding: 60px 30px;
    background: #282E63;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.pricing-section .single-pricing::after,
.pricing-section .single-pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #26294D;
}

.pricing-section .single-pricing::after {
    right: -17px;
}

.pricing-section .single-pricing::before {
    left: -17px;
}

.pricing-section .single-pricing .best-offer {
    position: absolute;
    background: #4E6EF1;
    color: #fff;
    padding: 5px 100px;
    right: -90px;
    top: 28px;
    transform: rotate(45deg);
}

.pricing-section .single-pricing h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-section .single-pricing .price {
    padding: 12px 30px;
    font-size: 30px;
    font-weight: 700;
    border-radius: 90px;
    background: #26294D;
    margin-bottom: 30px;
}

.pricing-section .single-pricing .list {
    margin-bottom: 30px;
}

.pricing-section .single-pricing .list li {
    font-size: 16px;
    line-height: 35px;
}

.pricing-section .single-pricing .main-btn {
    padding: 15px 30px;
    border: 2px solid transparent;
    color: #fff;
}

.pricing-section .single-pricing .main-btn.border-btn {
    border-color: #505478;
    background: none;
}


/* ================= schedule css ============= */

.schedule-section .schedule-tabs {
    justify-content: space-between;
    margin-bottom: 40px;
}

.schedule-section .schedule-tabs .schedule-nav-item {
    flex: 1;
}

.schedule-section .schedule-tabs .schedule-nav-item .schedule-nav-link {
    padding: 20px 10px;
    font-size: 17px;
    color: #000;
    background: #e7e7e7;
    width: 100%;
    text-align: center;
}

.schedule-section .schedule-tabs .schedule-nav-item .schedule-nav-link span {
    font-size: 25px;
}

@media (max-width: 767px) {
    .schedule-section .schedule-tabs .schedule-nav-item .schedule-nav-link span {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .schedule-section .schedule-tabs .schedule-nav-item .schedule-nav-link {
        font-size: 14px;
    }
}

.schedule-section .schedule-tabs .schedule-nav-item .schedule-nav-link.active {
    background: #ca080c;
    color: #fff;
}

.schedule-section .schedule-tab-content .schedule-item {
    display: flex;
    padding: 40px 30px;
    background: #535353;
    color: #fff;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .schedule-section .schedule-tab-content .schedule-item {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .schedule-section .schedule-tab-content .schedule-item {
        flex-direction: column;
    }
}

.schedule-section .schedule-tab-content .schedule-item .image {
    max-width: 130px;
    height: 130px;
    border-radius: 50%;
    width: 100%;
}

.schedule-section .schedule-tab-content .schedule-item .image img {
    width: 100%;
}

.schedule-section .schedule-tab-content .schedule-item .content {
    margin-left: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .schedule-section .schedule-tab-content .schedule-item .content {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .schedule-section .schedule-tab-content .schedule-item .content {
        margin-left: 0;
        margin-top: 30px;
    }
}

.schedule-section .schedule-tab-content .schedule-item .content h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .schedule-section .schedule-tab-content .schedule-item .content h3 {
        font-size: 25px;
    }
}

.schedule-section .schedule-tab-content .schedule-item .content .meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.schedule-section .schedule-tab-content .schedule-item .content .meta h4 {
    font-size: 20px;
    font-weight: 600;
    margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .schedule-section .schedule-tab-content .schedule-item .content .meta h4 {
        font-size: 18px;
    }
}

.schedule-section .schedule-tab-content .schedule-item .content .meta span {
    font-size: 16px;
}


/* ================= speaker css =============== */

.speaker-section .speaker-row {
    margin-top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .speaker-section .speaker-row {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .speaker-section .speaker-row {
        margin-top: 0;
    }
}

.speaker-section .single-speaker {
    margin-bottom: 60px;
}

.speaker-section .single-speaker.middle {
    margin-top: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .speaker-section .single-speaker.middle {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .speaker-section .single-speaker.middle {
        margin-top: 0;
    }
}

.speaker-section .single-speaker:hover .image .socials {
    opacity: 1;
    visibility: visible;
    height: 64px;
}

.speaker-section .single-speaker .image {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.speaker-section .single-speaker .image img {
    width: 100%;
}

.speaker-section .single-speaker .image .socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.speaker-section .single-speaker .image .socials ul {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 64px;
    background: #4E6EF1;
}

.speaker-section .single-speaker .image .socials ul li {
    line-height: 1;
}

.speaker-section .single-speaker .image .socials ul li a {
    padding: 0 15px;
    color: #fff;
    font-size: 20px;
}

.speaker-section .single-speaker .info {
    text-align: center;
}

.speaker-section .single-speaker .info h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 5px;
}

.speaker-section .single-speaker .info span {
    font-size: 18px;
}


/* ================= testimonial css ================ */

.testimonial-section {
    margin-top: 80px;
    background: #ffffff;
}

.testimonial-section .testimonial-active-wrapper {
    position: relative;
    margin-right: -24px;
}

@media (max-width: 767px) {
    .testimonial-section .testimonial-active-wrapper {
        margin-right: 0;
    }
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial {
    margin-bottom: 70px;
    text-align: center;
    position: relative;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial .map-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: -1;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial .map-bg img {
    max-width: 100%;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial:hover .quote {
    color: #ca080c;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial .quote {
    margin-bottom: 25px;
    line-height: 1;
    font-size: 55px;
    transform: rotate(180deg);
    transition: all 0.3s ease-out 0s;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial .content {
    margin-bottom: 30px;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial .content p {
    font-size: 25px;
    line-height: 35px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial .content p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    .testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial .content p {
        font-size: 18px;
        line-height: 28px;
    }
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial .info h4 {
    font-size: 25px;
    font-weight: 600;
}

.testimonial-section .testimonial-active-wrapper .testimonial-active .single-testimonial .info span {
    font-size: 16px;
}

.testimonial-section .testimonial-active-wrapper .tns-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9;
}

.testimonial-section .testimonial-active-wrapper .tns-nav button {
    text-indent: -99999px;
    width: 14px;
    height: 14px;
    background: #8c1208;
    border-radius: 50%;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
    margin: 5px 8px;
    border: none;
}

.testimonial-section .testimonial-active-wrapper .tns-nav button.tns-nav-active {
    background: #ca080c;
}

.testimonial-section .testimonial-active-wrapper .tns-controls {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    height: 55px;
    transform: translateY(-50%);
}

.testimonial-section .testimonial-active-wrapper .tns-controls button {
    border: 0;
}

.testimonial-section .testimonial-active-wrapper .tns-controls button span {
    background: #8c1208;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease-out 0s;
    position: absolute;
    top: 0;
}

.testimonial-section .testimonial-active-wrapper .tns-controls button span:hover {
    background: #ca080c;
}

.testimonial-section .testimonial-active-wrapper .tns-controls button span.prev {
    left: 0;
}

.testimonial-section .testimonial-active-wrapper .tns-controls button span.next {
    right: 0;
}


/*===========================
    11.Blog css
===========================*/

.blog-section .single-blog {
    margin-bottom: 30px;
}

.blog-section .single-blog .image a {
    display: block;
}

.blog-section .single-blog .image a img {
    width: 100%;
}

.blog-section .single-blog .content {
    padding: 30px 20px;
    background: #e7e7e7;
}

.blog-section .single-blog .content .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #535353;
    margin-bottom: 25px;
}

.blog-section .single-blog .content .meta .author {
    margin-right: 10px;
}

.blog-section .single-blog .content .meta .author a {
    color: #000;
}

.blog-section .single-blog .content .meta .author a:hover {
    color: #000;
    font-weight: 600;
}

.blog-section .single-blog .content h3 a {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
}

.blog-section .single-blog .content h3 a:hover {
    color: #ca080c;
}

.blog-section .single-blog .content>a {
    color: #000;
}

.blog-section .single-blog .content>a:hover {
    letter-spacing: 2px;
    color: #ca080c;
}


/* ================ contact css ============ */

.contact-section {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.contact-section .contact-form-wrapper {
    margin-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-section .contact-form-wrapper {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .contact-section .contact-form-wrapper {
        margin-right: 0;
    }
}

.contact-section form .single-form {
    margin-bottom: 20px;
}

.contact-section form .single-form textarea,
.contact-section form .single-form input {
    width: 100%;
    background: #e7e7e7;
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 15px 25px;
    color: #000;
    transition: all 0.3s ease-out 0s;
}

.contact-section form .single-form textarea:focus,
.contact-section form .single-form input:focus {
    border-color: #fff;
}

.contact-section form .single-form textarea::placeholder,
.contact-section form .single-form input::placeholder {
    opacity: 1;
    color: #fff;
}

.contact-section form .single-form textarea {
    resize: none;
}

.contact-section form .main-btn {
    padding: 17px 35px;
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-section .contact-right {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .contact-section .contact-right {
        margin-top: 50px;
    }
}

.contact-section .contact-right .single-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-section .contact-right .single-item .icon {
    max-width: 60px;
    width: 100%;
    height: 60px;
    border-radius: 50%;
    background: #ca080c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 30px;
}

.contact-section .contact-right .single-item .content p {
    font-size: 16px;
    line-height: 30px;
}


/*===========================
    13.footer css
===========================*/

.footer {
    padding-top: 20px;
    position: relative;
    z-index: 1;
    background-color: #32302e;
}

.footer .map-img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    top: 0;
    left: 0;
}

.footer .map-img img {
    max-width: 100%;
}

.footer .footer-links {
    text-align: center;
    margin-bottom: 35px;
}

.footer .footer-links .footer-logo a {
    display: inline-block;
    margin-bottom: 50px;
}

.footer .footer-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer .footer-links ul li a {
    font-size: 18px;
    font-weight: 600;
    padding: 5px 15px;
    color: #e7e7e7;
}

.footer .footer-links ul li a:hover {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 19px;
}

.footer .copyright-area {
    border-top: 1px solid #000;
    padding: 22px 0;
}

.footer .copyright-area p {
    color: #e7e7e7;
}

.footer .copyright-area p a {
    color: #e7e7e7;
}

.footer .copyright-area p a:hover {
    color: #fff;
    font-weight: 700;
}

.footer .copyright-area .socials {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .footer .copyright-area .socials {
        justify-content: center;
    }
}

.footer .copyright-area .socials li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #ca080c;
    margin-left: 15px;
    font-size: 18px;
}

.footer .copyright-area .socials li a:hover {
    background: #8c1208;
}

@media (max-width: 767px) {
    .footer .copyright-area .socials li a {
        margin: 30px 10px 10px;
    }
}

/* ============ Custom Elements =============== */

.custom-card-plain {
    background-color: #e7e7e7;
    width: 80%;
    padding: 40px;
    padding-left: 60px;
    padding-right: 60px;
    text-align: justify;
    font-size: 18px;
    line-height: 32px;
}

@media (max-width: 575px) {
    .custom-card-plain {
        padding: 20px;
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
    }
}

/* Force that the backgroung of the card is not changing to red when hovering */
.custom-card-hover {
    background-color: #565c62 !important;
}

.custom-alert-box {
    padding: 30px;
    background-color: #f4cccd;
    width: 100%;
    text-align: center;
}

.custom-alert-box-small {
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f4cccd;
    width: 100%;
    text-align: center;
}

/* ============ Margin and Padding =============== */

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-105 {
    margin-top: 105px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-115 {
    margin-top: 115px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-125 {
    margin-top: 125px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-145 {
    margin-top: 145px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-155 {
    margin-top: 155px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-165 {
    margin-top: 165px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-175 {
    margin-top: 175px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-185 {
    margin-top: 185px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-195 {
    margin-top: 195px;
}

.mt-200 {
    margin-top: 200px;
}

.mt-205 {
    margin-top: 205px;
}

.mt-210 {
    margin-top: 210px;
}

.mt-215 {
    margin-top: 215px;
}

.mt-220 {
    margin-top: 220px;
}

.mt-225 {
    margin-top: 225px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-105 {
    margin-bottom: 105px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-115 {
    margin-bottom: 115px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-125 {
    margin-bottom: 125px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-135 {
    margin-bottom: 135px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-145 {
    margin-bottom: 145px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-155 {
    margin-bottom: 155px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-165 {
    margin-bottom: 165px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-175 {
    margin-bottom: 175px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-185 {
    margin-bottom: 185px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-195 {
    margin-bottom: 195px;
}

.mb-200 {
    margin-bottom: 200px;
}

.mb-205 {
    margin-bottom: 205px;
}

.mb-210 {
    margin-bottom: 210px;
}

.mb-215 {
    margin-bottom: 215px;
}

.mb-220 {
    margin-bottom: 220px;
}

.mb-225 {
    margin-bottom: 225px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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