/* CSS COLOR VARIABLES */
:root {
    --white: #fff;
    --black: #000;
    --theme-color: #00e0d0;
    --heading-color: #413d4b;
    --body-text-color: #7a7a7a;
    --btn-color: rgb(9, 5, 47);
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: var(--body-text-color);
}

p {
    font-weight: 300;
    letter-spacing: .5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    font-weight: 700;
    margin: 0;
    letter-spacing: .5px;
}

a,
a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}

/*PSD Grid*/
.container {
    max-width: 940px !important;
}

/* PADDING & MARGIN */
.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-40 {
    padding-bottom: 40px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

/*Buttons*/
.tbtn {
    border: 1px solid transparent;
    background: transparent;
    padding: 15px 30px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--theme-color);
    display: inline-block;
    transition: .3s ease-in;
}

.border-btn {
    border-color: var(--theme-color);
    color: var(--theme-color);
    position: relative;
    z-index: 1;
}

.border-btn:hover {
    color: var(--btn-color);
    border-color: transparent;
}

.heading-btn {
    position: relative;
    z-index: 1;
}

.heading-btn:hover {
    border-color: transparent;
    color: var(--white);
}

.border-btn::before,
.heading-btn::before {
    position: absolute;
    content: '';
    transition: .4s all ease;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
}

.border-btn::before {
    background-color: var(--white);
}

.heading-btn::before {
    background-color: var(--btn-color);
}

.border-btn:hover:before,
.heading-btn:hover:before {
    transition: .4s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
}

.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 .25rem rgba(0, 224, 208, .25);
}


/* MENU START */
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
    color: var(--theme-color);
    font-size: 14px;
    text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    padding-right: 10px;
    padding-left: 10px;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--theme-color)
}

.nav-bg {
    background-color: rgb(9, 5, 47);
}

.navbar {
    transition: 1s all ease;
    z-index: 99999;
}

/* MENU END */
/* BANNER START */
#banner {
    background: url('./img/banner-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 750px;
}

#banner::before,
#video-area::before,
#team::before,
#peopleSay::before,
#footer::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(9, 5, 47, 0.75)
}

.banner__content {
    position: relative;
    z-index: 99;
}

.banner__content h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.banner__content h2:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 1px;
    background: var(--theme-color);
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
}

.banner__content p {
    color: var(--white);
    letter-spacing: .5px;
    margin-bottom: 55px;
    font-weight: 100;
}

/* SLICK SLIDER */
.banner-slider .slick-dots {
    bottom: -150px;
}

.banner-slider .slick-dots li,
.team-active .slick-dots li {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    border: 2px solid var(--white);
    border-radius: 50px;
}

.banner-slider .slick-dots li button,
.team-active .slick-dots li button {
    width: 15px;
    height: 15px;
    background: transparent;
}

.banner-slider .slick-dots li.slick-active,
.team-active .slick-dots li.slick-active {
    border-color: transparent;
    background-color: var(--theme-color);
}

.banner-slider .slick-dots li button:before,
.team-active .slick-dots li button:before {
    content: '';
}

.team-active .slick-dots {
    bottom: -30px;
}

/* BANNER END */
/* ABOUT AREA START */
.about__content h2 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about__content p {
    margin-bottom: 30px;
}

/* ABOUT AREA END */
/* VIDEO AREA START */
#video-area {
    background: url('./img/video-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 200px 0;
    position: relative;
}

.videoContent {
    position: relative;
    z-index: 99;
}

.videoContent__icon {
    font-size: 40px;
    color: var(--white);
    border: 3px solid var(--white);
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100%;
    transition: .4s ease-in;
    margin-bottom: 30px;
    cursor: pointer;
}

.videoContent__icon a {
    color: var(--white);
}

.videoContent h3 {
    font-size: 16px;
    font-weight: 900;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
}

/* VIDEO AREA END */
/* SERVICES START */
.heading-title {
    position: relative;
    z-index: 99;
}

.heading-title h2 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.heading-title-white h2 {
    color: #f9f9f9;
}

.heading-title p {
    margin-bottom: 30px;
    position: relative;
}

.heading-title-white p {
    color: var(--white);
}

.heading-title p::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background: #c6c4c9;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: 0 auto;
}

.heading-title-white p::before {
    background: #655c80;
}

.service__item {
    padding: 20px;
    margin-bottom: 10px;
}

.serviceI__item-icon {
    margin-bottom: 35px;
    cursor: pointer;
}

