body,
html {
    font-family: poppins!important;
}

a:hover,
a:active {
    text-decoration: none!important;
}

a {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

 :focus {
    outline: none;
}

.logo {
    margin-top: -28px;
    position: absolute;
    background-color: white;
    padding: 10px;
    border-radius: 25px;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ec2527;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9999;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 25px;
}

#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

nav.nav1 {
    display: none;
}


/*----------------------------------------Push Navigation---------------------------------*/

div#menuoverlay {
    display: none;
}

a#hamburg {
    position: fixed;
    top: 0px;
    left: 10px;
    width: 40px;
    height: 40px;
    z-index: 9;
    text-align: center;
    color: white;
    display: none;
    transition: all ease-out 0.3s;
}

a#hamburg i {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.nav1 {
    transition: all ease-out 0.3s;
    display: none;
}

.nav1 a {
    color: #000;
}

.nav1 ul {
    margin: 0;
    padding: 0;
    background-color: #303030;
}

.nav1 ul li {
    display: inline-block;
    position: relative;
    padding: 10px 20px!important;
}

.nav1 ul li>a {
    display: inline-block;
    padding: 10px;
}

.nav1 ul li>a>i {
    margin-left: 15px;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.1s;
}

.nav1 ul li ul {
    display: none;
    position: absolute;
    top: 38px;
    background: #222;
    width: 200px;
    text-align: left;
}

.nav1 .search-nav,
.nav1 .title {
    display: none;
}

.nav1 ul li ul li {
    display: block;
}

.nav1 ul li ul li a {
    display: block;
}

.nav1 ul li:hover>a {
    color: #000;
    text-decoration: none;
}

.nav1 ul li:hover>a>i {
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
}

.nav1 ul li:hover ul {
    display: block;
}

.nav1 span.marrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    float: right;
    height: 0;
    margin: 8px 0 0 8px;
    width: 0;
}

.nav1 ul li.open span.marrow {
    border-left: 5px solid transparent;
    border-top: 0;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
}

@media screen and (max-width: 1024px) {
    .slider .item .carousel-caption {
        top: 80px;
    }
    .slider-text h3 {
        font-size: 40px;
    }
    .slider-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .slider-text .form-group label {
        font-size: 12px;
    }
}

.open-menu .nav-cross:before {
    content: "X";
    position: absolute;
    z-index: -1;
    font-size: 25px;
}

@media screen and (max-width: 767px) {
    .logo-bar nav {
        display: none!important;
    }
    a#hamburg {
        display: block;
    }
    main {
        transition: all ease-out 0.3s;
    }
    .nav1 .row {
        margin: 0px;
    }
    .nav1 {
        background-color: #fff;
        box-shadow: -2px 0 10px #999 inset;
        display: block;
        height: 100%;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        top: 0;
        transform: translateX(-250px);
        -webkit-transform: translateX(-250px);
        width: 250px;
    }
    .nav1 .search-nav,
    .nav1 .title {
        display: block;
    }
    .nav1 .search-nav input {
        border: 1px solid #2c313f;
        background-color: rgba(255, 255, 255, 0.2);
        padding: 5px;
        width: 100%;
        color: #000;
        margin: 10px 0;
    }
    .nav1 .search-nav input[type="submit"] {
        /* background: url("images/search-icon.png") no-repeat scroll center center; */
        border: 0;
        width: auto;
        font-size: 0;
        height: 16px;
        position: absolute;
        right: 7px;
        top: 8px;
        width: 16px;
        filter: invert(100%);
    }
    .nav1 .title {
        background: #000;
        color: #fff;
        font-size: 14px;
        margin: 0 -15px;
        padding: 6px 15px 6px;
    }
    .search-nav>form {
        position: relative;
    }
    .nav1 ul {
        text-align: left;
        background-color: transparent;
    }
    .nav1 ul li {
        display: block;
        border-bottom: 1px solid #999;
    }
    .nav1 ul li a {
        display: block;
        padding: 10px 0;
    }
    .nav1 ul li:hover>a {
        color: #000;
    }
    .nav1 ul li a>i {
        float: right;
    }
    .nav1 ul li ul {
        display: none;
        position: static;
        width: 100%;
        background-color: transparent;
        padding: 0 10px;
    }
    .nav1 ul li:hover>ul {
        display: none;
    }
    .nav1 ul li:hover>a>i {
        transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
    }
    .nav1 ul li.open>a {
        background-color: transparent;
    }
    .nav1 ul li.open>a>i {
        transform: rotateZ(90deg);
        -webkit-transform: rotateZ(90deg);
    }
    .nav1 ul li.open>ul {
        display: block;
    }
    div#menuoverlay {
        display: block;
        visibility: hidden;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transition: all ease-out 0.3s;
        z-index: 1;
        opacity: 0;
    }
    html.open-menu {
        overflow: hidden;
    }
    html.open-menu div#menuoverlay {
        visibility: visible;
        background: rgba(0, 0, 0, 0.5);
        min-height: 100vh;
        width: 100% !important;
        opacity: 1;
        width: calc(-150%);
        left: 250px;
    }
    html.open-menu a#hamburg {
        transform: translateX(250px);
        -webkit-transform: translateX(250px);
        z-index: 999;
    }
    html.open-menu main {
        transform: translateX(250px);
        -webkit-transform: translateX(250px);
    }
    html.open-menu nav.nav1 {
        z-index: 3;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
    .menu-main-menu-container ul ul ul li a {
        padding: 5px;
    }
    ul li.has-subnav .accordion-btn {
        color: #000;
        font-size: 24px;
        width: 20px !important;
        float: right;
        line-height: inherit !important;
    }
    .nav1 ul li:last-child {
        border: 0;
    }
    .nav-cross.open>span {
        background: #fff;
    }
    /*---------------------Hamberg Icon --------------------------------------------- */
    .nav-cross {
        width: 24px;
        height: 40px;
        position: relative;
        margin: 0px auto;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    .nav-cross span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #000;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    .open-menu .nav-cross span {
        display: none;
    }
    #nav-icon1 span:nth-child(1) {
        top: 0px;
    }
    #nav-icon1 span:nth-child(2) {
        top: 18px;
    }
    #nav-icon1 span:nth-child(3) {
        top: 36px;
    }
    #nav-icon1.open span:nth-child(1) {
        top: 18px;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
    }
    #nav-icon1.open span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    #nav-icon1.open span:nth-child(3) {
        top: 18px;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
    }
    .nav-cross span:nth-child(1) {
        top: 12px;
        transform-origin: left center;
        -webkit-transform-origin: left center;
    }
    .nav-cross span:nth-child(2) {
        top: 20px;
        transform-origin: left center;
        -webkit-transform-origin: left center;
    }
    .nav-cross span:nth-child(3) {
        top: 28px;
        transform-origin: left center;
        -webkit-transform-origin: left center;
    }
    .nav-cross.open span:nth-child(1) {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        top: 11px;
        left: 4px;
    }
    .nav-cross.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }
    .nav-cross.open span:nth-child(3) {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        top: 28px;
        left: 4px;
    }
}

#sync1 .item {
    background: #0c83e7;
    padding: 80px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}

#sync2 .item {
    background: #C9C9C9;
    padding: 10px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

#sync2 .item h1 {
    font-size: 18px;
}

#sync2 .synced .item {
    background: #0c83e7;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    background-color: #ec2527;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}

.pkg-list::-webkit-scrollbar-track {
    background-color: #d4d4d4;
}

.pkg-list::-webkit-scrollbar {
    width: 5px;
    background-color: #d4d4d4;
}

.pkg-list::-webkit-scrollbar-thumb {
    background-color: #ec2527;
    border-radius: 30px;
}

 ::selection {
    background: #ec2527;
    color: #ffffff;
}

.topbar {
    padding-top: 32px;
    padding-bottom: 15px;
    box-shadow: 0px 11px 43px 0px rgb(98 143 144 / 33%);
}

.topbar-menu ul {
    margin: 0px;
    padding: 0px;
}

.topbar-menu ul li {
    display: inline-block;
    margin-right: 25px;
}

.topbar-right {
    text-align: right;
}

.topbar-menu {
    display: inline-block;
}

.topbar-cnt {
    display: inline-block;
}

.topbar-menu ul li a {
    color: #000000;
    border-bottom: 2px solid transparent;
}

.topbar-menu ul li a:hover,
.topbar-menu ul li a:active,
.topbar-menu ul li a:focus,
.topbar-menu ul li.active a {
    color: #ec2527;
    border-color: #ec2527;
}

.cnt-tel {
    display: inline-block;
    margin-right: 15px;
}

.cnt-tel a {
    color: #000000;
}

.cnt-tel a i {
    color: #ec2527;
}

.hire-btn {
    display: inline-block;
}

.hire-btn a {
    display: block;
    /* padding: 18px 30px; */
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    line-height: normal;
    background-color: #ec2527;
    font-size: 23px;
    color: #ffffff;
    font-weight: 700;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-left: 30px;
}

.hire-btn a:hover,
.hire-btn a:active,
.hire-btn a:focus {
    background-color: #000;
    color: #fff;
}

.cnt-tel a:hover,
.cnt-tel a:active,
.cnt-tel a:focus {
    color: #ec2527;
}

.topbar-right {
    margin-top: 11px;
}

.banner-main {
    padding: 135px 0px 155px;
    background: url(../images/banner-head.jpg) no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
}

.banner-main h1 {
    font-size: 36px;
    color: #ffffff;
    font-weight: 700;
    line-height: normal;
}

.banner-main p {
    font-size: 16px;
    color: #ffffff;
    line-height: 35px;
    padding-right: 50px;
}

.banner-main ul {
    padding-left: 18px;
    list-style: none;
    position: relative;
    margin: 40px 0 60px 0;
}

.banner-main ul li {
    font-size: 16px;
    color: #ffffff;
    line-height: 16px;
    padding-top: 16px;
    padding-left: 15px;
}

.banner-main ul li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    color: #fb2224;
    font: normal normal normal 20px/1 FontAwesome;
}

.banner-main-cnt a {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ec2527;
    color: #ffffff;
    font-size: 18px;
    margin-right: 20px;
}

.banner-main-cnt .btn-2 {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ffffff;
    color: #000000;
    font-size: 18px;
    margin-right: 20px;
}

.banner-main-cnt .btn-2:hover {
    background-color: #ec2527;
    color: #ffffff;
}

.banner-main-cnt a:hover,
.banner-main-cnt a:active,
.banner-main-cnt a:focus {
    background-color: #fff;
    color: #000;
}

.banner-main-cnt {
    margin-top: 25px;
}

