@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}
header{
	
}

 .lgMenu{
        display: block;
    }

    .mobileMenu{
        display: none;
    }

.section_title span{
    color: #0167d0;
    font-size: 25px;
    font-weight: bold;
}

.font-16{
	font-size: 16px;
}

.menu{
    width: 100%;
        text-align: right;
    padding-top: 27px;
}

.menu ul{
    list-style-type: none;
    margin: 0;
}

.menu ul li{
    display: inline;
    margin: 0px 20px 0px 0px;
}

.menu ul li a{
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}


.menu ul li a:hover{
    color: #0d6efd;
}

.profileImg .avatar {
    min-width: 450px;
    min-height: 450px;
    position: relative;
    border-radius: 100%;
}

.profileImg .avatar .image {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation: morph 8s ease-in-out infinite 1s; 
    background-blend-mode: multiply;
    -webkit-box-shadow: inset 0px 0px 0px 18px rgb(255 255 255 / 30%);
    -moz-box-shadow: inset 0px 0px 0px 18px rgba(255,255,255,.3);
    box-shadow: inset 0px 0px 0px 18px rgb(255 255 255 / 30%);
}


@keyframes morph {
	 0% {
		 border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
	 50% {
		 border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
	}
	 100% {
		 border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
}

@keyframes lineheight{
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}

@keyframes lineround{
    0%{
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100%{
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
}

.headerLefts .texts {
    padding-right: 50px;
}

.headerLefts .job {
    position: relative;
    /*overflow: hidden;*/
    margin-bottom: 30px;
}

.headerLefts video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.headerLefts .job h3 {
    background-color: #f9f9f9;
    mix-blend-mode: screen;
    position: relative;
    z-index: 5;
    font-size: 45px;
    font-weight: 900;
    line-height: 1.3;
}

.headerLefts .desc {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}

.headerLefts .desc p {
    max-width: 550
px
;
    font-size: 17px;
}

.headerInfo{

    background: #fbfbfb;

}

.mainContents .about_inner {
    width: 100%;
    height: auto;
    clear: both;
    display: flex;
}

.mainContents .left {
    /*width: 50%;*/
    margin-right: 50px;
}

.mainContents .left .image {
    position: relative;
}

.mainContents .left .image img {
    position: relative;
    min-width: 100%;
    opacity: 0;
}

.mainContents .left .image .main {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
}

.mainContents .experience {
    position: absolute;
    width: 220px;
    height: 220px;
    background-color: #fff;
    bottom: -40px;
    right: -40px;
    z-index: 1;
    border-radius: 100%;
    overflow: hidden;
}

.mainContents .experience .year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 72px;
    font-weight: 800;
    background-attachment: fixed;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    animation: experience 25s linear infinite;
}

#circle {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}

@keyframes experience {
    0% {
        background-position: 0px;
    }
    100% {
       background-position: -1000px;
    }
}

#circle svg {
    position: absolute;
    left: -90px;
    top: -90px;
    width: 400px;
    height: 400px;
    -webkit-animation: rotate 25s linear infinite;
    -moz-animation: rotate 25s linear infinite;
    -ms-animation: rotate 25s linear infinite;
    -o-animation: rotate 25s linear infinite;
    animation: rotate 25s linear infinite;
}

@-webkit-keyframes rotate {
    from { -webkit-transform: rotate(360deg); }
    to { -webkit-transform: rotate(0); }
}
@-moz-keyframes rotate {
    from { -moz-transform: rotate(360deg); }
    to { -moz-transform: rotate(0); }
}
@-ms-keyframes rotate {
    from { -ms-transform: rotate(360deg); }
    to { -ms-transform: rotate(0); }
}
@-o-keyframes rotate {
    from { -o-transform: rotate(360deg); }
    to { -o-transform: rotate(0); }
}
@keyframes rotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0); }
}

.serviceLeft .left {
    width: 100%;
    margin-right: 50px;
}

.serviceTitle {
    width: 100%;
    max-width: 700
px
;
    height: auto;
    clear: both;
    float: left;
}

.serviceTitle h3 {
    font-weight: 700;
}

.serviceLeft .text {
    width: 100%;
    float: left;
    margin-top: 30
px
;
    margin-bottom: 37
px
;
}

.service_progress {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}

.progress_inner {
    width: 100%;
    margin-bottom: 25
px
;
}

.progress_inner > span {
    margin: 0px 0px 5px 0px;
    width: 100%;
    display: block;
    text-align: left;
    color: #000;
    font-family: "Poppins";
}

.progress_inner span.number {
    float: right;
}

.progress_inner .background {
    background: rgba(0,0,0,.09);
    width: 100%;
    min-width: 100%;
    position: relative;
    height: 7px;
    border-radius: 50px;
}

.progress_inner .background .bar.open {
    -webkit-animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    -moz-animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    width: 100%;
}

.progress_inner .background .bar_in {
    background: #d1701f;
}

.services .right ul {
    margin: 0px 0px 0px -50px;
    list-style-type: none;
}

.services .right ul li:nth-child(1) {
    margin-top: 50px;
}

.services .right ul li {
    margin: 0px 0px 50px 0px;
    width: 50%;
    float: left;
    padding-left: 50px;
    position: relative;
}

.services .right ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
    padding: 55px 40px;
    border-radius: 10px;
}

.services .right ul li .svg {
    color: #d1701f;
}

.services .right ul li .svg {
    width: 50px;
    height: 50px;
    color: #d1701f;
    margin-bottom: 30px;
    display: block;
}

.services .right ul li .title {
    font-size: 20px;
}

.footer{
    background: #0167d0;
}

.footerCopy{
    color: #FFF;
}

.contactProfile .short_info {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 90px;
}

