*
{
    margin: 0;
    padding: 0;
    font-family: "montserrat",sans-serif;
    box-sizing: border-box;
}

header
{
    
    height: 100vh;
    background-size: cover;
    background-position: center;
}

ul
{
    float: right;
    list-style-type: none;
    margin-top: 25px;
}

ul li
{
    display: inline-block;
}

ul li a
{
    text-decoration: none;
    color: #fff;
    padding: 5px 20px;
    border: 1px solid transparent;
    transition: 0.85s ease;
}

ul li a:hover
{
    background-color: #fff;
    color: #000;
}

ul li.active a
{
    background-color: #fff;
    color: #000;
}

.logo img
{
    float: left;
    width: 150px;
    height: auto;
}

.main
{
    max-width: 1200px;
    margin: auto;
}
.title
{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.title span
{
    text-transform: uppercase;
    display: block;
}

.txt1
{
    color: white;
    font-size: 60%;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 0%;
    position: relative;
    
    animation: text 5s 1;
}

.txt2
{
    font-size: 100%;
    letter-spacing: 8px;
    color: cornflowerblue;

}

@keyframes text
{
    0%{
        color: black;
        margin-bottom: -40%;

    }
    30%{
        letter-spacing: 25px;
        margin-bottom: -40%;

    }
    85%{
        letter-spacing: 8px;
        margin-bottom: -40%;
    }
}

.button
{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.btn
{
    border: 1px solid #fff;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.6s ease;
}

.btn:hover
{
    background-color: #fff;
    color: #000;
}



/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/



*{
  margin: 0;
  padding: 0;
  font-family: "montserrat",sans-serif;
  box-sizing: border-box;
}

.services-section{
  background: url(bg.jpg);
  background-size: cover;
  padding: 102px 0;
}
.inner-width{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  overflow: hidden;
}
.section-title{
  text-align: center;
  color: #ddd;
  text-transform: uppercase;
  font-size: 30px;
}

.tag
{
  color: #ffffff;
  text-decoration: none;
}
.tag:hover
{
  text-decoration: none;
  color: rgb(94, 191, 230);
  font-family: Arial, Helvetica, sans-serif;
}

.border{
  width: 160px;
  height: 2px;
  background: #82ccdd;
  margin: 40px auto;
}
.services-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service-box{
  max-width: 33.33%;
  padding: 10px;
  text-align: center;
  color: #ddd;
  cursor: pointer;
}

.service-icon{
  display: inline-block;
  width: 70px;
  height: 70px;
  border: 3px solid #82ccdd;
  color: #82ccdd;
  transform: rotate(45deg);
  margin-bottom: 30px;
  margin-top: 16px;
  transition: 0.3s linear;
}
.service-icon i{
  line-height: 70px;
  transform: rotate(-45deg);
  font-size: 26px;
}
.service-box:hover .service-icon{
  background: #82ccdd;
  color: #ddd;
}
.service-title{
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-desc{
  font-size: 14px;
  color: rgb(73, 150, 21);
}

@media screen and (max-width:960px) {
  .service-box{
    max-width: 45%;
  }
}

@media screen and (max-width:768px) {
  .service-box{
    max-width: 50%;
  }
}

@media screen and (max-width:480px) {
  .service-box{
    max-width: 100%;
  }
}
