/**
* Template Name: Trend - v3.0.0
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
    font-family: 'railway';
    src: url('fonts/Railway.otf') format('otf');

}

@font-face {
    font-family: 'amalfi-coast';
    src: url('fonts/Amalfi-Coast.woff2') format('woff2');

}

h1, h2, h3, h4, h5{
    font-weight: bold;
     font-family: "railway";
}

p {
    line-height: inherit !important;
    font-size: 18px !important;
    margin-bottom: 11px !important;
    color: #444444 ;
}

body {
    color: #334240;
}

a {
    text-decoration: none;
    color: #ba2028;
}

a:hover {
    color: #ba2028;
    text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: auto;
    }
}

.container {
    max-width: 1280px;
    padding: 0;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    right: 15px;
    bottom: 15px;
    background: #ba2028;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.back-to-top:hover {
    color: #fff;
    background: #755e15;
    transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 0px 0;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    position: relative;
    border-bottom: solid 7px #ba2028;
}

#header .logo h1 {
    font-size: 0;
    margin: 0;
    padding: 0 0;
    line-height: 00;
    font-weight: normal;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #425451;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: initial;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #000;
    padding: 34.5px 23px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: normal;

    text-transform: none;
    letter-spacing: 0.3px;
}

/* .nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #ba2028;
    text-decoration: none;
    color: #fff;
    background: #ba2028;
} */

.nav-menu>ul>li.current_page_item a{
	 color: #fff;
    background: #ba2028;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: #08362f;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #ba2028;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgb(0 0 0);
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
    transition: ease-in-out 0.3s;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #ba2028;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa0";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #ba2028;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(21, 27, 26, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
    width: 100%;
    background-color: transparent;
    overflow: hidden;
    padding: 0;
    margin-top: -100px;
}

#hero .carousel-item {
    width: 100%;
    height: 660px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*#hero .carousel-item::before {
  content: '';
  background-color: rgba(21, 27, 26, 0.7);
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  }*/

#hero .carousel-container {
    display: block;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 15vh;
    /* top: 0; */
    left: 0;
    right: 0;
    width: 1200px;
    margin: auto;
}

#hero .carousel-content {
    text-align: left;
}

#hero h2 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: normal;
    /* text-shadow: 1px 0px 1px rgba(0,0,0,0.75); */

}

#hero h2:after {
    content: '';
    width: 165px;
    height: 5px;
    display: block;
    background: #ba2028;
    margin-top: 15px;
    margin-bottom: 25px;
}

#hero p {
    width: 56%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin-bottom: 30px;
    color: #fff;
    font-size: 20px;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .carousel-indicators li {
    cursor: pointer;
    opacity: 1;
}

#hero .carousel-indicators .active {
    background-color: #ba2028;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #ba2028;
}

#hero .btn-get-started:hover {
    background: #ba2028;
    color: #fff;
    text-decoration: none;
}


#hero h2 {
    width: 60%;
    font-family: 'amalfi-coast';
    font-size: 26px;
    line-height: normal;
    letter-spacing: 4px;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 5%;
}


/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f2f5f4;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2, .events-section p {
    font-weight: normal;
    padding-bottom: 0;
    font-size: 26px;
    line-height: 63px;
}
.events-section p {
    margin-bottom: 45px;
}
.events-section .section-heading p {
     font-family: 'amalfi-coast';
}

.services .section-title h2 {
    color: #000;
    font-family: 'amalfi-coast';
    text-transform: none;
    
}

.section-title h3 {

    font-size: 20px;
    line-height: 26px;
    color: #ba2028;
    margin-bottom: 25px;
}

.section-title h2 span {
    color: #ba2028;
}

.section-title p {
    margin-bottom: 0;
    color: #555555;

    font-size: 22px;
    position: relative;
    line-height: 22px;
    padding: 0 0 25px;
}

.section-title p:before {
    content: '';
    width: 130px;
    height: 1px;
    background: #c3c3c3;
    display: block;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.section-title p:after {
    content: '';
    width: 50px;
    height: 5px;
    background: #ba2028;
    display: block;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background-color: #f2f5f4;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
  # About Us
  --------------------------------------------------------------*/
.about .content h3 {
    font-weight: 500;
    font-size: 24px;
    color: #58716d;
    font-family: "Poppins", sans-serif;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #ba2028;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .progress {
    height: 50px;
    display: block;
    background: none;
}

.about .progress .skill {
    padding: 10px 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #58716d;
}

.about .progress .skill .val {
    float: right;
    font-style: normal;
}

.about .progress-bar-wrap {
    background: #e6eceb;
}

.about .progress-bar {
    width: 1px;
    height: 10px;
    transition: .9s;
    background-color: #ba2028;
}

/*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/
.counts .count-box {
    box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    background: #fff;
}

.counts .count-box i {
    display: block;
    font-size: 30px;
    color: #ba2028;
    float: left;
}

.counts .count-box span {
    font-size: 42px;
    line-height: 24px;
    display: block;
    font-weight: 700;
    color: #58716d;
    margin-left: 50px;
}

.counts .count-box p {
    padding: 30px 0 0 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

.counts .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #7c9995;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
    color: #a7bbb8;
}

/*--------------------------------------------------------------
  # Our whychoose
  --------------------------------------------------------------*/
.whychoose .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    text-align: center;
    margin-top: 20px;
}

.whychoose .icon-box::before {
    content: '';
    position: absolute;
    background: #ececec;
    right: -60px;
    top: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    transition: all 0.3s;
    z-index: -1;
}

.whychoose .icon-box:hover::before {
    background: #ececec;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px;
}

.whychoose .icon {
    margin: 0 auto 20px auto;
    padding-top: 0;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 108px;
    height: 108px;
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    border: solid 5px #ba2028;
    position: relative;
}

.whychoose .icon i {
    font-size: 36px;
    line-height: 1;
    color: #000;
}

.whychoose .title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.whychoose .title a {
    color: #425451;

    font-weight: normal;
    color: #000;
    font-size: 27px;
    line-height: 24px;
}

.whychoose .description {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
    color: #555555;
}

.whychoose .icon-box:hover .title a {
    color: #fff;

    font-weight: normal;
    color: #000;
}

.whychoose .icon-box:hover .icon {
    background: #fff;
}

.whychoose .icon-box:hover .icon {
    background: #ba2028;
}

.whychoose .icon-box .icon i {
    width: 65px;
    height: 50px;
    background: url(../img/icon_sprite.png) no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.whychoose .icon-box .icon i.icon1 {
    background-position: 0 -65px;
}

.whychoose .icon-box .icon i.icon2 {
    background-position: -72px -63px;
    height: 55px;
}

.whychoose .icon-box .icon i.icon3 {
    background-position: -137px -58px;
}

.whychoose .icon-box .icon i.icon4 {
    background-position: -202px -63px;
}

.whychoose .icon-box:hover .icon i.icon1 {
    background-position: 0 2px;
}

.whychoose .icon-box:hover .icon i.icon2 {
    background-position: -72px 0;
}

.whychoose .icon-box:hover .icon i.icon3 {
    background-position: -137px 0px;
}

.whychoose .icon-box:hover .icon i.icon4 {
    background-position: -202px 0;
}

/*--------------------------------------------------------------
  # home_about
  --------------------------------------------------------------*/
.home_about {
    /* background: #000; */
    background-size: cover;
    padding: 60px 0;
    min-height: 560px;
    margin-bottom: 0;
    position: relative;
}

.home_about h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.home_about p {
    font-size: 20px;
    line-height: 33px;
    padding: 15px 0;
    text-align: left;

}

.home_about .about_img {
    position: relative;
    /* padding: 0; */
    /* left: 0; */
    /* right: 0; */
    margin: 7px auto 0;
    /* box-shadow: 2px 2px 8px rgb(14 14 14 / 50%); */
    /* width: auto; */
}

.home_about .about_img ul {
    padding: 0;
    margin: 0;
    text-align: center;
}

.home_about .about_img ul li {
    display: inline-block;
    font-size: 0;
    margin: 0 -7px;
    padding: 0;
}

.home_about .about_img ul li a {}

.home_about .about_img ul li img {}



/*--------------------------------------------------------------
  # More Services
  --------------------------------------------------------------*/
.more-services img {
    border-radius: 0;
}

.more-services .card {
    border: 0;
    text-align: ceneter;
}

.more-services .card-body {
    -moz-text-align-last: center;
    text-align-last: center;
}

.more-services .card-title a {
    font-weight: 600;
    font-size: 18px;
    color: #334240;
    transition: ease-in-out 0.3s;
}

.more-services .card-title a:hover {
    color: #ba2028;
}

.more-services .btn {
    border-radius: 50px;
    padding: 4px 30px 6px 30px;
    background: #ba2028;
    color: #fff;
}

.more-services .btn:hover {
    color: #000;
    background: #fff;
    border: 2px solid #ba2028;
}

/*--------------------------------------------------------------
  # Info Box
  --------------------------------------------------------------*/
.info-box .content {
    padding: 60px 100px 0 100px;
}

.info-box .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.info-box .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.info-box .content p {
    font-size: 15px;
    color: #6b8a86;
}

.info-box .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
}

.info-box .accordion-list {
    padding: 0 100px 60px 100px;
}

.info-box .accordion-list ul {
    padding: 0;
    list-style: none;
}

.info-box .accordion-list li+li {
    margin-top: 15px;
}

.info-box .accordion-list li {
    padding: 20px;
    background: #f2f5f4;
    border-radius: 5px;
}

.info-box .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    transition: ease-in-out 0.3s;
    cursor: pointer;
}

