body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #6c7279;
    -webkit-font-smoothing: antialiased;
    /* background-color: #fff; */
    /* background-color: #fff; */
    background: url(img/bg_suur.jpg);
    /* background-repeat: no-repeat; */
    background-size: contain, cover;
    }

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0 0 10px;
}


/* 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: #031f35;
    border-bottom: 2px solid #ffc107;
}

.header.fixed .header__inner {
    padding-top: 15px;
    padding-bottom: 15px;

    border-bottom: 0;
}
.header .fixed .header__inner .header__logo img{
    max-height: 35px;
    width: auto;
}
.header__logo img{
    max-height: 35px;
    width: auto;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;

    border-bottom: 1px solid #fad73f;
}


/* Nav
===================*/

.nav {
    display: flex;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav__link {
    margin-left: 50px;

    color: #fff;
    text-decoration: none;
    opacity: 1;

    transition: opacity .1s linear;
}

.nav__link:first-child {
    margin-left: 0;
}

.nav__link:hover, .nav__link:focus, .nav__link:active {
    opacity: 1;
    color: #f4c300;
}


/* Intro
===================*/

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: 750px; */
    height: 100vh;
    padding-top: 100px;
    background: #011728 url("img/bg3.jpg") center 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;
}
#hero .cta {
    display: inline-block;
    padding: 10px 30px;
    color: white;
    background-color: transparent;
    border: 2px solid #ffc107;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .1rem;
    margin-top: 10px;
    transition: .3s ease;
    transition-property: background-color, color;
}
#hero .cta:hover {
    color: white;
    background-color: #ffc107;
}
#hero {
    display: flex;
    flex-direction: column;
    /* flex-wrap: nowrap; */
    /* justify-content: flex-start; */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    justify-content: center;
}
#hero h1 {
    display: block;
    width: inherit; 
    
    position: relative;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: 1s;
}
#hero h1:nth-child(1) {
    animation-delay: 1s;
}
#hero h1:nth-child(2) {
    animation-delay: 2s;
}
#hero h1:nth-child(3) {
    animation: text_reveal_name .5s ease forwards;
    animation-delay: 3s;
}
#hero h1 span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #ffc107;
    animation: text_reveal_box 1s ease;
    animation-delay: .5s;
}
#hero h1:nth-child(1) span {
    animation-delay: .5s;
}
#hero h1:nth-child(2) span {
    animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
    animation-delay: 2.5s;
}
@keyframes text_reveal_box {
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}
@keyframes text_reveal {
    100% {
        color: white;
    }
}
@keyframes text_reveal_name {
    100% {
        color: #ffc107;
        font-weight: 700;
        text-transform: uppercase;
    }
}
/* Button
===================*/
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 14px 40px;

    border-radius: 2px;
    border: 0;
    cursor: pointer;

    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;

    transition: background .1s linear;
}

.btn--red {
    background-color: #e84545;
}

.btn--red:hover {
    background-color: #dd3434;
}

.btn--long {
    min-width: 280px;
}

/* About Section */
#about {
    /* background-color: #ffc107; */
    background-color: #ffc107;
    background-image: url(img/batthern.png);
    border: #e2ab07 15px solid;
    border-left: 0px;
    border-right: 0px;
}
.about {
    /* margin: 90px 0; */
    text-align: center;
}

#about p{
    
    margin-bottom: 10px;
    font-size: inherit;
    line-height: 1.5;
    color: #2d3033;
    font-weight: 600;
    text-align: center;
}

.about__inner {
    padding: 45px 25px;
    
}
.about__img {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    
}
.about__title {
    margin-bottom: 20px;
    font-size: 28px;
    color: #2d3033;
    font-weight: 600;
    text-align: center;
}


/* End About Section *//* End Hero Section */



/* Features
===================*/
#features {
      background: #31344e url(img/bg4.jpg) top center;
    background-size: cover; 
}
.features {
    display: flex;
    flex-wrap: wrap;
    padding: 95px 0;
    justify-content: space-around;
}

