@import url('https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html{
  scroll-behavior: smooth;
}

/* universal section*/
*{
  font-family: 'Overlock', cursive, Poppins, sans-serif;
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-decoration: none;
  overflow-x: hidden;
}
body {
  background-color: #222831;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #222831;
}
::-webkit-scrollbar-thumb {
  background: #f05454;
}
::selection {
  background: #f05454;
}

/* splash screen section start*/
.splash {
  position: fixed;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  left: 0;
  z-index: 200;
  background: #222831;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.splash.display-none {
  position: fixed;
  opacity: 0;
  margin: 0;
  padding: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  left: 0;
  z-index: -10;
  background: #222831;
  transition: all 2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.nameimg {
  opacity: 0;
  width: auto;
  height: 200px;
  animation: fadeIn 5s ease-in forwards;
}
.fade-in {
  opacity: 0;
  animation: fadeIn 5s ease-in forwards;
  width: 650px;
  height: auto;
}
@media (max-width: 800px) {
  .nameimg {
    opacity: 0;
    width: auto;
    height: 150px;
    animation: fadeIn 5s ease-in forwards;
  }
  .fade-in {
    opacity: 0;
    animation: fadeIn 5s ease-in forwards;
    width: 400px;
    height: auto;
  }
}
@media (max-width: 500px) {
  .nameimg {
    opacity: 0;
    width: auto;
    height: 80px;
    animation: fadeIn 5s ease-in forwards;
  }
  .fade-in {
    opacity: 0;
    animation: fadeIn 5s ease-in forwards;
    width: 300px;
    height: auto;
  }
}
/* splash screen section end*/

/* header section start */
.content {
  max-width: 1250px;
  margin: auto;
  padding: 0 30px;
}
.navbar {
  position: fixed;
  width: 100%;
  z-index: 2;
  padding: 25px 0;
  transition: all 0.3s ease;
}
.navbar.sticky {
  background: #292e37;
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}
.navbar .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a {
  color: #f05454;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.navbar .menu-list {
  display: inline-flex;
}
.menu-list li {
  list-style: none;
}
.menu-list li a {
  color: #dddddd;
  font-size: 20px;
  font-weight: 500;
  margin-left: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-list li a:hover {
  color: #dddddd;
  background-color: #f05454;
  border-radius: 9px;
  padding: 0 10px;
}
.icon {
  color: #dddddd;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.menu-list .cancel-btn {
  position: absolute;
  right: 30px;
  top: 20px;
}
@media (max-width: 1230px) {
  .content {
    padding: 0 60px;
  }
}
@media (max-width: 1100px) {
  .content {
    padding: 0 40px;
  }
}
/* @media (max-width: 900px) {
    .content{
      padding: 0 30px;
    }
  } */
@media (max-width: 995px) {
  body.disabled {
    overflow: hidden;
  }
  .icon {
    display: block;
  }
  .icon.hide {
    display: none;
  }
  .navbar .menu-list {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 100vw;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #292e37;
    transition: all 0.3s ease;
  }
  .navbar.show .menu-list {
    left: 0%;
  }
  .navbar .menu-list li {
    margin-top: 45px;
  }
  .navbar .menu-list li a {
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .navbar.show .menu-list li a {
    margin-left: 0px;
  }
}
@media (max-width: 380px) {
  .navbar .logo a {
    font-size: 27px;
  }
}
/* header section end */

/* home section start */
.container {
  max-width: 1100px;
  padding: 0 10px;
  width: 100%;
  margin: 70px auto;
}
.intro {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}
.intro-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.intro-content {
  max-width: 500px;
  width: 100%;
  padding-right: 20px;
}
.intro-img {
  border: 4px solid #dddddd;
  background-color: #f05454;
  border-radius: 100%;
  max-width: 800px;
  width: 80%;
  margin-left: 4%;
}
.intro-img img {
  display: block;
  width: 100%;
  margin-left: 3%;
}
.intro-title {
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  color: #dddddd;
  margin-bottom: 10px;
  transition: 0.3s;
}
.intro-title span {
  color: #f05454;
  transition: 0.3s;
}
.intro-position {
  display: block;
  font-weight: 400;
  font-size: 24px;
  color: #979191;
  margin-bottom: 25px;
}
.intro-text {
  font-size: 16px;
  line-height: 1.3;
  color: #dddddd;
  margin-top: 30px;
  transition: 0.3s;
}
.btn {
  display: inline-flex;
  background-color: #f05454;
  border-radius: 15px;
  padding: 10px 40px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-top: 4%;
  font-size: 18px;
  color: #dddddd;
  transition: 0.3s;
}
.btn:hover {
  background-color: #30475e;
}
@media (max-width: 1023px) {
  .intro-body {
    flex-direction: column-reverse;
    padding-top: 15px;
  }
  .intro-img {
    max-width: 600px;
    margin-bottom: 30px;
  }
  .intro-content {
    padding: 0;
  }
  .intro-title {
    font-size: 32px;
    text-align: center;
  }
  .intro-position {
    text-align: center;
  }
  .intro-text {
    text-align: center;
  }
  .intro-btn {
    display: flex;
    justify-content: center;
  }
}
/* home section end */

/* about section start */
.container_about {
  text-align: center;
}

.grid_details {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.details {
  text-align: right;
}
.details2 {
  text-align: left;
}
.head {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
  color: #dddddd;
}
.ans {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #979191;
}
.profile_img {
  display: flex;
  justify-content: center;
}
.profile_img img {
  width: 100%;
  max-width: 100%;
}
.img-cont {
  border-radius: 50%;
  overflow: hidden;
  width: 15rem;
  height: 15rem;
  border: 3px solid #dddddd;
  background-color: #f05454;
}

.information {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.information p {
  margin-top: 30px;
  font-size: 20px;
  font-weight: normal;
  max-width: 80%;
  color: #dddddd;
}
.aboutlink {
  color: #979191;
}

@media (max-width: 1300px) {
  .head {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.7rem;
    color: #dddddd;
  }
  .ans {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #979191;
  }
  .img-cont {
    border-radius: 50%;
    overflow: hidden;
    width: 13rem;
    height: 13rem;
    border: 3px solid #dddddd;
    background-color: #f05454;
  }
}
@media (max-width: 800px) {
  .head {
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1.7rem;
    color: #dddddd;
  }
  .ans {
    font-size: 0.7rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #979191;
  }
  .img-cont {
    border-radius: 50%;
    overflow: hidden;
    width: 12rem;
    height: 12rem;
    border: 3px solid #dddddd;
    background-color: #f05454;
  }
}
@media (max-width: 600px) {
  .head {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 1.7rem;
    color: #dddddd;
  }
  .ans {
    font-size: 0.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #979191;
  }
  .img-cont {
    border-radius: 50%;
    overflow: hidden;
    width: 11rem;
    height: 11rem;
    border: 3px solid #dddddd;
    background-color: #f05454;
  }
}
@media (max-width: 550px) {
  .img-cont {
    border-radius: 50%;
    overflow: hidden;
    width: 8rem;
    height: 8rem;
    border: 3px solid #dddddd;
    background-color: #f05454;
  }
}
/* about section end */

/* skills section start */
.outter-container {
  margin: 60px 100px;
}
.skill-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-flow: wrap;
}
.skill-card {
  padding: 1rem;
}
.skill-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}
.skill-img {
  width: 90px;
  height: 90px;
  position: relative;
  border-radius: 45px;
  background-color: #dddddd;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skill-name {
  color: #f05454;
  margin: 1.5rem 0.5rem;
  font-size: 1rem;
}
.skill-icon {
  width: 50px;
}
/* skills section end */

/* project section start */
.project-section {
  width: 1124px; 
  transition: all 1.5s;
  height: 364px; 
  overflow: hidden; 
  margin: auto;
  display: block;
  margin-top: 3%;
}

.project-container {
  float: left;
  margin: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 240px;
  height: 320px;
  overflow: hidden;
  background: #292e37;
  border-radius: 5px;
  box-shadow: 0 0 3px 0 #30475e;
  transition: all 0.3s;
}

.projectimg-container {
  display: block;
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.projectimg-container img {
  width: 100%;
}

.project-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 110px;
  padding: 10px 20px;
}

.project-content .project-title {
  padding: 0;
  margin: 10px 0;
  font-size: 22px;
  color: #dddddd;
}

.project-content .project-desc {
  font-size: 13px;
  text-align: center;
  color: #979191;
}

.projectbtn-container {
  display: flex;
  align-items: center;
  width: 80%;
  text-align: center;
  height: 40px;
}

.projectbtn-container .pbtn {
  width: 100%;
  padding: 6px 0;
  text-decoration: none;
  background: #f05454;
  color: #dddddd;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s;

}

.projectbtn-container .pbtn:hover {
  background-color: #30475e;
}

@media screen and (max-width:1124px){
  .project-section{
      width: 562px; height: 728px;
  }
}
@media screen and (max-width:562px){
  .project-section{
      width: 281px; height: 1496px;
  }
}
/* project section end */

/* blog section start */
.comingsoon-banner {
  color: #dddddd;
  background-color: #f05454;
  font-size: 25px;
  padding: 5rem 0;
  display: flex;
  font-weight: 800;
  margin-top: 5rem;
  justify-content: center;
  text-align: center;
}
/* blog section end */

/* gallery section start */
.aboutphotography {
  padding: 1rem 2rem 0 2rem;
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  color: #dddddd;
  margin-top: 15px;
  transition: 0.3s;
}
.gallerylink {
  display: inline-flex;
  background-color: #f05454;
  border-radius: 15px;
  padding: 10px 40px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-top: 1%;
  font-size: 18px;
  color: #dddddd;
  transition: 0.3s;
}
.gallerylink:hover {
  background-color: #30475e;
}
.gallery-btn {
  display: flex;
  justify-content: center;
  text-align: center;
}
.guide {
  font-size: 18px;
  font-weight: 600;
  color: #979191;
}
.sign {
  color: #000000;
  font-size: 20px;
}
.displaynote {
  display: inline-flex;
  background-color: #cf2828;
  border: 0.5px solid black;
  border-radius: 3px;
  padding: 3px 4px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  color: #dddddd;
}
/* gallery section end */

/* contact section start */
.contact {
  padding: 50px 0;
  margin-top: 50px;
  margin-bottom: 40px;
}
.contact h2 {
  text-align: center;
  color: #dddddd;
}
.border {
  width: 100px;
  height: 5px;
  background: #f05454;
  margin: 10px auto;
  border-radius: 10px;
}
.contactform {
  max-width: 600px;
  margin: 20px auto;
  padding: 0 10px;
  overflow: hidden;
}
.contactin {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0;
  border: 0.25;
  border-style: solid;
  background: #262a32;
  padding: 20px 40px;
  outline: none;
  color: whitesmoke;
  border-radius: 10px;
  transition: 0.5s;
}
.contactin:focus {
  box-shadow: 0 0 10px 2px #30475e;
}
textarea.contactin {
  resize: none;
  height: 120px;
}
.contactbtn {
  float: right;
  border: 0;
  background: #f05454;
  color: #dddddd;
  padding: 12px 50px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.5s;
}
.contactbtn:hover {
  background-color: #30475e;
}
/* contact section end */

/* footer section start*/
footer {
  background: #292e37;
  height: auto;
  width: 100vw;
  padding-top: 30px;
  color: #dddddd;
  position: relative;
  bottom: 0;
}
.footercontent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.footercontent h3 {
  font-size: 30px;
  font-weight: 600;
  color: #f05454;
  line-height: 3rem;
}
.footercontent p {
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 18px;
}
.social {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 1rem 0;
}
.social li {
  margin: 0 10px;
}
.social a {
  text-decoration: none;
  color: #dddddd;
}
.social a i {
  font-size: 30px;
  transition: color 0.4s ease;
}
.social a:hover i {
  color: #f05454;
}
.footerend {
  width: 100vw;
  padding: 8px 0;
  text-align: center;
}
.footerend p {
  font-size: 14px;
  word-spacing: 2px;
}
.footerend span {
  opacity: 0.4;
  font-weight: 200;
}
.developer {
  color: #979191;
}

#credit {
  cursor: pointer;
  color: #979191;
  text-align: center;
  display: block;
  font-size: 14px;
}
/* footer section end*/

/* visitors count start*/
#count {
  font-size: 25px;
  margin: 0;
}
/* visitors count end*/
