/*------------------------------------------------------------------
[Master Stylesheet]

Author: AtypicalThemes
Template: ARSNL - Video Game landing page

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

-------------------------------------------------------------------
Table of contents

    I.General
    II.Header & Navigation
    III.Hero Section
    IV.About Section
    V.Media Section
    VI.Features Section
    VII.CTA Section
    Extra Pages

-------------------------------------------------------------------
[Color codes]

Background:	#080808; (dark grey)
Content:	#222; (black)
Footer:		#111;

a (standard): #FFF;
a (hover): #eec73f;
a (visited): #FFF;	
a (active):	#FFF;

[Colors]

Primary Color: #222;
Accent Color: #eec73f;
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic|Montserrat'); /* Merriweather & Montserrat fonts */

/* --------------------------- /////////// I. GENERAL /////////// --------------------------- */
/* -Color- */
.colored {
    color: #eec73f;
}
/* -Link Styling- */
a {
    color: #FFF;
    font-family: 'Open Sans', sans-serif;
	text-decoration: none;
}
a:visited {
    /* color: #FFF; */
    text-decoration: none;
}
a:hover {
    color: #eec73f;
	text-decoration: none;
}
a:active {
    color: #FFF;
    text-decoration: underline;
}
a:focus {
    color: #FFF;
    text-decoration: none;
}
/* -Resets- */
html, body { 
    color: #FFF;
    background: #080808;
    font-size: 17px;
    line-height: 1.5rem; /* 24px */
    max-width: 100%;
	overflow-x: hidden;
}
/* -Full width fluid container- */
.full-width {
    padding-left: 0;
    padding-right: 0;
    background-size: cover;
    background-position: center;
    padding: 30vh 0;
}
/* -Text Styling */
h1,h2,h3,h4,h5,h6 {
	font-family: 'Nanum Gothic', sans-serif;
}
h1 {
    font-size: 3rem;
    font-weight: bold;
} 
h2 {
    font-size: 1.8rem;
    font-weight: bold;
}
h3 {
    font-size: 1.25rem;
}
p {
    /* font-family: 'Open Sans', sans-serif; */font-family: 'Open Sans', sans-serif;
    font-size: 17px; /* 15px */
    padding: 5px 5px 5px 0;
    margin: 0;
    font-weight: 400;
}
.strong {
    font-weight: bold;
}
.spaced {
    letter-spacing: 5px;
}
.subtle {
	color: #999;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
ul {
    list-style: none;
    padding: 0;
}
/* -Margins and Floats- */
.floated-left {
     float: left;
}
.floated-right {
    float: right;
}
.inline {
	display: inline;
}
.short-hr-center::after {
    border-top: 2px solid;
    border-color: #eec73f;
    content: "";
    display: block;
    height: 1px;
    width: 150px;
    margin: 10px auto 0 auto;
}
.tiny-margin {
    margin-bottom: 3em /* 32px */
}
.small-margin {
	margin-bottom: 6em; /* 96px */
}
.medium-margin {
	margin-bottom: 8em; /* 128px */
}
.large-margin {
	margin-bottom: 12em; /* 192px */
}
/* -hr- */
hr {
    width: 100%;
    height: 1px;
    background: #FFD012;
    margin: 10px 0;
}
/* -General Button Styles */
button {
    outline: none !important;
}
.button {
    height: auto;
    width: 150px;
    margin: 20px auto;
    padding: 10px 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    color: #222;
    border: none;
    border-radius: 4px;
    background: #FFF;
	display: inline-block;
    outline: none;
	transition: all 0.2s ease;
    cursor: pointer;
}
.button:visited {
    color: #222;
}
.button:hover {
    text-decoration: none !important;
    color: #222 !important;
    background: #eec73f;
}
.button:focus {
    color: #222;
}
/* - Cookies Notification - */
.cookies-bar {
    background: #111;
    height: auto;
    width: 100vw;
    position: fixed;
    bottom: -60px;
    border-top: 1px solid #eec73f;
    z-index: 10;
    transition: 0.4s;
}
.cookies-wrapper {
    position: relative;
    padding: 15px 40px;
}
.cookies-bar.open {
    transform: translateY(-60px);
}
.cookies-bar.closed {
    transform: translateY(60px);
}
.cookies-bar p {
    display: inline;
}
.cookies-bar a {
    text-decoration: underline;
}
.cookies-bar .button {
    display: block;
    position: absolute;
    top: 25%;
    right: 35px;
    margin: 0;
    height: 30px;
    width: 30px;
    padding: 0;
    font-size: 1.4rem;
    color: #fff;
    background: none;
}
.cookies-bar .button:hover {
    color: #eec73f !important;
}
/* -Loading Screen- */
#loader-wrapper {
    background: #111;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}
.loader-logo {
    position: relative;
    color: #FFF;
    top: 43%;
    font-family: 'Cinzel Decorative', cursive;
    letter-spacing: 5px;
}
#progress {
    width: 0;
    height: 2px;
    background: #fa7a1e;
    position: relative;
    top: 45%;
}
.loader-text {
    position: relative;
    color: #FFF;
    top: 48%;font-family: 'Cinzel Decorative', cursive;
}

