/* ---Font Links--- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');

/* ---Custom Scrollbar--- */
::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-track{
  background-color: #afafaf;
}
::-webkit-scrollbar-thumb{
  background: linear-gradient(to top, rgba(250, 73, 81, 1) 0%, rgba(254, 191, 40, 1) 100%);
  border-radius: 2rem;
}
/* ---General Styles--- */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}
body{
  overflow-x: hidden;
}
img{
  width: 100%;
}
p{
  font-size: 14px;
}
::selection{
  background-color:rgba(254, 191, 40, 1) ;
}
.btn{
  padding: 10px 20px !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
  width: 100%;
}
.fab{
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
}
.fab a{
  background-color: rgba(254, 191, 40,1);
  padding: 10px;
  font-size: 40px;
  color: #ffffff;
  border-radius: 20px;
}
/* ---Navbar Styles--- */

.navbar{
  transition: 0.6s;
  padding-top: 40px !important;
}
.navbar.up{
  background-color:#181818;
  padding-top: 0px !important;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.6s;
}
.navbar ul a{
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  position: relative;
}
.navbar ul a::before{
  content: '';
  height: 2px;
  width: 0%;
  background: rgba(254, 191, 40, 1) ;
  position: absolute;
  left: 0;
  bottom: 0px;
  border-radius: 10px;
  transition: 0.6s;
}
.navbar ul a.active,
.navbar ul a:hover{
  color: rgba(254, 191, 40, 1) !important;  
}
.navbar ul a.active::before,
.navbar ul a:hover::before{
  width: 100%;
}
.navbar-brand{
  width: 200px;
}
.navbar-toggler{
  border: 2px solid #fff !important;
  border-radius: 0 !important;

}
.navbar-icon{
  color: #fff;
  font-size: 20px;
}

.navbar-toggler:active,
.navbar-toggler:focus{
  box-shadow: none !important;

}

/* ---Hero Styles--- */

