/*-----------------------------------------*/
/*              FONTS STARTS               */
/*-----------------------------------------*/
@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/gotham/Gotham-Medium.otf') format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham-Book';
    src: url('../fonts/gotham/Gotham-Book.otf') format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham-Light';
    src: url('../fonts/gotham/Gotham-Light.otf') format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham-Thin';
    src: url('../fonts/gotham/Gotham-Thin.otf') format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GothamNarrow-Thin';
    src: url('../fonts/gotham/GothamNarrow-Thin.otf') format("opentype");
    font-weight: normal;
    font-style: normal;
}
/*-----------------------------------------*/
/*              FONTS ENDS                 */
/*-----------------------------------------*/


/*-----------------------------------------*/
/*          COMMON CLASS STARTS            */
/*-----------------------------------------*/


html{
    overflow-x:hidden;
}
body{
    color: rgba(255,255,255,.6);
}
html, body{
    margin: 0;
    font-family: 'Gotham-Thin';
    background-color: #000000;
    height: auto;
    position: relative;
}
a, a:hover, a:active, a:focus{
    text-decoration: none;
    cursor: pointer;
    outline: none ! important;
}
ul {
    padding: 0;
    margin: 0;
}
li {
    list-style: none;
}
button{
    outline: none ! important;
}
button:focus {
    box-shadow: none !important;
}
.p-relative {
    position: relative;
}

.d-block{
    display: block;
}
.d-inline-block {
    display: inline-block;
}
.d-table {
    display: table;
}
.d-table-cell {
    display: table-cell;
    vertical-align: middle;
}
.display-none, .disp-none {
    display: none;
}
@media(max-width: 1199px){
    .d-block-md {
        display: block !important;
    }
}
@media(max-width: 991px){
    .d-block-sm {
        display: block !important;
    }
    .d-inline-block-sm {
        display: inline-block !important;
    }
}
@media(max-width: 767px){
    .d-block-xs {
        display: block !important;
    }
    .d-inline-block-xs {
        display: inline-block !important;
    }
}

.pd-0 {
    padding: 0!important;
}
.pdt-0 {
    padding-top: 0!important;
}
.pdl-0 {
    padding-left: 0!important;
}
.pdr-0 {
    padding-right: 0!important;
}
.pdb-0 {
    padding-bottom: 0!important;
}

.mg-0 {
    margin: 0!important;
}
.mgt-0 {
    margin-top: 0!important;
}
.mgl-0 {
    margin-left: 0!important;
}
.mgr-0 {
    margin-right: 0!important;
}
.mgb-0 {
    margin-bottom: 0!important;
}

.bd-0 {
    border: none !important;
}
.bdt-0 {
    border-top: none !important;
}
.bdl-0 {
    border-left: none !important;
}
.bdr-0 {
    border-right: none !important;
}
.bdb-0 {
    border-bottom: none !important;
}