/* -Loading Screen Animation- */
.loaded {
    -moz-transform: translate3d(0px, -100%, 0px);
    -webkit-transform: translate3d(0px, -100%, 0px);
    -o-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    transform: translate3d(0px, -100%, 0px);
    -webkit-transition: all 0.5s ease; 
    transition: all 0.5s ease;
}



/* RESPONSIVE STYLES */
@media (max-width : 767px) {
    .tiny-margin {
    margin-bottom: 1.5em;
}
    .small-margin {
	margin-bottom: 3em; 
}
    .medium-margin {
	margin-bottom: 4em; 
}
    .large-margin {
	margin-bottom: 6em; 
}
    .cookies-wrapper {
        padding: 15px 60px 15px 20px;
    }
    .cookies-bar .button {
        top: 30%;
    }
}
/* --------------------------- /////////// II. HEADER AND NAVIGATION /////////// --------------------------- */
#main-logo {
    color: #FFF;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 0 20px;
    text-decoration: none;
}
.navbar-dark {
    background-color: rgba(0,0,0,0);
    border: 1px solid rgba(0,0,0,0);
    height: auto;
	    transition: 0.5s;
}
.navbar-dark .navbar-nav .nav-link {
    color: #FFF;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: #eec73f;
}
.scrolled {
    background-color: rgba(0,0,0,0.9); /* navbar background gradient */
    z-index: 900;
	    transition: 0.5s;
}
/* Dropdown Menu */
.navbar-collapse .dropdown-menu {
	margin-top: 10px;
	border: none;
	border-radius: 4px;
	background-color: rgba(0,0,0,0.6); 
}
.navbar-collapse .dropdown-item {
	color: #fff;
	text-decoration: none;
}
.navbar-collapse .dropdown-item:hover {
	background: none; 
}
.navbar-collapse .dropdown-item .item-text {
	font-size: 0.875rem;
}
.navbar-collapse .dropdown-item:hover .item-text {
	color: #eec73f;
}
.navbar-collapse .dropdown-items-divide-hr {
	width: 100%;
	height: 1px;
	margin: 0.25rem auto 0.25rem auto;
	border: none;
	background-color: #b5bcc4;
	opacity: 0.2;
}
/* Menu bars for mobile */
.navbar-toggler {
    border: none;
    cursor: pointer;
}
#hamburger .icon-bar {
    display: block;
    height: 2px;
    width: 25px;
    background: #FFF;
    margin: 7px 0;
    transition: .3s ease-in-out;
}
/* - Mobile menu animation - */
#hamburger .icon-bar:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger .icon-bar:nth-child(2) {
   -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger .icon-bar:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#hamburger.open .icon-bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}