.service__item h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 900;
}

/* SERVICES END */

/* TEAM AREA START */
#team {
    background: url('./img/team-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.teamMember {
    color: var(--white);
    margin: 0 15px;
    margin-bottom: 30px;
}

.teamMember__img img {
    width: 100%;
}

.teamMember .card {
    background-color: transparent;
    border-radius: 0;
    border: 1px solid #78778b;
}

.teamMember .card-title {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
}

.teamMember .card-text:last-child {
    margin-bottom: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 300;
}

.teamBottom {
    position: relative;
    z-index: 100;
}

.teamBottom p {
    color: #f3f3f3;
    margin-bottom: 30px;
}

/* TEAM AREA END */
/* PROJECT START */
.project__right a {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    text-align: right;
    display: block;
    transition: .3s ease-in;
}

.project__right a:hover {
    color: var(--theme-color);
}

.project__img img {
    width: 100%;
}

/* PROJECT END */
/* PEOPLE SAY START*/
#peopleSay {
    background: url('./img/peopleSay-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.peopleSay__text-icon img {
    text-align: center;
    display: inline-block;
}

.peopleSay__text,
.content-slide-img {
    position: relative;
    z-index: 9999;
}

.peopleSay__text p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 26px;
    font-family: 'Playfair Display', serif;
    color: var(--white);
}

.peopleSay__text-author h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 3px;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
}

.peopleSay__text-author span {
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--white);
}

.peopleSay-active {
    width: 350px;
    margin: 0 auto;
    margin-top: 50px;
}

.content-slide-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.peopleSay-left,
.peopleSay-right {
    position: absolute;
    z-index: 9999;
    color: var(--white);
    top: 73%;
    cursor: pointer;
    font-size: 20px;
}

.peopleSay-left {
    left: 39%;
}

.peopleSay-right {
    right: 40%;
}

.slick-center .content-slide-img img {
    border: 3px solid var(--theme-color);
    width: 60px;
    height: 60px;
}

/* PEOPLE SAY END */

/* CONTACT AREA START */

.contact__left h2,
.contact__right h2 {
    font-size: 22px;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.contact__left .form-group {
    margin-bottom: 20px;
}

.contact__left .form-group .form-control {
    border-radius: 0;
    border: 1px solid #e5e5e5;
    padding: 15px 20px;
}

.contact__left .form-group textarea {
    height: 200px;
}

.contact__left button {
    padding: 10px 35px;
}

/* CONTACT AREA END */
/* FOOTER START */
#footer {
    background: url('./img/footer-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.footer-widget,
.footer-links,
.copyright {
    position: relative;
    z-index: inherit;
}

.footer-widget img {
    margin-bottom: 30px;
}

.footer-widget p {
    line-height: 26px;
    color: var(--white);
}

.footer-widget-head h4 {
    font-size: 15px;
    font-weight: 900;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
}

.footer-widget li {
    list-style: none;
    color: var(--white);
    margin-bottom: 80px;
}

.footer-widget span {
    position: absolute;
    margin-left: 20px;
    color: var(--white);
    line-height: 26px;
    display: inline-block;
}

.footer-widget input {
    background: none;
    border: 1px solid #a099b3;
    border-radius: 0;
    padding: 12px;
}

.footer-widget button {
    padding: 14px 17px;
    background: #a099b3;
    border: transparent;
    border-radius: 0;
    display: inline-block;
}

.footer-widget .social-icon a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--white);
    border: 1px solid var(--white);
    text-align: center;
    border-radius: 50px;
    margin-right: 7px;
    background: transparent;
    transition: .3s ease-in;
}

.footer-widget .social-icon a:hover {
    background-color: var(--theme-color);
    border-color: transparent;
    color: var(--heading-color);
    transform: rotate(360deg);
}

.footer-links a,
.copyright p {
    color: var(--white);
    font-weight: 400;
}

.footer-links a {
    margin-right: 35px;
    text-transform: uppercase;
}

.footer-links a:last-child {
    margin-right: 0px;
}

.footer-links a:hover {
    color: var(--theme-color);
}

.copyright {
    text-align: right;
}

.copyright p span:hover {
    color: var(--theme-color);
}

/* FOOTER END    */


/* SCROLL TO TOP START */
#topcontrol img {
    width: 35px;
    height: 35px;
    border: 2px solid var(--theme-color);
    padding: 5px;
}

/* SCROLL TO TOP END */