/*Start Variables*/
  :root {
    --main-color: #10cab7;
    --secondary-color: #2c4755;
    --main-color-components: #ebeced;
    --main-p-components: #6d6d6d;
    --section-background: #F6f6f6;
    --section-padding: 60px;
    --main-duration: 0.3s
  }
/*End Variables*/

/*Start Global Rules*/
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Work Sans', sans-serif;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/*Small*/
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/*Medium*/
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/*Large*/
@media (min-width:1200px) {
  .container {
    width: 1170px;
  }
}
/*End Global Rules */

/* Start Components */
.special-heading {
  color: var(--main-color-components);
  font-size: 100px;
  letter-spacing: -5px;
  margin: 0;
  text-align: center;
  font-weight: 800;
}
.special-heading + p {
  margin:-30px 0 0;
  color: var(--main-p-components);
  font-size: 20px;
  text-align: center;
}
@media (max-width:767px) {
  .special-heading {
    font-size: 80px;
  }
  .special-heading + p {
    font-size: 18px;
    margin-top: -25px;
  }
}
/* End Components */

/*Start Header*/
.header {
  padding: 20px;
}
.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 {
  display: flex;
  flex-wrap: wrap;
  width: 30px;
  justify-content: flex-end;
}
.header .links .icon span {
  height: 2px;
  background-color: #333;
  margin: 2px;
}
.header .links .icon span:first-child {
  width: 100%;
}
.header .links .icon span:nth-child(2) {
  width: 50%;
  transition: var(--main-duration);
  -webkit-transition: var(--main-duration);
  -moz-transition: var(--main-duration);
  -ms-transition: var(--main-duration);
  -o-transition: var(--main-duration);
}
.header .links .icon span:last-child {
  width: 100%;
}
.header .links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  background-color: var(--section-background);
  min-width: 200px;
  top: calc(100% + 10px);
  display: none;
  z-index: 1;
}
.header .links ul::before {
  content: "";
  position: absolute;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #eee transparent;
  top: -20px;
  right: 5px;
}
.header .links:hover ul {
  display: block;
}

.header .links ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #333;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.header .links ul li a:hover {
  padding-left: 25px ;
}

.header .links ul li:not(:last-child) a {
  border-bottom: 1px solid #ddd ;
}
/*End Header*/

/* Start Landing*/
.landing {
  background-image: url(../images/Landing.jpg);
  background-size: cover;
  height: calc(100vh - 64px);
  position: relative;
}
.landing .text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  max-width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.landing .text h1 {
  margin: 0;
  color: var(--main-color);
  font-weight: bold;
  font-size: 50px;
}
.landing .text p {
  color: #2C4755;
  font-size: 19px;
  line-height: 1.8;
}
/* End Landing*/

/* Start Features */
.features {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--section-background);
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 2 0px;
  /* text-align: center; */
}
.features .feat {
  text-align: center;
  padding: 20px;
}
.container .feat i {
  color: var(--main-color);
}
.container .feat h3 {
  color: #2C4755;
  font-weight: 800;
}
.container .feat p {
  color: #2C4755;
  font-size: 18px;
  line-height: 1.8;
}
/* End Features */

/* Start Services */
.services {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.services .services-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 30px;
  margin-top: 100px;
}
.services .services-content .serv {
  display: flex;
  margin-bottom: 40px;
}
@media (max-width:767px) {
  .services .services-content .serv {
    flex-direction: column;
    text-align: center;
  }
}
.services .services-content .serv i {
  color: var(--main-color);
  flex-basis: 60px;
}
.services .services-content .serv .text {
  flex: 1;
}
.services .services-content .serv .text h3 {
  margin: 0 0 20px;
}
.services .services-content .serv .text p {
  color: var(--main-p-components);
  font-weight: 300;
  line-height: 1.6;
}
.services .services-content .image {
  position: relative;
  text-align: center;
}
.services .services-content .image::before {
  content: '';
  width: 100px;
  height: calc(100% + 100px);
  background-color: var(--secondary-color);
  position: absolute;
  top: -50px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .image-media {
    display: none;
  }
}
.services .services-content img {
  width: 260px;
}
/* End Services */

