*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
.navbar-toggler-icon{
  color: white!important;
  background:  !important;
  border-radius: 50% !important;

}
.navbar-toggler{
  background: white!important;
  border: 2px solid white!important;

}


.color_one{
  color:#3D365C;
}
.bg_one{
  background-color:#3D365C;
}
.color_two{
  color: #7C4585;
}
.bg_two{
  background-color: #7C4585;
}
.color_three{
  color: #C95792;
}
.bg_three{
  background-color: #C95792;
}
.color_four{
  color: #F8B55F;
}
.bg_four{
  background-color: #F8B55F;
}
.height-100vh{
  min-height: 100vh;
}
#fistheaderBox{
  min-height: 100vh;
}
#navbarNav .nav-link {
  color:#F8B55F;
  font-size: 20px;
  margin-right: 10px;
}
#navbarNav .nav-link:hover{
  border: none;
  border-bottom: 1px solid blue;
}
#navbarNav .nav-link.active{
  color: #3D365C !important;
  font-size: 20px;
  border: none;
  border-bottom: 3px solid blue;

}
nav  .navbar-brand{
  color: white;
}
#headerBox h1{
  font-size: 50px;
  font-style: normal;
  font-weight: bold;
}

#headerBox {
  padding-top: 150px !important;
  padding-left: 100px;
}
#headerBox p{
  font-size: 24px;
  word-spacing: 5px;
  margin-top: 20px;
}
.imagebg{
  width: 70%;
  height: 400px;
  background-color:rgba(255,255,255,0.8);
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
  /* background-image: url(https://images.pexels.com/photos/4252526/pexels-photo-4252526.jpeg?cs=srgb&dl=pexels-edward-jenner-4252526.jpg&fm=jpg); */

  background-position: center;
  background-size: cover;
  margin-bottom: 20px;
  margin-top: 70px;
  position: relative;
  border-radius: 50%;
  border: none;
  border-bottom: 3px solid gray;
  border-top: 3px groove black;
  box-shadow: 20px 0px 0px orange;
  animation:
}
.imagcircle{
  width: 22%;
  height: 350px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  position: absolute;
  margin-top: 80px;
  overflow: hidden;
  padding: 10px;
  border: orange 4px solid;
}
#pic{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: skyblue;


}
.iconBox i{
  background: white;
  box-shadow: 2px 2px 2px gray;
  text-align: center;
  border-radius: 5%;
  color: orange;
  margin-left: 5px;
  border: none;
}
#aboutDesc{
  font-size: 21px;
  text-align: justify;
  color: #fff;
}
#progre_con{
  height: 30px;

}
#progre_con b{
  text-align: left;
  padding-left: 20px;
}
#fistheaderBox{
  margin-top: 70px!important;
}
#contactme h1{
  font-size:55px;
  font-weight:bold;
}
#projects a{
  text-decoration: none;
}

/* loader code */
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}
.loader::before,
.loader::after {
  content:"";
  grid-area: 1/1;
  --c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
  background:
    var(--c) 50%  0,
    var(--c) 50%  100%,
    var(--c) 100% 50%,
    var(--c) 0    50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}
.loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear
}

@keyframes l12 {
  100%{transform: rotate(.5turn)}
}
/* loader icon end */



/* success icon start */

/**
 * Extracted from: SweetAlert
 * Modified by: Istiak Tridip
 */
.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;

    .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #4CAF50;
          &::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }

        &::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 4.25s ease-in;
        }

        &::before, &::after {
            content: '';
            height: 100px;
            position: absolute;
            background: #FFFFFF;
            transform: rotate(-45deg);
        }

        .icon-line {
            height: 5px;
            background-color: #4CAF50;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;

            &.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                animation: icon-line-tip 0.75s;
            }

            &.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 0.75s;
            }
        }

        .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 10;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: 4px solid rgba(76, 175, 80, .5);
        }

        .icon-fix {
            top: 8px;
            width: 5px;
            left: 26px;
            z-index: 1;
            height: 85px;
            position: absolute;
            transform: rotate(-45deg);
            background-color: #FFFFFF;
        }
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

/* success icon end */

@media (max-width:768px){
  #navbarNav .nav-link {
    color: white ;
    font-size: default;
    margin-right: 0px;
  }
  #navbarNav .nav-link.active{
    color: blue !important;
    font-size: default;
    border: none;
  }
  #headerBox h1{
    font-size: 20px;
    font-style: normal;
    font-weight: bold;
  }
  #name{
    display: block;
    margin-top: 15px;
  }
  #country{
    color: ;
  }
  #dev_type{
    color: white;
  }
  .imagebg{
    width: 100%;
    height: 320px;
    background-color:rgba(255,255,255,0.8);
    border-radius: 50%;
    border: none;
    border-bottom: 3px solid gray;
    border-top: 3px groove white;
    box-shadow: 20px 0px 0px orange;
    /* background-image: url(https://images.pexels.com/photos/4252526/pexels-photo-4252526.jpeg?cs=srgb&dl=pexels-edward-jenner-4252526.jpg&fm=jpg); */
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
    background-position: center;
    background-size: cover;
    margin-bottom: 20px;
    margin-top: 50px;
    position: relative;
    /* animation: routete infinite ; */
    animation-duration: 10s;
    animation-timing-function: ease;

  }

  .imagcircle{
    width: 70%;
    height: 280px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    position: absolute;
    padding: 15px;
    margin-top: 50px;
    overflow: hidden;
      border: none;
      box-shadow: 2px 2px 3px gray;
  }
  #pic{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: orange;

  }
  #headerBox {
    padding-top: 50px !important;
    padding-left: 10px;

  }
  #headerBox p{
    font-size: 16px;
    word-spacing: 2px;
    margin-top: 20px;
  }
  #aboutDesc{
    font-size: 15px;
    text-align: justify;
    color: #fff;
  }
  #progre_con{
    height: 18px;

  }
  #fistheaderBox{
    margin-top: 40px!important;
  }

  #navbarNav .nav-link:hover{
border: none;
border-bottom: 1px solid none;
}
#contactme h1{
  font-size:35px;
  font-weight:bold;
}
}



/*  */