.info-box .accordion-list a:hover {
    color: #ba2028;
}

.info-box .accordion-list span {
    color: #e83e8c;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.info-box .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.info-box .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.info-box .accordion-list .icon-show {
    display: none;
}

.info-box .accordion-list a.collapsed {
    color: #343a40;
}

.info-box .accordion-list a.collapsed:hover {
    color: #ba2028;
}

.info-box .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.info-box .accordion-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1024px) {

    .info-box .content,
    .info-box .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .info-box {
        /* img {
      padding-top: 30px;
    } */
    }

    .info-box .content {
        padding-top: 30px;
    }

    .info-box .accordion-list {
        padding-bottom: 30px;
    }
}

/*--------------------------------------------------------------
  # Our Portfolio
  --------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    border-radius: 50px;
    padding: 2px 15px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #334240;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #ba2028;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio .portfolio-wrap img {
    width: 100%;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgb(0 0 71 / 40%);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #ba2028;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
.portfolio-details {
    padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #ba2028 !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    min-height: 455px;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.events-item.video_graphy h3 {
    font-size: 21px;
    color: #ba2028;
    font-family: 'amalfi-coast';
    line-height: initial;
	text-align: center;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.events-section .section-heading {
    margin-bottom: 30px;
}

.portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
}

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }

    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
  # services home
  --------------------------------------------------------------*/
.services_home {
    background: #fff;
    padding: 60px 0;
}

.services_home .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
    overflow: hidden;
}

.services_home .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.services_home .member .member-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
}

.services_home .member .member-info-content h4 {
    font-weight: normal;
    margin-bottom: 2px;
    font-size: 28px;
    color: #d0b25c;

}

.services_home .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

.services_home .member .social {
    position: absolute;
    left: 0;
    bottom: -38px;
    right: 0;
    height: 48px;
    transition: bottom ease-in-out 0.4s;
    text-align: center;
}

.services_home .member .social a {
    transition: color 0.3s;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
}

.services_home .member .social a:hover {
    color: #ba2028;
}

.services_home .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.services_home .member:hover .member-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
}

.services_home .member:hover .member-info-content {
    bottom: 20px;
    transition: bottom 0.4s;
}

.services_home .member:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
  # Contact Us
  --------------------------------------------------------------*/
.contact .infos {
    position: relative;
    z-index: 2;
}

.contact .info {
    padding: 60px;
    background: #fff;
    color: #334240;
    text-align: center;
    box-shadow: -5px -5px 40px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 48px;
    color: #ba2028;
    margin-bottom: 15px;
}

.contact .info h4 {
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.contact .info p {
    font-size: 15px;
}

.contact .info-bg {
    background: white;
}

.contact .contact-form-wrap {
    box-shadow: 10px -5px 40px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 30px;
}

.contact .php-email-form {
    width: 100%;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
    font-family: "Poppins", sans-serif;
    margin-bottom: 5px;
    color: #5f7c78;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
    background-color: #ba2028;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: #fff;
    border: 2px solid #ba2028;
    padding: 10px 24px;
    color: #ba2028;
    transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ba2028;
    color: #fff;
}

@media (max-width: 1024px) {
    .contact .info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact .php-email-form {
        padding: 15px 0 0 0;
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
    background: #ba2028;
    padding: 0 0 20px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #ba2028;
    border-bottom: 1px solid #eeeeee;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
    padding-right: 35px;
    /* width: 25%; */
}

#footer .footer-top .footer-info .social_links {}

#footer .footer-top .footer-info .social_links ul {
    padding-left: 0;
}

#footer .footer-top .footer-info .social_links ul li {
    margin: 20px 7px 0px 0;
}

#footer .footer-top .footer-info .social_links ul li a {
    background: #fff;
    color: #000;
    height: 30px;
    width: 30px;
    line-height: 37px;
}

#footer .footer-top .footer-info .social_links ul li a.twitter {
    background: #1da1f2;
    color: #fff;
}

#footer .footer-top .footer-info .social_links ul li a.facebook {
    background: #4867aa;
    color: #fff;
}

#footer .footer-top .footer-info .social_links ul li a.pinterest {
    background: #b7081b;
    color: #fff;
}

#footer .footer-top .footer-info .social_links ul li a.youtube {
    background: #fff;
    color: #FF0000;
}

#footer .footer-top .footer-info .social_links ul li a.adobe {
    color: #FF0000;
}


#footer .footer-top .footer-info .social_links ul li a.instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
    color: #fff;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 0;

    color: #fff;
    font-weight: normal;
}

#footer .footer-top .social-links a {
    font-size: 24px;
    display: inline-block;
    background: #ba2028;
    color: #fff;
    line-height: 1;
    padding: 6px 0;
    margin-right: 4px;
    border-radius: 3px;
    text-align: center;
    width: 40px;
    height: 35px;
    transition: 0.3s;
    margin-bottom: 35px;
}

#footer .footer-top .social-links a:hover {
    background: #2b2b2b;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 19px;
    font-weight: normal;
    color: #fff;
    position: relative;
    padding-bottom: 25px;
    padding-top: 15px;

    text-transform: uppercase;
    margin-bottom: 25px;
}

#footer .footer-top h4:before {
    content: '';
    width: 50px;
    height: 4px;
    display: block;
    bottom: 0px;
    background: #000000;
    position: absolute;
    z-index: 1;
}

#footer .footer-top h4:after {
    content: '';
    width: 170px;
    height: 1px;
    display: block;
    bottom: 0;
    background: #ffffff;
    position: absolute;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    /* width: 20%; */
    background: transparent;
}

#footer .footer-top .footer-links.services {
    /*   width: 35%; */
    padding: 0;
    padding-left: 30px;
}