#hamburger.open .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* -RESPONSIVE STYLES- */
@media (max-width : 991px) {
    .navbar-dark {
        background-color: rgba(0,0,0,0.6); /* navbar background gradient */
    }
    .scrolled {
        background-color: rgba(0,0,0,0.8); /* navbar background gradient */
        height: auto;
    }
    .navbar-collapse .dropdown-menu {
        background: none;
    }
}
/* --------------------------- /////////// III. HERO SECTION /////////// --------------------------- */
.hero-unit {
    position: relative;
}
/* -Video- */
#bgvid {
    /*width: 100%;
    height: 100%;  */ 
    object-fit: initial;
}
/* -Image Overlay- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.hero-caption {
    position: absolute;
    top: 35%;
    left: 15%;
    right: 15%;
    padding: 20px;
    z-index: 5;
    text-align: center;
}
.capt-1 {
	font-family: 'Cinzel Decorative', cursive;
	font-size: 44px;
	font-weight: 400; line-height: 1.1;
}
.capt-2 {
	font-family: 'Cinzel Decorative', cursive;
	font-size: 44px;
	font-weight: 700; line-height: 1.1;
}
.hero-unit img {
    position: absolute;
    top: 65%;
    width: 60%;
    left: 15%;
    right: 15%;
    margin: 0 auto;
}
.hero-caption h2 {
    font-size: 1.5rem;
}
.hero-caption h1 {
    font-size: 3.5rem;
}
/* -RESPONSIVE STYLES- */
@media (max-width :  889px ) {
    .hero-unit img {
        display: none;
    }
}
@media (max-width : 767px) {
    .hero-caption h1 {
        font-size: 2rem;
    }
    .hero-caption h3 {
        font-size: 1rem;
    }
}
@media (max-width : 535px) {
    .hero-caption h3 {
        display: none;
    }
}

/* --------------------------- /////////// IV. ABOUT SECTION /////////// --------------------------- */
#about-section {
    background-image: url(../images/bg1.jpg);
}
.video-box {
    display: block;
    width: 100%;
    height: 250px;
    padding-left: 10vw;
}
.video-box img {
    height: 30%;
    width: 100%;
    margin: 10vh 0 0 0;
}
.video-box h3 {
    text-align: center;
    display: block;
    margin: 15px 0 0 0; font-family: 'Cinzel Decorative', cursive;
font-size: 25px;
}
.video-box a {
    cursor: pointer;
}
.video-box a:hover {
    color: #fff;
}
/* -RESPONSIVE STYLES- */
@media (max-width : 767px) {
    #about-section .col-md-6:first-child {
        text-align: center;
    }
    .video-box {
        padding: 0;
    }
}
/* --------------------------- /////////// V. FEATURES SECTION /////////// --------------------------- */
#feature-1 {
    background-image:url(../images/bg2.jpg);
    background-attachment: fixed;
}
#feature-2 {
    background-image: url(../images/bg3.jpg);
    background-attachment: fixed;
}
#feature-3 {
    background-image: url(../images/bg4.jpg);
    background-attachment: fixed;
}
#feature-4 {
	margin-top: -100px;
    background-image: url(../images/bg5.jpg);
    background-attachment: fixed;
	    position: relative;
}
 