.contactProfile .short_info ul {
    margin: 0px 0px 0px -50px;
    list-style-type: none;
}

.contactProfile .short_info ul li {
    margin: 0px 0px 50px 0px;
    width: 33.3333%;
    float: left;
    padding-left: 50px;
}

.contactProfile .short_info ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    display: flex;
    align-items: center;
}

.contactProfile .short_info ul li .logo {
    display: inline-block;
    width: 65px;
    height: 65px;
    background-color: #fff;
    border-radius: 100%;
    position: relative;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 9%);
}

.contactProfile .short_info ul li .info {
    padding-left: 30px;
}

.contactProfile .short_info ul li .info h3 {
    font-size: 16px;
}

.contactProfile .short_info ul li .info span {
    font-family: "Poppins";
}

.contactProfile .short_info ul li .svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 25px;
    height: 25px;
    color: #d1701f;
    display: block;
}

.contactLeft .row{
    margin: 0px 0px 20px 0px;
}

.btnBasic{
    display: inline-block;
        margin: 0px 10px;
    background: #0167d0;
    /* padding: 15
px
; */
    border-radius: 20px;
    color: #FFF;
    padding-left: 40px;
    padding-right: 40px;
    text-decoration: none;
    border: 2px solid #0167d0;
    color: #fff;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.btnBasic:hover{
    background-color: #FFF;
    color: #000;
}

.skillbar {
    position:relative;
    display:block;
    margin-bottom:15px;
    width:100%;
    background:#eee;
    height:35px;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    -webkit-transition:0.4s linear;
    -moz-transition:0.4s linear;
    -ms-transition:0.4s linear;
    -o-transition:0.4s linear;
    transition:0.4s linear;
    -webkit-transition-property:width, background-color;
    -moz-transition-property:width, background-color;
    -ms-transition-property:width, background-color;
    -o-transition-property:width, background-color;
    transition-property:width, background-color;
}

.skillbar-title {
    position:absolute;
    top:0;
    left:0;
width:110px;
    font-weight:bold;
    font-size:13px;
    color:#ffffff;
    background:#6adcfa;
    -webkit-border-top-left-radius:3px;
    -webkit-border-bottom-left-radius:4px;
    -moz-border-radius-topleft:3px;
    -moz-border-radius-bottomleft:3px;
    border-top-left-radius:3px;
    border-bottom-left-radius:3px;
}

.skillbar-title span {
    display:block;
    background:rgba(0, 0, 0, 0.1);
    padding:0 20px;
    height:35px;
    line-height:35px;
    -webkit-border-top-left-radius:3px;
    -webkit-border-bottom-left-radius:3px;
    -moz-border-radius-topleft:3px;
    -moz-border-radius-bottomleft:3px;
    border-top-left-radius:3px;
    border-bottom-left-radius:3px;
}

.skillbar-bar {
    height:35px;
    width:0px;
    background:#6adcfa;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
}

.skill-bar-percent {
    position:absolute;
    right:10px;
    top:0;
    font-size:11px;
    height:35px;
    line-height:35px;
    color:#ffffff;
    color:rgba(0, 0, 0, 0.4);
}

#portfolio-filters {
    padding: 1.5em 0 0 0;
}

#portfolio-items, #portfolio-filters {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

#portfolio-filters ul {
    text-align: center;
    list-style: none;
    padding: 0;
}

#portfolio-filters ul li {
    display: inline-block;
    background-color: #11a1e1;
    padding: 5px;
    font-size: 15px;
    color: #FFF;
    font-weight: 600;
    cursor: pointer;
    width: 200px;
}

.single-content {
    width: 33%;
    float: left;
    padding: 16px;
}

.single-content img {
    width: 100%;
}


@media only screen and (max-width: 600px) 
{

    html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
  .imgTop {
    display: none;
  }

  p{
    text-align: justify;
  }

  .headerLeft h1{
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
  }

  .headerLeft h2{
    text-align: center;
  }

  .headerLefts{
    padding: 0 !important;
  }

  .headerLefts .job h3{
    text-align: center;
  }

  .headerLefts .texts {
    padding: 0;
}

    .headerLefts .job {
        margin: 0;
    }

    .headerLefts .job h3 {
        font-size: 35px;
    }

    .headerLefts .desc{
        text-align: center;
        margin: 0;
    }

    .mainContents .left{
        width: 100%;
        margin: 0;
    }

    .ryker_tm_button{
        text-align: center;
    }

    .grid-item{
        width: 100%;
    }

    .services .right ul li{
        width: 100%;
    }

    .services .right ul li .list_inner{
        text-align: center;
    }

    .services .right ul li .svg{
        display: inline;
    }

    .serviceDesign{
        display: none;
    }

    .contactProfile ul li{
        display: block;
    }

    .contactProfile .short_info ul li{
        width: 100%;
        padding: 0;
    }

    .contactProfile .short_info ul li .logo{
        display: none;
    }

    .contactLeft{
        text-align: center;
        padding-bottom: 1em;
    }

    .footerCopy{
        text-align: center;
    }

    .desc p{
        padding: 10px;
        text-align: center;
    }

    .short_skills .texts{
        text-align: center;
    }

    .svgProfile{
        text-align: center;
    }

    .lgMenu{
        display: none;
    }

    .mobileMenu{
        display: block;
        background: #0167d0;
        color: #FFF;
    }

    .menuText{
            padding: 10px;
    border-bottom: 1px solid;
    }

    .mobileMenu ul{
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: none;
    }

    .mobileMenu ul li{
        padding: 10px;
        border-bottom: 1px solid;
    }

    .mobileMenu ul li a{
        display: block;
    color: #FFF;
    text-decoration: none;
    }



}