.features__item {
    width: 30%;
    padding: 25px 30px;
    margin: 25px 0;
    text-align: center;
    /* filter: blur(8px); */
    /* -webkit-filter: blur(8px); */
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.4);
    border-radius: 10px;
    position: relative;
}

.features__icon {
    margin-bottom: 25px;
}

.features__title {
    margin-bottom: 20px;
    font-size: 14px;
    /* color: #77d670; */
    color: #75a7ca;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    }

.features__text {
    font-size: inherit;
    line-height: 1.5;
    /* color: #75a7ca; */
    color: #fff;
    font-weight: 600;
}



.bar1{
    width: 200px;
    height: 5px;
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
    background-color: #ffc107; 
    border-radius: 0px 0px 10px 10px;
    display: none;
    animation: bar1 0.5s;
}
.features__item:hover{
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.6);
    transition: all ease 0.8s;
}

.features__item:hover .bar1{
    display: block;
}
.team__item:hover .bar1{
    display: block;
}
@keyframes bar1{
    0%{
        width:0px;
    }
    100%{
        width:200px;
    }
}
/* 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__item:hover .works__content {
    opacity: 1;
}

.works__photo {
    min-width: 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;

    transform: translate3d(-50%, -50%, 0);
}

.works__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;

    background-color: rgba(14, 60, 86, .9);
    opacity: 0;

    text-align: center;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    transition: opacity .2s linear;
}

.works__title {
    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.works__text {
    font-size: 14px;
    color: #fff;
}




/* Team
===================*/
#team {
    background: #31344e url(img/bg5.jpg) center no-repeat;
    background-size: cover;
}
.team {
    padding: 100px 25px;
}

.team__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: space-around;
}

.team__item {
    width: 24%;
    padding: 15px 15px;
    margin-bottom: 30px;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.4);
    border-radius: 10px;
    position: relative;
}

.team__item:hover{
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.6);
    transition: all ease 0.8s;
}
.team__photo {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%;
}

.team__name {
    margin-bottom: 8px;

    font-size: 22px;
    color: #77d670;
}

.team__prof {
    margin-bottom: 15px;

    font-size: 13px;
        color: #f3f3f3;
    text-transform: uppercase;
}

.team__text {
    margin-bottom: 20px;

    font-size: 14px;
    line-height: 1.5;
    color: #33c4ef;
}



/* 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: 14px;
    /* background-color: #fff; */
    border: 1px solid #ffc107;
    transition: background .1s linear;
}
.social__item:hover {
    background-color: #ffc107;
}

.social__item:hover .social__icon {
    fill: #000;
}

.social--footer .social__item {
    background-color: transparent;
    border-width: 2px;
    border-color: #fff;
    border-radius: 2px;
}

.social--footer .social__item:hover {
    background-color: #ffc107;
}

.social__icon {
    display: block;
    height: 18px;

    fill: #ffc107;

    transition: fill .1s linear;
}

.social--footer .social__icon {
    fill: #fff;
}



/* Reviews
===================*/

/* End Services Section */
#partners {
    background-color: #ffc107;
    background-image: url(img/batthern.png);
    text-align: center;
    border: #e2ab07 15px solid;
    border-left: 0px;
    border-right: 0px;
}
.partners{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.partners_head{
    
}
.partners-title {
    color: #545454;
    font-size: 28px;
    /* font-weight: 400; */
    letter-spacing: 1px;
    padding-top: 35px;
}
.partners_item{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    /* margin: 45px 0; */
    margin-top: 15px;
    padding-bottom: 50px;
}
#partners img{
    height: 75px;
    width: auto;
    padding: 15px;
   
}

.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 button:focus {
    outline: 0;
}

.slick-dots .slick-active button {
    opacity: 1;
}

/* Download
===================*/

.download {
    margin: 90px 0;

    text-align: center;
}

.download__title {
    margin-bottom: 10px;

    font-size: 28px;
    color: #fff;
    font-weight: 300;
}

.download__text {
    margin-bottom: 30px;

    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}



/* Footer
===================*/

.footer {
    background-color: #011220;
    text-align: center;
    padding-top: 50px;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 0;
}

.footer__block {
    width: 50%;
    padding: 0 15px;

    text-align: center;
}