.form-banner {
    margin-left: auto;
    padding: 30px;
    width: 95%;
    background-color: #ec2527c9;
    border-radius: 20px;
    box-shadow: 0px 0px 49px 0px rgb(236 37 39 / 65%);
}

.form-banner h2 {
    text-align: center;
    font-size: 32px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-banner h4 {
    text-align: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 19px;
}

.form-banner h4 a {
    color: #0b0e11;
    font-size: 22px;
    font-weight: 600;
}

.form-banner h4 a:hover {
    color: #ffffff;
    text-decoration: underline !important;
}

.form-banner label {
    margin-top: 15px;
    color: #ffffff;
    line-height: normal;
    display: block;
}

.form-banner input[type="text"],
.form-banner input[type="tel"],
.form-banner input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 0px;
    border-radius: 10px;
}

.form-banner textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 0px;
    resize: none;
    border-radius: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit input[type="submit"] {
    cursor: pointer;
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ffffff;
    color: #ec2527;
    font-size: 18px;
    border: 0px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.form-submit input[type="submit"]:hover,
.form-submit input[type="submit"]:active,
.form-submit input[type="submit"]:focus {
    background-color: #000;
    color: #fff;
}

img.sub-heading-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}

.pride-main h2 {
    margin-bottom: 15px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    text-align: center;
}

.pride-main p {
    font-size: 16px;
    color: #000000;
    line-height: normal;
    margin-bottom: 60px;
    text-align: center;
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 65%;
}

.pride-main .tab-content p {
    text-align: left;
    margin: 0;
    max-width: 85%;
    padding-bottom: 30px;
}

.pride-main .tab-content h2 {
    text-align: left;
}

.pride-main .tab-content h3 {
    text-align: left;
    font-size: 25px
}

.pride-main ul {
    padding: 0px;
    margin: 0px;
}

.pride-main .nav-tabs img {
    width: 70px;
}

.pride-main ul li {
    width: 17%;
    display: inline-block;
    text-align: center;
    margin: 0px 18px;
    border-radius: 20px;
}

.pride-info {
    padding: 12px;
    border: 2px solid #ff0003;
    border-radius: 20px;
    height: 130px;
    width: 160px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pride-info h4 {
    /* margin: 20px 0px 0px; */
    font-size: 18px;
    color: #ec2527;
    font-weight: 400;
    line-height: normal;
}

.pride-main ul li:first-child {
    margin-left: 0px;
}

.pride-main ul li:last-child {
    margin-right: 0px;
}

.pride-main ul li:hover,
.pride-main ul li:active,
.pride-main ul li:focus,
.pride-main ul.nav.nav-tabs li a.active {
    background-color: #ec2527;
}

.pride-main ul li:hover h4,
.pride-main ul li:active h4,
.pride-main ul li:focus h4,
.pride-main ul.nav.nav-tabs li a.active h4 {
    color: #ffffff;
}

.pride-main ul li:hover img,
.pride-main ul li:active img,
.pride-main ul li:focus img,
.pride-main ul.nav.nav-tabs li a.active img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.branding-main h2 {
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    margin-bottom: 20px;
}

.branding-main h3 {
    font-size: 30px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: normal;
}

.branding-main p {
    font-size: 16px;
    color: #000000;
    line-height: normal;
}

.branding-main ul {
    padding: 0px;
    margin-bottom: 30px;
}

.branding-main ul li {
    display: inline-block;
    width: 49%;
    line-height: normal;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    color: #000000;
    padding-left: 23px;
}

.branding-main ul li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    top: 4px;
    left: 0;
    color: #ec2527;
}

.branding-btn a {
    display: inline-block;
    width: 220px;
    height: 75px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ec2527;
    line-height: 75px;
    font-size: 18px;
    color: #ffffff !important;
    margin-right: 15px;
}

.branding-btn a:hover {
    border: 1px solid #ec2527;
    color: #000000 !important;
    margin-right: 15px;
    background-color: white !important;
}

.branding-btn a:first-child,
.branding-btn a:hover,
.branding-btn a:active,
.branding-btn a:focus {
    background-color: #ec2527;
    color: #000000;
}

.branding-img {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.exp-main {
    text-align: center;
    padding-bottom: 75px;
    background-color: #675a5a;
    background-image: url(../images/logo-bg.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 42%;
    margin: 40px 0;
}

.pt-65 {
    padding-top: 65px;
}

.exp-main h2 {
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    margin-bottom: 15px;
}

.exp-main p {
    font-size: 16px;
    color: #ffffff;
    max-width: 850px;
    margin: 0 auto;
}

.exp-info {
    margin-top: 40px;
    padding: 20px 25px 20px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
    border-radius: 20px;
    background-color: white;
}

.exp-info h3 {
    font-size: 54px;
    color: #ec2527;
    margin-bottom: 10px;
}

.exp-info p {
    margin-bottom: 0px;
    font-size: 20px;
    color: #ec2527;
    text-transform: uppercase;
}

.exp-info:hover h3,
.exp-info:hover p {
    color: #fff;
}

.exp-info:hover {
    background-color: #ec2527;
}

.mark-main {
    margin-bottom: 85px;
    padding-top: 60px;
}

.mark-main h2 {
    margin-bottom: 25px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    max-width: 1170px;
    margin: 0 auto 20px;
    text-align: center;
}

.mark-main p {
    font-size: 16px;
    color: #000000;
    max-width: 1170px;
    margin: 0 auto 20px;
    text-align: center;
}

.mark-tab {
    margin-top: 30px;
}

.mark-tab ul.tabs-nav {
    padding: 0px;
    max-width: 1170px;
    margin: 0 auto 10px;
    text-align: center;
}

.mark-tab ul.tabs-nav li {
    display: inline-block;
    margin-right: 20px;
}

.mark-tab ul.tabs-nav li a {
    display: block;
    padding: 10px 30px;
    text-align: center;
    line-height: normal;
    border: 1px solid #ec2527;
    border-radius: 10px;
    font-size: 18px;
    color: #ec2527;
}

.mark-tab ul.tabs-nav li.tab-active a,
.mark-tab ul.tabs-nav li a:hover,
.mark-tab ul.tabs-nav li a:active,
.mark-tab ul.tabs-nav li a:focus {
    background-color: #ec2527;
    color: #ffffff;
}

.galrey-bx ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

.galrey-bx ul li {
    width: 18.5%;
    display: inline-block;
    margin: 20px 10px 0px;
}

.mark-main .col-12.col-sm-12.col-md-12.col-lg-12 {
    padding-left: 0px;
    padding-right: 0px;
}

.pkg-main {
    padding-bottom: 15px;
}

.pkg-main h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
}

.pkg-main p.pkg-para {
    font-size: 16px;
    color: #000000;
    text-align: center;
    max-width: 1070px;
    margin: 0 auto 20px;
}

.pkg-bx {
    padding: 35px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 17%);
}

.pkg-bx h3 {
    text-align: center;
    font-size: 29px;
    color: #000000;
    font-weight: 900;
    margin-bottom: 0px;
}

.pkg-bx h4 {
    margin-top: 25px;
    text-align: center;
    font-size: 50px;
    color: #ec2527;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
}

.pkg-bx h5 {
    text-align: center;
    font-size: 24px;
    color: #000000;
    margin-bottom: 35px;
}

.pkg-bx h6 {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 15px;
}

.pkg-list {
    height: 225px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.pkg-list ul {
    padding: 0px;
}

.pkg-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    width: 100%;
}

.pkg-list ul li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #ec2527;
    top: 2px;
}

.pkg-chat {
    text-align: center;
}

.pkg-chat a {
    display: inline-block;
    margin-bottom: 20px;
    width: 160px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background-color: #ec2527;
    border-radius: 12px;
    font-size: 18px;
    color: #ffffff;
}

.pkg-chat p {
    margin-bottom: 0px;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

.pkg-bx {
    margin-top: 18px;
}

.pkg-bx:hover {
    background: url(../images/pkg-bg.png) no-repeat;
    background-size: cover;
}

.pkg-bx:hover h3,
.pkg-bx:hover h4,
.pkg-bx:hover h6,
.pkg-bx:hover ul li,
.pkg-bx:hover ul li:before,
.pkg-bx:hover p {
    color: #fff;
}

.pkg-bx:hover .pkg-chat a {
    background-color: #fff;
    color: #ec2527;
}

.pkg-bx:hover .pkg-list::-webkit-scrollbar-track {
    background-color: #aa423b;
}

.pkg-bx:hover .pkg-list::-webkit-scrollbar {
    background-color: #aa423b;
}

.pkg-bx:hover .pkg-list::-webkit-scrollbar-thumb {
    background-color: #ffffff;
}

.ultimate-main {
    padding: 110px 0px;
    background: url(../images/combo-bg.jpg) no-repeat;
    background-size: cover;
}

.ultimate-main h2 {
    margin-top: 90px;
    font-size: 40px;
    color: #ffffff;
    line-height: normal;
}

.ultimate-main p {
    font-size: 16px;
    color: #ffffff;
    line-height: 40px;
    max-width: 600px;
}

.ultimate-btn a {
    display: inline-block;
    width: 170px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 12px;
    background-color: #fff;
    font-size: 18px;
    color: #ec2527;
}

.ultimate-img {
    display: inline-block;
    margin-left: 30px;
}

.ultimate-btn {
    margin-top: 30px;
}

.ultimate-main h2 {
    margin-bottom: 20px;
}

.ultimate-main .pkg-bx h3 {
    text-align: left;
}

.ultimate-main .pkg-bx .pkg-chat h4 {
    display: inline-block;
    margin-top: 0px;
}

.ultimate-main .pkg-bx h5 {
    display: inline-block;
}

.ultimate-main .pkg-bx h6 {
    font-size: 20px;
    font-weight: 700;
}

.ultimate-main .pkg-bx .pkg-chat h4 a {
    width: auto;
    height: unset!important;
    line-height: normal;
    background-color: transparent;
    border-radius: unset;
    font-size: 16px;
    color: #000000;
    vertical-align: middle;
}

.ultimate-main .pkg-bx .pkg-chat {
    text-align: left;
}

.ultimate-main .pkg-bx a.chat-pkg-link {
    float: right;
}

.ultimate-main .pkg-bx h4 {
    display: inline-block;
}

.skills-main {
    padding: 85px 0px;
}

.skills-main h2 {
    font-size: 40px;
    color: #ec2527;
    line-height: normal;
    text-align: center;
    font-weight: 500;
}

.skills-main p {
    text-align: center;
    font-size: 16px;
    color: #000000;
    max-width: 1070px;
    margin: 0 auto 30px;
    line-height: 35px;
}

.skills-main ul {
    padding: 50px 50px 50px;
    text-align: center;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 36%);
    border-radius: 12px;
}

