
* {
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    font-family: "Darker Grotesque" !important;
}



  
.logo{
  position: relative;
  max-width: 80px;
  width: 100%;
  margin:0 80px ;
}

.video-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
background: #000;
    opacity: .5;
}

.header {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
}

.header h3 {
    color: #fff;
    text-shadow: 10px 10px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
   
    font-size: 90px !important;
}
.header a:hover{
    background: transparent;
    border: 2px solid #3ec1d5;
    color: #fff;
    transition: all 0.5s ease;
}


@media(max-width: 900px) {
    .header {
          left: 50%;
    }

    .header h1 {
          font-size: 34px !important;
          text-align: center;
    }
}
.header p {
    color: white;
    text-shadow: 5px 5px 10px rgba(0,0,0,0.5);
   
    letter-spacing: 1px;
    font-size: 22px;
}
.header a{
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #3ec1d5;
    border : 2px solid white;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/*--------------- navigation --------------- */

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #000000;
  
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 200px; 
    
  }
  
  .dropdown:hover .dropdown-menu {
    display: grid;
  }
  
  .dropdown-menu li {
    background-color: #ffffff;
    text-decoration: none;
    display: flex;
  }
  
  .dropdown-menu li:hover {
    background-color: #ffffff;
    color: #000000;
  }
  


.nav.scrolled .dropdown-menu{
    background-color: #161616 !important;
    transition: background-color 500ms linear;
    
}

.nav {
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 2;
}

.nav.scrolled {
       background-color: #161616 !important;
    transition: background-color 500ms linear;
    
}



.nav #brand {
    float: left;
    display: block;
    margin-left: 40px;
    line-height: 80px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.nav #brand a {
    color: #fff;
    font-family: Poppins !important;
    transition: all 500ms ease-out;
}

.nav #brand a:hover {
    text-decoration: none;
}

.nav #menu {
    float: left;
    right: 40px;
    position: fixed;
    list-style: none;
  
}


.nav #menu li {
    padding-left: 40px;
    display: inline-block;
    font-weight: lighter !important;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 80px;
    position: relative;
    transition: all 500ms ease-out;
}



.nav #menu li a {
    text-decoration: none;
    color: #000000;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin:0 15px;
    transition: all 0.3s ease;
}
.nav.nav.scrolled #menu li a{
    color: #686666;
    transition: background-color 500ms linear;
}
.nav.nav.scrolled #menu li a:hover{
    color: #ff0000;
    transition: all 500ms ease-out;
}

.nav #menu li a:hover {
    text-decoration: none;
    color: red;
    transition: all 500ms ease-out;
}

#toggle {
    position: absolute;
    right: 40px;
    top: 20px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    width: 30px;
    height: 30px;
    float: right;
    transition: all 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
}

.close-btn {
    position: absolute;
    right: 30px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    top: -2px;
    line-height: 80px;
}

#resize {
    z-index: 2;
    top: 0px;
    position: fixed;
    background: #0f0f0f;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease-out;
}

#resize #menu {
    height: 90px;
    position: absolute;
    left: 45%;
    transform: translateX(-40%);
    text-align: center;
    display: table-cell;
    vertical-align: center;
}

#resize #menu li {
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 50px;
    text-transform: uppercase;
    min-height: 50px;
    font-weight: bold;
    transition: all 0.3s ease-out;
}

#resize li:nth-child(1) {
    margin-top: 140px;
}

#resize #menu li a {
    color: #fff;
}

#resize #menu li a:hover {
    text-decoration: none;
}

#resize.active {
    visibility: visible;
    opacity: 1;
}

@media(max-width: 900px) {
    #toggle {
          visibility: visible;
          opacity: 1;
          margin-top: 6px;
          margin-right: 4px;
    }

    nav #brand {
          margin-left: 10px;
    }

    #resize ul li a {
          font-size: 15px;
          font-family: "Poppins" !important;
          font-weight: lighter !important;
          color: rgb(156, 156, 156) !important;
          transition: all 500ms ease-out;
    }

    nav #menu {
          display: none;
    }
}

@media(min-width: 900px) {
    #resize {
          visibility: hidden !important;
    }
}

/*--------------- about section starts  --------------- */

.content {
    position: absolute;
    margin-top: 100vh;
    width: 100%;
}

