@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');
body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
  font-size: 14px;
  color: #000; 
  margin: 0;
  background: #000;
  overflow-x: hidden;
}
a {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    text-decoration: none;
    color: #000;
}
a:hover {
    text-decoration: none;
    outline: none;
}
img {
    max-width: 100%;
    width: auto;
    vertical-align: middle;
}
div,ul,li,header,nav,section,span,article,h1,h2,h3,h4,h5,h6,p {
    padding: 0;
    margin: 0;
    list-style: none;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
button:focus, input:focus, textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.text-center {
	text-align: center;
}
/*Ripple Effects*/
.ripple {
position: relative;
overflow: hidden;
transform: translate3d(0, 0, 0)
}

.ripple:after {
content: "";
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
background-repeat: no-repeat;
background-position: 50%;
transform: scale(10, 10);
opacity: 0;
transition: transform .5s, opacity 1s
}

.ripple:active:after {
transform: scale(0, 0);
opacity: .2;
transition: 0s
}

/* Reset Select */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  background: #fff;
  background-image: none;
  border-radius: 2px;
}
/* Remove IE arrow */
select::-ms-expand {
  display: none;
}
/* Custom Select */
.select {
  position: relative;
  display: flex;
  width: 320px;
  height: 58px;
  line-height: 4;
  background: #fff;
  overflow: hidden;
  border-radius: 2px;
}
select {
  flex: 1;
  padding: 0 .5em;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  border: solid thin #dfdfdf;
}
/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  background: transparent;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
  color: rgba(0, 0, 0, 0.54);
}
/* Transition */
.select:hover::after {
  color: rgba(0, 0, 0, 0.54);
}


[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.54);
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: rgba(0,0,0,0.54);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.chk-group {
  display: block;
  margin-bottom: 15px;
}

.chk-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.chk-group label {
  position: relative;
  cursor: pointer;
}

.chk-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #0079bf;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.chk-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

header {
  width: 100%;
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  background: #000;
}
.header-wrap {
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px; 
}
.logo {
  width: 150px;
}
.logo a {
  display: block;
}
.header-right-nav {
  justify-content: flex-end;
  align-items: center;
}
.location {
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-right: 20px;
  text-transform: uppercase;
}
.location i {
  margin-right: 10px;
}
#menuToggle {
  position: relative;
  top: 0px;
  right: 0px;  
  z-index: 1;  
  -webkit-user-select: none;
  user-select: none;
}
#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;  
  cursor: pointer;  
  opacity: 0;
  z-index: 2;  
  -webkit-touch-callout: none;
}
#menuToggle span {
  display: block;
  width: 33px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;  
  background: #fff;
  border-radius: 3px;  
  z-index: 1;  
  transform-origin: 4px 0px;  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-child(3) {
  width: 20px;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}
#menu {
  position: fixed;
  width: 490px;
  margin: 0px 0 0 0;
  padding: 0px;
  padding-top: 0px;
  right: -0px;
  top: 0;
  height: 100vh;
  background: #111;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  /* background-image: url(../img/logo-ftr.svg); */
  background-position: bottom 30px center;
  background-repeat: no-repeat;
}
#menuToggle input:checked ~ ul {
  transform: scale(1.0, 1.0);
  opacity: 1;
}
#menu a {
  display: block;
  padding: 15px 25px;
  width: 100%;
  font-size: 22px;
  color: #fff;
  font-weight: 300;
  text-align: center;
}
.page-wrapper {
  padding-top: 87px;
}
.theatre-add {
  margin: 40px auto 0;
  text-align: center;
  width: 1024px;
  border-radius: 8px;
  background-color: #1a1a1a;
  padding: 35px 40px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 220px;
}
.theatre-add-lft {
  width: 70%;
}
.theatre-add-lft p {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  padding-top: 0px;
  padding-bottom: 15px;
  text-align: center;
}
.ta-link {
  justify-content: center;
  align-items: center;
}
.ta-link a.know {
  margin-right: 15px;
  padding: 10px 10px;
  text-transform: uppercase;
  background: #fff;
  color: #1a1a1a;
  transition: transform .3s ease;
  font-weight: 700;
  letter-spacing: .6px;
  line-height: 1.4!important;
  min-width: 130px;
  border-radius: 4px;
  font-size: 18px;
}
.ta-link a.aam {
  background: transparent;
  font-size: 14px;
  color: hsla(0,0%,100%,.6);
  padding: 0px 25px;
  font-weight: 400;
}
.theatre-add-rht {
  position: absolute;
  bottom: 0;
  right: 20px;
}