.skills-main ul li {
    display: inline-block;
    margin: 0px 0px 0px 65px;
}

.skills-main ul li:first-child {
    margin-left: 0px;
}

.skills-main ul li .ultimate-bx h4 {
    margin-bottom: 0px;
    margin-top: 20px;
    font-size: 18px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 500;
}

.skills-main .ultimate-btn {
    margin: 0px;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -25px;
}

.skills-main .ultimate-btn a {
    display: block;
    width: 210px;
    height: 85px;
    text-align: center;
    background-color: #ec2527;
    font-size: 18px;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    line-height: normal;
    padding-top: 16px;
    margin: 0 auto;
}

.skills-main .ultimate-btn a:hover,
.skills-main .ultimate-btn a:active,
.skills-main .ultimate-btn a:focus {
    background-color: #000;
    color: #fff;
}

.ready-main h2 {
    margin-top: 25px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    margin-bottom: 25px;
}

.ready-main p {
    font-size: 16px;
    color: #000000;
    line-height: 35px;
}

.ready-main .ready-cnt a {
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
}

.ready-main .ready-cnt {
    margin-bottom: 30px;
}

.ready-link a {
    display: inline-block;
    width: 220px;
    height: 75px;
    text-align: center;
    line-height: 72px;
    border: 2px solid #ff0003;
    border-radius: 12px;
    margin-right: 15px;
    font-size: 18px;
    color: #ec2527;
    font-weight: 500;
    text-transform: uppercase;
}

.ready-link a:hover,
.ready-link a:active,
.ready-link a:focus,
.ready-link a:first-child {
    background-color: #ec2527;
    color: #fff;
}

.initial-main {
    text-align: center;
    padding: 80px 0px;
}

.initial-main .initial-bx h2 {
    margin: 25px 0px 20px;
    font-size: 28px;
    color: #000000;
    font-weight: 500;
}

.initial-main .initial-bx p {
    color: #000000;
    line-height: normal;
    max-width: 260px;
    margin: 0 auto;
}

.initial-bx {
    position: relative;
}

.initial-bx.errow-initial-left:after {
    content: url(../images/errow-left.png);
    position: absolute;
    top: 60px;
    right: -107px;
}

.initial-bx.errow-initial-right:before {
    content: url(../images/errow-right.png);
    position: absolute;
    top: 60px;
    left: -107px;
}

.brand-main {
    text-align: center;
    margin-bottom: 90px;
}

.brand-main h2 {
    margin-bottom: 30px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
}

.brand-main p {
    font-size: 16px;
    color: #000000;
    margin: 0 auto;
    max-width: 935px;
}

.brand-main img {
    margin-top: 50px;
}

.widget-bx {
    padding: 45px 0px 30px;
    background: url(../images/footer-bg.jpg) no-repeat;
    background-size: cover;
}

.f-logo a {
    display: inline-block;
}

.widget-bx .f-logo p {
    margin: 20px 0px 0px 0px;
    font-size: 12px;
    color: #ffffff;
    line-height: normal;
    font-weight: 300;
}

.widget-bx .widget-info h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 50px;
}

.widget-bx .widget-info ul.f-links {
    margin: 0px;
    padding-left: 0px;
}

.widget-bx .widget-info ul.f-links li {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.widget-bx .widget-info ul.f-links li a {
    color: #fff;
}

.widget-bx .widget-info ul.address-links {
    padding-inline: 0px;
}

.widget-bx .widget-info ul.address-links li {
    display: block;
    color: #ffffff;
    font-size: 14px;
    position: relative;
    padding-left: 26px;
    margin-bottom: 5px;
}

.widget-bx .widget-info ul.address-links li a {
    color: #ffffff;
}

.widget-bx .widget-info ul.address-links li i {
    position: absolute;
    left: 0;
    top: 2px;
}

ul.f-socail {
    margin: 0px;
    padding: 0px;
}

ul.f-socail li {
    display: inline-block;
    margin-right: 5px;
}

ul.f-socail li a {
    font-size: 20px;
    color: #fff;
}

ul.f-socail li a:hover i,
ul.f-socail li a:active i,
ul.f-socail li a:focus i {
    transform: rotate(360deg);
    -webkit-transform: rotate( 360deg);
    color: #000;
}

ul.f-socail li a i {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.widget-info a:hover {
    color: #000;
}

.widget-bx .widget-info ul.f-links li a:hover,
.widget-bx .widget-info ul.f-links li a:active,
.widget-bx .widget-info ul.f-links li a:focus {
    color: #000;
}

.widget-bx .widget-info ul.address-links li a:hover,
.widget-bx .widget-info ul.address-links li a:active,
.widget-bx .widget-info ul.address-links li a:focus {
    color: #000;
}

.copyright-bx {
    text-align: center;
    padding: 15px 0px;
    background-color: #000000;
    font-size: 14px;
    color: #ffffff;
}

.galrey-bx ul li a {
    display: block;
}

.galrey-bx ul li a img {
    width: 100%;
    height: auto;
}

.galrey-bx {
    text-align: center;
}

.galrey-bx ul li a:before {
    content: "";
    background: url(../images/galrey-icon.png) no-repeat;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    visibility: hidden;
}

.galrey-bx ul li a {
    position: relative;
}

.galrey-bx ul li a:hover:before {
    visibility: visible;
}

.galrey-bx ul li a:hover {
    opacity: 0.9;
}

.testimonials-main {
    padding-top: 75px;
    text-align: center;
}

.testimonials-main .col-12.col-sm-12.col-md-12.col-lg-12 {
    padding-left: 0px;
    padding-right: 0px;
}

.testimonials-slider {
    padding: 75px 0px 125px;
    background: url(../images/testimonials-bg.jpg) no-repeat;
    background-size: cover;
}

.teestimonials-icon {
    margin-bottom: 50px;
}

.testimonials-slider h2 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 30px;
}

.testimonials-slider p {
    font-size: 16px;
    color: #ffffff;
    max-width: 940px;
    margin: 0 auto 35px;
}

.testimonials-slider h3 {
    font-size: 30px;
    color: #ffffff;
}

.testimonials-slider h4 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
}

.sl-nav {
    padding-top: 50px;
}

.testimonials-main {
    position: relative;
}

.sl-nav ul {
    margin: 0px;
    padding: 0px;
}

.sl-nav ul li {
    display: inline-block;
    padding: 0px 20px;
    position: relative;
}

.sl-nav ul li.active a.button.secondary.url:before {
    background-color: #fff;
}

.sl-nav ul li a:before {
    content: "";
    width: 100%;
    position: absolute;
    top: -115px;
    height: 65px;
    left: 0;
    right: 0;
    background-color: transparent;
    border-radius: 10px 10px 0px 0px;
}

.sl-nav ul li a {
    position: relative;
    display: block;
}

.topbar.stickyheader {
    position: fixed;
    background-color: #fff;
    left: 0;
    right: 0;
    z-index: 10;
}

.inner-banner {
    text-align: center;
    padding: 100px 0px;
    background: url(../images/banner-head.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
}

.inner-banner h1 {
    color: #ffff;
    text-transform: capitalize;
}

.inner-bx {
    padding: 50px 0px;
}

.inner-bx h2 {
    font-size: 25px;
    margin-top: 25px;
}

.ultimate-main .pkg-bx:hover {
    background: #ffffff!important;
}

.ultimate-main .pkg-bx:hover h3,
.ultimate-main .pkg-bx:hover h4,
.ultimate-main .pkg-bx:hover h6,
.ultimate-main .pkg-bx:hover ul li,
.ultimate-main .pkg-bx:hover ul li:before,
.ultimate-main .pkg-bx:hover p {
    color: #000000;
}

.ultimate-main .pkg-bx:hover a {
    background: #ec2527;
    color: #fff;
}

.ultimate-main .pkg-bx:hover .pkg-list::-webkit-scrollbar-track {
    background-color: #d4d4d4;
}

.ultimate-main .pkg-bx:hover .pkg-list::-webkit-scrollbar {
    background-color: #d4d4d4;
}

.ultimate-main .pkg-bx:hover .pkg-list::-webkit-scrollbar-thumb {
    background-color: #ec2527;
}

.initial-bx img:hover {
    transform: scale(1.1);
}

.initial-bx img {
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
}

.branding-main {
    margin-top: 95px;
}

.pride-main ul li a {
    border-radius: 20px;
    display: block;
}

.pride-main .tab-content .branding-main ul li:hover {
    background-color: transparent;
}

.pride-main .tab-content .branding-main ul li {
    display: inline-block;
    text-align: left;
    margin: 0px 0px 12px;
}

.service-exp {
    padding: 60px 0px;
}

.service-exp h5 {
    margin: 40px 0px 0px;
    font-size: 16px;
    color: #000000;
    line-height: normal;
}

.service-exp ul {
    text-align: right;
    display: inline-block;
    padding: 0px;
}

.service-exp ul li {
    width: 20%;
    float: left;
    display: inline-block;
    text-align: center;
}

.service-thumb {
    text-align: center;
}

.service-exp ul li h4 {
    font-size: 12px;
    color: #000000;
    margin-top: 20px;
    line-height: normal;
}

.type-main h2 {
    text-align: center;
    margin-bottom: 45px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
}

.type-main h3 {
    margin-top: 55px;
    font-size: 30px;
    color: #000000;
    line-height: normal;
    margin-bottom: 25px;
}

.type-main p {
    color: #000000;
    line-height: 30px;
}

.type-main a {
    display: inline-block;
    width: 200px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background-color: #ec2527;
    border-radius: 40px;
    font-size: 18px;
    color: #ffffff;
}

.type-main a:hover,
.type-main a:active,
.type-main a:focus {
    background-color: #000;
    color: #fff;
}

.type-main img {
    width: 100%;
    height: auto;
}

.type-main {
    margin-bottom: 70px;
}

.service-call-bx {
    border: 3px solid #ff0003;
    border-radius: 15px;
}

.ser-call-thumb {
    display: inline-block;
    vertical-align: top;
}

.ser-call-info {
    display: inline-block;
    margin: 32px 30px 0px;
}

.ser-call-info h4 {
    font-size: 26px;
    color: #000000;
    margin-bottom: 0px;
}

.ser-call-info h2 {
    font-size: 94px;
    color: #eb2427;
    margin-bottom: 0px;
    font-weight: 500;
}

.ser-call-link {
    display: inline-block;
    text-align: center;
}

.ser-call-link a.ser-call-first {
    width: 200px;
    height: 75px;
    line-height: 75px;
    display: inline-block;
    border: 2px solid #ff0003;
    border-radius: 40px 40px 0px 40px;
    margin-right: 20px;
    color: #ec2527;
    font-weight: 500;
    text-transform: uppercase;
}

.ser-call-link a.ser-call-second {
    width: 200px;
    height: 75px;
    line-height: 75px;
    display: inline-block;
    border: 2px solid #ff0003;
    border-radius: 0px 40px 40px 40px;
    color: #ec2527;
    font-weight: 500;
    text-transform: uppercase;
}

.ser-call-link h3 {
    margin-top: 12px;
    margin-bottom: 0px;
    color: #000000;
}

.ser-call-link h3 a {
    color: #000000;
    font-size: 18px;
}

.ser-call-link h3 a:hover,
.ser-call-link h3 a:active,
.ser-call-link h3 a:focus {
    color: #eb2427;
}

.ser-call-link a.ser-call-second:hover,
.ser-call-link a.ser-call-first:hover {
    background-color: #ec2527;
    color: #fff;
}

.service-call-to-action {
    margin-bottom: 65px;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    margin-bottom: 30px;
}

.service-testimonials h6 {
    line-height: normal;
    font-weight: 400;
    text-align: center;
    color: #000000;
}

.ser-testimonials-bx {
    position: relative;
    margin-top: 110px;
    background-color: #fff;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
    border-radius: 10px;
    padding: 100px 30px 30px;
}

.ser-testimonials-thumb {
    position: absolute;
    top: -93px;
}

.ser-testimonials-bx h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #000000;
    font-weight: 700;
}