.height100 {
    height: 100%;
}
.width100 {
    width: 100%;
}
.height-inh{
    height: inherit !important;
}
.max-width-inh {
    max-width: inherit !important;
}
.cursor-pointer {
    cursor: pointer;
}
.overflow-auto {
    overflow: auto;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-x-hidden {
    overflow-x: hidden !important;
}
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
}
.ellipsis-line2 {
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ellipsis-line3 {
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.ellipsis-line4 {
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.ellipsis-line5 {
    overflow: hidden !important;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.lt-0 {
    letter-spacing: 0 !important;
}
.border-0 {
    border: none !important;
}
.Bold {
    font-weight: bold;
}
.z-index2 {
    z-index: 2;
}
@media(max-width: 767px){

    .container {
        padding-right: 30px;
        padding-left: 30px;
    }
    .xs-pd-0 {
        padding: 0!important;
    }
    .xs-pdt-0 {
        padding-top: 0!important;
    }
    .xs-pdl-0 {
        padding-left: 0!important;
    }
    .xs-pdr-0 {
        padding-right: 0!important;
    }
    .xs-pdb-0 {
        padding-bottom: 0!important;
    }

    .xs-mg-0 {
        margin: 0!important;
    }
    .xs-mgt-0 {
        margin-top: 0!important;
    }
    .xs-mgl-0 {
        margin-left: 0!important;
    }
    .xs-mgr-0 {
        margin-right: 0!important;
    }
    .xs-mgb-0 {
        margin-bottom: 0!important;
    }
    .xs-text-center {
        text-align: center;
    }
    .xs-float-inherit {
        float: inherit !important;
    }
    .xs-height-initial {
        height: initial !important;
    }

    .xs-100vh {
        height: 100vh !important;
    }
}
/*-----------------------------------------*/
/*          COMMON CLASS ENDS              */
/*-----------------------------------------*/


/*-----------------------------------------*/
/*          SPACING CLASS STARTS           */
/*-----------------------------------------*/
.h05 {height: 5px}
.h10 {height: 10px}
.h15 {height: 15px}
.h20 {height: 20px}
.h30 {height: 30px}
.h40 {height: 40px}
.h50 {height: 50px}
.h60 {height: 60px}
/*-----------------------------------------*/
/*          SPACING CLASS ENDS             */
/*-----------------------------------------*/


/*-----------------------------------------*/
/*          COLOR CSS STARST               */
/*-----------------------------------------*/
.white {
    color: #fff !important;
}
.yellow {
    color: #FFA21F !important;
}
.theme-black {
    color: #3A3E59 !important;
}
.bg-theme-white {
    background-color: #fff !important;
}

/*-----------------------------------------*/
/*          COLOR CSS ENDS                 */
/*-----------------------------------------*/

/*-----------------------------------------*/
/*          BUTTON CSS STARTS              */
/*-----------------------------------------*/
.btn {
    border-radius: 0;
    font-size: 16px;
    padding: 10px 15px;
    letter-spacing: 1px;
    font-family: 'Gotham-Book';
}
.btn-red-borderd {
    color: #F42E31;
    border: 1px solid #F42E31;
    background-color: transparent;
}
.btn-red-borderd:hover {
    color: #fff;
    border: 1px solid transparent;
}
.btn-hover-effect {
    position: relative;
}
.btn-hover-effect:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom:0px;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.btn-hover-effect:hover:before{
    width:100%;
}
.btn-hover-effect:after {
    content: '';
    position: absolute;
    right: 0px;
    top:-1px;
    width: 0;
    z-index: 1;
    height: 1px;
    background-color: #fff;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.btn-hover-effect:hover::after {
  width:100%;
}
.btn-hover-effect:hover{
  border-left:1px solid #fff;
  border-right:1px solid #fff;
}
@media(max-width: 1799px) {
    .btn {
        font-size: 14px;
        padding: 7px 12px;
    }
}
/*-----------------------------------------*/
/*          BUTTON CSS ENDS                */
/*-----------------------------------------*/

/*-----------------------------------------*/
/*           INPUT CSS STARTS              */
/*-----------------------------------------*/
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #bfbfbf;
  font-size: 16px;
}
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder  { /* Firefox 19+ */
  color: #bfbfbf;
  font-size: 16px;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder { /* IE 10+ */
  color: #bfbfbf;
  font-size: 16px;
}
input[type=text]:-moz-placeholder,
input[type=text]:-moz-placeholder  { /* Firefox 18- */
  color: #bfbfbf;
  font-size: 16px;
}

input[type=text]:active::-webkit-input-placeholder,
input[type=password]:active::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: transparent;
}
input[type=text]:active::-moz-placeholder,
input[type=password]:active::-moz-placeholder  { /* Firefox 19+ */
  color: transparent;
}
input[type=text]:active:-ms-input-placeholder,
input[type=password]:active:-ms-input-placeholder { /* IE 10+ */
  color: transparent;
}
input[type=text]:active:-moz-placeholder,
input[type=text]:active:-moz-placeholder  { /* Firefox 18- */
  color: transparent;
}

input[type=text]:focus::-webkit-input-placeholder,
input[type=password]:focus::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: transparent;
}
input[type=text]:focus::-moz-placeholder,
input[type=password]:focus::-moz-placeholder  { /* Firefox 19+ */
  color: transparent;
}
input[type=text]:focus:-ms-input-placeholder,
input[type=password]:focus:-ms-input-placeholder { /* IE 10+ */
  color: transparent;
}
input[type=text]:focus:-moz-placeholder,
input[type=text]:focus:-moz-placeholder  { /* Firefox 18- */
  color: transparent;
}

textarea::-webkit-input-placeholder {
    color:#bfbfbf !important;
    font-size: 16px;
}
textarea:active::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: transparent !important;
}

textarea:-moz-placeholder { /* Firefox 18- */
    color: #bfbfbf;
    font-size: 16px;
}

textarea::-moz-placeholder {  /* Firefox 19+ */
    color: #bfbfbf;
    font-size: 16px;
}

textarea:-ms-input-placeholder {
    color: #bfbfbf;
    font-size: 16px;
}
textarea {
    color: #bfbfbf;
}
textarea.form-control {
	 background-color: transparent !important;
	 color:#bfbfbf !important;
}
input.form-control {
    background-color: transparent !important;
    outline: none !important;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    width: 100%;
    text-align: center;
    color:#bfbfbf !important;
}
input.form-control:focus, input.form-control:active ,textarea:focus, textarea:active {
    outline: none !important;
    border-color: rgba(255,255,255,.3);
    box-shadow: none !important;
}
/*-----------------------------------------*/
/*           INPUT CSS ENDS                */
/*-----------------------------------------*/

.blackoverlay {
    position: relative;
}
.blackoverlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    z-index: 1;
}