#footer .footer-top .footer-links.services li {
    /*width: 46%;display: inline-block;*/
    vertical-align: top;
    margin-bottom: 10px;
}
#footer .footer-top .footer-links ul li{
    margin-bottom: 10px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #000000;
    font-size: 22px;
    line-height: 0;
    margin-top: 8px;
    vertical-align: top;
}

#footer .footer-top .footer-links ul li {
    padding: 2px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 18px;
    line-height: 21px;

}

#footer .footer-top .footer-links ul a:hover {
    color: #000000;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #ba2028;
    color: #fff;
    transition: 0.3s;
    border-radius: 4;

    text-transform: uppercase;
    outline: 0;
    box-shadow: none;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #545151;
}

#footer .copyright {
    text-align: center;
    padding-top: 25px;
    display: inline-block;

    font-size: 17px;
    color: #fff;
    text-align: center;
    width: 100%;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    display: inline-block;
    float: none;
    display: none;
}

/* testimonial section */
.ocs-sec {
    background: url(../img/testimonial_bg.jpg);
    padding: 50px 0 30px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ocs-sec .h-title h2 {
    color: #ba2028;
    text-transform: capitalize;
    font-size: 40px;
    margin-top: 0;
    font-family: 'amalfi-coast';
}

.ocs-sec .h-title h2 span {
    color: #fff;
}

.ocs-sec .h-title p {

    font-size: 22px;
    position: relative;
    line-height: 22px;
    padding: 0 0 25px;
    text-align: left;
    color: #fff;
}

.ocs-sec .h-title p:before {
    content: '';
    width: 130px;
    height: 1px;
    background: #c3c3c3;
    display: block;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: none;
}

.ocs-sec .h-title p:after {
    content: '';
    width: 50px;
    height: 5px;
    background: #a1a1a0;
    display: block;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: none;
}

.t-item {
    margin-top: 20px;
    padding: 0;
    margin-left: 15px;
    margin-bottom: 40px;
    float: left;
    background: transparent;
    border-radius: 11px;
}

.t-item .description {
    margin-top: 15px;
    position: relative;
}

.t-item .description:before {
    content: '';
    width: 33px;
    height: 27px;
    display: block;
    margin: 15px auto 35px;
    background: url(../img/testi_quote.png) no-repeat;
}

.t-item .description:after {
    content: '';
    width: 33px;
    height: 27px;
    display: block;
    margin: 15px auto 15px;
    background: url(../img/testi_quote.png) no-repeat;
}

.t-item .description p {
    font-size: 20px;
    color: #fff;
    line-height: 29px;
}

.client-info {}

.client-img {
    width: 122px;
    height: 122px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 15px;
    display: inline-block;
}

.client-img img {
    max-width: 100%;
}


.client-info {
    width: 70%;
    display: inline-block;
    vertical-align: top;
}

.client-text h3 {
    color: #fff;
    font-size: 22px;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 0;
}

.client-text h3 span {
    color: #ba2028;
    font-size: 18px;
}

.client-text p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.client-text h3:after {
    content: "";
    background-color: #ba2028;
    width: 60px;
    height: 3px;
    display: block;
    margin: 10px auto;
}

#client-slider {
    margin-top: 0;
}

#client-slider ol.carousel-indicators {
    bottom: 0;
    margin-top: 23px;
    position: relative;
}

#client-slider .owl-dots {
    text-align: center;
}

#client-slider .owl-dots button.owl-dot {
    background-image: url(../img/indicators-icon.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 22px;
    height: 24px;
    border: none;
    border-radius: 0;
    margin: 0 3px;
    outline: none;
}

#client-slider .owl-dots {
    text-align: center;
    bottom: 145px;
    margin: auto;
    width: auto;
    left: 0;
    right: 0;
}

#client-slider .owl-dots button.owl-dot.active {
    background-position: -26px 0;
    background-color: transparent;
}

.ocs-sec .owl-pagination {
    text-align: center;
}

.ocs-sec .owl-pagination .owl-page {}

.ocs-sec .owl-pagination .owl-page.active {}

.ocs-sec .owl-pagination .owl-page span {
    background: #a4a8d0;
}

.ocs-sec .owl-pagination .owl-page.active span {
    background: #4a51a1;
}

/* end testiomonial section here */



/* custom css starts here */
#hero .carousel-indicators {
    bottom: 0;
    left: 0;
    right: auto;
    max-width: 300px;
    margin: 0;
    text-align: left;
    position: relative;
    width: auto;
}

#hero .carousel-indicators li {
    text-indent: inherit;
    font-size: 16px;
    width: auto;
    height: auto;
    border: none;
    color: #fff;
    border-radius: 0;
    margin: 0 15px;

    background: transparent;
}

#hero .carousel-indicators li.active {
    background: transparent;
    border-bottom: 2px solid #fff;
}

#hero .carousel-indicators:after {
    content: "";
    width: 101px;
    height: 1px;
    background-color: #fff;
    margin-left: 20px;
    margin-top: 11px;
}

#hero .carousel-indicators li:hover,
#hero .carousel-indicators li.active,
{
color: #df2a2a;
}

.slide_nav {
    position: absolute;
    bottom: 23vh;
    left: auto;
    right: 18vh;
    margin: auto;
    text-align: left;
    display: none;
}

.slider-btn {
    position: relative;
    right: auto;
    bottom: 0;
    left: 20px;
    margin: 0;
    width: 70px;
}

.slider-btn a {
    color: #fff;
    display: inline-block;
    font-size: 16px;
    margin: 0;
    padding: 0 10px;
    line-height: 22px;
    opacity: 1;
}

.slider-btn a span {
    font-size: 28px !important;
    opacity: 1;
    color: #fff;
}

#hero .carousel-content a.btn {
    width: 205px;
    background: #ba2028;
    color: #fff;
    border-color: #ba2028;
    border-left: solid 3px #ba2028;
}

#hero .carousel-content a.btn:hover {
    background: #000;
    /* Old browsers */
}

/* end custom css */
.services_home .ser_item {
    width: 300px;
    padding: 0 12px
}

.services_home .owl-carousel .owl-nav.disabled,
.our_project .owl-carousel .owl-nav.disabled {
    display: block;
    text-align: center;
}

.services_home .owl-carousel .owl-nav.disabled button,
.our_project .owl-carousel .owl-nav.disabled button {
    width: 45px;
    height: 45px;
    outline: 0;
    margin: 20px 35px;
    display: inline-block;
    border-radius: 50%;
}

.services_home .owl-carousel .owl-nav.disabled button span,
.our_project .owl-carousel .owl-nav.disabled button span {
    background: url(../img/slider-arrow.png) no-repeat;
    width: 55px;
    height: 13px;
    display: block;
    font-size: 0;
    margin-right: 25px;
    float: left;
    margin-left: 15px;
}

.services_home .owl-carousel .owl-nav.disabled button.owl-next span,
.our_project .owl-carousel .owl-nav.disabled button.owl-next span {
    transform: rotateY(180deg);
    float: left;
    margin-left: -25px;
}

.services_home .owl-carousel .owl-nav.disabled button:hover,
.our_project .owl-carousel .owl-nav.disabled button:hover {
    background: #ba2028;
}

.services_home .owl-carousel .owl-nav.disabled button.owl-next:hover,
.our_project .owl-carousel .owl-nav.disabled button.owl-next:hover {
    /* float: right; */
}