.ser-testimonials-bx p {
    color: #000000;
    line-height: 30px;
}

.ser-testimonials-bx h4 {
    font-size: 18px;
    color: #ec2527;
}

.ser-testimonials-star i {
    font-size: 18px;
    color: #ffda72;
}

.brand-main h3 {
    font-size: 30px;
    color: #000000;
    font-weight: 600;
    margin-top: 20px;
}

.service-pro {
    padding: 60px 0px;
    text-align: center;
}

.service-pro h2 {
    text-align: center;
    font-size: 40px;
    color: #ec2527;
    font-weight: 600;
}

.ser-pro {
    margin-top: 35px;
    position: relative;
}

.ser-pro-thumb {
    width: 135px;
    height: 135px;
    margin: 0 auto;
    text-align: center;
    line-height: 135px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
    border-radius: 100%;
}

.ser-pro-thumb:hover {
    background-color: #ec2527;
}

.ser-pro h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
}

.ser-pro p {
    color: #000000;
    line-height: normal;
}

.ser-pro-left-line:before {
    content: url(../images/errow-right.png);
    position: absolute;
    right: -115px;
    top: 26px;
    z-index: -1;
}

.ser-pro-left-line:before {
    content: url(../images/errow-right.png);
    position: absolute;
    right: -115px;
    top: 26px;
    z-index: -1;
}

.ser-pro-center-line:before {
    content: url(../images/errow-left.png);
    position: absolute;
    right: -115px;
    top: 26px;
}

.pkg-tab .nav a.active {
    color: #ffffff;
    background-color: red;
}

.pkg-tab .nav a {
    display: block;
    padding: 15px 30px;
    text-align: center;
    line-height: normal;
    border: 1px solid #ec2527;
    border-radius: 10px;
    font-size: 18px;
    color: #ec2527;
    background-color: white;
    margin-right: 20px;
}

.pkg-tab .nav a h4 {
    font-size: 18px;
    margin-bottom: 0;
}

section.pkg-tab {
    padding-bottom: 90px;
}

section.top-bar {
    padding: 90px 0px 90px;
    background: url(../images/top-bar.jpg) no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    margin-bottom: 90px
}

section.top-bar h2 {
    font-size: 40px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}


/* Style the tab */

.tab {
    overflow: hidden;
    /* border: 1px solid #ccc; */
    /* background-color: #f1f1f1; */
    display: flex;
    justify-content: center;
    padding-top: 25px;
}


/* Style the buttons inside the tab */

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 7px 16px;
    transition: 0.3s;
    font-size: 17px;
    border-radius: 7px;
    margin-right: 15px;
}


/* Change background color of buttons on hover */

.tab button:hover {
    background-color: #ddd;
}


/* Create an active/current tablink class */

.tab button.active {
    background-color: #ec2527;
    color: white;
    border: none !important;
}


/* Style the tab content */

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: none;
    border-top: none;
}

.new-form input[type="text"],
.new-form input[type="tel"],
.new-form input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 0px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.new-form .submit {
    text-align: center;
}

.new-form input[type="submit"] {
    cursor: pointer;
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ffffff;
    color: #ec2527;
    font-size: 18px;
    border: 0px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    margin-top: 20px;
}

.new-form input[type="submit"]:hover,
.new-form input[type="submit"]:active,
.new-form input[type="submit"]:focus {
    background-color: #000;
    color: #fff;
}

.new-form {
    padding-top: 25px;
}


/* LOGO LANDING */

section.icon-bar img {
    height: 60px;
}

section.icon-bar {
    text-align: center;
}

section.icon-bar h5 {
    text-align: left;
    padding-top: 30px;
}

section.icon-bar .icon-row {
    display: flex;
    flex-direction: row;
}

section.icon-bar p {
    padding-top: 18px
}

h2.main-title {
    margin-bottom: 15px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    text-align: center;
}

p.main-sub-heading {
    text-align: center;
    font-size: 16px;
    color: #000000;
    max-width: 1070px;
    margin: 0 auto 30px;
    line-height: 35px;
}

h3.main-title {
    margin-bottom: 15px;
    font-size: 30px;
    color: #000000;
    font-weight: 400;
    text-align: center;
}

.sec-type-des .content {
    padding: 50px 60px 0 15px;
}

.sec-type-des .content p {
    line-height: 32px
}

section.cta .row {
    border: 3px red solid;
    border-radius: 14px;
}

section.cta h1 {
    color: red;
    font-size: 94px;
    font-weight: 600;
    margin-top: -20px;
    margin-left: -5px;
    margin-bottom: 0
}

section.cta p {
    color: black;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

section.cta .banner-main-cnt {
    text-align: center;
}

section.cta .banner-main-cnt a {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-top-left-radius: 65px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 65px;
    background-color: #ec2527;
    color: #ffffff;
    font-size: 20px;
    margin-right: 20px;
    border: 2px red solid;
}

section.cta .banner-main-cnt .btn-2 {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-top-left-radius: 0px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 85px;
    border-bottom-left-radius: 65px;
    background-color: #ffffff;
    color: #ec2527;
    font-size: 20px;
    margin-right: 20px;
    border: 2px red solid;
}

section.cta .banner-main-cnt .btn-2:hover {
    background-color: #ec2527;
    color: #ffffff;
}

section.cta .banner-main-cnt a:hover {
    background-color: #ffffff;
    color: #ec2527;
    font-size: 20px;
    margin-right: 20px;
    border: 2px red solid;
}

.pt-20 {
    padding-top: 20px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-65 {
    padding-top: 65px;
}

#slideshow {
    margin: 80px auto;
    position: relative;
    width: 240px;
    height: 240px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#slideshow>div {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

* {
    box-sizing: border-box
}

body {
    font-family: Verdana, sans-serif;
    margin: 0
}

.mySlides {
    display: none
}

img {
    vertical-align: middle;
}


/* Slideshow container */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Caption text */

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.testimonials-carosal .active,
.dot:hover {
    background-color: #717171;
}


/* Fading animation */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}


/* On smaller screens, decrease text size */

@media only screen and (max-width: 300px) {
    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

section.tetimonial-cards .testi-card {
    padding: 0px 50px 50px;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 36%);
    border-radius: 12px;
}

section.tetimonial-cards .testi-card img.testi-logo {
    margin-top: -75px;
    padding-bottom: 40px;
}

section.tetimonial-cards .testi-card h4 {
    padding-bottom: 10px;
}

section.tetimonial-cards .testi-card:hover {
    background-color: #ec2527;
    color: white;
}

section.Steps-process {
    text-align: center;
}

section.Steps-process .round-container {
    padding: 20px;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 36%);
    max-width: 110px;
    border-radius: 80px;
    margin: auto;
    background-color: white;
}

section.Steps-process .round-container:hover {
    background-color: #ec2527;
}

section.Steps-process h3 {
    font-size: 20px;
    padding-top: 30px
}

section.Steps-process .a1::before {
    content: url(../images/logo-landing/icons/bottom-curve.png);
    position: absolute;
    top: 30px;
    right: -40px;
    width: 45%;
}

section.Steps-process .a2::before {
    content: url(../images/logo-landing/icons/up-curve.png);
    position: absolute;
    top: 30px;
    right: -45px;
    width: 45%;
}

.dropbtn {
    color: #000000;
    border: none;
    background-color: transparent;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #ec2527;
    border-color: #ec2527;
}

.secondary-heading {}

h3.secondary-sub-heading {
    font-size: 21px;
    line-height: 30px;
}

.box-shadow {
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 17%);
}

body,
html {
    font-family: poppins!important;
}

a:hover,
a:active {
    text-decoration: none!important;
}

a {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

 :focus {
    outline: none;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ec2527;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9999;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 25px;
}

#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

nav.nav1 {
    display: none;
}


/*----------------------------------------Push Navigation---------------------------------*/

div#menuoverlay {
    display: none;
}

a#hamburg {
    position: fixed;
    top: 0px;
    left: 10px;
    width: 40px;
    height: 40px;
    z-index: 9;
    text-align: center;
    color: white;
    display: none;
    transition: all ease-out 0.3s;
}

a#hamburg i {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.nav1 {
    transition: all ease-out 0.3s;
    display: none;
}

.nav1 a {
    color: #000;
}

.nav1 ul {
    margin: 0;
    padding: 0;
    background-color: #303030;
}

.nav1 ul li {
    display: inline-block;
    position: relative;
    padding: 10px 20px!important;
}

.nav1 ul li>a {
    display: inline-block;
    padding: 10px;
}

.nav1 ul li>a>i {
    margin-left: 15px;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.1s;
}

.nav1 ul li ul {
    display: none;
    position: absolute;
    top: 38px;
    background: #222;
    width: 200px;
    text-align: left;
}

.nav1 .search-nav,
.nav1 .title {
    display: none;
}

.nav1 ul li ul li {
    display: block;
}

.nav1 ul li ul li a {
    display: block;
}

.nav1 ul li:hover>a {
    color: #000;
    text-decoration: none;
}

.nav1 ul li:hover>a>i {
    transform: rotateZ(90deg);
    -webkit-transform: rotateZ(90deg);
}