.footer__title {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-decoration: underline;
}

.footer__address {
    font-size: 20px;
    line-height: 1.5;
    font-style: normal;
    color: #ffffff;
    font-weight: 600;
    /* text-align: left; */
    margin-bottom: 20px;
}

.footer__text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .5);
}
.footer__info a{
    text-decoration: none;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 1.6px;
    font-style: oblique;
    color: #ffc107;
    font-weight: 600;
    
    font-family: 'Open Sans', sans-serif;
    
    

}
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}


/* Copyright
===================*/

.copyright {
    padding: 20px 0;

    background-color: #313454;
}

.copyright__text {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #808080;
}

.copyright__text span {
    color: #fff;
}


/* Burger */
.burger {
    display: none;
    padding: 9px 2px;

    background: none;
    border: 0;
    cursor: pointer;
}

.burger__item {
    display: block;
    width: 28px;
    height: 3px;

    background-color: #fff;

    font-size: 0;
    color: transparent;

    position: relative;
}

.burger__item:before,
.burger__item:after {
    content: "";
    height: 100%;

    background-color: #f4c300;

    position: absolute;
    right: 0;
    z-index: 1;
}

.burger__item:before {
    width: 30px;
    top: -8px;
}

.burger__item:after {
    width: 26px;
    bottom: -8px;
}

.footer__title2 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
    border-bottom: 1px #ffc107 solid;
    padding-bottom: 10px;
}

/* Media
===================*/

@media (max-width: 1300px) {
    /* Works */
    .works__item {
        width: 50%;
    }
}

@media (max-width: 991px) {

    /* Nav */
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: #31344e;
        text-align: center;
        align-items: center;
        position: absolute;
        font-size: larger;
        top: 100%;
        right: 0;
        padding: 20px 0;
    }

    .nav.show {
        display: flex;
    }

    .nav__link {
        padding: 15px 15px;
        margin-left: 0px;
        color: #fff;
        text-decoration: none;
        opacity: 1;
        transition: opacity .1s linear;
    }

    /* Burger */
    .burger {
        display: block;
    }

    /* Intro */
    .intro__title {
        font-size: 40px;
    }

    /* Features */
    .features__item {
        width: 45%;
    }

    /* Team */
    .team__item {
        width: 45%;

        text-align: center;
    }

    .team__photo {
        margin-left: auto;
        margin-right: auto;
    }

    /* Team */
    .social {
        justify-content: center;
    }

    /* Reviews */
    .reviews__photo {
        width: 100%;
        margin: 15px 0 40px;
        overflow: hidden;
    }

    .reviews__content {
        width: 100%;
        padding-left: 0;
        padding-bottom: 40px;
    }
}


@media (max-width: 767px) {

    /* Intro */
    .intro {
        height: auto;
        padding-top: 130px;
        padding-bottom: 30px;
    }

    .intro__title {
        font-size: 30px;
    }

    .intro__subtitle {
        margin-bottom: 30px;

        font-size: 16px;
    }
    #hero .cta {
    font-size: 1rem;
    }
    /* Features */
    .features {
        margin: 40px 0;
    }

    .features__item {
        width: 95%;
        padding-left: 0;
        padding-right: 0;
    }

    /* Works */
    .works__item {
        width: 100%;
        height: 300px;
    }

    /* Team */
    .team {
        margin: 60px 0 30px;
    }

    .team__item {
        width: 95%;
    }

    /* Reviews */
    .reviews__text {
        font-size: 25px;
    }

    /* Btn */
    .btn--long {
        min-width: 260px;
    }

    /* Download */
    .download {
        margin: 50px 0;
    }

    .download__title {
        font-size: 24px;
    }

    /* Footer */
    .footer__inner {
        padding: 30px 0;
    }

    .footer__block {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer__block:last-child {
        margin-bottom: 0;
    }
}


@media (max-width: 414px) {

    /* Reviews */
    .reviews__img {
        right: -100px;
    }
    .btn--long {
    min-width: 180px;
    }
    #partners img {
    height: 65px;
    width: auto;
    }
}






