
/*=======================================
About Themes
------------------
Themes Name: Angina
Version: 1.1
Author Name: Joy
Fb link: facebook.com/dcjoy95
Last update: 20/04/20
Primary use: Personal Portfolio/ Business


Table of Content
-------------------
* Body
* Header
* Banner
* About
* Service
* Portfolio
* Recent-project
* Testimonial
* Blog
* Contact
=======================================*/

/*=======================================
font-family: 'Megrim', cursive;---LOGO
font-family: 'Ubuntu', sans-serif;----PARAGRAPH
font-family: 'Cairo', sans-serif;----BUTTON
font-family: 'Noto Sans', sans-serif;-----HEADING

=======================================*/

@import url('https://fonts.googleapis.com/css?family=Megrim');
@import url('https://fonts.googleapis.com/css?family=Ubuntu');
@import url('https://fonts.googleapis.com/css?family=Cairo');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans');


* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    color: #000000;
    background: #FFFFFF;
    overflow-x: hidden;
}

h2 {
    font-family: 'Noto Sans', sans-serif;
    text-transform: capitalize;
    font-size: 25px;
    text-align: center;
    letter-spacing: 3px;
    color: var(--primary-color);
    position: relative;
    font-weight: 300;
}

.section {
    margin-top: 10px;
    padding-top: 65px;
    padding-bottom: 40px;
}

:root {
    --primary-color: #e74c3c;
    --base-color: #F1E7FE;
    --white: #FFFFFF;
    --black: #000000;
    --section-bg: #FAFAFA;
}

/*=======================================
Header Section
=======================================*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
}


.logo img {
    height: 100px;
    width: auto;
    transition: all ease .5s;
}

nav {
    width: 100%;
    height: 100px;
    margin: 0 auto;
    transition: all ease .5s;
}

nav ul {
    margin: 20px 0 0;
}

nav ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}

nav ul li a {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    color: var(--white);
    display: block;
    position: relative;
    display: block;
    background: none;
    padding: 2px 10px;
    transition: .3s;
}

nav ul li a i {
    padding-right: 6px;
}

.navbar-nav .nav-link:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.focus {
    text-decoration: none;
    color: var(--primary-color);
    transition: .3s;
}

.content {
    width: 100%;
    height: 100%;
}

.navbar.shrink {
    height: 70px;
    width: auto;
    transition: all ease .2s;
    background-color: rgba(0, 0, 0, 0.9);
}

.navbar.shrink .logo img {
    height: 70px;
    width: auto;
    transition: all ease .3s;
}

/*=======================================
Banner Section
=======================================*/


#slide-1 {
    background: url(../images/slide1.jpg) center center;
    background-size: cover;
}

#slide-2 {
    background: url(../images/slide2.jpg) center center;
    background-size: cover;
}

#slide-3 {
    background: url(../images/slide3.jpg) center center;
    background-size: cover;
}

#slide-4 {
    background: url(../images/slide4.jpg) center center;
    background-size: cover;
}

#slide-5 {
    background: url(../images/slide6.jpg) center center;
    background-size: cover;
}

.slider-area .owl-dots {
    text-align: center;
    position: absolute;
    left: 0;
	right: 0;
	bottom: 20px;
}

.slider-area .owl-dot {
    background: transparent;
    margin: 8px;
    height: 14px;
    width: 14px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    transition: .5s;
}

.slider-area .owl-dot.active {
    background-color: var(--primary-color);
    transition: .5s;
}

.slider-area .table-cell {
    padding-top: 23%;
    padding-left: 10%;
}

.table-cell h1 {
    padding-top: 12px;
    color: var(--white);
    transform: translateY(-50%);
    text-align: left;
    margin: 0;
    height: 75px;
    width: 523px;
    padding-bottom: 15;
    font-size: 39px;
    letter-spacing: 1px;
    font-family: 'Exo 2', sans-serif;
    background: rgba(0, 0, 0, 0.8);
    padding-left: 22px;
    border-radius: 5px 33px 5px 20px;
}

.table-cell h1 span {
    letter-spacing: 5px;
    font-weight: 500;
    font-family: 'Noto Sans', sans-serif;
    color: var(--primary-color);
    text-transform: capitalize;
}

.table-cell h2 {
    font-size: 26px;
    color: var(--white);
    transform: translateY(-50%);
    text-align: left;
    margin: 0;
    padding-bottom: 20;
    font-family: 'KoHo', sans-serif;
    text-transform: capitalize;
    letter-spacing: 3px;
    font-weight: 500;
    font-family: 'Noto Sans', sans-serif;
    margin-bottom: 28px;
    padding-left: 16px;
}