.nav1 ul li:hover ul {
    display: block;
}

.nav1 span.marrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    float: right;
    height: 0;
    margin: 8px 0 0 8px;
    width: 0;
}

.nav1 ul li.open span.marrow {
    border-left: 5px solid transparent;
    border-top: 0;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
}

@media screen and (max-width: 1024px) {
    .slider .item .carousel-caption {
        top: 80px;
    }
    .slider-text h3 {
        font-size: 40px;
    }
    .slider-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .slider-text .form-group label {
        font-size: 12px;
    }
}

.open-menu .nav-cross:before {
    content: "X";
    position: absolute;
    z-index: -1;
    font-size: 25px;
}

@media screen and (max-width: 767px) {
    .logo-bar nav {
        display: none!important;
    }
    a#hamburg {
        display: block;
    }
    main {
        transition: all ease-out 0.3s;
    }
    .nav1 .row {
        margin: 0px;
    }
    .nav1 {
        background-color: #fff;
        box-shadow: -2px 0 10px #999 inset;
        display: block;
        height: 100%;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        top: 0;
        transform: translateX(-250px);
        -webkit-transform: translateX(-250px);
        width: 250px;
    }
    .nav1 .search-nav,
    .nav1 .title {
        display: block;
    }
    .nav1 .search-nav input {
        border: 1px solid #2c313f;
        background-color: rgba(255, 255, 255, 0.2);
        padding: 5px;
        width: 100%;
        color: #000;
        margin: 10px 0;
    }
    .nav1 .search-nav input[type="submit"] {
        /* background: url("images/search-icon.png") no-repeat scroll center center; */
        border: 0;
        width: auto;
        font-size: 0;
        height: 16px;
        position: absolute;
        right: 7px;
        top: 8px;
        width: 16px;
        filter: invert(100%);
    }
    .nav1 .title {
        background: #000;
        color: #fff;
        font-size: 14px;
        margin: 0 -15px;
        padding: 6px 15px 6px;
    }
    .search-nav>form {
        position: relative;
    }
    .nav1 ul {
        text-align: left;
        background-color: transparent;
    }
    .nav1 ul li {
        display: block;
        border-bottom: 1px solid #999;
    }
    .nav1 ul li a {
        display: block;
        padding: 10px 0;
    }
    .nav1 ul li:hover>a {
        color: #000;
    }
    .nav1 ul li a>i {
        float: right;
    }
    .nav1 ul li ul {
        display: none;
        position: static;
        width: 100%;
        background-color: transparent;
        padding: 0 10px;
    }
    .nav1 ul li:hover>ul {
        display: none;
    }
    .nav1 ul li:hover>a>i {
        transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
    }
    .nav1 ul li.open>a {
        background-color: transparent;
    }
    .nav1 ul li.open>a>i {
        transform: rotateZ(90deg);
        -webkit-transform: rotateZ(90deg);
    }
    .nav1 ul li.open>ul {
        display: block;
    }
    div#menuoverlay {
        display: block;
        visibility: hidden;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transition: all ease-out 0.3s;
        z-index: 1;
        opacity: 0;
    }
    html.open-menu {
        overflow: hidden;
    }
    html.open-menu div#menuoverlay {
        visibility: visible;
        background: rgba(0, 0, 0, 0.5);
        min-height: 100vh;
        width: 100% !important;
        opacity: 1;
        width: calc(-150%);
        left: 250px;
    }
    html.open-menu a#hamburg {
        transform: translateX(250px);
        -webkit-transform: translateX(250px);
        z-index: 999;
    }
    html.open-menu main {
        transform: translateX(250px);
        -webkit-transform: translateX(250px);
    }
    html.open-menu nav.nav1 {
        z-index: 3;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
    .menu-main-menu-container ul ul ul li a {
        padding: 5px;
    }
    ul li.has-subnav .accordion-btn {
        color: #000;
        font-size: 24px;
        width: 20px !important;
        float: right;
        line-height: inherit !important;
    }
    .nav1 ul li:last-child {
        border: 0;
    }
    .nav-cross.open>span {
        background: #fff;
    }
    /*---------------------Hamberg Icon --------------------------------------------- */
    .nav-cross {
        width: 24px;
        height: 40px;
        position: relative;
        margin: 0px auto;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    .nav-cross span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #000;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    .open-menu .nav-cross span {
        display: none;
    }
    #nav-icon1 span:nth-child(1) {
        top: 0px;
    }
    #nav-icon1 span:nth-child(2) {
        top: 18px;
    }
    #nav-icon1 span:nth-child(3) {
        top: 36px;
    }
    #nav-icon1.open span:nth-child(1) {
        top: 18px;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
    }
    #nav-icon1.open span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    #nav-icon1.open span:nth-child(3) {
        top: 18px;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
    }
    .nav-cross span:nth-child(1) {
        top: 12px;
        transform-origin: left center;
        -webkit-transform-origin: left center;
    }
    .nav-cross span:nth-child(2) {
        top: 20px;
        transform-origin: left center;
        -webkit-transform-origin: left center;
    }
    .nav-cross span:nth-child(3) {
        top: 28px;
        transform-origin: left center;
        -webkit-transform-origin: left center;
    }
    .nav-cross.open span:nth-child(1) {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        top: 11px;
        left: 4px;
    }
    .nav-cross.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }
    .nav-cross.open span:nth-child(3) {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        top: 28px;
        left: 4px;
    }
}

#sync1 .item {
    background: #0c83e7;
    padding: 80px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}

#sync2 .item {
    background: #C9C9C9;
    padding: 10px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

#sync2 .item h1 {
    font-size: 18px;
}

#sync2 .synced .item {
    background: #0c83e7;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
    background-color: #ec2527;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}

.pkg-list::-webkit-scrollbar-track {
    background-color: #d4d4d4;
}

.pkg-list::-webkit-scrollbar {
    width: 5px;
    background-color: #d4d4d4;
}

.pkg-list::-webkit-scrollbar-thumb {
    background-color: #ec2527;
    border-radius: 30px;
}

 ::selection {
    background: #ec2527;
    color: #ffffff;
}

.topbar {
    padding-top: 32px;
    padding-bottom: 15px;
    box-shadow: 0px 11px 43px 0px rgb(98 143 144 / 33%);
}

.topbar-menu ul {
    margin: 0px;
    padding: 0px;
}

.topbar-menu ul li {
    display: inline-block;
    margin-right: 25px;
}

.topbar-right {
    text-align: right;
}

.topbar-menu {
    display: inline-block;
}

.topbar-cnt {
    display: inline-block;
}

.topbar-menu ul li a {
    color: #000000;
    border-bottom: 2px solid transparent;
}

.topbar-menu ul li a:hover,
.topbar-menu ul li a:active,
.topbar-menu ul li a:focus,
.topbar-menu ul li.active a {
    color: #ec2527;
    border-color: #ec2527;
}

.cnt-tel {
    display: inline-block;
    margin-right: 15px;
}

.cnt-tel a {
    color: #000000;
}

.cnt-tel a i {
    color: #ec2527;
}

.hire-btn {
    display: inline-block;
}

.hire-btn a {
    display: block;
    /* padding: 18px 30px; */
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    line-height: normal;
    background-color: #ec2527;
    font-size: 23px;
    color: #ffffff;
    font-weight: 700;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-left: 30px;
}

.hire-btn a:hover,
.hire-btn a:active,
.hire-btn a:focus {
    background-color: #000;
    color: #fff;
}

.cnt-tel a:hover,
.cnt-tel a:active,
.cnt-tel a:focus {
    color: #ec2527;
}

.topbar-right {
    margin-top: 11px;
}

.banner-main {
    padding: 135px 0px 155px;
    background: url(../images/banner-head.jpg) no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
}

.banner-main h1 {
    font-size: 36px;
    color: #ffffff;
    font-weight: 700;
    line-height: normal;
}

.banner-main p {
    font-size: 16px;
    color: #ffffff;
    line-height: 35px;
    padding-right: 50px;
}

.banner-main ul {
    padding-left: 18px;
    list-style: none;
    position: relative;
    margin: 40px 0 60px 0;
}

.banner-main ul li {
    font-size: 16px;
    color: #ffffff;
    line-height: 16px;
    padding-top: 16px;
    padding-left: 15px;
}

.banner-main ul li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    color: #fb2224;
    font: normal normal normal 20px/1 FontAwesome;
}

.banner-main-cnt a {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ec2527;
    color: #ffffff;
    font-size: 18px;
    margin-right: 20px;
}

.banner-main-cnt .btn-2 {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ffffff;
    color: #000000;
    font-size: 18px;
    margin-right: 20px;
}

.banner-main-cnt .btn-2:hover {
    background-color: #ec2527;
    color: #ffffff;
}

.banner-main-cnt a:hover,
.banner-main-cnt a:active,
.banner-main-cnt a:focus {
    background-color: #fff;
    color: #000;
}

.banner-main-cnt {
    margin-top: 25px;
}

.form-banner {
    margin-left: auto;
    padding: 30px;
    width: 95%;
    background-color: #ec2527c9;
    border-radius: 20px;
    box-shadow: 0px 0px 49px 0px rgb(236 37 39 / 65%);
}

.form-banner h2 {
    text-align: center;
    font-size: 32px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-banner h4 {
    text-align: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 19px;
}

.form-banner h4 a {
    color: #0b0e11;
    font-size: 22px;
    font-weight: 600;
}

.form-banner h4 a:hover {
    color: #ffffff;
    text-decoration: underline !important;
}

.form-banner label {
    margin-top: 15px;
    color: #ffffff;
    line-height: normal;
    display: block;
}

.form-banner input[type="text"],
.form-banner input[type="tel"],
.form-banner input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 0px;
    border-radius: 10px;
}

.form-banner textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 0px;
    resize: none;
    border-radius: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit input[type="submit"] {
    cursor: pointer;
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ffffff;
    color: #ec2527;
    font-size: 18px;
    border: 0px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.form-submit input[type="submit"]:hover,
.form-submit input[type="submit"]:active,
.form-submit input[type="submit"]:focus {
    background-color: #000;
    color: #fff;
}

img.sub-heading-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}

.pride-main h2 {
    margin-bottom: 15px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    text-align: center;
}

.pride-main p {
    font-size: 16px;
    color: #000000;
    line-height: normal;
    margin-bottom: 60px;
    text-align: center;
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 65%;
}

.pride-main .tab-content p {
    text-align: left;
    margin: 0;
    max-width: 85%;
    padding-bottom: 30px;
}

.pride-main .tab-content h2 {
    text-align: left;
}