.hero-img{
  height: 100vh;
  width: 100%;
  background-image:linear-gradient(to bottom,rgb(0, 0, 0, .5) 10%,transparent 90%), url(../images/masthead3.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.hero-border{
  height: 8px;
  background: linear-gradient(to right, rgba(250, 73, 81, 1) 0%, rgba(254, 191, 40, 1) 100%);
}

/* ---Service Styles--- */

.services{
  padding: 80px 0px 0 0;
  overflow-x:hidden ;
}
.serv-item{
  padding: 30px 5px;
  border-bottom: 1px solid #c5c5c5;
}
.serv-item .head{
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.serv-item .head i{
  background: linear-gradient(to right, rgba(250, 73, 81, 1) 0%, rgba(254, 191, 40, 1) 100%);
  color: transparent;
  background-clip: text;
  font-size: 22px;
}
.serv-item .serv-text{
  font-size: 14px;
  color: #919191;
}

.review-box{
  background: url(../images/reviews.jpg);
  background-size: cover;
}
.carousel-item{
  height: 400px;
}
.carousel-img img{
  width: 100px !important;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translate(-50%);
  border-radius: 50%;
  border: 4px solid  rgba(250, 73, 81, 1);
}
.carousel-indicators button{
  height: 10px !important;
  width: 10px !important;
  border-radius: 50%;
}

/* ---Service-2 Styles */

.serv-box2{
  padding: 20px 5px;
}
.serv-box2 .head{
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.serv-box2 .head i{
  font-size: 22px;
}
.serv-box2 p{
  color: #afafaf;
}

@media screen and (min-width:1200px){
  .serv-img2{
    width: 1000px;
    transform: translateX(-70px);
  }
}

/* ---Portfolio style--- */

.portfolio{
  padding: 70px 0;
}
.port-head{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.port-head p{
  font-size: 16px !important;
  font-family: "Hind", sans-serif;
  line-height: 30px !important;
  margin-top: 20px;
}
.port-nav{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.port-nav a{
  text-decoration: none;
  font-size: 12px !important;
  border: none;
  color: #fff !important;
  position: relative;
}
.port-nav a::after{
  content: '';
  height: 4px;
  width: 0%;
  background:  rgba(254, 191, 40, 1);
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.3s;
}
.port-nav a:hover::after,
.port-nav a.active::after{
  width: 100%;
}
.port-container .col{
  overflow: hidden;
  position: relative;
}
.link-div{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(250, 73, 81, 0.8) 0%, rgba(254, 191, 40, .8) 100%) ;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: 0.3s;
  padding: 20px;
  text-align: center;
  
}
.link-div:hover{
  opacity: 1;
}
.port-link{
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
 
}
.port-link a{
  color: #fff !important;
  border: 1px solid #fff !important;
  height: 40px;
  width: 40px;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.port-link a:hover{
  background-color: #fff !important;
  color: #000 !important;
}
.port-container .col img{
  object-fit: cover !important;
  transition: 0.3s;
}
.port-container .col:hover img{
  transform: scale(1.6) rotate(-10deg);
}


@media screen and (min-width:900px){

  .port-container .col img{
    height: 250px;
  }
}

/* ---Skill Styles--- */

.skill{
  overflow-x: hidden;
}
.skill-box{
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.skill-container .skill-item{
  background: linear-gradient(to right,rgba(250, 73, 81,1) 30%, rgba(254, 191, 40,1) 60%) !important; 
  border-radius: 50%;
  position: relative;
  z-index:1 ;
  height: 150px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-box .skill-item::before{
  content: '';
  height: 96%;
  width: 96%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #ffffff !important;
  border-radius: 50%;
  z-index: -1;
}
.skill-box .skill-icon{
  font-size: 30px;
  background-color: #1b1b1b !important;
  color: #fff !important;
  padding: 40px;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skill-box .skill-text{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.skill-text h4{
  font-size: 20px;
}

/* ---Feature Style--- */

.feature{
  padding: 20px 0;
  overflow-x: hidden;
}
.choose-text p{
  color: #888888;
  line-height: 30px;
  margin-top: 30px;
  font-size: 16px;
  text-align: justify;
}


/* ---Service2 Style--- */

.serv2-box{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.serv2-box h4{
  font-size: 16px;
}
.serv2-box p{
  color: #888888;
  line-height: 20px;
  margin-top: 20px;
  font-size: 14px;
  text-align: justify;
}
.serv2-icon{
  font-size: 30px;
  border: 1px solid rgba(254, 191, 40, 1);
  border-radius: 50%;
  height: 50px;
  width:50px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

/* ---Team Styles--- */

.team{
  padding: 50px 0;
}
.member-box{
  overflow: hidden;
  background: linear-gradient(to top,rgba(250, 73, 81,1) 60% , rgba(254, 191, 40,1));
  transition: 0.2s;
}
.member-box img{
  height: 100%;
}
.member-box:hover img{
  opacity: 0.1;
  object-fit: contain;
}
.member-detail{
  height: 80px;
  width: 100%;
  padding: 20px;
  background-color: #f0f0f0;
  transition: 0.6s;
}
.member-detail p{
  text-transform: uppercase;
  font-size: 12px;
}
.member-links{
  display:flex;
  align-items: center;
  justify-content: center;
}
.member-links a{
  font-size: 18px;
  margin: 0 10px;
  color: #ffffff !important;
  transition: 0.6s;
}
.member-links a:hover{
  transform: translateY(-5px);
}
.member-box:hover .member-detail{
  transform: translateY(-40px);
  background-color: #000;
  color: #fff;
}
.team-bg{
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top,rgb(0, 0, 0,0.7),rgba(0, 0, 0, 0.7)), url(../images/getstart.jpg) fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff !important;
}
.bg-head{
  text-align: center !important;
}
.bg-head h1{
  font-size: 5.5rem !important;
  text-transform: uppercase;
  
}
@media screen and (max-width:900px) {
  .bg-head h1{
    font-size: 2rem !important;
  }
}


/* ---Contact Styles--- */

.contact{
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  padding: 50px 0;
}
.contact-container{
  display: flex;
  align-self: center;
  justify-content: center;
}
.contact-box{
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
}
.input-box{
  width: 100%;
  height: 60px;
  position: relative;
}
.input-box input{
  width: 100%;
  height: 100%;
  padding-left: 40px;
  border: 1px solid #d3d3d3;
  outline: none;
  border-radius: 5px;
 
}
.input-box input:focus,
.input-box textarea:focus{
  border: 1px solid rgba(254, 191, 40,1);
}
.input-box i{
  color: #818181;
  position: absolute;
  top: 20px;
  left:10px;
}
.textarea{
  width: 100%;
  height: 130px;
}
.textarea textarea{
  width: 100%;
  height: 100%;
  padding-left: 40px;
  padding-top: 20px;
  border: 1px solid #d3d3d3;
  outline: none;
  border-radius: 5px;
  resize: none;
}
.input-box .textarea i{
  position: absolute;
  top: 0px;
}
.client-logo .col{
  display: grid;
  place-items: center;
}
.client-logo img{
  width: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}
.client-logo img:hover{
  opacity: 1;
}


/* ---Footer Styles ---*/

.footer-box h4{
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.footer-box{
  color: #a7a7a7 !important;
}
.post-container{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-box{
  display: flex;
  gap: 10px;
}
.post-box .post-para{
  font-size: 14px;
  width: 80%;
  line-height: 30px;
}
.post-box a{
  text-decoration: none;
  color: #a7a7a7 !important;
}
.post-box a h5{
  font-size: 16px !important;
  font-weight: 600;
}
.post-link{
  display:flex;
  align-items: center;
}
.post-link .bor{
  margin-left:5px;
  margin-right: 5px;
  padding: 0 5px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.post-link p{
  font-size: 8px !important;
  text-transform: uppercase;
}
.post-link a:hover{
  color: rgba(254, 191, 40,1) !important;
}

.fav-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.fav-img{
  position: relative;
  transition: 0.3s;
}
.fav-img img{
  transition: 0.3s;
}
.fav-img:hover img{
  opacity: 0.5;
}
.fav-img:hover .img-link{
  opacity: 1;
}
.fav-container .view{
  margin-top: 30px;
}
.fav-container .view a{
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.img-link{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
}
.img-link i{
  font-size: 40px;
  color: #fff !important;
}

.about-img img{
  width: auto;
}
.about p{
  line-height: 30px;
  font-size: 14px;
  margin-top: 30px;
}
.about-links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.about-links a{
  color: #fff !important;
  transition: 0.3s;
}
.about-links a:hover{
  transform: translateY(-6px);
}

/* ---Copyrights Styles--- */

.copyrights{
  background-color: #2b2b2b;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}
.copyrights .foot-nav{
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
.foot-nav a{
  color: #fff !important;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 12px;
}
.foot-nav a:hover{
  color: rgba(254, 191, 40, 1) !important;
}