.our_project {
    background: url(../img/project_bg.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.our_project .ser_item {
    width: 235px;
    padding: 0 7px
}

.our_project .section-title h2,
.our_project .section-title p {
    color: #fff;
}

.our_project .ser_item .member-info {
    width: 100%;
}

.our_project .ser_item .member-info h4 {}

.our_project .ser_item .member-info h4 a {
    background: #ba2028;
    color: #fff;
    display: inline-block;
    width: 100%;
    text-align: center;

    font-weight: normal;
    padding: 5px;
}

.our_project .ser_item .member-info h4 a:hover {
    color: #000;
    background: #fff;
}

.our_project .owl-carousel .owl-nav.disabled button span {
    background: url(../img/arrow_slide.png) no-repeat;
    width: 55px;
    height: 13px;
    display: block;
    font-size: 0;
    margin-right: 25px;
    float: left;
    margin-left: 15px;
}

.our_project .owl-carousel .owl-nav.disabled button {
    background: #fff;
}

.our_project .owl-carousel .owl-nav.disabled button:hover {
    background: #000;
}

/*--------------------------------------------------------------
  # our_work
  --------------------------------------------------------------*/
.our_work {
    padding-bottom: 30px;
}

.our_work .container {
    /*box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);*/
}

.our_work .video-box img {
    padding: 15px 0;
}

.our_work .section-title p {
    text-align: left;
    font-style: italic;
    color: #666;
}

.our_work .about-content {
    padding: 40px;
}

.our_work .icon-box+.icon-box {
    margin-top: 40px;
}

.our_work .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #f1f7fb;
    border-radius: 6px;
    transition: 0.5s;
}

.our_work .icon-box .icon i {
    color: #428bca;
    font-size: 32px;
}

.our_work .icon-box:hover .icon {
    background: #428bca;
}

.our_work .icon-box:hover .icon i {
    color: #fff;
}

.our_work .icon-box .title {
    margin-left: 95px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.our_work .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.our_work .icon-box .title a:hover {
    color: #428bca;
}

.our_work .icon-box .description {
    margin-left: 95px;
    line-height: 24px;
    font-size: 14px;
}

.video-box {
    position: relative;
}

.video-box .content {
    position: absolute;
    left: 0;
    bottom: 50px;
    text-align: center;
    right: 0;
    width: 840px;
    margin: auto;
}

.video-box .content p {
     font-family: 'amalfi-coast';
     color: #fff;
     font-size: 26px;
     line-height: normal;
     margin-bottom: 30px !important;
}

.video-box .content .btn {
    background: #ba2028;
    color: #fff;
}

.video-box img {
    width: 100%;
}

.play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(rgb(255 255 255) 50%, rgb(255 253 250 / 40%) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(42% - 133px);
    overflow: hidden;
}

.play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #ba2028;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgb(255 255 255 / 70%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
    border-left: 15px solid #ba2028;
    transform: scale(20);
}

.play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.our_work .nav-tabs {
    display: inline-block;
    padding: 0 0 20px;
    margin: 0 0 30px;
}

.our_work .nav-item {
    display: inline-block;
}

.our_work .nav-item a {
    border: 0;
    padding: 0 35px 0 0;

    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
}

.our_work .nav-item a h4 {
    font-size: 19px;
    color: #000;
    line-height: 22px;

    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.our_work .nav-item a.active h4:after {
    content: '';
    position: absolute;
    bottom: -30px;
    width: 50px;
    height: 5px;
    background: #ba2028;
    left: 0;
    right: 0;
    margin: auto;
}

.our_work .tab-content .tab-pane {}

.our_work .tab-content .tab-pane p {
    font-size: 22px;
    line-height: 30px;
    color: #343333;
}

footer .gt_touch {
    margin-bottom: 15px;
}

footer .gt_touch p,
footer p {
    font-size: 18px;
}

footer .gt_touch i {
    display: inline-block;
    vertical-align: top;
    margin-top: -3px;
    font-size: 17px;
    margin-right: 10px;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #000;
    text-align: center;
    border-radius: 50%;
    /* background: #ba2028; */
    background: -moz-linear-gradient(top, #ba2028 0%, #ba2028 52%, #cf972a 84%, #915d23 100%);
    /* background: -webkit-linear-gradient(top, #ba2028 0%,#ba2028 52%,#cf972a 84%,#915d23 100%); */
    /* background: linear-gradient(to bottom, #ba2028 0%,#ba2028 52%,#cf972a 84%,#915d23 100%); */
}

footer .gt_touch p {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    width: 80%;

}

footer .gt_touch a {
    font-size: 18px;
    line-height: 22px;
    color: #fff;
}

.card-img img {
    width: 100%;
}


/*--------------------------------------------------------------
  # pro_gallery
  --------------------------------------------------------------*/
.pro_gallery {
    padding-bottom: 0;
    position: relative;
}

.pro_gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.pro_gallery .gitem {
    padding: 0 10px 0px 0;
    margin: 0;
    position: relative;
}

.pro_gallery .gitem:after {
    content: '';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.pro_gallery .gitem:before {
    content: '';
    width: 20px;
    height: 20px;
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url(../img/icon_sprite.png) no-repeat;
    background-position: -110px -129px;
    cursor: pointer;
    z-index: 99
}

.pro_gallery .gitem h3 {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 70px;
    right: auto;
    margin: auto;
    background: #ba2028;
    padding: 5px 35px;
    color: #fff;
    text-transform: uppercase;
}

.pro_gallery .gitem:last-child {
    padding: 0px 0 10px 0;
}

.pro_gallery .gitem:nth-child(2) {
    padding: 0px 0px 10px 0;
}

.pro_gallery .gitem:nth-child(3) {}

.pro_gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
    width: 100%;
}

.pro_gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.pro_gallery .gitem .gallery-item:hover h3,
.pro_gallery .gitem:hover:before,
.pro_gallery .gitem:hover:after {
    display: block;
}

.pro_gallery .gitem:nth-child(2) h3,
.pro_gallery .gitem:last-child h3 {
    right: 70px;
    left: auto;
}

.pro_gallery .pro_gallinfo {
    width: 320px;
    height: 320px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    border-radius: 50%;
    padding: 95px 25px;
    text-align: center;
    z-index: 9;
}

.pro_gallery .pro_gallinfo h3 {

    font-size: 39px;
    line-height: 40px;
    color: #191919;
}

.pro_gallery .pro_gallinfo p {
    font-size: 18px;
    line-height: 22px;
    color: #555555;
}

/*--------------------------------------------------------------
  # Values
  --------------------------------------------------------------*/
.values .card {
    border: 0;
    padding: 0;
    position: relative;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.values .card-body {
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 13px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    transition: ease-in-out 0.4s;
    border-radius: 5px;
}

.values .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.values .card-title a {
    color: #473d3a;
}

.values .card-text {
    color: #4b4949;
}

.values .read-more a {
    color: #656262;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.4s;
}

.values .read-more a:hover {
    text-decoration: underline;
}

.values .card:hover .card-body {
    background: #ba2028;
}

.values .card:hover .read-more a,
.values .card:hover .card-title,
.values .card:hover .card-title a,
.values .card:hover .card-text {
    color: #fff;
}


/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
.about .content {
    padding: 0px 0;
    margin: -40px 0 0;
}

.about .content h3, .contact_pg h2 {
    font-family: 'amalfi-coast';
    font-size: 28px;
    color: #000000;
    line-height: normal;
}

.contact_pg h2 {
    text-transform: uppercase;
}

.contact_pg h2 span {
    color: #ba2028;
}

.about .content p {
    margin-bottom: 0;

    font-size: 19px;
    color: #5c5c5c;
}

.about .content .icon-box {
    margin-top: 25px;
}

.about .content .icon-box h4 {
    font-size: 25px;
    /* font-weight: 700; */
    margin: 5px 0 10px 60px;
    color: #000000;
}

.about .content .icon-box h4 a {
    color: #ba2028;
    transition: 0.3s;
    font-family: 'amalfi-coast';
    font-size: 1.2rem;
    letter-spacing: 2px;
    line-height: initial;
}

.about .content .icon-box h4 a:hover {
    color: #000000;
}

.about .content .icon-box i {
    font-size: 40px;
    float: left;
    color: #000000;
    border: solid thin #000;
    padding: 4px;
}

.about .content .icon-box p {
    font-size: 19px;
    color: #5c5c5c;
    margin-left: 60px;

}

.about .image {
    /* background: url("../img/video_bg.png") center center no-repeat; */
    background-size: cover;
    min-height: 655px;
}

@media (max-width: 667px) {
    .about .image img {
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
.services {
    padding-bottom: 40px;
    padding-top: 0;
    background: #fff;
    padding: 75px 0 30px;
}

.services .card {
    border: 0;
    margin-bottom: 60px;
    position: relative;
    background: transparent;
}

.services .card-img {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
    display: inline-block;
    width: 100%;
}

.services .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.services .card-body {
    z-index: 10;
    background: #ba2028;
    /*border-top: 4px solid #fff;*/
    padding: 21px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    transition: 0.3s;
    text-align: center;
}

.services .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.services .card-title a {
    color: #fff;
    transition: 0.3s;

    /* text-align: left; */
    font-size: 19px;
}

.services .card-text {
    color: #ffffff;

    font-size: 15px;
    line-height: 23px;
}

section.gallery-sec.events-section {
    padding: 0 0 40px;
}

.services .read-more a {
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    display: block;
    margin: 0 auto;
    background: #fff;
    line-height: 32px;
    border-left: 2px #ba2028 solid;
}

.services .read-more a:hover {
    color: #000000;
}

.services .card:hover img {
    transform: scale(1.1);
}

.services .card:hover .card-body {
    border-color: #000000;
    background: #000000;
}

.services .card:hover .card-body .card-title a {
    color: #fff;
    border-color: #fff;
}



.social_links {
    display: inline-block;
}

.social_links ul {
    margin: 0;
    list-style: none;
    display: block;
}

.social_links ul li {
    display: inline-block;
    margin: 0 5px;
}

.social_links ul li a {
    width: 37px;
    height: 37px;
    display: block;
    text-align: center;
    line-height: 45px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.social_links ul li a:hover {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ba2028+0,e9b129+52,cf972a+84,915d23+100 */
    background: #ba2028;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ba2028 0%, #ba2028 52%, #cf972a 84%, #915d23 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #ba2028 0%, #ba2028 52%, #cf972a 84%, #915d23 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #ba2028 0%, #ba2028 52%, #cf972a 84%, #915d23 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba2028', endColorstr='#915d23', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    color: #000;
}

#footer .footer-top .footer-info .social_links ul li a:hover {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ba2028+0,e9b129+52,cf972a+84,915d23+100 */
    background: #000000;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #ba2028 0%, #ba2028 52%, #cf972a 84%, #915d23 100%);
    /* FF3.6-15 */
    /* background: -webkit-linear-gradient(-45deg,  #ba2028 0%,#ba2028 52%,#cf972a 84%,#915d23 100%); */
    /* Chrome10-25,Safari5.1-6 */
    /* background: linear-gradient(135deg,  #ba2028 0%,#ba2028 52%,#cf972a 84%,#915d23 100%); */
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba2028', endColorstr='#915d23', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    color: #fff;
}


.sticky-wrapper.is-sticky #header {
    background: #fff;
}



/* NESW CSS
  -------------------------------------------------- */

.lb-sec {
    background: #000;
    padding: 55px 0;
}

.lb-sec h2 {
    font-family: 'amalfi-coast';
    font-size: 40px;
    line-height: 48px;
    font-weight: normal;
    text-transform: capitalize;
    color: #ffffff;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
    text-align: center;
}

.lb-sec h2 span {
    color: #d70406;
}

.lb-sec h2:before {
    content: "";
    width: 63px;
    height: 4px;
    background: #fff;
    z-index: 1;
    position: absolute;
    margin: 64px 0 0 108px;
    display: none;
}

.lb-sec p,
.lb-sec .item_box p {
    color: #4e4c4c;
    font-size: 15px;
    padding: 0 10px;
    margin: 0;
}

.lb-sec p {
    margin: 20px 0;
    text-align: center;
}

/*.lb-sec .item {margin:0 15px;}*/
.lb-sec .item .col-md-3 {
    width: 282px;
    float: left;
    margin: 0 24px 0 0;
    padding: 0;
}

.lb-sec .item .thumb {
    width: 260px;
    cursor: pointer;
    margin: 0;
    height: 318px;
    position: relative;
}

.lb-sec .item .col-md-3:nth-child(4n) {
    margin-right: 0;
}

.lb-sec .item .thumb .img-box {
    width: 260px;
    margin: 0;
    position: absolute;
    top: 0;
    left: -23px;
    height: 293px;
}

.lb-sec .item .thumb .img-box img {
    width: 100%;
    margin: 0;
    position: relative;
}

.lb-sec .item img {
    max-width: 100%;
    margin: 0px 0;
}

.ovrlay {
    background: rgba(15, 15, 15, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 5px solid #fff;
    display: none;
}

.lb-sec .item .thumb:hover .img-box .ovrlay {
    display: block;
    padding: 50% 0;
}

.lb-sec .item .thumb:hover .img-box .ovrlay a {
    width: 41px;
    height: 41px;
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
}

.lb-sec .item .col-md-3 h3 {
    margin: 0;
}

.lb-sec .item .col-md-3 h3 a {
    color: #fff;
    font-size: 17px;
    line-height: 48px;
}

.lb-sec .item .col-md-3 h3 a:hover {
    color: #d70507;
}

.item_box .img-box {
    width: 88px;
    margin: 0 auto;
}

.item_box .img-box i.fa.fa-quote-right {
    width: 44px;
    height: 44px;
    display: inline-block;
    border-radius: 100%;
    font-size: 17px;
    background: #ce0707;
    color: #fff;
    padding: 14px;
    margin: -20px 0 0;
}

.lb-sec h3 {
    font-size: 20px;
    color: #ba2028;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.lb-sec span {
    color: #414855;
    /* font-size: 18px; */
    margin: 0px 0 10px;
    display: inline-block;
}

.lb-sec .carousel-inner {
    padding: 0px 0 6px;
}

.lb-sec .carousel-inner>.item {
    padding: 30px 0 0px;
}

.lb-sec h3 a:hover {
    /* color: #d90303; */
}

#thumbcarousel .carousel-control.left span:hover,
#thumbcarousel .carousel-control.right span:hover {
    background: #063b6d;
    transition: 0.6s;
}


.latest-blog .carousel-inner>.item {
    transition: 500ms ease-in-out left;
}

.latest-blog .carousel-inner .active.left {
    left: -33%;
}

.latest-blog .carousel-inner .active.right {
    left: 33%;
}

.latest-blog .carousel-inner .next {
    left: 33%;
}

.latest-blog .carousel-inner .prev {
    left: -33%;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .latest-blog .carousel-inner>.item {
        transition: 500ms ease-in-out left;
        transition: 500ms ease-in-out all;
        backface-visibility: visible;
        transform: none !important;
    }
}

.latest-blog .carouse-control.left,
.latest-blog .carouse-control.right {
    background-image: none;
}

.lb-sec .carousel-inner>.item .img_box {
    overflow: hidden;
}

.blog_item {
    background: #ba2028;
    padding: 20px 30px 20px 33px;
    text-align: left;
    margin: 0 1px 0 0px;
    transition: 0.6s;
    position: relative;
    z-index: 1;
    min-height: 210px;
}

.lb-sec .blog_item .comment {
    color: #bababa;
    font-size: 15px;
}

.lb-sec .blog_item .comment a {
    color: #bababa;
    display: inline-block;
    padding: 0 4px 0 2px;

    font-size: 15px;
}

.blog_item .date_box {
    width: 115px;
    height: 40px;
    /* background: #ac128a; */
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin-top: -40px;

    font-size: 14px;
    color: #fff;
    line-height: 26px;
    padding: 8px;
    float: right;
    background: #ba2028;
    background: -moz-linear-gradient(top, #ba2028 0%, #ba2028 52%, #cf972a 84%, #915d23 100%);
    background: -webkit-linear-gradient(top, #ba2028 0%, #ba2028 52%, #cf972a 84%, #915d23 100%);
    background: linear-gradient(to bottom, #ba2028 0%, #ba2028 52%, #cf972a 84%, #915d23 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba2028', endColorstr='#915d23', GradientType=0);
    /* margin: 0; */
}

.blog_item .date_box span {
    display: inline-block;
    margin: 0;
    /* font-family: 'Poppins-Regular'; */
    /* font-size: 14px; */
    color: #ffffff;
    text-transform: capitalize;
}

.blog_item:hover .date_box {
    background: #000;
    transition: 0.8s;
}

.blog_item:hover .heading h3 {
    color: #ac128a;
    transition: 0.8s;
}


.blog_item .heading {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    padding-left: 0;
}

.blog_item .heading h3 {
    color: #333232;
    font-size: 26px;

    margin: 0;
    display: inline-block;
    text-align: left;
    text-transform: uppercase;
    line-height: 26px;
}

.blog_item p {
    font-family: 'Poppins-Regular';
    font-size: 14px;
    color: #6b6b6b;
    padding: 0;
    text-align: left;
}

.lb-sec .blog_item a {

    font-size: 24px;
    color: #ffffff;
    text-transform: capitalize;
    /* background: #fff; */
    display: block;
    width: auto;
    text-align: left;
    font-weight: 600;
    /* height: 20px; */
    line-height: 41px;
}

.lb-sec .blog_item a:hover {
    /* color: #000; */
}

.lb-sec a {
    background: transparent;
    width: 5%;
    opacity: 9;
    height: 100%;
    top: 0;
}

.lb-sec .blog_item a::after {
    content: "";
    border-bottom: 1px solid #000;
    width: 66%;
    height: 1px;
    display: inline-block;
    margin: 10px 0 0;
    float: left;
    display: none;
}

.lb-sec .carousel-inner>.item .col-md-4.col-sm-4.col-xs-12 {
    padding: 0 12px;
}


.lb-sec .left.carousel-control {
    left: -40px;
}

.lb-sec .right.carousel-control {
    right: -40px;
}

.lb-sec .carousel .carousel-control,
.lb-sec .carousel .carousel-control {
    background-color: #ac128a;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    text-shadow: none;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    margin: auto;
    opacity: 9;
    background-image: none;
}

.lb-sec .carousel .carousel-control:hover,
.lb-sec .carousel .carousel-control:hover {
    background-color: #88888d;
    color: #fff;
}

.home_about .section-title {
    text-align: left;
    padding-bottom: 0;
}

.home_about .about_cont {
    padding-left: 45px;
}

.home_about .section-title h2 {
     font-family: 'amalfi-coast';
    text-transform: none;
    margin-bottom: 0;
}

.home_about .section-title h2 span,
.events-section h2,
.about .content h2 {
    font-family: 'goodvibrations_script';
    text-transform: none;
    font-size: 25px;
    margin-top: 45px;
    display: block;
    margin-bottom: 24px;
}

.events-section h2,
.about .content h2 {
    color: #ba2028;
}

.about .content h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.home_about .section-title p {}

.home_about .section-title p:before,
.home_about .section-title p:after {
    content: '';
    display: none;
}

.btn {
    background: #fff;
    width: 160px;
    height: 45px;
    border: solid thin #ba2028;
    padding: 0;
    line-height: 43px;
    border-radius: 0;
    font-size: 20px;
    color: #000;

}

.btn:hover {
    color: #fff;
    background: #ba2028;
}

.home_about.home_about_tp {}

.home_about.home_about_tp .about_img img {
    z-index: 1;
    display: block;
    position: relative;
    max-width: 100%;
}

.inner_banner img {
    width: 100%;
    height: 328px;
    object-fit: cover;
}

.breadcrumbs li a {
    font-size: 20px;
}

.breadcrumbs li {
    font-size: 20px;
}



/* ==========================================================================
   10.0 Event Section
   ========================================================================== */
.events-section {
    padding: 0 0 60px;
    display: block;
    font-size: 0
}

.events-item {
    padding-left: 0;
    position: relative;
    display: inline-block;
    width: 49.5%;
    font-size: 0;
}

.events-item .event-thumb {
    width: 50%;
    height: 100%;
    position: relative;
    left: 0;
    top: 0;
    overflow: hidden;
    display: inline-block;
}

.event-thumb img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.event-details {
    background-color: #ffffff;
    padding: 48px 25px;
    border: 0px dashed #ddd;
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

.event-details h3 {
    font-size: 21px;
    color: #ba2028;
    font-family: 'amalfi-coast';
    line-height: initial;
}

.event-details p {
    line-height: inherit;
    font-size: 19px;
    margin-bottom: 11px;
    color: #5c5c5c;
}

.event-info i {
    color: #eab022;
    margin-right: 10px;
}

.event-info p {
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
}

.event-info {
    margin-bottom: 10px;
}

.ser-text {
    width: 78%;
    padding: 1px 15px;
    margin: 45px;
}

.ser-text h5 {
    color: #000000;
    font-size: 35px;
    margin-bottom: 4px;
    font-weight: bold;
    margin-bottom: 25px;
     font-family: 'amalfi-coast';
}

.ser-text p {
    font-size: 12.5px;
    margin-bottom: 0;
    color: #ba2028;
    line-height: 22px;

    font-size: 18px;
    text-transform: uppercase;
}

.ser-left .ser-item {
    flex-direction: row-reverse;
}

.ser-left .ser-item .ser-text {
    text-align: right;
    margin: 45px;
}

.img-box:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.img-box {}

.conter_div {
    padding: 0;
    position: relative;
}

.video-box-img {
    padding-top: 0;
    padding-bottom: 30px;
}

.conter_div .container:before {
    content: '';
    background: url(../img/counter_bg.png) no-repeat;
    width: 783px;
    height: 671px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.about {
    background: url(../img/whychoose_bg.jpg) no-repeat;
    background-size: cover;
}



.form_box {
    float: none;
    margin: auto;
    text-align: center;
    margin-top: 30px;
}

.form_box h3 {
    margin-bottom: 25px;
}

.form_box .form-group {}

.form_box .form-group .form-control {
    height: auto;
    padding: 8px 15px;
    font-size: 15px;
    letter-spacing: 0.6px;
    border: none;
    box-shadow: 0px 0px 8px 0px #ececec;
    -webkit-box-shadow: 0px 0px 8px 0px #ececec;
    border-radius: 6px;
    margin-bottom: 15px;
}

.events-item.video_graphy {}

.events-item.video_graphy .event-thumb {
    width: 100%;
    margin-bottom: 25px;
}

.gt-icon {
    width: 92px;
    height: 92px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.692rem;
    border: 2px solid #ba2028;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
    position: relative;
    margin: 0 auto 22px;
}

.gt-icon i {
    color: #ba2028;
    font-size: 32px;
}

.gt-title h4 {
    font-size: 22px;
    color: #ba2028;
    margin: 10px 0;
    font-family: 'amalfi-coast';
    line-height: normal;
}


/* service detail ends */

.service_detail {
    width: 100%;

    margin: 70px 0;
}

.service_detail h5 {


    font-size: 17px;

    color: #797979;

    font-weight: 100;

    text-align: center;
}

.service_detail h2 {
    font-size: 45px;

    margin: 10px 0;

    font-weight: 400;

    text-align: center;
}

.service_detail h2 span {
    color: #ba2028;

    font-size: 45px;


}

.det_img {
    margin: 0 0 0 58%;

    width: 10%;
}

.detail_box {
    width: 100%;

    margin: 50px 0 0 0;

    display: flex;

    justify-content: space-between;
    flex-wrap: wrap;
}

.detail_text {
    width: 65%;
}

.detail_image {
    width: 100%;

    height: 400px;

    margin: 0 0 30px 0;
}

.detail_image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
    object-position: center;
}

.detail_head {
    width: 100%;
}

.text_head {
    color: #ba2028;

    font-size: 30px;



    font-weight: 400;
}

.detail_head p {


    font-size: 15px;

    color: #939393;

    position: relative;

    line-height: 1.8;

    margin: 0 0 30px 0;
}

.detail_head_flex {
    width: 100%;
}

.detail_head_flex ul {
    width: 100%;

    display: flex;

    justify-content: space-between;
}

.detail_head_flex ul li {
    width: 48%;

    display: flex;

    justify-content: space-between;
}

.detail_head_icon {
    width: 30px;

    height: 30px;

    color: #ba2028;

    font-size: 15px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border: 2px solid #ba2028;
}

.detail_head_text {
    width: 85%;
}

.detail_head_text h3 {
    font-size: 25px;

    color: #ba2028;



    font-weight: 400;
}

.detail_head h4 {
    font-size: 25px;



    font-weight: 400;

    margin: 0 0 20px 0;

    color: #575e65;
}

.detail_head h6 {
    color: #575e65;

    font-size: 18px;



    font-weight: 400;

    margin: 0 0 10px 0;
}

.detail_head h6 i {
    color: #ba2028;

    margin: 0 10px 0 0;
}

.detail_head_text_flex {
    width: 100%;

    display: flex;

    justify-content: space-between;
}

.detail_text_imagebox {
    width: 48%;

    height: 400px;
}

.detail_text_imagebox img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

.detail_text_box {
    width: 48%;
}

.detail_text_box h4 {
    color: #ba2028;
}

.detail_text_box ul li {
    font-size: 20px;



    color: #939393;

    font-size: 15px;

    line-height: 2;
}

.detail_text_box ul li i {
    color: #ba2028;

    margin: 0 10px 0 0;
}

.detail_info {
    width: 100%;

    background-color: #def1e9;

    padding: 40px;

    margin: 40px 0;
}

.detail_info h3 {


    font-weight: 600;

    color: #ba2028;

    display: inline-block;

    font-size: 22px;

    position: relative;

    padding: 0 0 5px 0;
}

.detail_info h3::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 25%;

    height: 2px;

    background-color: #ba2028;
}

.detail_info_flex {
    width: 100%;

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    margin: 30px 0 0 0;
}

.detail_info_cont {
    background-color: #fff;

    width: 48%;

    padding: 10px 0 10px 20px;

    margin: 0 0 30px 0;
}

.detail_info_cont h6 {
    font-weight: 600;

    color: #575e65;
}

.detail_info_cont p {
    margin: 0 0 0 0;
}

/* detail_text ends */

.detail_formbox {
    width: 30%;

    position: sticky;

    position: -webkit-sticky;

    top: 50px;

}

.detail_formbox h4 {
    padding: 0 0 5px 0px;

    font-size: 20px;

    color: #ba2028;



    font-weight: 600;

    position: relative;

    display: inline-block;
}

.detail_formbox h4::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 30%;

    height: 2px;

    background-color: #ba2028;
}

.detail_formbox ul {
    margin: 30px 0 40px 0;
    padding: 0;
}

.fa-angle-right:before {
    content: "\f105";
}

.detail_formbox ul li {
    margin: 0 0 5px 0;
    list-style: none;
}

.detail_formbox ul li a {
    display: block;

    color: #4b5b68;

    padding: 15px 0 15px 22px;

    background-color: #f2f4f5;

    font-size: 17px;

    transition: all 0.3s;

    cursor: pointer;
}

.detail_formbox ul li a i {
    font-size: 13px;

    margin: 0 10px 0;
}

.detail_formbox ul li a:hover {
    background-color: #fff;

    border-left: 4px solid #ba2028;
}

.serv_active {
    background-color: #ba2028 !important;

    color: #fff !important;
}

.detail_formbox_image {
    width: 100%;

    height: 500px;

    background-color: #ba2028;

    position: relative;
}

.detail_formbox_image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    position: relative;
}

.detail_formbox_cont {
    width: 90%;

    height: 90%;

    position: absolute;

    top: 5%;

    left: 5%;

    padding: 20px 30px;

    border: 1px solid rgba(255, 255, 255, 0.3);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.2);

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(5px);
}

.detail_formbox_cont h3 {
    color: #fff;



    font-size: 30px;

    text-align: center;
}

.detail_formbox_cont form {
    width: 100%;
}

.detail-label {
    width: 100%;

    height: 40px;

    background-color: #fff;

    border-radius: 10px;

    margin: 20px 0 0 0;

    padding: 10px;
}

.detail-label input {
    width: 100%;

    height: 100%;

    border: none;

    outline: none;

    background-color: transparent;

    color: #939393;



    font-size: 14px;
}

.detail-area {
    width: 100%;

    height: 150px;

    background-color: #fff;

    border-radius: 10px;

    margin: 20px 0 0 0;

    padding: 10px;
}

.detail-area textarea {
    width: 100%;

    height: 100%;

    border: none;

    outline: none;

    background-color: transparent;

    color: #939393;



    font-size: 14px;
}

.detail-submit {
    width: 100%;

    height: 40px;

    border-radius: 20px;

    text-align: center;

    margin: 20px 0 0 0;
}

.detail-submit input {
    width: 100%;
    height: 100%;

    color: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 20px;
    background-color: #ba2028;
    transition: all 0.5s;
    border: none;
    border-radius: 20px;
    outline: none;
}

.detail-submit p {
    width: 100%;
    height: 100%;
}

.detail-submit input:hover {
    background-color: #000;
}

/* detail_formbox ends */

/* service detail ends */

.gal-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .4s ease;
    border-radius: 5px;
}

.gal-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    border: 2px solid #ba2028;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

.gal-img:hover img {
    transform: scale(1.1)
}


/*responsive */


@media only screen and (max-width: 1200px) {
    .container {
        padding: 0 10px;
    }

    #hero .carousel-container {
        left: 20px;
    }

    .logo {
        padding-left: 15px;
    }
    
    .video-box .content {
    bottom: 100px;
    }
}
@media only screen and (max-width: 1199px) {
    .about .image{
        display: none !important;
    }
    .about .content{
        margin: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .nav-menu a {
        padding: 28px 15px;
    }

    #header {
        height: auto;
    }

}

@media only screen and (max-width: 991px) {
    .detail_formbox ul {
        margin: 20px 0 0 0;
    }

    .detail_head p {
        font-size: 17px;
        margin: 0 0 4px 0;
    }
    
    .video-box .content{
        width: auto;
    }

    .detail_box {
        margin: 20px 0 0 0;
    }

    .service_detail {
        margin: 22px 0;
    }

    .detail_text {
        width: 100%;
    }
    
    #footer .footer-top .footer-info .social_links ul li a{
        line-height: 32px;
    }

    .detail_formbox {
        margin-top: 24px;
        width: 100%;
    }

    nav.nav-menu {
        display: none;
    }

    .logo {
        padding: 12px 5px;
    }

    .mobile-nav-toggle {
        top: 29px;
    }

    .img-fluid {
        max-width: 100%;
        height: 393px;
        object-fit: cover;
    }

    .play-btn {
        top: calc(43% - 133px);
    }

    .video-box .content {
        bottom: 80px;
    }

    .align-items-stretch img {
        height: 310px;
    }

    section {
        padding: 36px 0;
    }

    .event-details {
        padding: 32px 16px;
    }

    .events-section {
        padding: 0 0 10px;
    }

    #hero .carousel-item {
        height: 550px;
    }

    .about .image {
        min-height: auto;
    }
    
    .about .content h3, .contact_pg h2{
        font-size: 24px;
    }

    #footer .footer-top .footer-info {
        width: 49%;
    }

    #footer .footer-top .footer-links.services {
        width: 47%;
    }

    #footer .footer-top .footer-links {
        width: 47%;
    }

    .wpcf7-spinner {
        position: absolute !important;
        left: 0;
    }

    #footer .footer-top .footer-links ul li {
        padding: 6px 0;
    }

    #footer .footer-top {
        padding: 30px 0 0 0;
    }

    .event-thumb img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .events-item .event-thumb {
        width: 98%;
    }

    .event-details {
        width: 98%;
    }

    .home_about {
        padding: 27px 0;
    }

    #hero .carousel-item {
        height: 485px;
    }

    #hero .carousel-container {
        bottom: 8vh;
    }

    #hero h2 {
        font-size: 34px;
        line-height: 63px;
    }
    .ser-text h5{
        font-size: 26px;
    }
    
    .lb-sec .item {
    margin-bottom: 25px;
}

    #hero h2:after {
        margin-top: 10px;
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .portfolio-details .portfolio-description {
        padding-top: 20px;
    }
    
        #hero .carousel-item {
        height: 545px;
    }

    .values .card {
        margin-bottom: 18px;
    }
    
    .events-item{
        width: 100%;
    }
    
    .portfolio-details .portfolio-info{
        min-height: auto;
    }
    .gal-img img, .event-thumb img{
        height: auto;
    }
    
    .events-item.video_graphy .event-thumb iframe {
    width: 100%;
}

    .col-lg-4.col-md-4.col-sm-12.ser-left {
        display: flex;
        justify-content: center;
    }

    .col-lg-4.col-md-4.col-sm-12.ser-right {
        display: flex;
        justify-content: center;
    }

    .conter_div .container:before {
        width: auto;
        height: 100%;
    }

    .video-box .content {
        width: auto;
    }

    #hero .carousel-container {
        width: auto;
    }

    .ser-text {
        width: 100%;
        padding: 1px 15px;
        margin: 13px;
    }

    .col-lg-4.col-md-4.col-sm-12.ser-right a {
        width: 50%;
        text-align: center;
    }
    
          .video-box .content p {
        max-width: 500px;
        word-wrap: break-word;
        word-break: break-all;
        white-space: normal;
        margin: 0 auto;
        line-height: normal !important;
    }
    
    .home_about .section-title h2 span, .events-section h2, .about .content h2{
        margin-top: 25px;
    }


    .col-lg-4.col-md-4.col-sm-12.ser-left a {
        width: 50%;
        text-align: center;
    }

    .ser-left .ser-item .ser-text {
        text-align: center;
        margin: 0px;
    }

    .img-box.ser-im img {
        display: none;
    }
    
    .our_work .nav-item a.active h4:after{
        bottom: -4px;
    }

    .client-info {
        width: 90%;
    }

    #hero h2 {
        width: 100%;
    }

    #hero p {
        width: 70%;
    }

    .about .content {
        margin: 0;
    }
}