.pride-main .tab-content h3 {
    text-align: left;
    font-size: 25px
}

.pride-main ul {
    padding: 0px;
    margin: 0px;
}

.pride-main .nav-tabs img {
    width: 70px;
}

.pride-main ul li {
    width: 17%;
    display: inline-block;
    text-align: center;
    margin: 0px 18px;
    border-radius: 20px;
}

.pride-info {
    padding: 12px;
    border: 2px solid #ff0003;
    border-radius: 20px;
    height: 130px;
    width: 160px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pride-info h4 {
    /* margin: 20px 0px 0px; */
    font-size: 18px;
    color: #ec2527;
    font-weight: 400;
    line-height: normal;
}

.pride-main ul li:first-child {
    margin-left: 0px;
}

.pride-main ul li:last-child {
    margin-right: 0px;
}

.pride-main ul li:hover,
.pride-main ul li:active,
.pride-main ul li:focus,
.pride-main ul.nav.nav-tabs li a.active {
    background-color: #ec2527;
}

.pride-main ul li:hover h4,
.pride-main ul li:active h4,
.pride-main ul li:focus h4,
.pride-main ul.nav.nav-tabs li a.active h4 {
    color: #ffffff;
}

.pride-main ul li:hover img,
.pride-main ul li:active img,
.pride-main ul li:focus img,
.pride-main ul.nav.nav-tabs li a.active img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.branding-main h2 {
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    margin-bottom: 20px;
}

.branding-main h3 {
    font-size: 30px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: normal;
}

.branding-main p {
    font-size: 16px;
    color: #000000;
    line-height: normal;
}

.branding-main ul {
    padding: 0px;
    margin-bottom: 30px;
}

.branding-main ul li {
    display: inline-block;
    width: 49%;
    line-height: normal;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    color: #000000;
    padding-left: 23px;
}

.branding-main ul li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    top: 4px;
    left: 0;
    color: #ec2527;
}

.branding-btn a {
    display: inline-block;
    width: 220px;
    height: 75px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ec2527;
    line-height: 75px;
    font-size: 18px;
    color: #ffffff !important;
    margin-right: 15px;
}

.branding-btn a:hover {
    border: 1px solid #ec2527;
    color: #000000 !important;
    margin-right: 15px;
    background-color: white !important;
}

.branding-btn a:first-child,
.branding-btn a:hover,
.branding-btn a:active,
.branding-btn a:focus {
    background-color: #ec2527;
    color: #000000;
}

.branding-img {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.exp-main {
    text-align: center;
    margin: 40px 0;
    padding: 10px 0 80px 0;
    background: url(../images/digital-marketing/sec-bg.jpg) no-repeat;
    color: white;
    background-size: cover;
}

.exp-main h2 {
    color: white !important;
}

.pt-65 {
    padding-top: 65px;
}

.exp-main h2 {
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    margin-bottom: 15px;
}

.exp-main p {
    font-size: 16px;
    color: #ffffff;
    max-width: 850px;
    margin: 0 auto;
}

.exp-info {
    margin-top: 40px;
    padding: 20px 25px 20px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
    border-radius: 20px;
    background-color: white;
}

.exp-info h3 {
    font-size: 54px;
    color: #ec2527;
    margin-bottom: 10px;
}

.exp-info p {
    margin-bottom: 0px;
    font-size: 20px;
    color: #ec2527;
    text-transform: uppercase;
}

.exp-info:hover h3,
.exp-info:hover p {
    color: #fff;
}

.exp-info:hover {
    background-color: #ec2527;
}

.mark-main {
    margin-bottom: 85px;
    padding-top: 60px;
}

.mark-main h2 {
    margin-bottom: 25px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    max-width: 1170px;
    margin: 0 auto 20px;
    text-align: center;
}

.mark-main p {
    font-size: 16px;
    color: #000000;
    max-width: 1170px;
    margin: 0 auto 20px;
    text-align: center;
}

.mark-tab {
    margin-top: 30px;
}

.mark-tab ul.tabs-nav {
    padding: 0px;
    max-width: 1170px;
    margin: 0 auto 10px;
    text-align: center;
}

.mark-tab ul.tabs-nav li {
    display: inline-block;
    margin-right: 20px;
}

.mark-tab ul.tabs-nav li a {
    display: block;
    padding: 10px 30px;
    text-align: center;
    line-height: normal;
    border: 1px solid #ec2527;
    border-radius: 10px;
    font-size: 18px;
    color: #ec2527;
}

.mark-tab ul.tabs-nav li.tab-active a,
.mark-tab ul.tabs-nav li a:hover,
.mark-tab ul.tabs-nav li a:active,
.mark-tab ul.tabs-nav li a:focus {
    background-color: #ec2527;
    color: #ffffff;
}

.galrey-bx ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

.galrey-bx ul li {
    width: 18.5%;
    display: inline-block;
    margin: 20px 10px 0px;
}

.mark-main .col-12.col-sm-12.col-md-12.col-lg-12 {
    padding-left: 0px;
    padding-right: 0px;
}

.pkg-main {
    padding-bottom: 15px;
}

.pkg-main h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
}

.pkg-main p.pkg-para {
    font-size: 16px;
    color: #000000;
    text-align: center;
    max-width: 1070px;
    margin: 0 auto 20px;
}

.pkg-bx {
    padding: 35px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 17%);
}

.pkg-bx h3 {
    text-align: center;
    font-size: 29px;
    color: #000000;
    font-weight: 900;
    margin-bottom: 0px;
}

.pkg-bx h4 {
    margin-top: 25px;
    text-align: center;
    font-size: 50px;
    color: #ec2527;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
}

.pkg-bx h5 {
    text-align: center;
    font-size: 24px;
    color: #000000;
    margin-bottom: 35px;
}

.pkg-bx h6 {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 15px;
}

.pkg-list {
    height: 225px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.pkg-list ul {
    padding: 0px;
}

.pkg-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    width: 100%;
}

.pkg-list ul li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #ec2527;
    top: 2px;
}

.pkg-chat {
    text-align: center;
}

.pkg-chat a {
    display: inline-block;
    margin-bottom: 20px;
    width: 160px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background-color: #ec2527;
    border-radius: 12px;
    font-size: 18px;
    color: #ffffff;
}

.pkg-chat p {
    margin-bottom: 0px;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

.pkg-bx {
    margin-top: 18px;
}

.pkg-bx:hover {
    background: url(../images/pkg-bg.png) no-repeat;
    background-size: cover;
}

.pkg-bx:hover h3,
.pkg-bx:hover h4,
.pkg-bx:hover h6,
.pkg-bx:hover ul li,
.pkg-bx:hover ul li:before,
.pkg-bx:hover p {
    color: #fff;
}

.pkg-bx:hover .pkg-chat a {
    background-color: #fff;
    color: #ec2527;
}

.pkg-bx:hover .pkg-list::-webkit-scrollbar-track {
    background-color: #aa423b;
}

.pkg-bx:hover .pkg-list::-webkit-scrollbar {
    background-color: #aa423b;
}

.pkg-bx:hover .pkg-list::-webkit-scrollbar-thumb {
    background-color: #ffffff;
}

.ultimate-main {
    padding: 110px 0px;
    background: url(../images/combo-bg.jpg) no-repeat;
    background-size: cover;
}

.ultimate-main h2 {
    margin-top: 90px;
    font-size: 40px;
    color: #ffffff;
    line-height: normal;
}

.ultimate-main p {
    font-size: 16px;
    color: #ffffff;
    line-height: 40px;
    max-width: 600px;
}

.ultimate-btn a {
    display: inline-block;
    width: 170px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 12px;
    background-color: #fff;
    font-size: 18px;
    color: #ec2527;
}

.ultimate-img {
    display: inline-block;
    margin-left: 30px;
}

.ultimate-btn {
    margin-top: 30px;
}

.ultimate-main h2 {
    margin-bottom: 20px;
}

.ultimate-main .pkg-bx h3 {
    text-align: left;
}

.ultimate-main .pkg-bx .pkg-chat h4 {
    display: inline-block;
    margin-top: 0px;
}

.ultimate-main .pkg-bx h5 {
    display: inline-block;
}

.ultimate-main .pkg-bx h6 {
    font-size: 20px;
    font-weight: 700;
}

.ultimate-main .pkg-bx .pkg-chat h4 a {
    width: auto;
    height: unset!important;
    line-height: normal;
    background-color: transparent;
    border-radius: unset;
    font-size: 16px;
    color: #000000;
    vertical-align: middle;
}

.ultimate-main .pkg-bx .pkg-chat {
    text-align: left;
}

.ultimate-main .pkg-bx a.chat-pkg-link {
    float: right;
}

.ultimate-main .pkg-bx h4 {
    display: inline-block;
}

.skills-main {
    padding: 85px 0px;
}

.skills-main h2 {
    font-size: 40px;
    color: #ec2527;
    line-height: normal;
    text-align: center;
    font-weight: 500;
}

.skills-main p {
    text-align: center;
    font-size: 16px;
    color: #000000;
    max-width: 1070px;
    margin: 0 auto 30px;
    line-height: 35px;
}

.skills-main ul {
    padding: 50px 50px 50px;
    text-align: center;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 36%);
    border-radius: 12px;
}

.skills-main ul li {
    display: inline-block;
    margin: 0px 0px 0px 65px;
}

.skills-main ul li:first-child {
    margin-left: 0px;
}

.skills-main ul li .ultimate-bx h4 {
    margin-bottom: 0px;
    margin-top: 20px;
    font-size: 18px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 500;
}

.skills-main .ultimate-btn {
    margin: 0px;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: -25px;
}

.skills-main .ultimate-btn a {
    display: block;
    width: 210px;
    height: 85px;
    text-align: center;
    background-color: #ec2527;
    font-size: 18px;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    line-height: normal;
    padding-top: 16px;
    margin: 0 auto;
}

.skills-main .ultimate-btn a:hover,
.skills-main .ultimate-btn a:active,
.skills-main .ultimate-btn a:focus {
    background-color: #000;
    color: #fff;
}

.ready-main h2 {
    margin-top: 25px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    margin-bottom: 25px;
}

.ready-main p {
    font-size: 16px;
    color: #000000;
    line-height: 35px;
}

.ready-main .ready-cnt a {
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
}

.ready-main .ready-cnt {
    margin-bottom: 30px;
}

.ready-link a {
    display: inline-block;
    width: 220px;
    height: 75px;
    text-align: center;
    line-height: 72px;
    border: 2px solid #ff0003;
    border-radius: 12px;
    margin-right: 15px;
    font-size: 18px;
    color: #ec2527;
    font-weight: 500;
    text-transform: uppercase;
}