.dark-overlay:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    content: "";
    z-index: -1;
    opacity: .3;
}

.dark-overlay {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.table-cell .contact-btn {
    position: absolute;
    margin-left: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--black);
    border-radius: 5px;
}

.table-cell .contact-btn a {
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    color: var(--primary-color);
    height: 42px;
    width: 180px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    padding: 4px;
    transition: all ease .5s;
    text-align: center;
}

.table-cell .contact-btn a:after {
    content: '\f007';
    font-family: fontAwesome;
    position: relative;
    left: -20px;
    opacity: 0;
    transition: .5s;
    font-size: 21px;
}

.table-cell .contact-btn a:hover:after {
    left: 10px;
    opacity: 1;
}

.table-cell .contact-btn a:hover {
    letter-spacing: 3px;
    transition: all ease .5s;
}

/*=======================================
About Section
=======================================*/
#about {
    padding: 110px 0;
}

.about-details {
    padding-right: 20px;
    padding-top: 27px;
}

.about-details h6 {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 32px;
}

.about-details h3 {
    font-size: 28px;
    text-transform: capitalize;
    line-height: 39px;
    padding-bottom: 14px;
}

.about-details p {
    color: #8B888E;
    line-height: 35px;
}

.about-details ul {
    padding-bottom: 15px;
}

.about-details ul li i {
    color: var(--primary-color);
    font-size: 17px;
    padding-right: 9px;
}

.about-details ul li {
    list-style-type: none;
    color: #000;
    font-size: 17px;
    line-height: 36px;
}

.about-details .about-btn a {
    text-decoration: none;
    padding: 15px 22px;
    background: var(--primary-color);
    color: #fff;
    text-transform: capitalize;
    transition: .5s;
    border-radius: 7px;
}

.about-details .about-btn a:hover {
    background: #96281b;
    transition: .5s;
}
/*=======================================
Service Section
=======================================*/
#service {
    padding-bottom: 0px;
}

#service h2 {
    color: var(--primary-color);
}

#service .service-details {
    padding-top: 90px;
}

#service p {
    color: #000;
    text-align: center;
    font-size: 30px;
    text-transform: capitalize;
}

.single-service {
    text-align: center;
    padding: 40px;
    margin-bottom: 30px;
    background: rgba(260, 61, 57, 0.3);
    border-radius: 10px;
    transition: .5s;
}

.single-service i {
    font-size: 60px;
    color: var(--primary-color);
}

.single-service h6 {
    font-size: 20px;
    padding-top: 22px;
    text-transform: capitalize;
}

.single-service:hover {
    cursor: pointer;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    transition: .5s;
}
/*=======================================
Recent-project counter-up Section
=======================================*/
.recent-project {
    min-height: 750px;
    text-align: center;
    margin-top: 120px;
    position: relative;
}

.fullscreen-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.fullscreen-video-wrap video {
    min-width: 100%;
    min-height: 100%;
}

.recent-project .table-cell {
    position: absolute;
    width: 100%;
    color: #fff;
    font-size: 25px;
    transform: translateY(115%);
}

.recent-project .table-cell h6 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.recent-project .table-cell h3 {
    font-size: 42px;
    letter-spacing: 1px;
    padding: 5px 0;
}

.recent-project .table-cell h3 span {
    color: var(--primary-color);
}

.recent-project .table-cell p {
    font-size: 20px;
    line-height: 35px;
    color: #d2d7d3;
    margin-bottom: 50px;
}

.recent-project .table-cell .recent-btn a {
    text-decoration: none;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 54px;
    font-size: 21px;
    transition: .5s;
}

.recent-project .table-cell .recent-btn a:hover {
    background: #96281b;
    transition: .5s;
}

/*=======================================
Testimonial Section
=======================================*/
.entertainment-zone {
    padding: 150px 0;
    background: url(../images/ftpbg.jpg);
    background-size: cover;
}

.entertainment-zone img {
    border: 1px solid #000;
    cursor: move;
}

.entertainment-section {
    padding: 55px 0;
}

.entertainment-section h2 {
    font-weight: 500;
    font-size: 30px;
    padding-bottom: 37px;  
}

.deep-overlay:after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #000;
	content: "";
	z-index: -1;
	opacity: .6;
}

.deep-overlay {
	background-size: cover !important;
	position: relative;
	z-index: 1;
}