#feature-4 .text-box p.text-white { font-size: 24px; /* margin-bottom: 20px;  */margin-bottom: 10px;    font-weight: 600; }
/* a.netflix-logo { display: inline-block; float: left; width: 100%; margin-bottom: 10px; } */
a.netflix-logo { display: inline-block; float: none; width: auto; margin-bottom: 10px; }

 
/* -RESPONSIVE STYLES- */
@media (max-width : 767px) {
.text-box {text-align: center!important; }
 #feature-4{margin-top: 0px;}
}
/* --------------------------- /////////// VI. MEDIA SECTION /////////// --------------------------- */
.gallery-item {
    padding: 0;
}
.gallery-item img {
    width: 100%;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: 0.3s ease;
}
.overlay:hover {
    opacity: 0;
}
/* --------------------------- /////////// VII. CTA SECTION /////////// --------------------------- */
#cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/hero.jpg);
}
#cta-section ul {
    margin: 0;
}
#cta-section ul li {
    margin: 15px 0;
    font-size: 1.1rem;
}
#cta-section h1 {
    font-weight: bold;
    font-size: 2.5rem;
}
#cta-section img {
    margin-left: 35%;
    width: 55%;
}
#cta-section .button {
    margin: 0;
}
.main-features {
    list-style: circle;
    padding-left: 30px;
}
/* Modal */
.modal-expand {
    cursor: pointer;
    color: #777;
}
.modal-content {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
}
.modal-header {
    border-bottom: 1px solid #eec73f;
}
.modal-footer {
    border-top: 1px solid #eec73f;
}
.modal-body > ul > li > p {
    padding: 0px 5px;
    display: inline;
}
.modal-body ul {
    list-style: none;
    margin: 10px 0 0 25px;
}
.modal-body h3 {
    font-weight: bold;
}
.modal-body ul li {
    margin: 5px 0;
}
.modal-body ul li:before {
    display: inline-block;
    width: 1em;
    margin-left: -10px;
    font-family: fontawesome;
}
/* -RESPONSIVE STYLES- */
@media (max-width : 767px) {
    #cta-section {
        padding: 15vh 0;
    }
    #cta-section img {
        margin: 0 0 3em 0;
        width: 80%;
    }
    #cta-section .row {
        text-align: center;
    }
    .main-features {
        list-style: none;
    }
}
/* --------------------------- /////////// VIII. DLC SECTION /////////// --------------------------- */
#dlc {
    padding: 20vh 0;
}
.dlc-card img {
    width: 90%;
    margin: 0 0 25px 0;
}
.dlc-card .button {
    background: none;
    border: 2px solid #FFF;
    color: #FFF;
    margin: 20px 5px;
    width: auto;
}
.dlc-card .button:hover {
    background: #FFF;
    color: #222;
}
.dlc-features {
    text-align: left;
    color: #999;
    padding: 0 10%;
}
.dlc-features ul {
    margin-top: 10px;
}
.dlc-features ul li {
    margin-top: 5px;
}
/* -Newsletter- */
input {
    width: 50%;
    height: 45px;
    border: none;
    border-radius: 4px;
    background: #fafafa;
    padding: 0 0 0 20px;
    outline: #333;
    color: #222;
}
#newsletter-box h3 {
    margin-bottom: 20px;
}
#newsletter-box .button {
    border: none;
    margin: 0;
    height: 45px;
    width: 150px;
    font-size: 1rem;
    vertical-align: top;
}
.text-danger {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    margin-top: 10px;
}
.text-success {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    margin-top: 10px;
}
/* -Social links */
.social-links li {
    display: inline-block;
    margin: 10px;
}
.social-links li a i {
    transition: 0.2s;
}
.social-links li a :hover {
    color: #fa7a1e;
}
/* -RESPONSIVE STYLES- */
@media (max-width : 767px) {
   /*  #dlc {
        padding: 15vh 0;
    }
    #dlc .col-md-6 {
        margin: 20px 0;
    } */
}
/* --------------------------- /////////// FOOTER /////////// --------------------------- */
#footer {
    width: 100%;
    min-height: 50px;
    height: auto;
    color: #AAA;
    background: #111;
    border-top: 1px solid #fa7a1e;
    padding: 20px 0;
    font-size: 14px;
    line-height: 20px;
}
#footer ul {
    margin: 10px 0;
}
#footer ul li {
    display: inline-block;
    margin: 0 10px;
}
#footer ul li a {
    color: #AAA;
}
#footer ul li a:hover {
    color: #eec73f;
}
.brands {
    text-align: center;
}
.brands img {
    margin: 20px 0;
}
#copyright {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
#copyright a {
    color: #AAA;
    text-decoration: underline;
}
/* --------------------------- /////////// EXTRA PAGES /////////// --------------------------- */
.extra-page {
    font-size: 0.875rem;
}
.extra-page h3 {
    color: #eec73f;
}
.extra-page a {
    color: #eec73f;
}
.extra-page a:hover {
    color: #eec73f;
    text-decoration: underline;
    text-decoration-color: #eec73f;
}
.extra-page .hero-unit {
    min-height: 400px;
    background: #080808;
    border: none;
}
.extra-page .hero-caption {
    margin-top: 25vh;
}
.extra-page .hero-caption h1 {
    font-size: 3.5rem;
}
.text-container ul {
    list-style: circle;
    margin-left: 40px;
}
.text-container ul li {
    margin: 5px 0;
}
.text-container ol li {
    margin: 5px 0;
}
.breadcrumb-nav {
    background: #171717;
    border: none;
    height: 60px;
}
.breadcrumb {
    border: none;
    background: none;
    margin: 0;
    height: 60px;
}
.breadcrumb li {
    padding-top: 5px;
}
#footer-extra {
    border-top: 1px solid #eec73f;
    background: #111; 
}
#footer-extra .row:first-child {
    padding: 40px 0;
}
#footer-extra .social-links li a{
    color: #FFF;
}
#footer-extra .social-links li {
    margin: 0 15px 0 0;
}
.form-control-input {
    width: 100%;
}
.form-control-select {
    width: 100%;
    height: 45px;
    background: #FFF;
    border: none;
    outline: #333;
    color: #222;
    padding: 0 0 0 20px;
}
.checkbox {
    font-size: 14px;  
}
.checkbox input {
    width: auto;
    height: auto;
    vertical-align: -5%;
    margin-right: 0.375rem;
}
#privacyForm .button {
    width: 100%;
    margin-top: 0;
    height: 50px;
    font-size: 1.1rem;
}
.form-container {
    padding-top: 2em;
}