@media only screen and (max-width: 600px) {
    section {
        padding: 16px 0;
    }

    .inner_banner img {
        height: 241px;
    }
    
        .video-box .content {
        bottom: 12px;
    }
    
    .conter_div {
    padding: 4rem 0 0;
    }

    .home_about .section-title h2 span,
    .events-section h2,
    .about .content h2 {
        margin-top: 2px;
        margin-bottom: 10px;
    }

    .home_about .about_cont {
        padding-left: 22px;
    }
    
    .events-section .section-heading {
    padding-top: 4rem;
    }
    
    .blog_item{
        min-height: auto;
    }

    .video-box .content p {
         font-family: 'amalfi-coast';
        font-size: 30px;
        line-height: 38px;
    }

    .img-fluid {
        height: 322px;
    }


    .play-btn {
        top: calc(48% - 133px);
    }

    .events-section p {
        margin-bottom: 18px;
        font-size: 25px;
    }

    .about .content h3,
    .contact_pg h2 {
        font-size: 21px;
    }
    
    #hero h2{
        font-size: 26px;
    }

    .ocs-sec .h-title h2 {
        font-size: 30px;
    }

    .our_work .about-content {
        padding: 0 30px 25px;
    }

    .about .content .icon-box h4 {
        font-size: 23px;
        margin: 0 0 0 58px;
    }

    .about .content .icon-box {
        margin-top: 14px;
    }

    .event-details {
        padding: 13px 5px 26PX;
    }

    .our_work .tab-content .tab-pane p {
        font-size: 20px;
        line-height: 28px;
    }

    .our_work .nav-tabs {
        margin: 0 0 10px;
    }
      .our_work .tab-content .tab-pane img{ 
        max-width: 100%;
    }


    #footer .footer-top .footer-info {
        width: 100%;
        margin-bottom: 0;
        padding-right: 0;
    }

    #footer .footer-top .footer-links.services {
        width: 100%;
        padding-left: 13px;
    }

    #footer .footer-top .footer-links {
        width: 100%;
        margin-bottom: 5px;
    }

    #footer .footer-top .footer-links.services li {
        width: 100%;
    }

    .t-item {
        margin-top: 3px;
        margin-bottom: 6px;
    }

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