.ftp-section {
    min-height: 850px;
    text-align: center;
    position: relative;
    padding-bottom: 50px;
    margin: 0;
}

.fullscreen-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.fullscreen-video-wrap video {
    min-width: 100%;
    min-height: 100%;
}

.ftp-section .table-cell {
    position: absolute;
    width: 100%;
    color: #fff;
    font-size: 25px;
    transform: translateY(330%);
}

.ftp-section .table-cell h6 {
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

.ftp-section .table-cell h3 {
    font-size: 40px;
    letter-spacing: 1px;
    padding: 25px;
    border-radius: 14px;
}

.ftp-section .table-cell h3 span {
    color: var(--primary-color);
    text-transform: capitalize;
}

.ftp-section .table-cell p {
    font-size: 20px;
    line-height: 35px;
    color: #d2d7d3;
    margin-bottom: 50px;
}
/*=======================================
Features Section
=======================================*/
#features {
    margin-top: 140px;
    padding-top: 68px;
    padding-bottom: 40px;
}

#features h2 {
    color: var(--primary-color);
}

#features p {
    color: #000;
    text-align: center;
    font-size: 30px;
    text-transform: capitalize;
    padding-bottom: 70px;
}

.single-feature {
    width: 100%;
}

.single-feature .feature-text {
    text-align: left;
    width: 70%;
    float: left;
    padding: 15px 0;
}

.single-feature .feature-text h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: #48494B;
}

.single-feature .feature-text p {
    font-size: 16px!important;
    text-align: left!important;
    color: #838485!important;
    line-height: 30px;
    padding-bottom: 5px!important;
}

.single-feature .feature-img {
    width: 30%;
    float: left;
}

.single-feature .feature-img img {
    height: 85px;
    width: 90px;
    margin-top: 12px;
}

#feature .feature-main-img img {
    height: 386px;
    width: 400px;
}
/*=======================================
Testimonial Section
=======================================*/
#testimonial {
    margin-top: 55px;
    padding-top: 68px;
    padding-bottom: 80px;
}

#testimonial h2 {
    color: var(--primary-color);
}

#testimonial p {
    color: #000;
    text-align: center;
    font-size: 30px;
    text-transform: capitalize;
}

#testimonial .client-testimonial {
    padding-top: 75px;
}

#testimonial .single-testimonial {
    margin-top: 100px;
    display: block;
    height: auto;
    padding: 20px 28px;
    text-align: center;
    border: 1px solid var(--black);
    margin: 0 20px;
}

#testimonial img {
    display: inline-block;
    width: 20%;
    border-radius: 50%;
    border: 3px solid #bdc3c7;
}

.single-testimonial i {
    font-size: 45px;
    color: #bdc3c7;
}

.single-testimonial p {
    font-size: 15px!important;
}

.single-testimonial h5 {
    text-transform: capitalize;
    margin-top: 12px;
    margin-bottom: 3px;
}

.single-testimonial h6 i {
    font-size: 18px;
    color: #f4d03f;
}
/*=======================================
Package Section
=======================================*/
#package h2 {
    color: var(--primary-color);
}

#package p {
    color: #000;
    text-align: center;
    font-size: 30px;
    text-transform: capitalize;
}

#package .package-details {
    padding-top: 40px;
}

#package .package-details .single-package {
    text-align: center;
    padding: 12px 12px 30px 12px;
    margin-bottom: 48px;
    border-radius: 6px;
    width: 90%;
    background: #fff;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

#package .package-details h4 {
    text-transform: uppercase;
    background: #23CBA7;
    padding: 14px;
    color: #fff;
    border-radius: 8px;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 700;
}

#package .package-details h3 {
    color: #000;
    font-size: 30px;
    padding-top: 12px;
}

#package .package-details h5 {
    font-size: 17px;
    color: #22313f;
    padding: 10px 6px;
    margin: 0;
}

#package .package-details h6 {
    text-transform: capitalize;
    padding-top: 20px;
    font-size: 17px;
}

#package .package-details .pac-btn {
    padding-top: 14px;
}

#package .package-details .pac-btn a {
    text-decoration: none;
    text-transform: capitalize;
    padding: 11px 22px;
    color: #fff;
    background: #2ABB9B;
    border-radius: 23px;
    transition: .5s;
}

#package .package-details .pac-btn a:hover {
    background: #03A678;
    transition: .5s;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

#package .package-details .package-extra h3 {
    text-transform: capitalize;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 0;
    font-size: 28px;
}