/*-- New Css --*/
.top-social-links {text-align:right;margin-bottom: 0;display: inline-block;}
.top-social-links.social-links li {margin: 5px;}
.book-btn { height: auto; width: auto; margin: 0 0 0 10px; padding: 14px 25px; font-family: 'Open Sans', sans-serif; font-size: 17px; font-weight: 400; text-align: center; color: #a86839; border: none; border-radius: 30px; background: transparent; display: inline-block; outline: none; transition: all 0.2s ease; cursor: pointer; float: right; border: 1px solid #a86839; line-height: 1; text-transform: uppercase; }
.book-btn:visited { color: #a86839;}
.book-btn:hover { background: #a86839; color: #fff;}
.testimonial-part .carousel-item {text-align:center; padding-left:60px; padding-right:60px;}
.testimonial-part .carousel-item::before {content: ''; display: block; width: 40px; height: 40px; position: absolute; background-image: url(../images/quote_1.png); background-size: contain; background-repeat: no-repeat; background-position: 50%; top: 6%; left: 0%;}
.testimonial-part .carousel-item::after {content: ''; display: block; width: 40px; height: 40px; position: absolute; background-image: url(../images/quote_2.png); background-size: contain; background-repeat: no-repeat; background-position: 50%; top: 6%; right: 0%;}
.testimonial-part .carousel-indicators {bottom: -40px;margin: 0;}
.testimonial-part .carousel-indicators li {width: 8px; height: 8px; border-radius: 50%; border: 1px solid #fff !important; background:none;opacity: 1;margin: 0 4px;}
.testimonial-part .carousel-indicators li.active {background:#fff;}
.testimonial-part .main-ttl {margin-bottom: 20px;}
.video-gallary { position: relative; padding: 100px 0; text-align: center;}
.video-gallary .gallery-item {padding-left:10px;padding-right:10px;}
.img-gallery { padding: 0px 0 0; text-align: center;}
.video-gallary .main-ttl, .img-gallery .main-ttl { margin-bottom: 30px;}
.video-gallary .carousel-indicators { display: none; }
.video-gallary .carousel-control-next, .video-gallary .carousel-control-prev { opacity: 1; }
.main-ttl { font-family: 'Cinzel Decorative', cursive; font-size: 38px; font-weight: 400; line-height: 1.1;color:#fa7a1e; }
.text-box p, #about-section p { color: #a86839; }

.rating-part { float: left; width: 100%; position: absolute; bottom: 150px; left: 0; right: 15%; padding: 20px; z-index: 5; text-align: center; }
.rating-part-common { width: 100%;  padding-right: 15px;  padding-left: 15px;  margin-right: auto;  margin-left: auto;max-width: 1140px; }
.rating-box { float: left; width: 25%; }
.rating-ttl { float: left; width: 100%; text-align: center; color: #a86839; font-size: 17px; }
.rating-star { float: left; width: 100%; text-align: center; }
.hero-unit .rating-star img { position: static;width: auto;max-width: 100%; }
#about-section {margin-top:-100px;position:relative;z-index:9}
#hero-section { margin-top: 0px; max-height: 900px;}


.scocial-activity-part {  }
.scocial-activity-content-part {float:left; width:100%;}
.scocial-activity-text-part {float:left; width:100%; text-align: center;}
.scocial-activity-text-part p {text-align:center;font-size:14px;font-weight:300;margin:0;padding:0;line-height:25px;max-width:80%;display:inline-block;}
.scocial-activity-box {float: left; width: 100%; padding: 30px 0 50px; }
.scocial-activity-part .scocial-inside-wrap{width:502px; float:none;margin-right:5%;display:inline-block;}
.scocial-activity-part .scocial-inside-wrap-in{border: solid 0px #cfcfcf;height: 490px;}
.scocial-activity-part .scocial-inside-wrap h2{margin:0px 0px 20px 0px; font-size:30px; line-height:36px; text-align:left;    font-weight: 500;}
.scocial-activity-part .scocial-inside-wrap img{width:60%;}
.scocial-activity-part  .tw-col{    height:488px;width:100%; }
.scocial-activity-part .facebook{  height:488px;}  
.scocial-activity-part .facebook .scocial-inside-wrap-in{overflow: hidden;text-align: center;background: #fff;}
.scocial-activity-part .twitter .scocial-inside-wrap-in{overflow-y: scroll;}
._2p3a{width:100% !important;}
.scocial-activity-part .twitter { margin-right: 0px; float: none; display: inline-block; }

#adv-section {padding:75px 0px;background-image: url(../images/adv-bg.jpg);margin-top: 0px;position:relative;}
.adv-data { text-align: center; color:#000; position:relative; padding: 0 190px 0 210px; }
.adv-data::after, .adv-data::before {content:""; position:absolute;bottom:-75px; width:210px; height:320px;}
.adv-data::before {left:0; background: url(../images/gowarikar.png);background-size: 100%;background-repeat:no-repeat}
.adv-data::after {right:0; background: url(../images/shelatkar.png);background-size: 100%;background-repeat:no-repeat;width: 185px;}
.adv-text { text-align: center; font-size:17px; font-weight:600; }
.adv-text span { font-weight:700; }
.adv-ttl { font-family: 'Cinzel Decorative', cursive; font-size: 38px; font-weight: 700; line-height: 1.1; color: #000; margin-bottom: 20px; text-transform: uppercase;}
.marthi-txt {line-height:2}

.main-ttl.main-ttl-2 { font-size: 35px; }
p.text-ttl { font-family: 'Cinzel Decorative', cursive; font-size: 24px; font-weight: 700; line-height: 1.1; color: #fa7a1e; margin-bottom: 10px; }
.zee-logo { margin-left: 15px; }


/* -RESPONSIVE STYLES- */
@media (max-width : 991px) {
    #footer-extra .col-md-4 {
        margin-bottom: 2em;
        text-align: center;
    }
    #footer-extra .row:first-child {
        padding: 40px 0 20px 0;
    }
}


@media (width : 1024px) {
#feature-1, #feature-2, #feature-3, #feature-4 {background-attachment: scroll;}	
#feature-2 {background-position: 67%;}	
.adv-data {padding: 0 150px;}	
.adv-data::before {left: -45px;}
.adv-data::after {right: -45px;}
}

@media (min-width : 1024px) and (max-width : 1200px) {
#feature-2 {background-position: 65%;}		
}

@media (min-width : 1200px) and (max-width : 1300px) {
#feature-2 {background-position: 62%;}		
}

@media (min-width : 768px) and (max-width : 1023px) {

.full-width {padding: 70px 0;}	
#feature-1, #feature-2, #feature-3, #feature-4 {background-attachment: scroll;}
#feature-2 {background-position: 60%;}	
.hero-unit .rating-star img {display: inline-block; max-height: 17px;}
#hero-section {margin-top: 53px;}	
#about-section {margin-top: 0px;}
#feature-4{margin-top: -60px;}
#adv-section {margin-top: -60px;}	
.rating-part {bottom: 60px;}
.hero-caption {top: 40%;}	
.capt-1, .capt-2 {font-size: 34px;}
.adv-ttl {font-size: 36px;}
#dlc {padding:70px 0;}
.scocial-activity-part .scocial-inside-wrap {max-width:100%}
.adv-data {padding: 0 100px 0 110px;}
.adv-data::before {left: -30px;bottom: -50px;  width: 150px; height: 230px;}
.adv-data::after {right: -30px;bottom: -50px;  width: 130px; height: 230px;}
}



@media (max-width : 480px) {
#main-logo {text-align:center}	

	
}

@media (max-width : 767px) {
.top-social-links {float: left;}
.top-social-links.social-links li {margin: 5px 0px;}
.book-btn {padding: 12px 20px;font-size: 14px;}
#main-logo img { max-width: 200px; }
#main-logo {width: 100%; margin: 0; padding: 0px 15px 10px;text-align:center}
.navbar-dark {background-color: rgba(0,0,0,1);}
#hero-section {margin-top: 110px;}
#about-section {margin-top: 0px;}
.hero-caption {position: relative; top: 0; left: 0; right: 0; padding-top: 0;}
.rating-part {position: relative; bottom: 0; left: 0; right: 0; padding-top: 0;}
.capt-1, .capt-2 {font-size: 24px;}
.hero-unit .rating-star img {display: inline-block; max-height: 15px;}
.rating-box {width: 50%;}
.rating-ttl {font-size: 15px;}
.full-width {padding: 70px 0;}
.main-ttl, .main-ttl.main-ttl-2 {font-size: 24px;}
p.text-ttl, #feature-4 .text-box p.text-white {font-size: 20px;}
.video-gallary {padding:0 0 70px;}
p.testimonial {font-size:14px;}
.scocial-activity-part .scocial-inside-wrap {max-width:100%}
#dlc {padding:70px 0;}
.scocial-activity-part .twitter {margin-top: 50px;}
#about-section {background-size: 150%; background-repeat: no-repeat; background-position: top right; padding-top: 58%;}
/* #feature-1, #feature-2, #feature-3 {background-size: 100%; background-repeat: no-repeat; background-position: top center; padding-top: 40%; background-attachment: scroll;} */
#feature-1, #feature-2, #feature-3,#feature-4 {background-size: 150%; background-repeat: no-repeat; background-position: top left; padding-top: 58%; background-attachment: scroll;}
#feature-2 {background-position: top right;}
#adv-section { background-size: 700px; background-repeat: no-repeat; background-position: top center; padding-top: 150px; margin-top: 0; }
#feature-4 .text-box p.text-center { font-size: 18px; }
.adv-data {padding: 0; color:#fff}
.adv-ttl { color:#fff;font-size: 24px;}
.adv-text {font-size: 15px; }
.adv-data::before{bottom: auto;top:-163px;bottom:auto;width: 90px; height: 130px; left: -10px;}
.adv-data::after{bottom: auto;top:-163px;bottom:auto;width: 75px; height: 130px; right: -10px;}
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
    /* Safari and Chrome */
    #bgvid{
        width: auto;
    } 

    /* Safari only override */
    ::i-block-chrome,#bgvid {
        width: 100%;
    } 
}
