
/*============ Reset min ============*/

body {
    margin: 0;

    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #6c7279;
    -webkit-font-smoothing: antialiased;

    background-color: #fff;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0 0 10px;
}

::selection {background: #9BE2E7; color:#fff;}
::-moz-selection {background: #9BE2E7; color:#fff;}
::-webkit-selection {background: #9BE2E7; color:#fff;}

.draggable--false{
    pointer-events: none;
}

/*============ Container ============*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/*============ Header ============*/
.header {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header.fixed{
    height: auto;

    position: fixed;

    background-color: #0f4c75;
}

.header.fixed .header__inner{
    padding-top: 15px;
    padding-bottom: 15px;

    border-bottom: 0px;
}

.header__inner {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid #515369;
}

/*============ Nav ============*/
.nav {
    display: flex;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav__link {
    margin-left: 50px;
    color: #fff;
    text-decoration: none;
    opacity: .75;

    transition: opacity .3s
}

.nav__link:first-child {
    margin-left: 0;
}

.nav__link:hover {
    opacity: 1;
}

/*============ Intro ============*/
.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 750px;
    padding-top: 100px;

    background: #1b262c url("../img/intro-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro__inner {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    text-align: center;
}

.intro__title {
    margin: 0 0 30px;

    font-family: 'Open Sans', sans-serif;
    font-size: 65px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.intro__subtitle {
    margin-bottom: 60px;

    font-size: 22px;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
}

/*============ Button ============*/
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 14px 40px;

    border-radius: 2px;
    border: 0;
    cursor: pointer;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;

    box-shadow: 0 8px 15px rgba(0,0,0,.1);

    transition: all .3s ease-in-out .1s ;
}

/*btn white-blue*/

.btn--wb {
    background-color: #fff;
    color: #000;
}

.btn--wb:hover {
    background-color: #00b7c2;
    box-shadow: 0 10px 15px rgba(0, 183, 194, .2);
    transform: translateY(-3px);
    color: #fff;
}

/*btn red*/

.btn--blue{
	background-color: #00b7c2;
    color: #fff;
}

.btn--blue:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,.2);
    transform: translateY(-3px);
}

/*btn long*/

.btn--long{
    min-width: 280px;
}

/*============ Features ============*/
.features {
    display: flex;
    flex-wrap: wrap;
    margin: 95px 0;
}

.features__item {
    width: 33.33333%;
    padding: 0 40px;
    margin: 25px 0;

    text-align: center;
}

.features__icon {
    margin-bottom: 25px;
}

.features__title {
    margin-bottom: 20px;

    font-size: 14px;
    color: #2d3033;
    font-weight: 700;
    text-transform: uppercase;
}

.features__text {
    font-size: 14px;
    line-height: 1.5;
    color: #6c7279;
}

/*============ Works ============*/
.works {
    display: flex;
    flex-wrap: wrap;
}

.works__item {
    width: 25%;
    height: 350px;

    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;

    position: relative;
    overflow: hidden;
}

.works__image {
    width: 100%;
    height: 100%;
    object-fit: cover;    
}

.works__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 183, 194, .9);
    opacity: 0;

    text-align: center;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    transition: opacity .3s linear;
}

.works__title {
    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.works__text {
    font-size: 14px;
    color: #fff;
}

.works__item:hover .works__content {
    opacity: 1;
}

/*============ Team ============*/
.team {
    margin: 100px 0 70px;
}

.team__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.team__item {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.team__photo {
    height: 300px;
    margin-bottom: 20px;

    overflow: hidden;
}

.team__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team__name {
    margin-bottom: 8px;

    font-size: 22px;
    color: #2d3033;
    text-transform: capitalize;
}

.team__prof {
    margin-bottom: 15px;

    font-size: 13px;
    color: #00b7c2;
    text-transform: uppercase;
}

.team__text {
    margin-bottom: 20px;

    font-size: 14px;
    line-height: 1.5;
    color: #6c7279;
}

/*============ Social ============*/
.social {
    display: flex;
}

.social--footer{
    justify-content: center;

}

.social__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 4px;
	
	background-color: #fff;
    border: 1px solid #e8ecee;

    transition: background-color .3s linear;
}

.social--footer .social__item{
    background: none;
    border-width: 2px;
    border-color: #fff;
    border-radius: 2px;
}

.social__item:hover{
	background-color: #e8ecee;
}

.social--footer .social__item:hover {
    background-color: #fff;
}

.social__item:hover .social__icon{
	fill: #00b7c2;
}

.social__icon {
	display: block;
	height: 18px;

    fill: #c6cacc;

    transition: fill .3s linear;
}

/*============ Reviews ============*/
.reviews{
	overflow: hidden;
	background-color: #cf9d70;
}

.reviews__slider{
    height: 500px;
    overflow: hidden;
}

.reviews__slider.slick-initialized{
    height: auto;
} 

.reviews__item{
	display: flex;
	flex-wrap: wrap;

}

.reviews__photo{
	width: 50%;
	height: 500px;
}

.reviews__img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 50% 25%;
    
}

.reviews__content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	padding-left: 80px;
}

.reviews__text{
	margin-bottom: 25px;

	font-family: 'Cardo', sans-serif;
	font-style: italic;
	font-size: 36px;
	line-height: 1.2;
	color: #fff;
}

.reviews__author{
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
}

.slick-dots{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0 0 10px;
    list-style: none;
    width: 50%;

    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.slick-dots li{
    margin: 0 5px;
}

.slick-dots button{
    width: 15px;
    height: 15px;
    padding: 0;

    background: #fff;
    border-radius: 50%;
    border: 0;
    opacity: .5;
    cursor: pointer;

    font-size: 0;
    color: transparent;
}

.slick-dots .slick-active button{
    opacity: 1;
}

.slick-dots button:focus {
    outline: 0;
}

/*============ Download ============*/

.download{
	margin: 90px 0;

	text-align: center;
}

.download__title{
    margin-bottom: 15px;

    font-size: 28px;
    color: #2d3033;
    font-weight: 300;
    text-transform: capitalize;
}

.download__text{
    margin-bottom: 30px;

    font-size: 13px;
    color: #2d3033;
    font-weight: 700;
    text-transform: uppercase;
}

/*============ Footer ============*/
.footer{
    background-color: #0C3D5E;
}

.footer__inner{
    padding: 70px 0;

    display: flex;
    flex-wrap: wrap;
}

.footer__block{
    width: 33.33333%;
    padding: 0 15px;

    text-align: center;
}

.footer__title{
    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.footer__address, .footer__text{
    font-size: 14px;
    line-height: 1.5;
    font-style: normal;
    color: rgba(255, 255, 255, .5);
}

/*============ Copyright ============*/
.copyright{
    padding: 20px 0;

    background-color: #0f4c75;
}

.copyright__text{
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #808080;
}

.love{
    height: 10px;
    width: 10px;
    fill: #e84545;
}

.copyright__text span{
    color: #fff;
}