#package .package-details .package-extra h3 a {
    text-decoration: none;
    background: var(--primary-color);
    transition: .5s;
    padding: 8px 19px;
    color: #fff;
    text-transform: lowercase;
    border-radius: 5px;
    font-size: 26px;
    letter-spacing: 1px;
    margin-left: 8px;
}

#package .package-details h3 a:hover {
    background: #96281B;
    transition: .5s;
}
/*=======================================
Contact Section
=======================================*/
.map-location {
    margin-top: 50px;
    margin-bottom: 50px;
    border-top: 3px solid #DEE1E6;
    border-bottom: 3px solid #DEE1E6;
}

#contact {
    padding-bottom: 60px;
    padding-top: 90px;
}

#contact h2:before {
    content: "";
    width: 10%;
    height: 1%;
    top: 50%;
    left: 26%;
    border: 1px solid var(--black);
    position: absolute;
}

#contact h2:after {
    content: "";
    width: 10%;
    height: 1%;
    top: 50%;
    right: 27%;
    border: 1px solid var(--black);
    position: absolute;
}

#contact .contact-bg {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
    min-height: 510px;
}

.address .contact-section {
    padding-bottom: 10px;
}

.address {
    background: #000;
    padding: 60px;
    min-height: 550px;
    color: #f3f1ef;
}

.address h4 {
    text-transform: capitalize;
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
    letter-spacing: 1px;
}

.single-address {
    margin: 20px 0;
}

.single-address i {
    font-size: 26px;
    float: left;
    color: var(--primary-color);
}

.single-address h5 {
    margin-left: 40px;
    font-size: 18px;
}

.address .social-icon a {
    text-decoration: none;
    border-radius: 50%;
    padding-right: 23px;
    color: #fff;
    transition: .5s;
}

.address .social-icon {
    
}

.address .social-icon a i {
    font-size: 20px;
}

.address .social-icon a:hover {
    color: var(--primary-color);
    transition: .5s;
}

.contact-form {
    margin-top: 50px;
    background: #FFFFFF;
    padding: 15px;
}

.contact-form h4 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 45px;
    text-align: left;
    text-transform: capitalize;
    margin-left: 4px;
}

.btn-submit,
.btn-submit:focus {
    border: 1px solid var(--black);
    font-size: 15px;
    padding: 10px 19px;
    background: #000;
    color: var(--white);
    letter-spacing: 1px;
    border-radius: 69px;
    margin-left: 10px;
    transition: .5s;
}

.btn-submit:hover {
    background: var(--black);
    border: 1px solid var(--black);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    transition: .5s;
}

.form-control {
    background-color: transparent;
    color: #22313F !important;
    border-color: #95A5A6;
    border: none;
    border-bottom: 1px solid #95A5A6;
    box-shadow: none;
    margin-bottom: 50px;
    text-align: left;
}

.form-control:focus {
    border-color: #BDC3C7;
    outline: 0;
    box-shadow: none;
}

.contact-form input.form-control {
    color: var(--white);
}

.validation {
    color: #F22613;
    display: none;
    margin: -40px 0 0px;
    font-weight: 400;
    font-size: 13px;
}

#sendmessage {
    color: #008000;
    border: 1px solid #008000;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#errormessage {
    color: #F22613;
    display: none;
    border: 1px solid #F22613;
    text-align: left;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#sendmessage.show,
#errormessage.show,
.show {
    display: block;
}
/*=======================================
Footer Section
=======================================*/
.footer-section {
    background-color: var(--black);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Megrim', cursive;
}

.footer-logo h4 {
    color: var(--white);
    letter-spacing: 5px;
    font-size: 32px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-text p {
    color: var(--white);
    font-size: 16px;
    letter-spacing: 2px;
}

.footer-text p a {
    text-decoration: none;
    color: var(--primary-color);
}
/*=======================================
back-to-top btn 
=======================================*/
.back-to-top {
    position: fixed;
    bottom: 2em;
    right: 0px;
    text-decoration: none;
    color: var(--primary-color);
    background-color: rgba(235, 235, 235, 0.80);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 15px;
    display: none;
    transform: rotate(-90deg);
    z-index: 1;
}

.back-to-top:hover {
    color: var(--primary-color);
    text-decoration: none;
}
/*=======================================
Page-preloader 
=======================================*/
.preloader {
    background-color: #000;
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
    top: 0;
    transition: .5s;
}

.preloader_content img {
    background-size: cover;
    position: relative;
    height: 100%;
    width: 100%;
    transition: .5s;
}