.ready-link a:hover,
.ready-link a:active,
.ready-link a:focus,
.ready-link a:first-child {
    background-color: #ec2527;
    color: #fff;
}

.initial-main {
    text-align: center;
    padding: 80px 0px;
}

.initial-main .initial-bx h2 {
    margin: 25px 0px 20px;
    font-size: 28px;
    color: #000000;
    font-weight: 500;
}

.initial-main .initial-bx p {
    color: #000000;
    line-height: normal;
    max-width: 260px;
    margin: 0 auto;
}

.initial-bx {
    position: relative;
}

.initial-bx.errow-initial-left:after {
    content: url(../images/errow-left.png);
    position: absolute;
    top: 60px;
    right: -107px;
}

.initial-bx.errow-initial-right:before {
    content: url(../images/errow-right.png);
    position: absolute;
    top: 60px;
    left: -107px;
}

.brand-main {
    text-align: center;
    margin-bottom: 90px;
}

.brand-main h2 {
    margin-bottom: 30px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
}

.brand-main p {
    font-size: 16px;
    color: #000000;
    margin: 0 auto;
    max-width: 935px;
}

.brand-main img {
    margin-top: 50px;
}

.widget-bx {
    padding: 45px 0px 30px;
    background: url(../images/footer-bg.jpg) no-repeat;
    background-size: cover;
}

.f-logo a {
    display: inline-block;
}

.widget-bx .f-logo p {
    margin: 20px 0px 0px 0px;
    font-size: 12px;
    color: #ffffff;
    line-height: normal;
    font-weight: 300;
}

.widget-bx .widget-info h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 50px;
}

.widget-bx .widget-info ul.f-links {
    margin: 0px;
    padding-left: 0px;
}

.widget-bx .widget-info ul.f-links li {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.widget-bx .widget-info ul.f-links li a {
    color: #fff;
}

.widget-bx .widget-info ul.address-links {
    padding-inline: 0px;
}

.widget-bx .widget-info ul.address-links li {
    display: block;
    color: #ffffff;
    font-size: 14px;
    position: relative;
    padding-left: 26px;
    margin-bottom: 5px;
}

.widget-bx .widget-info ul.address-links li a {
    color: #ffffff;
}

.widget-bx .widget-info ul.address-links li i {
    position: absolute;
    left: 0;
    top: 2px;
}

ul.f-socail {
    margin: 0px;
    padding: 0px;
}

ul.f-socail li {
    display: inline-block;
    margin-right: 5px;
}

ul.f-socail li a {
    font-size: 20px;
    color: #fff;
}

ul.f-socail li a:hover i,
ul.f-socail li a:active i,
ul.f-socail li a:focus i {
    transform: rotate(360deg);
    -webkit-transform: rotate( 360deg);
    color: #000;
}

ul.f-socail li a i {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}

.widget-info a:hover {
    color: #000;
}

.widget-bx .widget-info ul.f-links li a:hover,
.widget-bx .widget-info ul.f-links li a:active,
.widget-bx .widget-info ul.f-links li a:focus {
    color: #000;
}

.widget-bx .widget-info ul.address-links li a:hover,
.widget-bx .widget-info ul.address-links li a:active,
.widget-bx .widget-info ul.address-links li a:focus {
    color: #000;
}

.copyright-bx {
    text-align: center;
    padding: 15px 0px;
    background-color: #000000;
    font-size: 14px;
    color: #ffffff;
}

.galrey-bx ul li a {
    display: block;
}

.galrey-bx ul li a img {
    width: 100%;
    height: auto;
}

.galrey-bx {
    text-align: center;
}

.galrey-bx ul li a:before {
    content: "";
    background: url(../images/galrey-icon.png) no-repeat;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    visibility: hidden;
}

.galrey-bx ul li a {
    position: relative;
}

.galrey-bx ul li a:hover:before {
    visibility: visible;
}

.galrey-bx ul li a:hover {
    opacity: 0.9;
}

.testimonials-main {
    padding-top: 75px;
    text-align: center;
}

.testimonials-main .col-12.col-sm-12.col-md-12.col-lg-12 {
    padding-left: 0px;
    padding-right: 0px;
}

.testimonials-slider {
    padding: 75px 0px 125px;
    background: url(../images/testimonials-bg.jpg) no-repeat;
    background-size: cover;
}

.teestimonials-icon {
    margin-bottom: 50px;
}

.testimonials-slider h2 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 30px;
}

.testimonials-slider p {
    font-size: 16px;
    color: #ffffff;
    max-width: 940px;
    margin: 0 auto 35px;
}

.testimonials-slider h3 {
    font-size: 30px;
    color: #ffffff;
}

.testimonials-slider h4 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
}

.sl-nav {
    padding-top: 50px;
}

.testimonials-main {
    position: relative;
}

.sl-nav ul {
    margin: 0px;
    padding: 0px;
}

.sl-nav ul li {
    display: inline-block;
    padding: 0px 20px;
    position: relative;
}

.sl-nav ul li.active a.button.secondary.url:before {
    background-color: #fff;
}

.sl-nav ul li a:before {
    content: "";
    width: 100%;
    position: absolute;
    top: -115px;
    height: 65px;
    left: 0;
    right: 0;
    background-color: transparent;
    border-radius: 10px 10px 0px 0px;
}

.sl-nav ul li a {
    position: relative;
    display: block;
}

.topbar.stickyheader {
    position: fixed;
    background-color: #fff;
    left: 0;
    right: 0;
    z-index: 10;
}

.inner-banner {
    text-align: center;
    padding: 100px 0px;
    background: url(../images/banner-head.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
}

.inner-banner h1 {
    color: #ffff;
    text-transform: capitalize;
}

.inner-bx {
    padding: 50px 0px;
}

.inner-bx h2 {
    font-size: 25px;
    margin-top: 25px;
}

.ultimate-main .pkg-bx:hover {
    background: #ffffff!important;
}

.ultimate-main .pkg-bx:hover h3,
.ultimate-main .pkg-bx:hover h4,
.ultimate-main .pkg-bx:hover h6,
.ultimate-main .pkg-bx:hover ul li,
.ultimate-main .pkg-bx:hover ul li:before,
.ultimate-main .pkg-bx:hover p {
    color: #000000;
}

.ultimate-main .pkg-bx:hover a {
    background: #ec2527;
    color: #fff;
}

.ultimate-main .pkg-bx:hover .pkg-list::-webkit-scrollbar-track {
    background-color: #d4d4d4;
}

.ultimate-main .pkg-bx:hover .pkg-list::-webkit-scrollbar {
    background-color: #d4d4d4;
}

.ultimate-main .pkg-bx:hover .pkg-list::-webkit-scrollbar-thumb {
    background-color: #ec2527;
}

.initial-bx img:hover {
    transform: scale(1.1);
}

.initial-bx img {
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
}

.branding-main {
    margin-top: 95px;
}

.pride-main ul li a {
    border-radius: 20px;
    display: block;
}

.pride-main .tab-content .branding-main ul li:hover {
    background-color: transparent;
}

.pride-main .tab-content .branding-main ul li {
    display: inline-block;
    text-align: left;
    margin: 0px 0px 12px;
}

.service-exp {
    padding: 60px 0px;
}

.service-exp h5 {
    margin: 40px 0px 0px;
    font-size: 16px;
    color: #000000;
    line-height: normal;
}

.service-exp ul {
    text-align: right;
    display: inline-block;
    padding: 0px;
}

.service-exp ul li {
    width: 20%;
    float: left;
    display: inline-block;
    text-align: center;
}

.service-thumb {
    text-align: center;
}

.service-exp ul li h4 {
    font-size: 12px;
    color: #000000;
    margin-top: 20px;
    line-height: normal;
}

.type-main h2 {
    text-align: center;
    margin-bottom: 45px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
}

.type-main h3 {
    margin-top: 55px;
    font-size: 30px;
    color: #000000;
    line-height: normal;
    margin-bottom: 25px;
}

.type-main p {
    color: #000000;
    line-height: 30px;
}

.type-main a {
    display: inline-block;
    width: 200px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background-color: #ec2527;
    border-radius: 40px;
    font-size: 18px;
    color: #ffffff;
}

.type-main a:hover,
.type-main a:active,
.type-main a:focus {
    background-color: #000;
    color: #fff;
}

.type-main img {
    width: 100%;
    height: auto;
}

.type-main {
    margin-bottom: 70px;
}

.service-call-bx {
    border: 3px solid #ff0003;
    border-radius: 15px;
}

.ser-call-thumb {
    display: inline-block;
    vertical-align: top;
}

.ser-call-info {
    display: inline-block;
    margin: 32px 30px 0px;
}

.ser-call-info h4 {
    font-size: 26px;
    color: #000000;
    margin-bottom: 0px;
}

.ser-call-info h2 {
    font-size: 94px;
    color: #eb2427;
    margin-bottom: 0px;
    font-weight: 500;
}

.ser-call-link {
    display: inline-block;
    text-align: center;
}

.ser-call-link a.ser-call-first {
    width: 200px;
    height: 75px;
    line-height: 75px;
    display: inline-block;
    border: 2px solid #ff0003;
    border-radius: 40px 40px 0px 40px;
    margin-right: 20px;
    color: #ec2527;
    font-weight: 500;
    text-transform: uppercase;
}

.ser-call-link a.ser-call-second {
    width: 200px;
    height: 75px;
    line-height: 75px;
    display: inline-block;
    border: 2px solid #ff0003;
    border-radius: 0px 40px 40px 40px;
    color: #ec2527;
    font-weight: 500;
    text-transform: uppercase;
}

.ser-call-link h3 {
    margin-top: 12px;
    margin-bottom: 0px;
    color: #000000;
}

.ser-call-link h3 a {
    color: #000000;
    font-size: 18px;
}

.ser-call-link h3 a:hover,
.ser-call-link h3 a:active,
.ser-call-link h3 a:focus {
    color: #eb2427;
}

.ser-call-link a.ser-call-second:hover,
.ser-call-link a.ser-call-first:hover {
    background-color: #ec2527;
    color: #fff;
}

.service-call-to-action {
    margin-bottom: 65px;
}

.service-testimonials h2 {
    text-align: center;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    margin-bottom: 30px;
}

.service-testimonials h6 {
    line-height: normal;
    font-weight: 400;
    text-align: center;
    color: #000000;
}

.ser-testimonials-bx {
    position: relative;
    margin-top: 110px;
    background-color: #fff;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
    border-radius: 10px;
    padding: 100px 30px 30px;
}

.ser-testimonials-thumb {
    position: absolute;
    top: -93px;
}

.ser-testimonials-bx h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #000000;
    font-weight: 700;
}