/*tabs*/
ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 0px solid #333;
  width: 100%;
  justify-content: flex-start;
}

ul.tabs li {
  margin: 0;
  cursor: pointer;
  padding: 12px 27px;
  color: #dbe2fb;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  text-transform: uppercase;
  border-bottom: solid thin #fc7c00;
  margin-right: 20px;
  transition: all ease 0.3s;
}

.tab_last {  }

ul.tabs li:hover {
  
  color: #fff;
}

ul.tabs li.active {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f1593b+0,f68a22+100 */
  background: rgb(241,89,59); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(241,89,59,1) 0%, rgba(246,138,34,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(241,89,59,1) 0%,rgba(246,138,34,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(241,89,59,1) 0%,rgba(246,138,34,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1593b', endColorstr='#f68a22',GradientType=1 ); /* IE6-9 */
  color: #fff;
  border-bottom: 0px solid #078e05;
  font-weight: 700;
  /*box-shadow: 0px 10px 15px 0px rgba(246, 138, 34, 0.5);*/
}

.tab_container {
  border: 0px solid #333;
  border-top: none;
  clear: both;
  width: 100%;
  background: transparent;
  overflow: auto;
}

.tab_content {
  padding: 60px 40px 20px;
  display: none;
}

.tab_drawer_heading { display: none; }

.tab-wrap {
  padding: 40px 40px 0;
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}
.movie-row {
  justify-content: flex-start;
  margin: 0 0px 20px;
}
.movie-col {
  width: calc(20% - 10px);
  border-radius: 4px;
  background: #1717178c;
  margin-right: 10px;
  margin-bottom: 20px;
}
.movie-img {
  border-radius: 4px 4px 0 0;
  height: 320px;
  overflow: hidden; 
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.movie-img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie-content {
  padding: 15px 10px;
  border-radius: 0 0 4px 4px;
}
.movie-title-row {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}
.movie-title-row h3 {
  width: calc(100% - 60px);  
}
.movie-title-row h3 a {
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.movie-title-row span {
  width: 54px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
  padding: 2px 0px;
  text-align: center;
  border: solid thin #f68a22;
}
p.lang {
  font-size: 14px;
  color: #999;
  font-weight: 300;
}
.movie-img-wrap {
  overflow: hidden; 
}
.movie-col {
  overflow: hidden; 
}
.movie-col .movie-img  {
  transition: transform 5s, filter 1.5s ease-in-out;
  transform-origin: center center;
  filter: brightness(90%);
  overflow: hidden;
}
.movie-col:hover .movie-img  {
  filter: brightness(100%);
  transform: scale(1.2);
  overflow-x: hidden;
}
.movie-col .movie-img:not:hover {
  filter: drop-shadow(0 0 10px rgba(0,0,0,.3));
}


.thatre-ads {
  padding: 40px;
  background: #1717178c;
}
.theatre-ads-row {
  justify-content: space-between;
}
.ta-col {
  width: 30%;
  margin: 0;
}
footer {
  padding: 40px;
}
.ftr-top {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: solid thin rgba(255,255,255,0.2);
}
.ftr-top a {
  width: 140px;
}
.ftr-top ul {
  justify-content: flex-end;
  align-items: center;
}
.ftr-top ul li {
  margin-left: 10px;
}
.ftr-top ul li a {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: solid thin #aaa;
  border-radius: 50%;
  color: #fff;
}
.ftr-top ul li a:hover {
  background: #f68a22;
  border: solid thin #f68a22;
}
.ftr-btm {
  padding: 30px 0 0;
  justify-content: space-between;
}
.ftr-btm ul {
  justify-content: flex-start;
  align-items: center;
  /*width: 50%;*/
}
.ftr-btm ul li {
  margin-right: 30px;
  margin-bottom: 15px;
}
.ftr-btm ul li a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}
.ftr-btm ul li a:hover {
  color: #f68a22;
}
.ftr-btm p {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
}
.location .select, .location-mobile .select {
  width: auto;
  height: auto;
  line-height: 1;
  background: transparent;
  border: 0;
  padding-right: 15px;
}
.location .select select, .location-mobile .select select {
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  border: 0;
  padding: 0 10px 0 0;
}
.location .select::after, .location-mobile .select::after {
  font-size: 10px;
  color: #fff;
  top: 1px;
} 
.location-mobile {
  display: none;
}
.location-mobile .select {
  padding-right: 0;
  width: 100%;
}
.location-mobile .select select {
  color: #000;
  padding:10px 20px;
  font-size: 14px;
}
.location-mobile .select::after {
  color: #000;
  font-size: 14px;
  top: 12px;
}

/* Dropdown */
.location-mobile .dropdown {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
}
.dd-button {
  display: inline-block;
  border: 0px solid gray;
  border-radius: 4px;
  padding: 0px 0px 0px 0px;
  cursor: pointer;
  white-space: nowrap;
  color: #fff;
  font-size: 10px;
}
.dd-button:after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}
.dd-button:hover {
}
.dd-input {
  display: none;
}
.dd-menu {
  position: fixed;
  top: 45px;
  border: 0px solid #ccc;
  border-radius: 0px;
  padding: 0;
  margin: 2px 0 0 0;
  background-color: #ffffff;
  list-style-type: none;
  left: 0;
  width: 100%;
}
.dd-input + .dd-menu {
  display: none;
}
.dd-input:checked + .dd-menu {
  display: block;
}
.dd-menu li {
  padding: 0px 0px;
  cursor: pointer;
  white-space: nowrap;
}
.dd-menu li:hover {
  background-color: #f6f6f6;
}
.dd-menu li a {
  display: block;
  margin: -10px -20px;
  padding: 10px 20px;
}
.dd-menu li.divider{
  padding: 0;
  border-bottom: 1px solid #cccccc;
}
.about-banner {
  position: relative;
}
.ab-txt {
  position: absolute;
  top: 45%;
  left: 0%;
  right: 0;
  margin: auto;
  width: 60%;
}
.ab-txt h3 {
  font-size: 50px;
  font-weight: 500;
  color: #ddd;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}
.ab-txt h3 span {
  font-weight: 300;
}
.ab-txt p {
  font-size: 18px;
  font-weight: 300;
  color: #ddd;
  margin-bottom: 0px;
  line-height: 34px;
  text-align: center;
}
.about-content {
  padding: 40px;
  justify-content: space-between;
  align-items: center;
}
.abt-lft {
  width: 60%;
}
.abt-lft h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f68a22;
}
.abt-lft h2 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #fff;
}
.abt-lft p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #fff;
  line-height: 30px;
}
.abt-rht {
  text-align: center;
  width: 35%;
}
.about-gallery {
  padding: 40px;
  background: #1717178c;
}
.about-gallery-wrap {
  width: 100%;
}
.about-gallery-wrap h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f68a22;
  text-align: center;
}
.about-gallery-wrap h2 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
#menu a:hover {
  color: #f68a22;
}
#menu a.active {
  background: #000;
  color: #f68a22;
}
h2.st-title {
  font-size: 16px;
  font-weight: 500;
  color: #ddd;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.date-list {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}
.date-list li {
  margin-right: 15px;
  margin-bottom: 15px;
}
.date-list li a {
  display: block;
  padding: 7px 15px 4px;
  background: #1717178c;
}
.date-list li a h3 {
  justify-content: center;
  align-items: flex-end;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.date-list li a h3 span {
  font-size: 12px;
  font-weight: 300;
  color: #ddd;
  position: relative;
  top: -2px;
  margin-left: 2px;
}
.date-list li a p {
  font-size: 14px;
  font-weight: 4500;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.date-list li a.current {
  background: #f68a22;
}
.date-list li a.current h3, .date-list li a.current h3 span, .date-list li a.current p {
  color: #000;
}
.st-movie-row {
  margin-bottom: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.st-mr-tit {
  margin-bottom: 15px;
  width: 350px;
  justify-content: flex-start;
  padding-right: 20px;
}
.st-mr-tit-img {
  width: 70px;
  height: 70px;
  overflow: hidden;
}
.st-mr-tit-content {
  width: calc(100% - 70px);
  padding-left: 15px;
}
.st-mr-tit h2 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}
.st-mr-tit h2 a {
  color: #fff;
}
.st-mr-stit {
  justify-content: flex-start;
}
.st-mr-tit span {
  font-size: 20px;
  font-weight: 300;
  color: #ddd;
  padding: 0 15px;
  opacity: 0.4;
}
.st-mr-tit p {
  font-size: 16px;
  font-weight: 300;
  color: #ccc;
}
.time-list {
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0px -10px;
  width: calc(100% - 350px);
}
.time-list li {
  margin: 0 10px 15px;
  width: calc(14.28% - 20px);
}
.time-list li a {
  display: block;
  padding: 10px 5px;
  background: #1717178c;
  border-bottom: solid 2px #f68a22;
  text-align: center;
}
.time-list li a h3 {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}
.time-list li a.full {
  border-bottom: solid 2px #f00;
}
.bottom-overlay {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 51px;
  background-image: url(../img/map-overlay.png);
  background-repeat: repeat-x;
  background-position: left top;
}
.contact-lft {
  width: 100%;
}
.contact-row {
  width: 100%;
  justify-content: space-between;
}
.contact-col {
  width: 30%;
  background: #1717178c;
  border-radius: 4px;
  padding: 20px;
}
.contact-col h3 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}
.cc-r {
  width: 100%;
  justify-content: space-between;
}
.ccr-ig {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #f68a22;
  font-size: 18px;
  color: #fff;
}
.ccr-cnt {
  width: calc(100% - 40px);
  padding-left: 15px;
}
.ccr-cnt h4 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.ccr-cnt h5 {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.ccr-cnt p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 24px;
}
p.sub-txt {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  line-height: 24px;
  margin-bottom: 15px;
}
.ca-row {
  width: 40%;
  margin-top: 50px;
}
.ca-row h3 {
  font-size: 30px;
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ca-row h2 {
  font-size: 20px;
  font-weight: 100;
  color: #d6d6d6;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ca-row p {
  font-size: 16px;
  font-weight: 300;
  color: #616161;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}
.ca-row h4 {
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #616161;
  margin-bottom: 15px;
  letter-spacing: 0.8px;
}
.ca-row h4 i {
  font-size: 22px;
  margin-right: 10px;
  transform: scaleX(-1);
}
.ca-row h4 a {
  color: #616161;
}
.ca-add {
  border-top: solid thin #333;
  padding-top: 40px;
  justify-content: flex-start;
}
.ca-col {
  border-right: solid thin #333;
  padding: 0 40px 0;
  margin-bottom: 40px;
}
.ca-col h3 {
  font-size: 22px;
  font-weight: 100;
  color: #fff;
  margin-bottom: 5px;
}
.ca-col h3 span {
  font-weight: 600;
}
.ca-col p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
}
.ca-col h4 {
  font-size: 16px;
  font-weight: 400;
  color: #f68a22;
}
.ca-col h4 a {
  color: #f68a22;
}
.ca-col:last-child{
  border-right: 0;
}
.ta-link p {
  font-size: 14px;
  margin: 0 20px 0 0;
  padding: 0;
}
.adv-lft {
  width: 100%;
}
.adv-lft h4 {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  top: -50px;
}
.advertse-row {
  justify-content: space-between;
  padding: 0 40px;
}
.advertse-row .movie-col {
  width: 30%;
}
.advertse-row .movie-title-row h3 {
  width: 100%;
  font-size: 18px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.mt40 {
  margin-top: 40px;
}
.pb40 {
  padding-bottom: 40px;
}
.side-logo {
  text-align: center;
  margin-top: 25px;
}