﻿/*
[CSS Index - style]

---

Template: NWT
Author:   Cober
*/

/*
 2.- Master Head
 4.- Responsive
*/

/***************************************************Master Head***************************************************/

.divider_ot{
    position: relative; 
    background: #fff; 
    height: 60px;
    width: 100vw;
}

.container.super-center.h-100{
    background-color: transparent;
    z-index: 2;
}

.base_overlay{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: absolute;
    background-color: #000;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: .6;
    z-index: 1;
}

#base-header {
	position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
#base-header .content-box {
	position: relative;
}

#base-header .content-box .title-box{
	position: relative;
}
#base-header .content-box .title-box h2.sec-title,
#base-header .content-box .title-box p.sec-text{
    color: #fff;
    font-weight: bold;
}
#base-header .content-box .title-box h2.sec-title::before {
    background: rgb(255, 255, 255);
}
#base-header .content-box .title-box h2.sec-title::after {
    left: 0px;
    background: rgb(255, 255, 255);
}

#base-header .content-box .bread-crumb {
    position: relative;
    margin-top: 23px;
}

#base-header .content-box .bread-crumb li {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    padding-right: 40px;
    margin-right: 15px;
}
#base-header .content-box .bread-crumb li:first-child:before {
    position: absolute;
    content: "\f101";
    font-size: 24px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #fff;
    top: 2px;
    right: 0px;
}
#base-header .content-box .bread-crumb li:last-child {
    padding: 0px;
    margin: 0px;
}
#base-header .content-box .bread-crumb li:last-child a{
	color: #fff!important;
}
#base-header .content-box .bread-crumb li:last-child:hover a{
	text-decoration: underline;
}

/*Responsive*/

@media (max-width: 768px) { /*sm*/

}
@media (min-width: 768px) { /*md*/

}
@media (min-width:992px) { /*lg*/
    .divider_ot{
        height: 80px;
    }
	#base-header .content-box {
		display: flex;
	}
	#base-header .content-box .title-box{
		margin-right: auto;
	}
	#base-header .content-box .bread-crumb {
		margin-left: auto;
	}
}