@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap');

@font-face {
  font-family: 'Robertson-Alternate';
  src: url(../Robertson-Alternate.ttf);
}


:root {
  --mainBlue: #40ACF1;
  --transparentBlue: rgba(64, 172, 241, 0.7);

  --mainWhite: #FFFFFF;
  --mainBlack: #292F36;
  --mainGrey: rgb(216, 214, 214);
  --mainYellow: #e3b505;
}

html{
  scroll-behavior: smooth;
}


body {
  font-family: 'Roboto', sans-serif;
  color: var(--mainBlack);
  background: var(--mainWhite);
}

/* REM values to target root element 1REM = 16px */

.singurate{
  font-family :'Robertson-Alternate';
font-size: 2rem;
font-weight: 600;
-webkit-user-select: none; /* Safari */        
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}

@media (max-width:992px){
  .singurate{
visibility: hidden;
  }
}

/*section title*/
.section-title-special {

  background: var(--transparentBlue);
  color: var(--mainWhite);
  padding: 0.5rem 2rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  cursor: default;
}

.section-title-special-article {
  font-size: 2.4rem;
  background: var(--transparentBlue);
  color: var(--mainWhite);
  padding: 0.5rem 2rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  cursor: default;
  text-align: center;
}



/* navbar */
.navbar {
  background: rgb(245, 245, 245);
  font-family: "Montserrat";
}

@media (max-width:992px){
  .navbar {
    background: var(--mainWhite);
  }
}

.navbar-icon {
  font-size: 2rem;
  color: var(--mainBlue);
}

.navbar-toggler {
  outline-color: var(--mainBlue) !important;
}

.nav-link {
  color: var(--mainBlack);
  text-transform: capitalize;
  transition: all 0.5s ease-in-out;
  margin: 0 .5vw 0 .5vw;
}

.nav-link:hover {
  color: var(--mainBlue);
}

.nav-icon {
  font-family: "Montserrat";
  letter-spacing: 1px;
}

.main-title {
  background: -webkit-linear-gradient(rgba(64,172,241,1) 20%, rgba(2,0,36,1) 130%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;

  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
  cursor: default;
}




/* header */
.header {
  clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
  color: var(--mainWhite);
  overflow: hidden;
}

.height-max {
  position: relative;
  min-height: calc(100vh - 10vw);
  background: url('../img/headerBcg.jpg');
  background-position: center;
  background-size: cover;
  cursor: default;
  background-repeat: no-repeat;
  /*
    background-attachment: fixed;
  animation-name: zoom;
  animation-duration: 20s;
  animation-delay: 5s;
  animation-iteration-count: infinite;
  */


}

@media (max-width:992px) {
  .nav-icon {
    display: none;
  }

  .main-title {
    display: none;
  }

  .header {
    margin-top: 15vh;
  }
  .height-max {
    min-height: calc(70vh);
    }
}



.layer {
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: default;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2) translateX(-5%);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width:992px) {
  @keyframes zoom {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1);
    }
  
    100% {
      transform: scale(1);
    }
  }
}


.title {
  font-family: "Montserrat";
  color: var(--mainBlack);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 10rem 0rem 2rem 10rem;
  text-align: center;
}

.sub-title {
  font-family: "Montserrat";
  color: var(--mainBlack);
  font-size: 1.6rem;
  margin-left: 10rem;
  text-align: center;
}

@media screen and (min-width:768px) {
  .title {
    font-size: 3.2rem;
  }
}

@media screen and (max-width:768px) {
  .title {
    font-size: 2.7rem;
    line-height: 3rem;
    margin-top: 8rem !important;
  }
  .sub-title {
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

@media (max-width:992px) {
  .height-max {
    background: var(--mainWhite);
  }

  .layer {
    margin: 0 !important;
    text-align: center;
  }

  .title {
    margin: 10rem 0rem 2rem 2rem;
  }

  .sub-title {
    margin-left: 2rem;
  }


}


/* end header */

/* about */
.about-me {
  font-family: "Montserrat";
  font-size: 1.2rem;

  text-align: center;
  margin-top: 3.5rem;
}

.list-items {
  list-style: none;
}

/* end about */

/* dgree */

.dgree-icon {
  border: 50%;
}

.dgree-icon:hover {
  color: var(--mainYellow);
}

.dgree-underline {
  width: 4rem;
  height: 0.3rem;
  background: var(--mainBlue);
  margin: 1rem auto;
}

/* end dgree */

/* Pre Loader */
.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--mainWhite);
  z-index: 999;
}

.hidePreloader {
  display: none !important;
}

/* inventory */
.inventory {
  background: var(--mainGrey);

}

.inventoryarticle{

  background: var(--mainWhite);
}

.car-card {
  border-radius: 0 !important;
}

.car-img {
  border-top-left-radius: 0;
  border-top-left-radius: 0;
}

.car-value {
  background: var(--transparentBlue);
  color: var(--mainWhite);
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
  transition: all 1s linear;
}

.car-value:hover {
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--mainBlue);
}

.car-value-article {
  background: var(--transparentBlue);
  color: var(--mainWhite);
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
  transition: all 1s linear;
}

.car-value-article:hover {
  background: var(--mainBlue);
}

.car-price {
  text-decoration: none !important;
  color: var(--mainWhite);
}

