
:root {
    --main-color: #10cab7;
}

*{
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body{
     font-family: 'Work Sans', sans-serif;
}

.container {margin-left: auto;margin-right:  auto;padding-left: 15px;padding-right: 15px;}
/* start componets */
.special-heading {
    color: #ebeced;
    font-size: 75px;
    letter-spacing: -2px;
    margin: 0 auto;
    font-weight: 800;
    text-align: center;
}

.special-heading + p {
    margin: -30px 0 0;
    font-size: 20px;
    text-align: center;
    color: #797979;
}
/* end componets */

@media(min-width:768px){
    .container{
        width: 750px;
    } 
  
}
@media(max-width:769){
    .special-heading {
        font-size: 40px;

    }
    .special-heading + p {
        margin-top: -20px;
    }
    .services .services-content .srv {
        flex-direction: row;
        text-align: center;
    }
  
}
@media (min-width:992px) {
    .container{
        width: 970px;
    } 
}
@media (min-width:1200px){
    .container{
        width: 1170px;
    } 
}
@media(min-width:1200px){
    .container{
        width: 1200px;
    } 
}

.header {
    padding: 20px;
    position: fixed;
    background-color: lavenderblush;
    width: 100%;
    z-index: 1;
}

.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    width: 60px;
}
.header .links{
    position: relative;
}

.header .links:hover .icon span:nth-child(2){
    width: 100%;
}

.header .links .icon {
    width: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

}
.header .links .icon span {
    background-color: #222;
    margin-bottom: 5px;
  
    height: 3px;
}



.header .links .icon span:first-child {
width: 100%;
}

.header .links .icon span:nth-child(2) {
    width: 50%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.header .links .icon span:last-child {
    width: 100%;
}
.header .links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    min-width: 200px;
    top: calc(100% + 15px);
    display: none;
    z-index: 1;
}

.header .links ul::before {
    content: "";
    border-style: solid;
    border-color: transparent transparent lavenderblush transparent;
    position: absolute;
    border-width: 20px;
    top: -30px;
    right: 5px;
}
.header .links a {
    display: block;
    padding: 15px;
    text-decoration: none;
    /* color: #ddd; */
    color: #222;
    background-color: lavenderblush;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.header .links ul li a:hover {
padding-left: 25px;
}

.header .links:hover ul {
    display: block;
}

.header .links ul :not(last-child){
    border-bottom: solid #ddd 1px;
}
 .icon span :hover a {
    display: block;
}

/* landing */
.landing {background-image: url(../images/background.jpg);background-size: cover;height: calc(100vh - 5px);}
.landing .intro-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    max-width: 100%;
}
.landing .intro-text h1 {margin: 0;color: var(--main-color);font-weight: bold;font-size: 50px;width: max-content;}
/* end landing */

/* start features */

.features{
    padding-top: 60px;
    padding-bottom: 60px;
}

.features .container{
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(300px,1fr));
    grid-gap: 20px;
}

.features .feat {
    padding: 20px;
    text-align: center;
    background-color: aliceblue;
}

.feat:hover{
    background-color:lavenderblush;
    cursor: pointer;
}

.features .feat i {
color: var(--main-color);
font-size: 50px;

}
.features .feat h3 {
font-weight: 800;
margin: 30px 0;
}
.features .feat p {
line-height: 1.6;
color: #777;
font-size: 17px;
}
/* end features */

/* start services */
.services {
    padding-top: 60px;
    padding-bottom: 60px;
  
}
.services .services-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
    margin-top: 105px;
}
.services .services-content .srv {
    display: flex;
    margin-bottom: 40px;
}
@media(max-width:767px) {
    .services .services-content .srv {
        flex-direction: column;
        text-align: center;
    }
    .services .services-content  img {
        width: 200px;
    }
}

.services .services-content .srv i {
    color: var(--main-color);
    flex-basis: 60px;
    font-size: 50px;
    padding-right: 10px;
}

.services .services-content .srv  .text {
    flex: 1;
}

.services .services-content .srv  .text h3 {
    margin: 0 0 20px;
}

.services .services-content .srv  .text p {
    color: #444;
    font-weight: 300;
    line-height: 1.6;
}
.services .services-content .image {
    text-align: center;
    position: relative;
}