/* Start Portfolio */
.portfolio {
  padding-top: var(--section-padding);;
  padding-bottom: var(--section-padding);;
  background-color: var(--section-background);
}
.portfolio .portfolio-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 30px;
  margin-top: 100px;
}
.portfolio .portfolio-content .port {
  background-color: white;
}
.portfolio .portfolio-content .port .text {
  padding: 20px;
}
.portfolio .portfolio-content .port .text h3 {
  margin: 0 0 20px;
}
.portfolio .portfolio-content .port .text p {
  margin: 0;
  color: var(--main-p-components);
  font-weight: 300;
  line-height: 1.6;
}
.portfolio .portfolio-content .port img {
  max-width: 100%;
}
@media (max-width:676px) {
  .portfolio .portfolio-content .port .text {
    padding: 20px;
    text-align: center;
  }
}
/* End Portfolio */

/* Start About */
.about {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.about .about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width:991px) {
  .about .about-content {
    flex-direction: column;
    text-align: center;
  }
}
.about .about-content .image {
  width: 200px;
  height: 300px;
  position: relative;
}
.about .about-content .image img {
  max-width: 100%;
}
@media (max-width:991px) {
  .about .about-content .image {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.about .about-content .image::before {
  content: '';
  width: 80px;
  height: calc(100% + 80px);
  position: absolute;
  background-color: var(--main-color-components);
  top: -40px;
  z-index: -1;
}
.about .about-content .image::after {
  content: '';
  width: 60px;
  height: 225px;
  border-left: 65px solid var(--main-color);
  border-bottom: 70px solid var(--main-color);
  position: absolute;
  right: -85px;
  top: -40px;
  z-index: -1;
}
@media (max-width:991px) {
  .about .about-content .image::after {
    content: '';
    width: 40px;
    height: 240px;
    border-left: 60px solid var(--main-color);
    border-bottom: 55px solid var(--main-color);
    position: absolute;
    right: -60px;
    top: -40px;
    z-index: -1;
  }
}
.about .about-content .text {
  flex-basis: calc(100% - 500px);
}
.about .about-content .text p:first-of-type {
  color: var(--secondary-color);
  font-weight: bold;
  line-height: 2;
  margin-bottom: 30px;
}
.about-content .text hr {
  width: 50%;
  display: inline-block;
  border-color: var(--main-color);
}
.about .about-content .text p:last-of-type {
  color: var(--main-p-components);
  line-height: 2;
}
/* End About */

/* Start Contact */
.Contact {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--section-background);
}
.Contact .Contact-info {
  margin-top: 50px;
}
.Contact-info .text h1{
  color: var(--secondary-color);
  margin: 0 0 10px;
}
.Contact-info .text a{
  padding-left: 20px;
  display: block;
  color: var(--main-color);
  text-decoration: none;
  font-size: 30px;
  font-weight: bold;
}
@media (max-width:676px) {
  .Contact-info .text h1 {
    font-size: 23px;
  }
  .Contact-info .text a {
    font-size: 23px;
  }
}
.Contact-info .search {
  display: flex;
  align-items: center;
  padding-left: 50px;
  margin-top: 10px;
}
.Contact-info .search h5 {
  margin: 0;
  color: var(--secondary-color);
}
.Contact-info .search i {
  padding-left: 10px;
  color: var(--secondary-color);
}
@media (max-width:676px) {
  .Contact-info .search {
    padding-left: 35px;
  }
  .Contact-info .search i {
    padding-left: 7px;
  }
}
/* End Contact */

/* Start Footer */
.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 20px 10px;
  text-align: center;
  font-size: 18px;
}
.footer span {
  font-weight: bold;
  color: var(--main-color);
}
/* End Footer */