.car-price:hover {
  color: var(--mainWhite);
  cursor: pointer;
}

/* featured */

.bg-color-scss {
  background-color: pink;
}

.bg-color-bs {
  background-color: rebeccapurple;
}

.bg-color-csharp {
  background-color: #9A4993;
}

.bg-color-python {
  background-color: #234c6d;
}

.bg-color-sqls {
  background-color: #C22827;
}

.bg-color-jquery{
  background-color: #146BB2;
}

.bg-color-dotnet {
  background-color: #5C2D91;
}

.bg-color-java {
  background-color: #F89917;
}





/* gallery */
.gallery-item {
  background: var(--mainYellow);
  position: relative;
  cursor: pointer;
}

.gallery-img {
  transition: all 1s ease-in-out;
}

.gallery-item:hover .gallery-img {
  opacity: 0.5;
}

.gallery-item::after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  outline: 0.5rem solid var(--mainWhite);
  outline-offset: -2rem;
  transition: all 1s ease-in-out;
  transform: scale(0);
}

.gallery-item:hover:after {
  transform: scale(1);
}

/* Services Section */
.services {
  position: relative;
  min-height: 85vh;
  min-width: 95vw;
  margin: 0 auto;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.video-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--transparentBlue);
  z-index: -2;
}

.service {
  background: var(--mainBlack);
  color: var(--mainWhite);
  transition: all 1s ease-in-out;
  padding: 1vw
}

.service:hover {

  padding-left: 2rem !important;
}

@media (max-width:768px) {
  .service{
    padding-left: 2rem !important;
  }
  .service:hover {

    padding-left: -2rem !important;
  }
}


/* footer */
.footer {
  background: var(--mainBlack);
}

.footer-icon {
  font-size: 2rem;
  text-decoration: none;
  color: var(--mainBlue);
  transition: all 1s ease-in-out;
}

.footer-icon:hover {

  color: var(--mainYellow);
}

.footer-icons {
  width: 50%;
  margin: 0 auto;
}



.copyright {
  font-family: "Montserrat";
  text-align: center;
  color: var(--mainWhite);
  font-size: 1.3rem;
  opacity: 0.8;
  cursor: default;
}


@media (max-width:768px) {
  .footer-icons {
    width: 100%;
    margin: 0 auto;
  }
  .copyright {
    font-size: 0.85rem;
  }
}

.fahey {
  color: var(--mainBlue);
  text-decoration: none;
  font-weight: 900;
  font-family: "Montserrat";
  transition: all 1s ease-in-out;
  cursor: pointer;
}

.fahey:hover {
  color: var(--mainYellow);
  text-decoration: none;
}

.info {
  font-family: "Montserrat";
}

.info-title {
  color: var(--mainWhite);
  font-size: 2rem;
}

.info-text {
  color: var(--mainWhite);
  transition: all 1s ease-in-out;
  font-size: 1.1rem;
  font-weight: 700;

}

@media (max-width:768px) {
  .info-text {
    font-size: 0.9rem;
  }
}

.info-text:hover {
  color: var(--mainBlue);
}

.info-icon {
  color: var(--mainYellow);
  font-size: 2rem;
}

.info-link {
  text-decoration: none !important;
}


.infoContain{
  padding-top: 9rem;
}

.border-card {
  border-left: 2px solid var(--mainGrey);
}

@media (max-width:992px) {
  .border-card {
    border-left: none;
    border-bottom: 2px solid var(--mainGrey);
  }

  .infoContain{
    padding-top: 12rem;
  }

}

.experience-card{
margin: 0;
padding: 0;
}

.experience-card li {
  margin: 0.7rem 0;
}


.font-weight-bold-article{
  font-family: 'Lalezar', cursive;
  font-size: 1.2rem;
  text-align: center;
}


.sketchy {
  padding: 5% 7%;
  display: inline-block;
  border: 3px solid #333333;
text-align: center;
  border-radius: 2% 6% 5% 4% / 1% 1% 2% 4%;
  text-transform: uppercase;

  background: #ffffff;
  position: relative;
}
.sketchy::after {
  content: '';
  border: 2px solid #353535;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scale(1.015) rotate(0.5deg);
  border-radius: 1% 1% 2% 4% / 2% 6% 5% 4%;
}

.paragraph-article{
  font-family: 'Lalezar', cursive;
font-size: 1rem;
direction: rtl;
}

.backbutton{
  margin: auto;
  width: 30%;
}

.samplelink{
  text-decoration: none !important;
  color: var(--mainWhite);
}

.samplelink:hover{
  color: var(--mainWhite);
}

.myLogo{
  background-image: url(../img/gearLogo.png);
  height: 7vh;
  width: 4vw;
}

.loaderlogo{
  width: 200px !important;
height: 200px !important;
}

.height-max-about {
  position: relative;
  min-height: calc(100vh - 76px);
  cursor: default;
  width: 100%;
}

.backicon{
  width: 50px;
  height: 50px;
}

.myimage{
width: 15vw;
margin: 0;
padding: 0;
}

@media (max-width:992px) {
  .myimage {
    width: 17vw;
margin-top: 6vh;
    
  }
}

@media (max-width:768px) {
  .myimage {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
        
      }
}

@media (min-width:992px) {
  .myimage {
    margin-top: 3vh;
    
  }
}