@media only screen and (max-width: 550px) {
    p {
        font-size: 18px;
    }
    .events-item {
        width: 100%;
    }

    #hero h2 {
        width: 100%;
    }
    
    .our_work .nav-item a {
    padding: 0 25px 0 0;
}

    #hero h2 {
        font-size: 28px;
        line-height: 54px;
    }

    #hero p {
        width: 86%;
        margin: 0 auto 19px 0;
    }

    .video-box .content p {
         font-family: 'amalfi-coast';
        font-size: 25px;
        line-height: 34px;
    }

    .events-section p {
        font-size: 18px;
    }

    .ocs-sec {
        padding: 23px 0 30px;
    }

    .client-info {
        width: 100%;
    }
    
    
.lb-sec h2{
    font-size: 30px;
}

.img-fluid {
        height: 435px;
    }

}

@media only screen and (max-width: 400px) {
    .ser-text p {
        font-size: 15px;
    }


    .btn {
        height: 41px;
        line-height: 40px;
        font-size: 18px;
    }

    .events-section p {
        font-size: 16px;
    }

    .video-box .content p {
        padding: 0 10px;
        font-size: 23px;
        margin-bottom: 30px !important;
    }
}

@media only screen and (max-width: 375px) {
    #hero h2 {
        font-size: 25px;
        line-height: 56px;
    }
        #hero .carousel-item {
        height: 678px;
    }
}
@media only screen and (max-width: 350px) {
       .about .content h3, .contact_pg h2 {
        font-size: 15px;
    }
}