.services .services-content .image::before {
    content: "";
    background-color: #2c4755;
    width: 80px;
    height: calc(100% + 100px);
    top: -50px;
    position: absolute;
    right: 0;
    z-index: -1;

}

.services .services-content img {
    width: 260px;
}
@media (max-width: 1199px) {
    .image-column {
         display: none;
         
    }
}
/* end services */

/* start portofolio */

.portofolio {
padding-top: 60px;
padding-bottom: 60px;
background-color: #f6f6f6;
}

.portofolio .portofolio-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
    margin-top: 80px;
}

.portofolio .portofolio-content .card {
    background-color: white;
}
@media(max-width: 767px) {
    .portofolio .portofolio-content .card h3 , p {
         text-align: center; 
    }
}

.portofolio .portofolio-content .card img {
    max-width: 100%;
}
.portofolio .portofolio-content .card .info {
    padding: 20px;
}
.portofolio .portofolio-content .card .info h3 {
margin: 0;
}
.portofolio .portofolio-content .card .info p {
color: #777;
line-height: 1.7;
margin-bottom: 0;
}
/* end portofolio */

/* start about */

.about {
padding-top: 60px;
padding-bottom: 60px;
background-color: white;
}
.about .about-content {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  @media (max-width: 991px) {
    .about .about-content {
      flex-direction: column;
      text-align: center;
    }
  }
  .about .about-content .image {
    position: relative;
    width: 250px;
    height: 375px;
    z-index: 0;
  }
  @media (max-width: 991px) {
    .about .about-content .image {
      margin: 0 auto 60px;
    }
   
  }
  .about .about-content .image::before {
    content: "";
    position: absolute;
    background-color: #d4c5b0;
    width: 100px;
    height: calc(100% + 80px);
    top: -40px;
    left: -20px;
    z-index: -1;
  }
  .about .about-content .image::after {
    top: -40px;
    content: "";
    position: absolute;
    width: 120px;
    height: 300px;
    border-left: 80px solid var(--main-color);
    border-bottom: 80px solid var(--main-color);
    z-index: -1;
    right: -150px;
  }
  @media (max-width: 991px) {
    .about .about-content .image::before,
    .about .about-content .image::after {
      display: none;
    }
  }
  .about .about-content .image img {
    max-width: 100%;
    /* z-index: -1; */
  }
  .about .about-content .text {
    flex-basis: calc(100% - 500px);
  }
  .about .about-content .text p:first-of-type {
    font-weight: bold;
    line-height: 2;
    margin-bottom: 50px;
  }
  .about .about-content .text hr {
    width: 50%;
    display: inline-block;
    border-color: var(--main-color);
  }
  .about .about-content .text p:last-of-type {
    line-height: 2;
    color: #777;
  }
/* end about */

/* start contact */
.contact {
    
padding: 20px;
    
background-color: #f6f6f6;
    
text-align: center;
}

.contact .feel {

text-align: center;

font-size: 30px;

font-weight: 800;

color: #2c4755;
}

.contact a.mail {text-decoration: none;text-align: center;font-weight: 800;font-size: 20px;color: var(--main-color);padding-right: -3px;}
.contact .social {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 800;

}
.contact .social i {
     font-size: 30px;
     margin: 2px;
}
.contact .social i:hover {
    color: #272bf0;
    cursor: pointer;
}
/* end contact */


/* start footer */
.footer .container {
    margin-top: 2px;
    background-color: #0f6159;
    width: 100%;
    display: flex;
    height: 100px;
}

.footer .container .rights  {
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 30px;
    font-weight: 800;
    color: white;
}

@media(max-width:991px){
    .footer .container {
        max-width: 100%;
    }
    .contact .mail  {
    font-size: 25px;
    margin: 0 auto;
}
}

.float{
	position:fixed;
	width: 30px;
	height: 30px;
	bottom: 25px;
	right:40px;
	background-color:#0C9;
	color:#FFF;
	border-radius: 30px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
	font-size: 18px;
}
.my-float{
	margin-top:22px;
}
.float i {
    font-size: 30px;
}