.ser-testimonials-bx p {
    color: #000000;
    line-height: 30px;
}

.ser-testimonials-bx h4 {
    font-size: 18px;
    color: #ec2527;
}

.ser-testimonials-star i {
    font-size: 18px;
    color: #ffda72;
}

.brand-main h3 {
    font-size: 30px;
    color: #000000;
    font-weight: 600;
    margin-top: 20px;
}

.service-pro {
    padding: 60px 0px;
    text-align: center;
}

.service-pro h2 {
    text-align: center;
    font-size: 40px;
    color: #ec2527;
    font-weight: 600;
}

.ser-pro {
    margin-top: 35px;
    position: relative;
}

.ser-pro-thumb {
    width: 135px;
    height: 135px;
    margin: 0 auto;
    text-align: center;
    line-height: 135px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
    border-radius: 100%;
}

.ser-pro-thumb:hover {
    background-color: #ec2527;
}

.ser-pro h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
}

.ser-pro p {
    color: #000000;
    line-height: normal;
}

.ser-pro-left-line:before {
    content: url(../images/errow-right.png);
    position: absolute;
    right: -115px;
    top: 26px;
    z-index: -1;
}

.ser-pro-left-line:before {
    content: url(../images/errow-right.png);
    position: absolute;
    right: -115px;
    top: 26px;
    z-index: -1;
}

.ser-pro-center-line:before {
    content: url(../images/errow-left.png);
    position: absolute;
    right: -115px;
    top: 26px;
}

.pkg-tab .nav a.active {
    color: #ffffff;
    background-color: red;
}

.pkg-tab .nav a {
    display: block;
    padding: 15px 30px;
    text-align: center;
    line-height: normal;
    border: 1px solid #ec2527;
    border-radius: 10px;
    font-size: 18px;
    color: #ec2527;
    background-color: white;
    margin-right: 20px;
}

.pkg-tab .nav a h4 {
    font-size: 18px;
    margin-bottom: 0;
}

section.pkg-tab {
    padding-bottom: 90px;
}

section.top-bar {
    padding: 90px 0px 90px;
    background: url(../images/top-bar.jpg) no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    margin-bottom: 90px
}

section.top-bar h2 {
    font-size: 40px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}


/* Style the tab */

.tab {
    overflow: hidden;
    /* border: 1px solid #ccc; */
    /* background-color: #f1f1f1; */
    display: flex;
    justify-content: center;
    padding-top: 25px;
}


/* Style the buttons inside the tab */

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 7px 16px;
    transition: 0.3s;
    font-size: 17px;
    border-radius: 7px;
    margin-right: 15px;
}


/* Change background color of buttons on hover */

.tab button:hover {
    background-color: #ddd;
}


/* Create an active/current tablink class */

.tab button.active {
    background-color: #ec2527;
    color: white;
    border: none !important;
}


/* Style the tab content */

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: none;
    border-top: none;
}

.new-form input[type="text"],
.new-form input[type="tel"],
.new-form input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 0px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.new-form .submit {
    text-align: center;
}

.new-form input[type="submit"] {
    cursor: pointer;
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 65px;
    background-color: #ffffff;
    color: #ec2527;
    font-size: 18px;
    border: 0px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    margin-top: 20px;
}

.new-form input[type="submit"]:hover,
.new-form input[type="submit"]:active,
.new-form input[type="submit"]:focus {
    background-color: #000;
    color: #fff;
}

.new-form {
    padding-top: 25px;
}


/* LOGO LANDING */

section.icon-bar img {
    height: 60px;
}

section.icon-bar {
    text-align: center;
}

section.icon-bar h5 {
    text-align: left;
    padding-top: 30px;
}

section.icon-bar .icon-row {
    display: flex;
    flex-direction: row;
}

section.icon-bar p {
    padding-top: 18px
}

h2.main-title {
    margin-bottom: 15px;
    font-size: 40px;
    color: #ec2527;
    font-weight: 500;
    text-align: center;
}

p.main-sub-heading {
    text-align: center;
    font-size: 16px;
    color: #000000;
    max-width: 1070px;
    margin: 0 auto 30px;
    line-height: 35px;
}

h3.main-title {
    margin-bottom: 15px;
    font-size: 30px;
    color: #000000;
    font-weight: 400;
    text-align: center;
}

.sec-type-des .content {
    padding: 50px 60px 0 15px;
}

.sec-type-des .content p {
    line-height: 32px
}

section.cta .row {
    border: 3px red solid;
    border-radius: 14px;
}

section.cta h1 {
    color: red;
    font-size: 94px;
    font-weight: 600;
    margin-top: -20px;
    margin-left: -5px;
    margin-bottom: 0
}

section.cta p {
    color: black;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

section.cta .banner-main-cnt {
    text-align: center;
}

section.cta .banner-main-cnt a {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-top-left-radius: 65px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 65px;
    background-color: #ec2527;
    color: #ffffff;
    font-size: 20px;
    margin-right: 20px;
    border: 2px red solid;
}

section.cta .banner-main-cnt .btn-2 {
    display: inline-block;
    width: 165px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-top-left-radius: 0px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 85px;
    border-bottom-left-radius: 65px;
    background-color: #ffffff;
    color: #ec2527;
    font-size: 20px;
    margin-right: 20px;
    border: 2px red solid;
}

section.cta .banner-main-cnt .btn-2:hover {
    background-color: #ec2527;
    color: #ffffff;
}

section.cta .banner-main-cnt a:hover {
    background-color: #ffffff;
    color: #ec2527;
    font-size: 20px;
    margin-right: 20px;
    border: 2px red solid;
}

.pt-20 {
    padding-top: 20px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-65 {
    padding-top: 65px;
}

#slideshow {
    margin: 80px auto;
    position: relative;
    width: 240px;
    height: 240px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#slideshow>div {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

* {
    box-sizing: border-box
}

body {
    font-family: Verdana, sans-serif;
    margin: 0
}

.mySlides {
    display: none
}

img {
    vertical-align: middle;
}


/* Slideshow container */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Caption text */

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.testimonials-carosal .active,
.dot:hover {
    background-color: #717171;
}


/* Fading animation */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}


/* On smaller screens, decrease text size */

@media only screen and (max-width: 300px) {
    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

section.tetimonial-cards .testi-card {
    padding: 0px 50px 50px;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 36%);
    border-radius: 12px;
}

section.tetimonial-cards .testi-card img.testi-logo {
    margin-top: -75px;
    padding-bottom: 40px;
}

section.tetimonial-cards .testi-card h4 {
    padding-bottom: 10px;
}

section.tetimonial-cards .testi-card:hover {
    background-color: #ec2527;
    color: white;
}

section.Steps-process {
    text-align: center;
}

section.Steps-process .round-container {
    padding: 20px;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 36%);
    max-width: 110px;
    border-radius: 80px;
    margin: auto;
    background-color: white;
}

section.Steps-process .round-container:hover {
    background-color: #ec2527;
}

section.Steps-process h3 {
    font-size: 20px;
    padding-top: 30px
}

section.Steps-process .a1::before {
    content: url(../images/logo-landing/icons/bottom-curve.png);
    position: absolute;
    top: 30px;
    right: -40px;
    width: 45%;
}

section.Steps-process .a2::before {
    content: url(../images/logo-landing/icons/up-curve.png);
    position: absolute;
    top: 30px;
    right: -45px;
    width: 45%;
}

section.Steps-process .anew::before {
    content: url(../images/ecom/teer.png);
    position: absolute;
    top: 30px;
    right: -60px;
    width: 45%;
}

.dropbtn {
    color: #000000;
    border: none;
    background-color: transparent;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #ec2527;
    border-color: #ec2527;
}

.secondary-heading {
    font-size: 36px !important;
    font-weight: 500 !important;
    color: black !important;
}

h3.secondary-sub-heading {
    font-size: 21px;
    line-height: 30px;
}

.box-shadow {
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 17%);
}

section#web-sec-2 ul.nav.nav-tabs .pride-info {
    height: 60px;
    text-align: center;
    margin-right: 20px;
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 12px;
}

section#web-sec-2 ul.nav.nav-tabs .pride-info:hover {
    background-color: #ec2527
}

section#web-sec-2 ul.nav.nav-tabs .pride-info:hover h4 {
    color: white;
}

section#web-sec-2 ul.nav.nav-tabs .pride-info a.active {
    color: white;
    background-color: black !important;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
    font-weight: 500;
}

.faq-accordation .active,
.accordion:hover {
    background-color: #ccc;
}

.accordion:after {
    content: '\002B';
    color: #ec2527;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.faq-accordation .active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.faq-accordation p {
    margin: 20px 0px;
}

.faq-accordation {
    padding: 70px 0px;
}

.zoom-img:hover {
    transform: scale(1.1);
    cursor: pointer;
    transition: ease 2s;
}

.sec-type-des img {
    transition: ease 2s;
}

section.sec-type-des2 .content-box {
    padding: 0 18px;
}

section.sec-type-des2 .content-box h6 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 12px;
}

section.sec-type-des2 .content-box p {
    line-height: 28px;
}

section.Steps-process p {
    min-height: 125px;
}

.red {
    color: #ec2527 !important;
}

section.feature-sec {
    padding: 10px 0 80px 0;
    background: url(../images/digital-marketing/sec-bg.jpg) no-repeat;
    color: white;
    background-size: cover;
}

section.feature-sec .exp-info p {
    font-size: 16px;
    text-transform: none;
    line-height: 20px;
    padding-top: 10px;
    color: black;
}

section.feature-sec .exp-info {
    margin-top: 50px;
    padding: 35px 20px 35px 20px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
    border-radius: 20px;
    background-color: white;
}

section.feature-sec .exp-info h5 {
    font-size: 22px;
    text-transform: none;
    padding-top: 30px;
    color: #ec2527;
    font-weight: 600;
}

section.feature-sec .exp-info h5 span {
    font-size: 24px;
    color: #000000;
}

section.feature-sec .exp-info:hover {
    background-color: #ededed;
    cursor: pointer;
}

section.feature-sec .exp-info:hover img {
    transform: scale(1.1);
}

.vertical-center {
    min-height: 100%;
    /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh;
    /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
}

.half-bg {
    padding: 10px 0 80px 0;
    background: url(../images/half-bg.png) no-repeat;
    color: white;
}

.half-bg .content-box {
    padding: 60px 60px 50px 220px
}

.half-bg .content-box img.testi-logo {
    width: 80px
}

.img-border {
    border: 1px black solid;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
}