@charset "utf-8";

/*======================================================================================================================
                                                            fonts
======================================================================================================================*/
@font-face {
    font-family: 'Gotham-Book';
    src: url('../fonts/Gotham-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'museo-sans-300';
    src: url('../fonts/museo-sans-300.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MuseoSans-100';
    src: url('../fonts/MuseoSans-100.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MuseoSans-500';
    src: url('../fonts/MuseoSans-500.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CompassSans-Bold';
    src: url('../fonts/CompassSans-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CompassSans-Regular';
    src: url('../fonts/CompassSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MuseoSans-700';
    src: url('../fonts/MuseoSans-700.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CompassSans-Italic';
    src: url('../fonts/CompassSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DroidSerif-Italic';
    src: url('../fonts/DroidSerif-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*======================================================================================================================
                                                            Common
======================================================================================================================*/

.share-it {
    position: fixed;
    /*min-height: 200px;*/
    width: 40px;
    /*background: #fff;*/
    right: 0;
    z-index: 9;
    top: 40%;
}

.share-it i {
    font-size: 18px;
}

.facebook {
    margin: 0 auto;
    float: left;
    margin-right: 4px;
}

.facebook a {
    color: #fff;
    padding: 10px 16px;
    background-color: #527aba;
    display: inline-block;
    transition: 0.5s ease;
}

.facebook a:hover {
    color: #fff;
    padding: 10px 26px;
    margin-left: -20px;
    background-color: #527aba;
    display: inline-block;
}

.twitter {
    margin: 0 auto;
    float: left;
    margin-right: 4px;
}

.twitter a {
    color: #fff;
    padding: 10px 16px;
    background-color: #77cdf1;
    display: inline-block;
    text-align: center;
    transition: 0.5s ease;
}

.twitter a:hover {
    color: #fff;
    padding: 10px 26px;
    margin-left: -20px;
    background-color: #77cdf1;
    display: inline-block;
    text-align: center;

}

.google {
    margin: 0 auto;
    float: left;
    margin-right: 4px;
}

.google a {
    color: #fff;
    padding: 10px 16px;
    background-image: linear-gradient(to right, red, yellow);
    display: inline-block;
    transition: 0.5s ease;
}

.google a:hover {
    color: #fff;
    padding: 10px 26px;
    margin-left: -20px;
    background-color: #4c4c4c;
    display: inline-block;

}

.rss {
    margin: 0 auto;
    float: left;
    margin-right: 4px;
}

.rss a {
    color: #fff;
    padding: 10px 16px;
    background-color: #fe8f19;
    display: inline-block;
    transition: 0.5s ease;
}

.rss a:hover {
    color: #fff;
    padding: 10px 26px;
    margin-left: -20px;
    background-color: #fe8f19;
    display: inline-block;
}

.linkedin {
    margin: 0 auto;
    float: left;
    margin-right: 4px;
}

.linkedin a {
    color: #fff;
    padding: 10px 16px;
    background-color: #157ecc;
    display: inline-block;
    transition: 0.5s ease;
}

.linkedin a:hover {
    color: #fff;
    padding: 10px 26px;
    margin-left: -20px;
    background-color: #157ecc;
    display: inline-block;

}

.youtube {
    margin: 0 auto;
    float: left;
    margin-right: 4px;
}

.youtube a {
    color: #fff;
    padding: 10px 16px;
    background-color: #fe322f;
    display: inline-block;
    transition: 0.5s ease;
}

.youtube a:hover {
    color: #fff;
    padding: 10px 26px;
    margin-left: -20px;
    background-color: #fe322f;
    display: inline-block;
    transition: 0.3s ease;
}

.gallery {
    display: inline-block;
    margin-top: 20px;
}

.gallery_image img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

/*======================================================================================================================
                                                            header
======================================================================================================================*/
header {
    background: #000;
    top: 0;
    z-index: 999;

}

.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: #282828;
    height: 42px;
    padding: 10px 0;
}

.header-top:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #e32c2e;
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
}

.header-top .highlited-section {
    color: #fff;
    width: 50%;
    font-family: 'MuseoSans-500';
    position: relative;
    z-index: 5;

}

.header-top .highlited-section span {
    margin-right: 10px;
}

.header-top .login-and-contact-info {
    width: 50%;
}

.header-top .login-and-contact-info ul {
    margin: 0;
}

.header-top .login-and-contact-info ul li {
    display: inline-block;
    line-height: normal;
}

.header-top .login-and-contact-info ul li + li {
    margin-left: 20px;
}

.header-top .login-and-contact-info ul li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    font-family: 'MuseoSans-500';
}

.textwidget p a {
    color: #fff;
}

.header-top .login-and-contact-info ul li a:hover {
    color: #e32c2e;
}

.header-top .login-and-contact-info ul li a span {
    margin-right: 5px;
}

.navbar-default {
    background: #000;
    border: none;
    margin-bottom: 0;
}

.navbar-default .navbar-brand {
    height: auto;
}

.navbar-default .navbar-brand img {
    max-width: 100%;
}

.navbar-default .navbar-nav > li > a {
    color: #fff;
    padding-top: 21.5px;
    padding-bottom: 21.5px;
    text-transform: uppercase;
    font-family: 'MuseoSans-700';
    transition: all 0.4s ease-in-out;
    font-size: 12px;
}

@media (min-width:768px) {
    .navbar-default .navbar-nav > li > a {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li.active > a:hover {
    background: #e32c2e;
    color: #fff;
}

.navbar-default .navbar-nav > li > a:hover {
    background: rgba(227, 44, 46, 0.9);
    color: #fff;
}

.navbar-default .navbar-right li a {
    padding-left: 50px;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    padding-right: 15px;
    position: relative;
    z-index: 999 !important;
    font-size: 15px;
    padding-top: 0;
    padding-bottom: 0;
    height: 63px;
    line-height: 63px;
}

/*======================================================================================================================
                                                        index
======================================================================================================================*/
.home-section1 {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
    height: 700px;
    margin-top: -126px;
    padding-top: 126px;
}

.home-section1 .items {
    height: calc(700px - 126px);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.home-section1 .items .section1-cont h1 {
    margin-top: 0;
    font-size: 70px;
    color: #e32c2e;
    font-family: 'museo-sans-300';
    line-height: 1;
    margin-bottom: 30px;
}

.home-section1 .items .section1-cont h5 {
    font-size: 20px;
    color: #fff;
    font-family: 'CompassSans-Regular';
    margin: 0;
}

.home-section1 .items .section1-cont a {
    background: #e32c2e;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: 'MuseoSans-700';
    font-size: 20px;
    padding: 10px 30px;
    margin-top: 40px;
    border-radius: 35px;
    box-shadow: 0 0 10px rgba(227, 44, 46, 0.8);
    text-shadow: -1px -1px 1px rgba(255, 255, 255, .1), 1px 1px 1px rgba(0, 0, 0, .5);
    transition: all 0.4s ease-in-out;
    margin-left: 10px;
}

.home-section1 .items .section1-cont a:hover {
    box-shadow: 0 0 15px rgba(227, 44, 46, 0.9);
}

.home-section2 {
    background-size: contain !important;
    background-position: left !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.home-section2:after {
    position: absolute;
    content: '';
    background: #fff;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;

}

.home-section2 .about-tt-studio {
    position: relative;
    z-index: 2;
}

.home-section2 .about-tt-studio h2 {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 27px;
    font-family: 'CompassSans-Bold';
    margin-bottom: 20px;
}

.home-section2 .about-tt-studio p {
    text-align: justify;
    font-size: 17px;
    font-family: 'CompassSans-Regular';
    margin: 0;
    padding-bottom: 10px;
}

.home-section3 {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
}

.home-section3:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.9);
}

.home-section3 .section3-cont {
    position: relative;
    z-index: 2;
}

.home-section3 .section3-cont h2 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-family: 'MuseoSans-700';
    margin-top: 0;
    margin-bottom: 10px;
}

.home-section3 .section3-cont p {
    font-size: 17px;
    color: #fff;
    text-align: center;
    font-family: 'CompassSans-Regular';
    margin-top: 0;
    margin-bottom: 30px;
}

.home-section3 .section3-cont .work-common {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.home-section3 .section3-cont .work-common img {
    width: 100%;
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
    transition: all 0.4s ease-in-out;
}

.home-section3 .section3-cont .work-common h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-transform: capitalize;
    font-family: 'MuseoSans-700';
}

.home-section3 .section3-cont .work-common:hover img {
    transform: scale(1.1);
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.home-section3 .section3-cont .load-more-btn-holder {
    text-align: center;
}

.home-section3 .section3-cont .load-more-btn-holder a {
    display: inline-block;
    padding: 10px 30px;
    font-size: 20px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 35px;
    text-transform: uppercase;
    font-family: 'MuseoSans-700';
    box-shadow: 0 0 10px rgba(25527, 255, 255, 0.5);
    text-shadow: -1px -1px 1px rgba(255, 255, 255, .1), 1px 1px 1px rgba(0, 0, 0, .5);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.home-section3 .section3-cont .load-more-btn-holder a:hover {
    box-shadow: 0 0 20px rgba(25527, 255, 255, 0.8);
}

.home-section4 {
    background-size: cover !important;
    background-repeat: repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.home-section4 .meet-team h2 {
    font-size: 40px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #e32c2e;
}

.home-section4 .meet-team .items a {
    display: block;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.home-section4 .meet-team .items a .team-member-image img {
    width: 270px;
    height: 270px;
    object-fit: cover;
}

.home-section4 .meet-team .items a .name-position {
    padding: 10px 15px;
}

.home-section4 .meet-team .items a h4 {
    margin: 0;
    text-align: center;
    font-family: 'CompassSans-Bold';
    color: #e32c2e;
}

.home-section4 .meet-team .items a h6 {
    margin: 0;
    text-align: center;
    font-family: 'CompassSans-Regular';
    color: #444;
}

.home-section4 .meet-team .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    pointer-events: none;
    margin: auto 0;
    overflow: hidden;
}

.home-section4 .meet-team .owl-nav button {
    height: 40px;
    width: 40px;
    padding: 0;
    line-height: 40px;
    background: rgba(0, 0, 0, 0.4) !important;
    color: #fff !important;
    position: absolute;
    top: 0;
    font-size: 30px;
    pointer-events: all;
    outline: none;
    transition: all 0.4s ease-in-out;
}

.home-section4 .meet-team .owl-nav button.owl-prev {
    left: 0;
    transform: translateX(-105%);
}

.home-section4 .meet-team .owl-nav button.owl-next {
    right: 0;
    transform: translateX(105%);
}

.home-section4 .meet-team:hover .owl-nav button {
    transform: translateX(0);
}

.home-section5 {
    background: #000;
}

.home-section5 h2 {
    text-align: center;
    margin-top: 0;
    text-transform: uppercase;
    font-size: 34px;
    font-family: 'MuseoSans-700';
    color: #e32c2e;
    margin-bottom: 40px;
}

.home-section5 .items {
    background: #fff;
    padding: 20px 15px;
    min-height: 200px;
    border: 1px solid #e32c2e;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(227, 44, 46, 0.8);
    transition: all 0.4s ease-in-out;
    margin-bottom: 20px;
}

.home-section5 .items:hover {
    box-shadow: 0 0 20px rgba(227, 44, 46, 0.8);
}

.home-section5 .items .single-testimonial {
    text-align: center;
}

.home-section5 .items .single-testimonial .clint-image {
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    background: rgba(243, 171, 73, 0.3);
}

.home-section5 .items .single-testimonial .clint-image img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.home-section5 .items .single-testimonial h4 {
    margin: 10px 0;
    font-size: 20px;
    font-family: 'MuseoSans-500';
    color: #e32c2e;

}

.home-section5 .items .single-testimonial p {
    color: #444;
    font-family: 'CompassSans-Italic';
    font-size: 17px;
}

.home-section5 .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 100%;
    height: 30px;
    pointer-events: none;
    overflow: hidden;
}

.home-section5 .owl-nav button {
    background: #e32c2e !important;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 0;
    font-size: 30px !important;
    color: #fff !important;
    padding: 0;
    line-height: 30px;
    outline: none;
    pointer-events: all;
    transition: all 0.4s ease-in-out;
}

.home-section5 .owl-nav button.owl-prev {
    left: 0;
    transform: translateX(-105%);
}

.home-section5 .owl-nav button.owl-next {
    right: 0;
    transform: translateX(105%);
}

.home-section5 .owl-nav button span {
    height: 30px;
    width: 30px;
    line-height: 30px;
    display: inline-block;
    vertical-align: top;
}

/*======================================================================================================================
                                                        inner page
======================================================================================================================*/
.common-section1 {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 600px;
    margin-top: -126px;
    padding-top: 126px;
}

.common-section1 .inner-section1-cont-holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: calc(600px - 126px);
}

.common-section1 .inner-section1-cont-holder h1 {
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    font-family: 'MuseoSans-700';
    font-size: 40px;
}

.common-section1 .inner-section1-cont-holder h1:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

h2.page-main-heading {
    margin: 0;
    text-transform: uppercase;
    font-size: 30px;
    font-family: 'MuseoSans-700';
    margin-bottom: 20px;
    color: #e32c2e;
}

.inner-page-holder .img-box {
    margin-bottom: 10px;
}

.inner-page-holder .img-box img {
    width: 100%;
}

.inner-page-holder p {
    margin: 0;
    padding-bottom: 10px;
    font-family: 'CompassSans-Regular';
    font-size: 15px;
}

.inner-page-holder h3 {
    font-family: 'MuseoSans-500';
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 26px
}

.inner-page-holder h4 {
    font-family: 'MuseoSans-500';
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px
}

.inner-page-holder h5 {
    margin-top: 0;
    font-family: 'MuseoSans-700';
    font-size: 16px;
    color: #e32c2e;
}

.inner-page-holder ul,
.inner-page-holder ol {
    margin-bottom: 10px;
}

.inner-page-holder ul li,
.inner-page-holder ol li {
    font-family: 'CompassSans-Bold';
    font-size: 15px;
}

/*======================================================================================================================
                                                        Contact us
======================================================================================================================*/
.contact-page-holder .contact-form {
    background: #282828;
    position: relative;
}

.contact-page-holder .contact-form:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
}

.contact-page-holder .contact-form .contact-info h2 {
    margin-top: 0;
    color: #fff;
    font-family: 'CompassSans-Bold';
    font-size: 40px;
}

.contact-page-holder .contact-form .contact-info h5 {
    margin-top: 0;
    font-size: 20px;
    color: #fff;
    font-family: 'MuseoSans-500';
}

.contact-page-holder .contact-form .contact-info ul.info {
    margin-bottom: 10px;
}

.contact-page-holder .contact-form .contact-info ul.info li {
    line-height: normal;
    color: #fff;
    font-family: 'museo-sans-300';
}

.contact-page-holder .contact-form .contact-info ul.info li span {
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
}

.contact-page-holder .contact-form .contact-info ul.info li + li {
    margin-top: 5px;
}

.contact-page-holder .contact-form .contact-info ul.social-links li {
    display: inline-block;
    color: #fff;
    font-size: 24px;
    font-family: 'MuseoSans-500';
}

.contact-page-holder .contact-form .contact-info ul.social-links li + li {
    margin-left: 10px;
}

.contact-page-holder .contact-form .contact-info ul.social-links li a {
    display: inline-block;
    color: #ddd;
    transition: all 0.4s ease-in-out;
}

.contact-page-holder .contact-form .contact-info ul.social-links li a:hover {
    color: #e32c2e;
}

.contact-page-holder .contact-form .form-holder {
    position: relative;
    z-index: 1;
}

.contact-page-holder .contact-form .form-holder h4 {
    margin-top: 0;
    font-size: 30px;
    margin-bottom: 30px;
    font-family: 'MuseoSans-500';
}

.contact-page-holder .contact-form .form-holder .inpt {
    height: 50px;
    padding: 5px 10px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #282828;
    font-family: 'CompassSans-Regular';
}

.contact-page-holder .contact-form .form-holder textarea.inpt {
    height: 100px;
}

.contact-page-holder .contact-form .form-holder .submit-btn-holder button,
.btn-block {
    height: 50px !important;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid #e32c2e;
    background: #e32c2e;
    color: #fff;
    font-family: 'CompassSans-Bold';
    font-size: 18px;
    padding: 0;
    line-height: 50px;
    transition: all 0.4s ease-in-out;
}

.contact-page-holder .contact-form .form-holder .submit-btn-holder button:hover {
    box-shadow: 0 0 15px rgba(227, 44, 46, 0.9);
}

/*======================================================================================================================
                                                        Footer
======================================================================================================================*/
.home-section5:hover .owl-nav button {
    transform: translateX(0);
}

footer {
    background-size: cover !important;
    background-repeat: repeat !important;
    background-position: center !important;
    position: relative;
}

footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.footer {
    position: relative;
    z-index: 2;
}

.footer .common-footer-box h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'MuseoSans-500';
    font-size: 24px;
}

.footer .common-footer-box p {
    margin: 0;
    color: #fff;
    font-family: 'CompassSans-Regular';
}

.footer .common-footer-box .read-more {
    display: inline-block;
    padding: 7px 20px;
    background: #e32c2e;
    margin-top: 20px;
    font-size: 15px;
    font-family: 'MuseoSans-500';
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 35px;
    transition: all 0.4s ease-in-out;

}

.footer .common-footer-box .read-more:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer .common-footer-box ul {
    margin: 0;
}

.footer .common-footer-box ul li {
    line-height: normal;
}

.footer .common-footer-box ul li + li {
    margin-top: 6px;
}

.footer .common-footer-box ul li a {
    color: #fff;
    font-family: 'CompassSans-Regular';
}

.footer .common-footer-box h5 {
    margin-top: 0;
    margin-bottom: 5px;
    font-family: 'MuseoSans-500';
    color: #fff;
    font-size: 17px;
}

.footer .common-footer-box ul li {
    font-family: 'CompassSans-Regular';
    color: #fff;
    padding-bottom: 6px;
}

.footer .common-footer-box h6 {
    margin-top: 0;
    color: #fff;
    font-size: 15px;
    font-family: 'CompassSans-Regular';
}

.footer .common-footer-box form input[type="email"] {
    height: 40px;
    width: 100%;
    padding: 5px 10px;
    border: none;
    outline: none;
    margin-bottom: 10px;
}

.footer .common-footer-box form button,
.footer .common-footer-box form input[type="submit"] {
    padding: 7px 20px;
    border: none;
    text-transform: uppercase;
    background: #e32c2e;
    color: #fff;
    font-family: 'MuseoSans-500';
    font-size: 16px;
}

.footer .common-footer-box form {
    margin-bottom: 20px;
}

.footer .common-footer-box ul.social li {
    display: inline-block;
}

.footer .common-footer-box ul.social li + li {
    margin-left: 10px;
    margin-top: 0;
}

.footer .common-footer-box ul.social li a {
    display: inline-block;
    font-size: 20px;
}

.footer-copyright {
    background: #000;
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    margin: 0 !important;
    padding: 15px 0;
    color: #fff;
    font-family: 'CompassSans-Regular';
}

.footer-copyright ul {
    margin: 0;
    text-align: right;
}

.footer-copyright ul li {
    display: inline-block;
    padding: 15px 0;
    color: #fff;
    font-family: 'CompassSans-Regular';
}

.footer-copyright ul li + li {
    margin-left: 10px;
}

.footer-copyright ul li a {
    display: inline-block;
    color: #fff;
}



/*======================================================================================================================
                                                        Blog
======================================================================================================================*/

.Blog_section {

    width: 100%;
    height: auto;

}

.Blog_thumb {

    width: 100%;
    height: auto;

}


.blog_image {

    width: 100%;
    height: 200px;
    position: relative;

}


.blog_image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px 7px 0px 0px;



}


.blog_content {

    padding: 20px 0px 0px;
    position: relative;
    background: #f7f5f5;
    border-radius: 0px 0px 7px 7px;

}

.blog_content:hover h1 a {

    color: #ff0000;

}


.Date_blog {

    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background: #FF0000;
    text-align: center;

}

.Date_blog strong {

    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 16px;
    margin-top: 14px;
    display: block;


}

.Date_blog strong small {

    font-weight: 300;
    font-size: 15px;

}

.blog_content h1 {


    text-align: justify;
    margin: 0px;
    color: #000;
    padding: 0px 18px;
    line-height: 3px;
    font-size: 19px;
    margin-bottom: 21px;
}

.blog_content h1 a {

    text-decoration: none;
    color: #000;
    font-weight: 700;
    line-height: 22px;
}


.blog_content p {

    padding: 0px 18px;
    text-align: justify;
    padding-bottom: 21px;



}


.blog_details {

    height: 350px;

}


.blog_details .inner-section1-cont-holder {

    height: calc(339px - 126px);


}

.blog_details_thumb .blog_image {

    height: 350px;

}


.blog_details_thumb {

    margin-bottom: 20px;

}

.more_blog {

    width: 100%;
    height: auto;


}

.more_blog h1 {

    text-align: left;

    font-weight: 700;
    text-transform: capitalize;
    margin: 0px;
    font-size: 25px;
    position: relative;
    margin-bottom: 34px;

}



.more_blog h1:after {

    position: absolute;
    content: "";
    left: 0px;
    bottom: -10px;
    width: 20%;
    height: 3px;
    background: #ff0000;

}

.recent_thumb {

    width: 100%;
    height: 200px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;



}

.recent_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;


}

.recent_thumb_content {

    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #000;
    width: 100%;
    height: auto;
    padding: 10px 0;
    border-radius: 0px 0px 5px 5px;



}

.recent_thumb_content span {
    text-align: center;

}

.recent_thumb_content a {
    text-align: center;
    display: block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;

}


.blog_details_heading h1 {

    margin-top: 20px;
    font-size: 28px;
    margin-bottom: 35px;
    display: block;


}


.blog_details_heading h2 {

    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 20px;
    font-size: 18px;

}



.testimonials {

    margin: 0% 0px 0;


}

.image {

    width: 100px;
    height: 100px;
    border: 1px solid;
    margin: 0px auto;
    border-radius: 50%;
    overflow: hidden;



}

.testimonials h3 {
    text-align: center;
    font-weight: 700;
    color: #ff0000;

}

.testimonials p {

    text-align: center;
    color: #000;
}

.image img {

    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid #000;

}


#owl-demo .item {
    /*  background:#f7f5f5;*/
    padding: 10px 10px;
    margin: 10px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}

.customNavigation {
    text-align: center;
}

//use styles below to disable ugly selection
.customNavigation a {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


.testimonials h1 {

    text-align: center;
    text-transform: uppercase;
    color: #000;
    margin-top: 46px;
    display: block;
    margin-bottom: 33px
}





/*======================================================================================================================
                                                        Blog
======================================================================================================================*/

.call-btn-icon {
    position: fixed;
    bottom: 2%;
    z-index: 999;
    height: 65px;
    float: right;
    right: 5%;
}

.form-course {
    background: rgb(0, 0, 0.9, 0.7);
    padding: 15px;
    border-radius: 5px;
}

.form-course label {
    color: #fff;
    font-size: 18px;
}

.form-course .form-control {
    height: 40px;
}

.form-course button.btn-primary {
    color: #fff;
    font-size: 20px;
    width: 100%;
    background-color: #e32c2e;
    border-color: #e32c2e;
    padding: 10px;
}

.home-section-course {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
    padding: 30px;
}

.form-course .form-group h3.tattoo-title {
    color: #fff;
    font-size: 24px;
    padding: 5px;
    /* text-decoration: underline; */
    border: 1px solid;
    background-color: #e32c2e;
}

@media only screen and (max-width: 767px) {
    .form-course {
        background: rgb(0, 0, 0.9, 0.7);
        padding: 15px 12px;
        border-radius: 5px;
        margin-top: 42px;
    }
}

.tattoo-course-banner {
    margin-top: 10px;
    border-color: #e32c2e;
}

.tattoo-course-banner .panel-heading {
    background-color: #e32c2e;
    border-color: #e32c2e;
    font-size: 23px;
}

.tattoo-course-banner .panel-body p {
    font-size: 16.8px;
}

.tattoo-course-banner .panel-body a {
    background-color: #e32c2e;
    border-color: #e32c2e;
}

.tattoo-course-details .course-head1 {
    background-color: #e32c2e;
    color: #fff;
    padding: 5px 19px;
    border-radius: 5px;
    border: double #fff;
    text-align: center;
}

.tattoo-course-details .course-head2 {
    background-color: #c50c30;
    color: #fff;
    padding: 5px 19px;
    border-radius: 5px;
    border: double #fff;
    display: table;
    width: -moz-fit-content;
}

.tattoo-course-details ul li {
    font-weight: 600;
}

.carousel-caption {

    top: 0px;
    left: 10%;
    right: 10%;
    text-align: left;
}

.Banner_content h1 {
    margin-top: 0;
    font-size: 70px;
    color: #e32c2e;
    font-family: 'museo-sans-300';
    line-height: 1;
    margin-bottom: 30px;

}

.Banner_content strong {

    font-family: 'MuseoSans-700';
}

.Banner_content h5 {
    font-size: 20px;
    color: #fff;
    font-family: 'CompassSans-Regular';
    margin: 0;


}

.Banner_content {

    margin-top: 114px;
}

.Banner_content a:hover {

    box-shadow: 0 0 15px rgba(227, 44, 46, 0.9);
}

.Banner_content a {


    background: #e32c2e;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-family: 'MuseoSans-700';
    font-size: 20px;
    padding: 10px 30px;
    margin-top: 40px;
    border-radius: 35px;
    box-shadow: 0 0 10px rgba(227, 44, 46, 0.8);
    text-shadow: -1px -1px 1px rgba(255, 255, 255, .1), 1px 1px 1px rgba(0, 0, 0, .5);
    transition: all 0.4s ease-in-out;
    margin-left: 10px;
}

.course_banner small {

    color: #fff;
}

.course_banner strong {

    font-size: 54px;
}

.home_banner_form {

    position: absolute;
    top: 80px;
    left: 112px;
    z-index: 9;
    max-width: 394px;
    width:100%;
    box-shadow: 0px 0px 39px rgb(0 0 0 / 50%);
    border: 1px solid #fff;
    padding: 10px 27px 29px;

}

.banner_slider_item {

    height: 419px;
}

.latesT-work:after {

    background: #f7f7f7;
}

.latesT-work h2,
.latesT-work p {

    color: #e32c2e !important;

}

.latesT-work .load-more-btn-holder a {

    color: #e32c2e !important;
    border: 2px solid #e32c2e !important;
}

.Tattoo_training_footer {

    padding-left: 0px;
}

.Tattoo_training_footer li {
    list-style: none;
    display: list-item;

}

.why_chosse_us_heading {

    text-align: center;
}


.Why_choose_points {


    background: #211d21;

    height: 389px;
    z-index: 9;
    position: relative;
    text-align: center;

    padding: 10px 16px;

    border: 4px solid #e32c2e;

}

.Why_choose_points h4 {

    color: #fff;
    font-size: 20px;
    font-weight: 700;

}

.Why_choose_points p {

    color: #fff;
    text-align: justify;
}

.why_chosse_us_heading {

    margin-top: 20px;
    margin-bottom: 30px;
}

.why_chosse_us_heading h3 {

    font-weight: 800;

}

.why_chosse_us {


    position: relative;
}


.why_chosse_us:after {
    content: "";
    position: absolute;
    bottom: -53px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 195px;
    background: #e32c2e;
    z-index: -1;

}

.type-of_tatto {

    margin-top: 81px;

}

.popular_points {

    background: url(../images/Points_bg.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
    margin-top: 53px;
    padding: 30px;
}

.Traditional_points_heading {

    text-align: center;
    color: #fff;
}

.popular_points ul {
    margin-top: 20px;
    margin-bottom: 20px;

}

.popular_points ul li {

    list-style: none;

    display: inline-block;

    background: #000;

    border: 1px solid;

    padding: 20px;
    margin-bottom: 40px !important;
    width: 350px;

    vertical-align: top;

    margin: 0px 6px;

    height: 286px;
}

.popular_points ul li h4 {

    color: #fff;
    font-weight: 800;
}

.popular_points ul li p {

    color: #fff;
}


.banner {

    width: 100%;
    position: relative;
}

.about_section {

    background: url(../images/contact-bnr.jpg);
    background-repeat: no-repeat;
}

.testimonials_item {

    height: 315px;
    border: 1px solid #00000038;
    padding: 10px 20px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
}


@media only screen and (max-width:767px){
    .testimonials_item {
        height: 100%;
        
    }
}
