/*************** Global ***************/

/**** Font ****/
@font-face {
  font-family: Vazir;
  src: url("../fonts/Vazir/Vazir-Medium-FD-WOL.eot");
  src: url("../fonts/Vazir/Vazir-Medium-FD-WOL.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Vazir/Vazirmatn-FD-Medium.woff2") format("woff2"),
    url("../fonts/Vazir/Vazir-Medium-FD-WOL.woff") format("woff"),
    url("../fonts/Vazir/Vazirmatn-FD-Medium.ttf") format("truetype");
  font-weight: normal;
}

/**** Body ****/

body {
  font-family: "Vazir", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    monospace;
  background: #353434;
  color: white;
}

a,
h4,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: #353434;
}

/*************** Global Class ***************/

.section-title .title {
  font-size: 40px;
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 34px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .title {
    font-size: 40px;
  }
}

.section-title .title::after {
  display: block;
  content: "";
  width: 100px;
  height: 5px;
  background-color: #ff0066;
  margin-top: 15px;
}

.section-title p {
  line-height: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title p {
    padding: 0 0 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title p {
    /* padding: 0 0 30px; */
    font-size: 14px;
    line-height: 26px;
  }

  .section-title .title::before {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .section-title p {
    /* padding: 0 0 30px; */
    font-size: 14px;
    line-height: 26px;
  }

  .section-title .title::before {
    margin-top: 20px;
  }
}
/**** button ****/
.button {
  background: #ef476f;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0.8rem 0.74rem 0.6rem 0.74rem;
  border-radius: 8px;
  border: 1px solid #ef476f;
  transition: all 0.3s;
}
.button:hover {
  background: transparent;
  border: 1px solid #ef476f;
}
.button:hover span,
.button:hover h6 {
  color: #ef476f;
}
.button h6 {
  padding-top: 0.3rem;
}
.button h6,
.button span {
  line-height: 1rem;
  font-size: 0.8rem;
  color: white;
}
.button span {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
/*************** Service  Class ***************/

.application .single-application {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0px 34px 150px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #edf2f4;
}

.application .single-application i {
  height: 130px;
  width: 130px;
  background: #ff0066;
  border-radius: 50%;
  text-align: center;
  line-height: 140px;
  color: #edf2f4;
  font-size: 60px;
  position: absolute;
  left: 40px;
  top: -75px;
  box-shadow: 0px 30px 30px -15px rgba(0, 0, 0, 0.75);
}
@media (max-width: 767px) {
  .application .single-application i {
    height: 90px;
    width: 90px;
    font-size: 30px;
    left: 40px;
    top: -50px;
    line-height: 90px;
  }
 
}

@media (min-width: 767px) and (max-width: 992px){
  .linux{
    width: 43.6rem !important;
  }
}

.application .single-application .title {
  font-size: 24px;
  font-weight: 500;
}

.application .single-application p {
  line-height: 30px;
  margin-top: 1rem;
  color: #333333;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .application .single-application p {
    font-size: 14px;
  }
}


/*************** Code  Class ***************/
/* #copy {
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  position: absolute;
  left: 70%;
}
#copy:hover {
  background: white;
  color: #282c34;
}
@media screen and (max-width: 768px) {
  #copy {
    display: none;
  }
} */
.code {
  display: flex;
  overflow-x: auto;
  padding: 1rem 1rem 1rem 1.5rem;
  color: #abb2bf;
  background: #282c34;
  align-items: center;
  border-radius: 10px;
}

.code-purple {
  color: #c678dd;
}
.code-green {
  color: #98c379;
}
.code-blue {
  color: #61aeee;
}
.code-red{
  color: #B92B44;
}
.pre {
  direction: ltr;
  text-align: left;
}