.section-data hr {
   
    margin-left:  1050px;
    display: block;
    width: 5%;
    border: 2px solid rgba(92, 89, 89, 0.5);
    transition: all 500ms ease-out;
  }
    

section {
    padding: 140px 0;
}

.section-index {
    color: #d3ae87;
    font-weight: bolder;
    font-size: 20px;
    font-family: Poppins !important;
}

.section-heading {
    color: grey;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
}

.section-subheading {
    color: grey;
    margin: 10px 0;
}

.section-info {
    font-size: 24px;
    color: grey;
}

.more {
    margin: 40px 0;
}

button {
    background: none;
    border: .3pt solid rgba(184, 140, 93, 0.7);
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 2px;
    padding: 18px 36px;
}
button:hover{
    color: #3ec1d5;
}

/*-- Mission section starts  -- */
.vission{
  background: #f0f0f0;
}
.mission {
    background: #161616;
}



.icon ion-icon {
    font-size: 36px;
    color: #d3ae87;
}

.icon-title {
    font-size: 28px;
    margin-bottom: 4px;
    color: rgb(182, 182, 182);
    font-weight: lighter;
}

#service-btn{
    color: #fff;

}
#service-btn:hover{
    background-color: #d3ae87;
    color:#fff
}

/*partners*/

.team-member, .team-img {
    position: relative;
}


.team-img {
    background: grey;
    height: 340px;
}

.members {
    margin: 50px 0;
}

.team-title {
    margin: 20px 0;
}
.team-title a {
    display: inline-block;
    padding: 8px 20px;
    background: #3ec1d5;
    border : 2px solid white;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-title h5 {
    font-size: 28px;
    color: #fff;
}

.team-title span {
    font-size: 20px;
}

.team-member {
    overflow: hidden;
}

.team-one {
    background: url(img/okosproduct1.png) no-repeat 50% 50%;
    background-size: cover;
}

.team-two {
    background: url(img/tei/bgimg2.jpg) no-repeat 50% 50%;
    background-size: cover;
}

/*--------------- newsletter section starts  --------------- */

.newsletter {
    padding: 140px 0;
    background: #161616;
}

.newsletter input {
    text-transform: uppercase;
}

.newsletter .news-data {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.input-group-btn button{
    margin: 0 20px; 
}
.input-group-btn button:hover{
    background-color: #fff;
    margin: 0 20px;
    color:#000;
    transition: all 500ms ease-out;
}

.newsletter h1 {
    color: #fff;
    margin-bottom: 40px;
}

.newsletter .form-control {
    height: 50px;
    border-color: #fff;
    border-radius: 0 !important;
}

.form-control:focus {
    box-shadow: none !important;
    border: none !important;
}

::placeholder {
    letter-spacing: 4px;
}

.newsletter .btn {
    min-height: 50px;
    padding: 0 30px;
    border-radius: 0;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: Poppins !important;
}

/*--------------- contact section starts here --------------- */

#contact-form {
    margin: 5% 0;
}

.contact .icon-title {
    margin-top: 10px;
    color: #000;
}

#contact-form ul {
    list-style: none;
    margin-bottom: 40px;
    border-radius: 0;
}

#contact-form li:last-of-type {
    border-bottom: none;
}

#contact-form label {
    display: block;
    font-size: 22px;
    color: rgb(97, 97, 97);
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 5px;
    border: none;
    resize: vertical;
    background: transparent;
    color: #101010;
    font-weight: bolder;
}

input:focus {
    outline: none !important;
    border: none !important;
}

textarea:focus {
    outline: none !important;
    border: none !important;
}

.textarea {
    border-bottom: 1px solid #c9c9c9;
}

@media(max-width: 900px) {
    #contact-form {
          margin: 5% 0;
          width: 98%;
    }
}

/*--------------- footer section starts here --------------- */

.footer {
    background: #161616;
}

#media, #address, #mail {
    text-align: center !important;
}

.footer .container {
    padding: 160px 0;
}

.footer li, p, h4 {
    font-size: 24px !important;
}

.footer h4 {
    font-weight: lighter;
    color: #fff;
}

.footer p {
    color: grey;
    font-weight: lighter;
}

.footer li {
    font-weight: lighter;
    color: #fff;
    padding-left: 20px;
    font-size: 18px !important;
}

#media ul {
    list-style: none;
}

#media ul li {
    display: inline-block;
}

@media(max-width: 900px) {
    .footer .container {
          width: 92% !important;
    }
}
