body {
    margin: 0;
    font-family: lato !important;}
.header a{
    color: #fff;
    font-size: 18px;
      /*  padding-right: 40px;*/
}
.float-right{
    display: inline-block;
}
.float-right li{
    display: inline-block;
}
.float-right li a{
    padding-left: 20px
}
.float-right li:last-child a{
    padding-left: 10px !important;
    background:#0487ff !important;
    padding: 12px 20px 12px !important;
   margin-left: 30px;
   border-radius: 5px;
    /*color: #ff*/
}
h1, h2, h3, h4, h5, h6, p, figur, a {
    margin: 0px;
    font-weight: normal;
    font-family: 'Lato';
    /*font-size: 26px;*/
}
h3 {
    font-size: 26px;
    line-height: 42px;
}
html {
  scroll-behavior: smooth;
  /*transition: all .5s ease;

 
    -webkit-animation: scrollDownKnobAnimation 5s ease infinite;
    -moz-animation: scrollDownKnobAnimation 5s ease infinite;
    -o-animation: scrollDownKnobAnimation 5s ease infinite;
    animation: scrollDownKnobAnimation 5s ease infinite;
  */  
    /*background-color: #b3b3b3;*/
   
}
#about-me{
scroll-margin: 120px;
scroll-behavior: smooth
}
body
{
    transition-timing-function: ease;

  /* Also the same as */
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}
.vertical-line{
    background: #26272d;
    width: 1px;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1;
}
.vertical-line.line1{
    left: calc(100% / 6);
}
.vertical-line.line2{
    left: calc(100% / 6 * 2);
}
.vertical-line.line3{
    left: calc(100% / 6 * 3);
}
.vertical-line.line4{
    left: calc(100% / 6 * 4);
}
.vertical-line.line5{
    left: calc(100% / 6 * 5);
}

/*----------header-----*/
.header{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content:space-around;
    position: fixed;
    z-index: 99;
    width: 100%;
    padding: 0px 40px 0;
    left: 0;
    top: 0px;
    transition: all 0.5s ease;
    /*background-image: linear-gradient(#ffffff6b, #0000009e);*/
}
header.header.sticky {
    background: #16171b;
    padding: 0px 40px;
    z-index: 9;
}
.header .humbarger{
    width: 35px;
    height: 25px;
    position: relative;
    cursor: pointer;
}
.header .humbarger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    position: absolute;
    transition: all 0.5s ease;
}
.header .humbarger span:nth-child(1) {
    top: 0;
    left: 0;
}
.header .humbarger span:nth-child(2) {
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
}
.header .humbarger:hover span:nth-child(2) {
    width: 100%;
}
.header .humbarger span:nth-child(3) {
    bottom: 0;
    left: 0;
}

.header.show-menu .humbarger span:nth-child(1) {
    transform-origin: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.header.show-menu .humbarger span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.header.show-menu .humbarger span:nth-child(3) {
    transform-origin: center;
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}



/*-------menu wrapper-----*/
.menu-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0.5s;
}
.menu-wrapper.show-menu{
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.menu-wrapper ul.main-menu {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 100%;
    max-width: 1280px;
}
.menu-wrapper ul.main-menu li{
    margin-bottom: 22px;
}
.menu-wrapper ul.main-menu li:last-child{
    margin-bottom: 0;
}
.menu-wrapper ul.main-menu li a {
    font-size: 70px;
    font-family: 'Futura Md BT';
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.8s ease;
    opacity: 0;
    visibility: hidden;
}
.menu-wrapper ul.main-menu li:nth-child(1) a {
    transition-delay: 0s;
}
.menu-wrapper ul.main-menu li:nth-child(2) a {
    transition-delay: 0.1s;
}
.menu-wrapper ul.main-menu li:nth-child(3) a {
    transition-delay: 0.2s;
}
.menu-wrapper ul.main-menu li:nth-child(4) a {
    transition-delay: 0.3s;
}
.menu-wrapper ul.main-menu li:nth-child(5) a {
    transition-delay: 0.4s;
}
.menu-wrapper ul.main-menu li:nth-child(6) a {
    transition-delay: 0.5s;
}
.menu-wrapper ul.main-menu li:nth-child(7) a {
    transition-delay: 0.6s;
}

.menu-wrapper.show-menu ul.main-menu li a {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    color: #fff
}

.menu-wrapper ul.main-menu li a:before {
    content: attr(data-text);
    color: #0487ff;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s ease;
}
.menu-wrapper ul.main-menu li a:hover:before {
    width: 100%;
}

.menu-wrapper .quick-link {
    max-width: 1280px;
    width: 100%;
    position: absolute;
    right: 50%;
    bottom: 40px;
    transform: translateX(50%);
    display: flex;
    flex-flow: row;
    align-items: center;
    z-index: 1;
    justify-content: flex-end;
    text-align: right;
}
.menu-wrapper .quick-link .follow-me span,
.menu-wrapper .quick-link .email span {
    display: block;
    line-height: normal;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 12px;
}
.menu-wrapper .quick-link .email a {
    display: inline-block;
    line-height: normal;
    font-size: 19px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #0487ff;
}
.menu-wrapper .quick-link .email a:hover{
    text-decoration: underline;
}
.menu-wrapper .quick-link .follow-me {
    margin-left: 50px;
}
.menu-wrapper .quick-link ul.social-icon {
    display: flex;
    flex-flow: row;
}
.menu-wrapper .quick-link ul.social-icon li{
    margin-right: 5px;
}
.menu-wrapper .quick-link ul.social-icon li:last-child{
    margin-right: 0;
}
.menu-wrapper .quick-link ul.social-icon a {
    color: #acacac;
}
.menu-wrapper .quick-link ul.social-icon a:hover {
    color: #fff;
}

.menu-wrapper .quick-link .follow-me,
.menu-wrapper .quick-link .email {
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}
.menu-wrapper .quick-link .email{
    transition-delay: 0.4s;
}
.menu-wrapper .quick-link .follow-me{
    transition-delay: 0.5s;
}
.menu-wrapper.show-menu .quick-link .follow-me,
.menu-wrapper.show-menu .quick-link .email {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.menu-wrapper .horizontal-img {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.2;
}

/*-----hero section-----*/
.hero-section {
    background: #16171b url('../images/hero-bg.jpg') no-repeat;
    background-position: center top;
    background-size: 100%;
}

.hero-section .hero-image-wrapper{
    width: 100%;
    max-width: 1280px;
    position: absolute;
    right: 50%;
    top: 0;
    height: 100%;
    z-index: 1;
    transform: translateX(50%);
}
.hero-section .hero-image{
    width: 100%;
    max-width: 440px;
    position: absolute;
    right: 6px;
    height: 100%;
    display: block;
    z-index: 2;
    /*background: url(../images/home-sl.jpg) no-repeat center right/cover;*/
}
.hero-section .hero-image:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #16171b;
    transition: all 0.8s ease;
}
.hero-section .hero-image.animated:before {
    width: 0;
}
.hero-section .hero-image img{
    height: 100%;
    display: block;
    max-width: 100%;
}
.hero-section .vertical-logo{
    position: absolute;
    left: calc(100% / 6);
    top: 50%;
    transform: translateY(-50%);
}
.hero-section .vertical-logo img{
    display: block;
    max-width: 100%;
}
.hero-section .social-icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 2;
}
.hero-section .scroll-down {
    position: absolute;
    bottom: 210px;
    left: -10px;
    font-size: 14px;
    color: #acacac;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    transform-origin: top;
    transform: rotate(-90deg) translateX(50px);
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease 1s;
}
.hero-section .scroll-down.animated {
    transform: rotate(-90deg) translateX(0px);
    opacity: 1;
    visibility: visible;
}
.hero-section .scroll-down img {
    position: absolute;
    width: 14px;
    transform: rotate(90deg);
    transform-origin: center;
    left: -30px;
    top: 1px;
    animation: scroll-down-move 1s ease infinite;
}
.hero-section .content-wrapper{
    height: 100vh;
    width: 100%;
    min-height: 750px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: relative;

}
.hero-section .hero-image-wrapper .dot-texture {
    position: absolute;
    right: -107px;
    bottom: 20px;
}
.hero-section .hero-content{
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-section .hero-content h1{
    /*background: url('../images/aron-l.png') no-repeat 95% center / contain;*/
    font-size: 60px;
    line-height: 70px;
    color: #fff;
    font-family: 'lato';
    font-weight: bold;
    display: inline-block;
    /*margin-left: -10px;*/
    transition: all 1.2s ease 0.4s;
}
.hero-section .hero-content h2{
    color: #fff;
    font-family: 'lato';
    font-weight: 500;
    margin-top: 16px;
    transition: all 1.2s ease 0.7s;
}
.hero-section .hero-content .hire-me{
    transition: all 1.2s ease 0.9s;
}

.hero-section .hero-content .hire-me,
.hero-section .hero-content h1,
.hero-section .hero-content h2{
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}
.hero-section .hero-content .hire-me.animated,
.hero-section .hero-content h1.animated,
.hero-section .hero-content h2.animated{
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    /*text-align: center;*/
}


@-webkit-keyframes scroll-down-move {
    0% {left: -30px;}
    50% {left: -40px;}
    100% {left: -30px;}
}
@keyframes scroll-down-move {
    0% {left: -30px;}
    50% {left: -40px;}
    100% {left: -30px;}
}



/*-------about section------*/
.about-section{
    overflow: hidden;
    background: url("../images/about-bg.jpg") no-repeat center top/ cover;
}
.about-section .container{
    position: relative;
    display: flex;
    flex-flow: row;
}
.about-section .overlay{
        background: #ffffffe6;
    /*background: rgba(22, 23, 27, 0.9);*/
    z-index: 0;
}
.about-section .about-shape {
    position: absolute;
    right: 0;
    z-index: 3;
    bottom: 30px;
    max-width: 630px;
    transform-origin: top right;
    opacity: 0.2
    /*animation: about-shape-move 8s ease infinite;*/
}
.about-section .about-shape span {
    position: absolute;
    border-radius: 100%;
    background: #fff;
}

.about-section .about-shape .circle1 {
    width: 128px;
    height: 128px;
    bottom: 40px;
    left: 100px;
    background: #0487ff;
    animation: circle1-move 5s linear infinite;
}

.about-section .about-content{
    z-index: 4;
    position: relative;
    /*max-width: 640px;*/
    width: 100%;
    margin: 0 auto;
    padding: 60px 10px 60px 10px;
}
.about-section .dot-pattern {
    position: absolute;
    left: -107px;
    bottom: 20px;
}
.about-section .about-img1 {
    position: relative;
    z-index: 2;
    left: 4px;
    width: 100%;
    /* width: 320px; */
    display: block;
    background: url(../images/abt.jpg) no-repeat top left / contain;}

.about-section .about-img2 {
    position: relative;
    z-index: 2;
    right: 5px;
    width: 320px;
    display: block;
    background: url(../images/about-img2.jpg) no-repeat left top / cover;
}
.about-section .about-img1:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #141518;
    transition: all 1s ease;
}
.about-section .about-img1.animated:before {
    width: 0;
}
.about-section .about-content h2{
    /*text-align: justify;*/
    margin-bottom: 35px;
    transition: all 1.2s ease 0.6s;
    line-height: 50px;
}
.about-section .about-content h5{
    /*text-align: justify;*/
   font-size: 18px;
    line-height: 37px;
    font-family: 'lato';
    /*max-width: 315px;*/
    margin-left: auto;
    transition: all 1.2s ease 0.8s;
}
.about-section .about-content h2,
.about-section .about-content h5{
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}
.about-section .about-content h2.animated,
.about-section .about-content h5.animated{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    color: #fff
}
.about-section .about-content p.animated, .about-section .about-content p.animated {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    color: #fff;
    font-family: lato;
        font-size: 18px;
    line-height: 32px;
}

@keyframes about-shape-move {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(4deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes circle1-move {
    0% {
        bottom: 40px;
    }
    50% {
        bottom: 70px;
    }
    100% {
        bottom: 40px;
    }
    
}

.skill-section .section-title,
.blog-section .section-title,
.portfolio-section .section-title,
.service-section .section-title{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 90px;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    color: rgba(78, 78, 78, 0.2);
}
.blog-section .section-title,
.portfolio-section .section-title,
.service-section .section-title{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
}


/*----------skill section----------*/
.skill-section{
    padding: 16px 0 80px;
    overflow: hidden;
    position: relative;
    background: #16171b;
}
.skill-section h2{
    font-size: 26px
}
.skill-section .section-title{
    position: relative;
    transform: translate(0);
    top: 0;
    text-align: center;
    margin-bottom: 20px;
    text-transform: capitalize;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;

        /*color: #0487ff;
    text-shadow: -1px -1px 0 #ffe232, 1px -1px 0 #ffba21, -1px 1px 0 #ffb921, 1px 1px 0 #ffb520;*/
}
.skill-section .skill-wrapper {
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}
.skill-section .skill-wrapper .vertical-line {
    display: block;
    height: calc(100% + 80px);
    width: 2px;
    background: #0487ff;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: -40px;
}
.skill-section .skill-wrapper .vertical-line:before,
.skill-section .skill-wrapper .vertical-line:after{
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: #0487ff;
    left: -7px;
}
.skill-section .skill-wrapper .vertical-line:before{
    top: 0;
}
.skill-section .skill-wrapper .vertical-line:after{
    bottom: 0;
}
.text-white{
    color: #fff !important
}
p{
    font-size: 18px !important
}
.about-content h2{
    font-size: 40px
}
.contact-form p{
    font-size: 20px !important
}
.day-l h2{
    font-size: 40px !important;
    margin-bottom: 20px

}
.skill-section .single-skill {
    width: 50%;
    max-width: 535px;
    margin-bottom: 50px;
    background: #212529;
    padding: 15px 30px 20px;
    border-radius: 5px;
    border: 1px solid #26272d;
    position: relative;
    z-index: 1;
    align-self: stretch;
    transform: translateX(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s ease 0.1s;
}
.skill-section .single-skill.animated {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.skill-section .single-skill:nth-child(odd) {
    transform: translate(-30px, 80px);
    transition: all 1.5s ease 0.5s;
}
.skill-section .single-skill.animated:nth-child(odd) {
    transform: translate(0, 80px);
}

.skill-section .single-skill p {
    line-height: 1.6;
    margin-top: 5px;
    color: #fff;
        font-size: 18px;
}
.skill-section .single-skill h3{
    position: relative;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
}
.skill-section .single-skill h3 .line {
    display: block;
    position: relative;
    top: 5px;
    margin-left: 30px;
    height: 2px;
    background: -moz-linear-gradient(left,  rgba(78,78,78,1) 0%, rgba(15,15,15,0) 81%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(left,  rgba(78,78,78,1) 0%,rgba(15,15,15,0) 81%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right,  rgba(78,78,78,1) 0%,rgba(15,15,15,0) 81%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e4e4e', endColorstr='#00000000',GradientType=1 );
}

.skill-section .single-skill span.circle {
    display: block;
    width: 18px;
    height: 18px;
    background: #0487ff;
    border-radius: 100%;
    position: absolute;
    top: 50px;
    right: -61px;
    z-index: 2;
    box-shadow: 0 0px 0px 8px #333;
}
.skill-section .single-skill:nth-child(odd) span.circle{
    right: inherit;
    left: -61px;
}
.skill-section .single-skill span.rectengle {
    position: absolute;
    top: 42px;
    right: -50px;
    height: 34px;
    width: 115px;
    background: -moz-linear-gradient(left, rgba(0,0,0,0) 1%, rgba(78,78,78,0.99) 99%, rgba(78,78,78,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,0) 1%,rgba(78,78,78,0.99) 99%,rgba(78,78,78,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0) 1%,rgba(78,78,78,0.99) 99%,rgba(78,78,78,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#4e4e4e',GradientType=1 );
}

.skill-section .single-skill:nth-child(odd) span.rectengle{
    right: inherit;
    left: -50px;
    background: -moz-linear-gradient(left,  rgba(78,78,78,1) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(left,  rgba(78,78,78,1) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right,  rgba(78,78,78,1) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e4e4e', endColorstr='#00000000',GradientType=1 );

}


/*----------service-section--------*/
.service-section{
  /*  padding: 50px 0 90px;*/
    background: url("../images/service-bg.jpg") no-repeat left center/cover;
    overflow: hidden;
        padding: 50px 0 50px;
}

.service-section .container {
    /*margin: 0 0 0 auto;*/
}
.service-section .service-wrapper{
    display: flex;
    flex-flow: row wrap;
    z-index: 2;
    position: relative;
    margin-left: -20px;
    padding-right: 20px;
}
.service-section .service-wrapper .single-service{
    background: #000000de;
    position: relative;
    width: calc(100% / 3 - 30px);
    margin: 0 0 30px 30px;
    padding: 60px 30px 48px;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: all 0.5s ease;
}
.service-section .service-wrapper .single-service {
    border-top:5px solid #0487ff;
}
.service-section .service-wrapper .single-service .service-icon {
    margin: 0 auto 22px;
}
.service-section .service-wrapper .single-service h4 {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 20px;
        font-size: 20px;
    font-weight: 200;
}
.service-section .service-wrapper .single-service p{
    font-size: 18px;
    color: #b9b9b9;
    position: relative;
    z-index: 1;
}
.service-section .service-wrapper .single-service .watermark{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}



/*-----------portfolio section--------*/
.portfolio-section{
    padding: 120px 0 215px;
    background: url("../images/project-bg1.jpg") no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}
.portfolio-section .overlay{
    background: rgba(20, 21, 25, 0.85);
}
.portfolio-section .shape {
    position: absolute;
    bottom: 100px;
    left: -120px;
    opacity: 0.8;
}
.portfolio-section .section-title {
    top: 30%;
}
.portfolio-section .container{
    position: relative;
    z-index: 2;
    max-width: 1585px;
    margin-right: 0;
}

.portfolio-section .portfolio-wrapper  {
    display: flex;
    flex-flow: row;
    
}
.portfolio-section .portfolio-content-wrapper{
    width: 40%;
    padding-right: 130px;
}
.portfolio-section .portfolio-img{
    width: 60%;
    background: #1e1f23;
    position: relative;
}
.portfolio-section .portfolio-img img:focus{
    box-shadow: none;
    outline: inherit;
}
.portfolio-section .portfolio-img:before{
    content: url("../images/dot-texture-horizontal.png");
    position: absolute;
    bottom: -110px;
    left: 20px;
}
.portfolio-section .portfolio-content{
    padding-right: 15px;
    padding-bottom: 50px;
}
.portfolio-section .portfolio-content:focus{
    box-shadow: none;
    outline: inherit;
}
.portfolio-section .portfolio-content .portfolio-type{
    font-size: 14px;
    text-transform: uppercase;
    color: #0487ff;
    font-weight: 700;
    font-family: 'Futura Md BT';
    letter-spacing: 1px;
}
.portfolio-section .portfolio-content h2{
    color: #fffefe;
    font-family: 'Futura Md BT';
    font-weight: 500;
    margin-bottom: 28px;
}
.portfolio-section .portfolio-content p{
    color: #ababab;
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
}

.portfolio-section .portfolio-content-wrapper .slick-arrow {
    background: transparent;
    border: 1px solid #fff;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    padding: 0;
}
.portfolio-section .portfolio-content-wrapper .slick-arrow:hover {
    background: #0487ff;
    border-color: #0487ff;
    opacity: 1;
}
.portfolio-section .portfolio-content-wrapper .slick-next{
    left: 65px;
}
.portfolio-section .portfolio-content-wrapper .slick-prev img{
    transform: rotate(-180deg);
    transform-origin: center center;
    
}
.portfolio-section .portfolio-paging-status {
    position: absolute;
    left: 140px;
    bottom: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #0487ff;
}


/*---------testimonial-section------------*/
.testimonial-section{
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: url("../images/testimonial-bg.jpg") no-repeat center center / cover;
}
.testimonial-section .overlay{
    background: rgba(20, 21, 25, 0.9);
}
.testimonial-section .shape {
    position: absolute;
    right: 0;
    top: 120px;
}
.testimonial-section .testimonial-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 16px;
}
.testimonial-section .single-testimonial {
    text-align: center;
    position: relative;
    z-index: 2;
}
.testimonial-section .single-testimonial .slick-slide {
    position: relative;
    padding-top: 140px;
}
.testimonial-section .single-testimonial img.quote {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
}
.testimonial-section .single-testimonial h2 {
    font-style: italic;
    color: #fff;
}
.testimonial-section .single-testimonial .author a {
    font-size: 22px;
    font-weight: 700;
    color: #0487ff;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    display: block;
    margin-top: 26px;
}
.testimonial-section .single-testimonial .author .desgination {
    display: block;
    font-size: 14px;
    text-transform: none;
    color: #0487ff;
}
.testimonial-section .slick-dots{
    margin-top: 10px;
}
.testimonial-section .slick-dots li{
    display: inline-block;
    margin: 0 5px;
}
.testimonial-section .slick-dots li button {
    border: none;
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #333;
    transition: all 0.5s ease;
    cursor: pointer;
    padding: 0;
}
.testimonial-section .slick-dots li.slick-active button {
    background: #acacac;
}

/*----author image area-------*/
.testimonial-section .author-img-wrapper {
    margin: 20px 0 0 300px;
    position: relative;
    max-width: 210px;
}

.testimonial-section .author-img-wrapper:before{
    content: url("../images/curve.png");
    position: absolute;
    bottom: -30px;
    left: 126px;
    overflow: hidden;
    width: 0;
    transition: all 1.5s ease 0.3s;
}
.testimonial-section .author-img-wrapper.animated:before{
    width: 1100px;
}
.testimonial-section .author-img-wrapper .author-img {
    border-radius: 100%;
    height: 160px;
    width: 160px;
    border: 2px dashed #696a69;
    padding: 10px;
}
.testimonial-section .author-img-wrapper:focus{
    box-shadow: none;
    border: none;
}


/*-------------blog-section----------*/
.blog-section{
    position: relative;
    padding: 102px 0 120px;
    overflow: hidden;
    background: #141519 url("../images/project-bg.jpg") no-repeat center center/cover;
}

.blog-section .ellipse {
    position: absolute;
    top: 70px;
    left: 90px;
    max-width: 590px;
    z-index: 1;
    opacity: 0.5;
    animation: ellipse-animate 2s linear infinite;
}

@-webkit-keyframes ellipse-animate {
    0% {transform: rotate(40deg)}
    100% {transform: rotate(350deg)}
}

@keyframes ellipse-animate {
    0% {transform: rotate(40deg)}
    100% {transform: rotate(350deg)}
}

.blog-section .section-title{
    position: relative;
    transform: translate(0);
    top: 0;
    text-align: right;
    margin-bottom: 50px;
}
.blog-section .blog-wrapper{
    position: relative;
    z-index: 2;
  /*  display: flex;
    flex-flow: row;*/
    margin-left: -20px;
}
.blog-section .single-blog{
    /*width: calc(100% / 4 - 20px);*/
    /*margin-left: 20px;*/
    background: #26272a;
    /*display: flex;
    flex-flow: column;
    justify-content: space-between;*/
}
.blog-section .single-blog:not(.title) {
    transform: translateY(40px);
    opacity: 0;
    visibility: hidden;
}
.blog-section .single-blog:not(.title):nth-child(2) {
    transition: all 1.2s ease;
}
.blog-section .single-blog:not(.title):nth-child(3) {
    transition: all 1.2s ease 0.3s;
}
.blog-section .single-blog:not(.title):nth-child(4) {
    transition: all 1.2s ease 0.6s;
}
.blog-section .single-blog.animated:not(.title) {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    margin-bottom: 40px
}
.float-right{
    float: right;
}
.blog-section ul {
    padding: 0 30px 0;
}
.blog-section ul li{
    font-size: 20px;
    line-height: 40px;
    /*border-bottom: 1px dashed #94979b;*/
    /*padding: 5px 0;*/
    list-style-type: circle;
}
.blog-section ul li:last-child{
    border-bottom: 0px dashed #94979b;
}
.blog-section ul li::marker {
  color: #0487ff;
}
.blog-section .single-blog .featured-img img {
    width: 100%;
    opacity: 0.6;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.5s ease;
}
.blog-section .single-blog:hover .featured-img img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.blog-section .single-blog.title{
    background: transparent;
    padding-top: 40px;
    padding-left: 7px;
    display: block;
}
.blog-section .single-blog.title h2{
    font-size: 50px;
    color: #fff;
    transition: all 1s ease 0.1s;
}
.blog-section .single-blog.title .view-more{
    transition: all 1s ease 0.3s;
}

.blog-section .single-blog.title h2,
.blog-section .single-blog.title .view-more{
    transform: translateX(-30px);
    opacity: 0;
    visibility: hidden;
}
.blog-section .single-blog.title h2.animated,
.blog-section .single-blog.title .view-more.animated{
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.blog-section .single-blog .post-title {
        padding: 16px 30px;
    /*text-align: center;*/
    border-bottom: 1px solid #35373d;
}
.blog-section .single-blog .post-title h3{
    font-size: 20px;
    line-height: 1.3;
}

.blog-section .single-blog .post-title h3 a{
    color: #fff;
}
.blog-section .single-blog .post-title h3 a:hover{
    color: #0487ff;
}
.blog-section .single-blog .like-comment{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-top: 1px solid #35373d;
    position: relative;
    
}
.blog-section .single-blog .like-comment .read-more {
    width: 50px;
    height: 50px;
    border: 1px solid #35373d;
    display: flex;
    border-radius: 100%;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    background: #26272a;
}
.blog-section .single-blog .like-comment .read-more:hover {
    background: #0487ff;
    border-color: #0487ff;
}
.blog-section .single-blog .like-comment span {
    color: #8b8a8a;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.blog-section .single-blog .like-comment span svg{
    height: 18px;
    margin-right: 8px;
}



/*---------instagram-section------*/
.instagram-section {
    padding: 120px 0;
    background: #141519;
    position: relative;
    overflow: hidden;
}

.instagram-section .insta-shape {
    position: absolute;
    right: -80px;
    top: 120px;
    z-index: 1;
}
.contact-section .section-title,
.instagram-section .section-title{
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}
.contact-section .section-title svg,
.instagram-section .section-title svg{
    width: 45px;
    color: #0487ff;
}
.contact-section .section-title h2,
.instagram-section .section-title h2{
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}
.instagram-section .instagram-img-wrapper{
    display: flex;
    flex-flow: row;
    position: relative;
    z-index: 2;
    padding-left: 6px;
}
.instagram-section .single-col.sm {
    width: 20%;
}
.instagram-section .single-col.md {
    width: calc(30% - 20px);
    margin-left: 20px;
}
.instagram-section .single-col.lg {
    width: calc(50% - 20px);
    margin-left: 20px;
    padding-top: 70px;
}
.instagram-section .single-col img{
    margin-bottom: 20px;
    width: 100%;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}
.instagram-section .single-col img:hover{
    filter: grayscale(0);
}
.instagram-section .single-col a:last-child img{
    margin-bottom: 0;
}


/*-----------contact-section---------*/
.footer-area{
    background: #141519 url("../images/service-bg.jpg") no-repeat center center / cover;
    position: relative;
}
.footer-area .contact-section{
    padding: 80px 0;
}
.contact-section .content-wrapper{
    z-index: 2;
    position: relative;
    display: flex;
    /*max-width: 960px;*/
    margin: 0 auto;
    justify-content: space-between;
}
.contact-section .address-area{
    width: 50%;
    padding-right: 20px;
}
.contact-section .contact-form{
    width: 50%;
    padding-left: 20px;
}
.contact-section .contact-form label{
    text-transform: capitalize;
    font-size: 16px;
    color: #0487ff;
    font-family: 'Roboto', sans-serif;
}
.contact-section .contact-form textarea,
.contact-section .contact-form input{
    border: none;
    border-bottom: 1px solid #333;
    padding-left: 0;
    padding-right: 0;
    color: #ccc;
    font-family: 'Roboto', sans-serif;
}
.contact-section .contact-form textarea {
    padding-top: 12px;
}
.contact-section .contact-form textarea::-webkit-input-placeholder,
.contact-section .contact-form input::-webkit-input-placeholder { 
  color: #ccc;
}
.contact-section .contact-form textarea::-moz-placeholder, 
.contact-section .contact-form input::-moz-placeholder { 
  color: #ccc;
}
.contact-section .contact-form textarea:-ms-input-placeholder,
.contact-section .contact-form input:-ms-input-placeholder {
  color: #ccc;
}
.contact-section .contact-form textarea:-moz-placeholder, 
.contact-section .contact-form input:-moz-placeholder { 
  color: #ccc;
}
.contact-section .contact-form button[type="submit"]{
}
.contact-section .contact-form .input-group.name{
    transition: all 1.2s ease 0.5s;
}
.contact-section .contact-form .input-group.email{
    transition: all 1.2s ease 0.7s;
}
.contact-section .contact-form .input-group.msg{
    transition: all 1.2s ease 0.9s;
}
.contact-section .contact-form .input-group.submit{
    transition: all 1.2s ease 1s;
}
.contact-section .contact-form .input-group{
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}
.contact-section .contact-form .input-group.animated{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.contact-section .address-area address {
    margin-bottom: 0;
}
.contact-section .address-area address .label {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    font-family: roboto;
    letter-spacing: 1px;
    display: block;
}
.contact-section .address-area address p.address {
    color: #fff;
    font-size: 20px;
    /*max-width: 300px;*/
    margin-top: 12px;
    transition: all 1.2s ease 0.3s;
}
.contact-section .address-area address .address-label{
    transition: all 1.2s ease;
}
.contact-section .address-area address .email-label{
    margin-top: 40px;
    transition: all 1.2s ease 0.6s;
}

.contact-section .address-area address .email{
    color: #fff;
    transition: all 1.2s ease 0.8s;
}
.contact-section .address-area address .email:hover{
    text-decoration: underline;
}

.contact-section .address-area address .address-label,
.contact-section .address-area address .email-label,
.contact-section .address-area address .address,
.contact-section .address-area address .email{
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
}
.contact-section .address-area address .address-label.animated,
.contact-section .address-area address .email-label.animated,
.contact-section .address-area address .address.animated,
.contact-section .address-area address .email.animated{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}


/*-------footer-section-------*/
.footer-section{
    border-top: 1px solid #26272d;
    position: relative;
    z-index: 2;
    /*padding: 20px 0;*/
}
.footer-section .footer-content {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 8px;
    padding-left: 20px;
}
.footer-section .footer-content .copyright-text p{
    font-size: 17px;
    color: #fff;
}
.footer-section .footer-content .copyright-text p a{
    color: #0487ff;
    font-weight: 700;
}
.footer-section .footer-content .copyright-text p a:hover{
    text-decoration: underline;
}
.footer-section .footer-content .social-icon {
    display: flex;
    align-items: center;
}
.footer-section .footer-content .social-icon li{
    margin-left: 5px;
}



/*------------------
*******Blog page******
-------------------*/
.blog-page{
    background: #141519;
}
.blog-page .section-title{
    text-align: center;
}
.blog-page .blog-wrapper {
    flex-flow: row wrap;
    justify-content: space-between;
}
.blog-page .single-blog {
    width: calc(100% / 2 - 20px);
    max-width: 570px;
    margin-bottom: 100px;
}
.blog-page .single-blog .post-title {
    text-align: left;
}
.blog-page .single-blog .post-title h3 {
    font-size: 30px;
}
.blog-section .single-blog .post-title h3:first-letter {
    color: #0487ff;
    font-weight: bold;
}
.blog-page .single-blog {
    transition: all 1.2s ease!important;
}
.blog-page .single-blog:nth-child(even){
    transition-delay: 0.3s!important;
    transform: translateY(130px);
}
.blog-page .single-blog.animated:nth-child(even){
    transform: translateY(100px);
}
.blog-page .single-blog .date {
    background: #0487ff;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 15px 25px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}
.blog-page .single-blog .date small {
    display: block;
    line-height: normal;
    font-size: 12px;
    letter-spacing: 1px;
}


/*---pagination---*/
.blog-page .pagination {
    border-top: 1px solid #fff;
    padding: 19px 0 0 0;
    text-align: center;
    margin-top: 100px;
    position: relative;
    z-index: 2;
}
.blog-page .pagination ul li{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}
.blog-page .pagination li a{
    color: #fff;
    display: inline-block;
    font-size: 16px;
    background: #26272a;
    padding: 10px 15px;
    margin: 0 4px;
}
.blog-page .pagination li a svg {
    width: 18px;
    position: relative;
    top: 5px;
}
.blog-page .pagination li a.prev svg {
    margin-right: 8px;
}
.blog-page .pagination li a.next svg {
    margin-left: 8px;
}
.blog-page .pagination li a.active,
.blog-page .pagination li a:hover{
    background: #0487ff;
}



/*----------------------
*******blog-single******
-----------------------*/
.blog-single {
    background: #141519;
    padding-bottom: 120px;
}

.blog-single .blog-single-banner{
    background: url('../images/blog-single-feature-img.jpg') no-repeat center center/cover;
    height: 650px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.blog-single .blog-single-banner .overlay{
    background: rgba(20, 21, 25, 0.8);
}
.blog-single .blog-single-banner .banner-content{
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 1;
}
.blog-single .blog-single-banner .banner-content h1{
    color: #fff;
    line-height: 1.2;
}
.blog-single .blog-single-banner .banner-content p a,
.blog-single .blog-single-banner .banner-content p {
    color: #0487ff;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    margin-top: 24px;
}
.blog-single .blog-single-banner .banner-content p a:hover{
    text-decoration: underline;
}

.blog-single .single-content{
    padding: 110px 0 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
    position: relative;
    z-index: 2;
}
.blog-single .single-content p{
    margin-bottom: 25px;
}
.blog-single .single-content img{
    width: 100%;
    margin-bottom: 25px;
}

.blog-single .single-content blockquote {
    background: #18191d;
    padding: 25px 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 14px 6px #111113;
    border-left: 2px solid #acacac;
}
.blog-single .single-content blockquote h3 {
    font-style: italic;
}
.blog-single .single-content blockquote .author {
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 23px;
    display: block;
    text-align: right;
    color: #0487ff;
    font-weight: 700;
}
.blog-single .single-content blockquote .line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: red;
    position: relative;
    top: -5px;
    margin-right: 13px;
}

.blog-single .single-post-pagination{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #fff;
    padding: 15px 0;
}
.blog-single .single-post-pagination a{
    width: 45%;
    color: #acacac;
    line-height: normal;
    position: relative;
    font-size: 20px;
}
.blog-single .single-post-pagination a:hover{
    color: #0487ff;
}
.blog-single .single-post-pagination a.prev{
    padding-left: 40px;
}

.blog-single .single-post-pagination a.next{
    text-align: right;
    padding-right: 40px;
}
.blog-single .single-post-pagination svg{
    width: 18px;
    position: absolute;
    top: 3px;
}
.blog-single .single-post-pagination a.prev svg{
    left: 0;
}
.blog-single .single-post-pagination a.next svg{
    right: 0;
}


/*------blog comment--------*/
.blog-single .comments-area {
    max-width: 880px;
    margin: 90px auto 0;
    position: relative;
    z-index: 2;
    padding: 50px;
    background: #18191d;
    box-shadow: 0 0 14px 6px #111113;
}
.blog-single .comments-area .comment-title{
    margin-bottom: 30px;
    border-bottom: 1px solid #0a0b0e;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.blog-single .comment-list .comment {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    border-bottom: 1px solid #0a0b0e;
    padding: 20px 0;
}
.blog-single .comment-list .comment:first-child {
    padding-top: 0;
}
.blog-single .comment-list .comment:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.blog-single .comment-list .comment .comment-author,
.blog-single .comment-list .comment .comment-author img {
    width: 80px;
    height: 80px;
    margin-top: 6px;
    border-radius: 100%;
}
.blog-single .comment-list .comment-metadata {
    width: calc(100% - 80px);
    padding-left: 25px;
}
.blog-single .comment-list  .comment-metadata b.fn {
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 500;
    margin-right: 15px;
}

.blog-single .comment-list .date-time {
    color: #acacac;
    font-size: 15px;
}
.blog-single .comment-list .date-time:hover {
    color: #0487ff;
}
.blog-single .comment-list .comment-content {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    margin-top: 7px;
}
.blog-single .comment-list .reply {
    font-size: 18px;
    color: #0487ff;
    text-transform: capitalize;
    font-weight: 600;
}
.blog-single .comment-list .reply:hover {
    text-decoration: underline;
}

/*------*/
.blog-single ul.children {
    padding-left: 100px;
    margin-top: 30px;
}
.blog-single ul.children .comment:first-child {
    border-top: 1px solid #0a0b0e;
    padding-top: 20px;
}


/*-------comment form------------*/
.blog-single .comment-respond{
    max-width: 880px;
    margin: 90px auto 0;
    position: relative;
    z-index: 2;
    padding: 50px;
    background: #18191d;
    box-shadow: 0 0 14px 6px #111113;
}
.blog-single .comment-respond .comment-form {
    display: flex;
    flex-flow: row wrap;
}
.blog-single .comment-respond .comment-form-author {
    width: 50%;
    padding-right: 15px;
}
.blog-single .comment-respond .comment-form-email {
    width: 50%;
    padding-left: 15px;
}
.blog-single .comment-respond .comment-form-comment{
    width: 100%;
}

.scroll-down {
    /*position: absolute;
    width: 150px;
    bottom: 20px;
    left: 50%;*/
    /*margin-left: -75px;*/
    /*z-index: 50;
    display: block;
    text-align: center;
    font-size: 12px;
    -webkit-font-smoothing: antialiased*/
}

.scroll-down .icon {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 26px;
    height: 44px;
    display: block;
    border-radius: 13px;
    border: 2px solid #b3b3b3;
    margin: 0 auto
}

.scroll-down .icon:before {
    transition: all .3s ease;
    width: 6px;
    height: 6px;
    -webkit-animation: scrollDownKnobAnimation 2s ease infinite;
    -moz-animation: scrollDownKnobAnimation 2s ease infinite;
    -o-animation: scrollDownKnobAnimation 2s ease infinite;
    animation: scrollDownKnobAnimation 2s ease infinite;
    position: absolute;
    top: 6px;
    border-radius: 50%;
    background-color: #b3b3b3;
    content: '';
    left: 50%;
    margin-left: -3px
}

.scroll-down .icon:before,.scroll-down span {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease
}

.scroll-down span {
    transition: all .3s ease;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    top: -24px
}

.scroll-down.invert .icon {
    border-color: #35017f
}

.scroll-down.invert .icon:before {
    background-color: #000
}

.scroll-down.invert span {
    color: #35017f
}

html.about-me .scroll-down:hover .icon {
    background-color: #fff;
    border-color: #fff
}

html.about-me .scroll-down:hover span {
    zoom:1;filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    letter-spacing: 5px
}

html.about-me .scroll-down.invert:hover .icon {
    background-color: #35017f;
    border-color: #35017f
}

html.about-me .scroll-down.invert:hover .icon:before {
    background-color: #b581fe
}
/*
.container {
  max-width: 800px;
}
*/
#comparison {
  width: 100%;
  padding-bottom: 350px;
  overflow: hidden;
  position: relative;
}

figure {
  position: absolute;
  background-image: url(../images/after1.jpg);
  background-size: cover;
  font-size: 0;
  width: 100%;
  height: 350px;
  margin: 0;
}

#divisor {
  background-image: url(../images/before1.jpg);
  background-size: cover;
  position: absolute;
  width: 50%;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: 350px;
}
#divisor::before, #divisor::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 4px;
  height: calc(50% - 25px);
  background: white;
  z-index: 3;
}
#divisor::before {
  top: 0;
  box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}
#divisor::after {
  bottom: 0;
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

#handle {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
#handle::before, #handle::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
#handle::before {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}
#handle::after {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

.cmp input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
      margin: auto;
    max-width: unset;
    padding: 0;
    border: none;
}
.cmp input[type=range]:focus, input[type=range]:active {
  border: none;
  outline: none;
}

.cmp input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid white;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}

.cmp input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}


:root {
    --theme-yellow:   #FEE715FF;
    --theme-black:    #101820FF;
    --theme-gray:       #8892B0;

}


/* SECTION VERTICAL TABS */
#experienceTab.nav-pills .nav-link.active {
   color: #fff;
    background-color: transparent;
    border-radius: 50px;
    border-left: 12px solid var(--theme-yellow);
        box-shadow: 0px 3px 14px 0px rgba(0, 11, 40, 0.06);
    background: rgb(4 135 255);
}.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: #ffffff; 
}.table>:not(caption)>*>* { 
    color: #000; padding:10px 20px
}.table>:not(caption)>*>* {
    padding: .5rem .5rem;border-bottom: 1px solid #e6e6e6;
    font-size: 18px;
    background-color: #efefef; padding:10px 20px}
#experienceTab.nav-pills .nav-link {
         border-radius: 0px;
    border-left: 12px solid #000;
    background: #fff;
    margin-bottom: 10px;
    color: #000;
    /*font-size: 18px;*/
    font-size: 16px;
   padding: 15px 33px;
    margin: 10px 5px;
    border-radius: 50px;
        box-shadow: 0px 3px 14px 0px rgba(0, 11, 40, 0.06);
}
.nav {
    
    align-items: center;
    justify-content: center;
}
.date-range {
    letter-spacing: 0.01em;
    color: var(--theme-gray);
}

/* STUB  LINKS */
.nav-pills  li a {
    color: var(--theme-gray);
    transition: 0.3s eas-in-out;
}
.nav-pills  li a:hover {
    color: var(--theme-yellow);
}

.video-play-button {
     position: absolute;
     z-index: 10;
         top: 120%;
    left: 5%;
    /* top: 50%;
     left: 50%;*/
     transform: translateX(-50%) translateY(-50%);
     box-sizing: content-box;
     display: block;
     /*width: 32px;
     height: 44px;*/
    /* background: #fa183d;
     */
     border-radius: 50%;
     padding: 18px 20px 18px 28px;
}
 .video-play-button:before {
     content: "";
     position: absolute;
     z-index: 0;
     left: 50%;
     top: 50%;
     transform: translateX(-50%) translateY(-50%);
     display: block;
     width: 80px;
     height: 80px;
     background: #4495e0;
     border-radius: 50%;
     animation: pulse-border 1500ms ease-out infinite;
}
 .video-play-button:after {
     content: "";
     position: absolute;
     z-index: 1;
     left: 50%;
     top: 50%;
     transform: translateX(-50%) translateY(-50%);
     display: block;
     width: 80px;
     height: 80px;
     background: #0487ff;
     border-radius: 50%;
     transition: all 200ms;
}
 .video-play-button:hover:after {
     background-color: #0487ff;
}
 .video-play-button img {
     position: relative;
     z-index: 3;
     max-width: 100%;
     width: auto;
     height: auto;
}
 .video-play-button span {
     display: block;
     position: relative;
     z-index: 3;
     width: 0;
     height: 0;
        border-left: 20px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}
 @keyframes pulse-border {
     0% {
         transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
         opacity: 1;
    }
     100% {
         transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
         opacity: 0;
    }
}
 .video-overlay {
     /*position: fixed;*/
     z-index: -1;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     background: rgba(0, 0, 0, 0.80);
     opacity: 0;
     transition: all ease 500ms;
}
 .video-overlay.open {
     position: fixed;
     z-index: 9;
     opacity: 1;
}
 .video-overlay-close {
     position: absolute;
     z-index: 9;
     top: 15px;
     right: 20px;
     font-size: 36px;
     line-height: 1;
     font-weight: 400;
     color: #fff;
     text-decoration: none;
     cursor: pointer;
     transition: all 200ms;
}
 .video-overlay-close:hover {
     color: #fa183d;
}
 .video-overlay iframe {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translateX(-50%) translateY(-50%);
    /* width: 90%;
     */
    /* height: auto;
     */
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}
.counters {
    background: #fff;
    padding: 20px 0
}
.text-black{
    color:#000 !important;
}
.counters p{
    line-height: 25px;
    color:#fff !important;
    font-size:22px;
    /*padding-left: 15px*/
}
.title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}
.contact-section .contact-form1 label {
   
    color: #000 !important;
    
}
/*.our-faq-wrapper {
  float: left;
  width: 100%;
  padding: 89px 0 60px;
  background:#f5f5f5;
}

.our-faq-wrapper {
    padding: 90px 0 60px;
  background:#fff;  
}*/
.accordion .card {
  border: none;
  margin-bottom: 30px;
}
.our-faq-wrapper .btn-link {
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  background: #242c42;
  color: #fff;
  border-radius: 0;
  padding: 7px 15px 12px;
  font-size: 16px;
  overflow: hidden;
  border: none;
  font-weight:600; 
  text-decoration: none; 
}
.our-faq-wrapper .btn-link:hover, .our-faq-wrapper .btn-link:focus {
  text-decoration: none;
}
.our-faq-wrapper .btn-link:after {
  position: absolute;
  content: '\f068';
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: fontawesome;
}
.our-faq-wrapper .btn-link.collapsed:after {
  content: '\f067';
}
.our-faq-wrapper .btn-link:before {
  position: absolute;
  content: '';
  background: #0487ff;
  -webkit-transform: skew(-35deg);
  transform: skew(-35deg);
  height: 100%;
  width: 50%;
  left: 90%;
  top: 0;
}
.card-header {
  padding: 0;
  background: transparent;
  border-bottom: none;
}
.card-body {
  position: relative;
  font-size: 16px;
  color: #000;
width: 100%;
}
.card-body:after {
  position: absolute;
  content: '';
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #242c42;
}
.card-body:before {
  position: absolute;
  content: '';
  height: 2px;
  width: 50%;
  left: 0;
  bottom: 0;
  background: #0487ff;
  z-index: 1;
}
.breadcrumb-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff !important;
    font-size: 85px !important;
}
.contact-one {
  position: relative;
  padding: 70px 0;
}
@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0;
  }
}
.contact-one__content {
  position: relative;
}
.contact-one__content__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
}
.contact-one__content__shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.contact-one__inner {
  position: relative;
}
.contact-one__inner-shape {
  position: absolute;
  right: -285px;
  bottom: -83px;
  z-index: -1;
}
.contact-one__inner-shape img {
  width: 100%;
  height: auto;
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.contact-one__left {
  margin-top: 50px;
}
@media (min-width: 1200px) {
  .contact-one__left {
    margin-top: 0;
    padding-left: 70px;
  }
}
.contact-one__text {
  margin: 0;
  margin-top: -30px;
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 40px;
  position: relative;
}
.contact-one__info {
  margin-bottom: 0;
  position: relative;
}
.contact-one__info__content {
  margin-top: 8px;
}
.contact-one__info__item {
  display: block;
}
@media (min-width: 576px) {
  .contact-one__info__item {
    display: flex;
    align-items: center;
  }
}
.contact-one__info__item + .contact-one__info__item {
  margin-top: 40px;
}
@media (min-width: 576px) {
  .contact-one__info__item + .contact-one__info__item {
    margin-top: 10px;
  }
}
.contact-one__info__icon {
  width: 80px;
  height: 80px;
  background-color: #0d6efd;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  transition: all 500ms ease;
  color: var(--hiredots-white, #fff);
  margin-right: 30px;
  flex-shrink: 0;
}
.contact-one__info__icon:hover {
  background-color: var(--hiredots-base, #00cde5);
  color: var(--hiredots-white, #fff);
}
.contact-one__info__text {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px; color:#09c
}
.contact-one__info__title {
font-size: 20px;
    color: #121212;
    line-height: 30px;
}
.contact-one__info__title a {
  color: var(--hiredots-black, #0b182a);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-one__info__title a:hover {
  background-size: 100% 1px;
}
.contact-one__form {
  padding: 60px 30px;
  position: relative;
  z-index: 10;
  background-color: #000000d6;
  overflow: hidden;
}
.contact-one__form::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: url(../images/shapes/contact-page-shape.png);
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .contact-one__form {
    padding: 60px;
  }
}
.contact-one__form .form-one__group {
  grid-gap: 20px;
  position: relative;
}
.contact-one__form .form-one__control__icon {
  right: 0;
  color: var(--hiredots-white, #fff);
}

select:invalid { color: gray; }
.contact-one__form .bootstrap-select > .dropdown-toggle,
.contact-one__form input[type=text],
.contact-one__form input[type=email],
.contact-one__form input[type=number],
.contact-one__form select,
.contact-one__form textarea {
  /*padding: 0;*/
  height: 58px;
  /*padding: 30px;*/
  /*background-color: rgba(0, 0, 0, 0);*/
  border: 1px solid rgba(var(--hiredots-white-rgb, 255, 255, 255), 0.15);
  /*color: var(--hiredots-white, #fff);*/
}
.contact-one__form .bootstrap-select > .dropdown-toggle#datepicker,
.contact-one__form input[type=text]#datepicker,
.contact-one__form input[type=email]#datepicker,
.contact-one__form textarea#datepicker {
  cursor: pointer;
}
.contact-one__form textarea {
  height: 150px;
  padding-top: 20px;
}
.counters{
    background: #0487ff
}
.counters .col{
    border-right: 1px solid #fff
}
.sc-about-section-three {
    background: url(../images/about-bg-two.png);
    background-position: top right;
    background-repeat: no-repeat;
}

.sc-pb-120 {
    padding-bottom: 120px;
}
.sc-pt-120 {
    padding-top: 120px;
}

.sc-about-group-image {
  position: relative;
}

.sc-about-group-image .sc-group {
  position: absolute;
  bottom: -45px;
  right: -35px;
}

.sc-about-group-image .sc-about-text {
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(3, 4, 27, 0.04);
  position: absolute;
  top: -20px;
  right: 0;
  padding: 32px 35px 10px;
}

.sc-about-group-image .sc-about-text::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e42032;
}

.sc-about-group-image .sc-about-text .sc-icon i {
  background: #fff0f0;
  color: #e42032;
  width: 100px;
  height: 100px;
  line-height: 100px;
  display: inline-block;
  text-align: center;
  font-size: 45px;
}

.sc-about-group-image .sc-about-text .sc-counter-number .sc-count {
  font-weight: 700;
  font-size: 30px;
  color: #03041c;
}

.sc-about-content-style .sc-heading-area .description {
  font-weight: 400;
  font-size: 20px;
  color: #000;
}

.sc-about-content-style .sc-auother-style-box {
  background: #ffffff;
  border: 2px solid #eeeff1;
  border-radius: 10px;
  padding: 15px 15px 10px;
  position: relative;
}

.sc-about-content-style .sc-auother-style-box .sc-auother-content .sc-auother-text {
  font-weight: 600;
  font-size: 20px;
  color: #03041c;
  font-family: "Inter Tight", sans-serif;
  transition: 0.4s;
}

.sc-about-content-style .sc-auother-style-box .sc-auother-content .sc-auother-text span {
  font-size: 15px;
  color: #e42032;
}

.sc-about-content-style .sc-auother-style-box .sc-auother-image img {
  width: 145px;
}

.sc-about-content-style .sc-auother-style-box .sc-shape-icon {
  position: absolute;
  right: 25px;
  top: 34px;
}

.sc-about-content-style .video-area i {
  color: #03041c;
  font-size: 52px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
}

.sc-about-content-style .video-area i:hover {
  color: #e42032;
}

.sc-about-content-style .video-area .sc-title a {
  color: #03041c;
  font-weight: 600;
  font-size: 16px;
}
.img-box1 {
    position: relative;
    z-index: 2;
    text-align: right;
    width: 100%;
}
.img-box1 .img1 {
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 1;
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
    height: 100%;
}
.img-box1 .img1 img {
    height: 100%;
    object-fit: cover;
}

.img-box1 .img1 img, .img-box1 .img2 img {
    border-radius: 0px;
}
img:not([draggable]), embed, object, video {
    max-width: 100%;
    height: auto;
}
img {
    border: none;
    max-width: 100%;
}
.img-box1 .img2 {
    display: inline-block;
    position: relative;
    z-index: 2;
    -webkit-clip-path: polygon(70% 0, 100% 25%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(70% 0, 100% 25%, 100% 100%, 0 100%, 0 0);
}
.img-box1 .img1 img, .img-box1 .img2 img {
    border-radius: 0px;
}
.img-box1 .year-counter {
    margin-top: 30px;
    margin-left: auto;
}
.year-counter {
    max-width: 270px;
    text-align: center;
    padding: 22px;
    border-radius: 0px;
    background-color: var(--white-color);
    position: relative;
    z-index: 3;
}
.background-image, [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.year-counter_number {
    font-family: var(--title-font);
    font-size: 74px;
    font-weight: 700;
    color: #0487ff;
    line-height: 50px;
    margin-bottom: 10px;
    margin-top: 3px;
}.year-counter_text {
    font-family: var(--body-font);
    color: var(--title-color);
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: -0.32em;
    text-transform: uppercase;
    max-width: 113px;
    display: inline-block;
}
.aron-inc{
    background: #fff;
    padding: 30px;
    border-top: 15px groove #0487ff;
}
.aron-inc p{
font-size: 18px;
line-height: 32px
}
.box-s{
background: #ececec;
padding: 10px 15px;
font-size: 22px !important;
line-height: 32px;
text-align: center;
}
.line-1{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    /* height: calc(100% - 10px); */
    border: 1px dashed #0487ff;
    width: 117px;
}
.cs_experience.cs_style_1 .cs_experience_thumb {
    padding: 0px 175px 115px 40px;
    position: relative;
}
.cs_rounded_15 {
    border-radius: 15px;
}

.cs_zindex_3 {
    z-index: 3;
}
.cs_experience.cs_style_1 .cs_experience_shape {
    position: absolute;
    bottom: 0px;
    right: 220px;
}
.moving_x {
    -webkit-animation-name: movingX;
    animation-name: movingX;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.cs_experience.cs_style_1 .cs_experience_box {
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 400px;
    height: 360px;
    margin-bottom: 75px;
        background-size: cover;
}
.cs_experience_box {
    border: 15px solid #fff;
    height: 246px;
}
.bg-white {
    background-color: #fff !important;
}

/* gallery image */
.gallery {
  width: 100%;
  /*height: 100vh;*/
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  /*grid-template-rows: repeat(5, 1fr);*/
  /*gap: 2px;*/
}

.one {
  grid-column: 1 / 3;
}

.two {
  grid-column: 3 / 4;
}

.three {
  grid-column: 1 / 2;
}

.four {
  grid-column: 2 / 4;
}

.five {
  grid-column: 1 / 4;
}

.six {
  grid-column: 1 / 2;
}

.seven {
  grid-column: 2 / 4;
}

.eight {
  grid-column: 1 / 3;
}

.nine {
  grid-column: 3 / 4;
}

.gallery__images-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1; /* satacking context */
  transition: background-color 0.5s;
}

/*.overlay:hover {
  background-color: transparent;
}*/

.gallery__images-small {
  transform: scale(1);
  transition: transform 0.4s;
  height: 500px !important;
    width: 100%;
    /*object-fit: cover;*/
}

.overlay:hover + .gallery__images-small {
  transform: scale(1.3);
}

/* style lightbox */
.gallery__lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.gallery__lightbox-content {
  width: 80%;
  height: 250px;
  position: relative;
}

.close,
.back,
.next {
  position: absolute;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.close {
  top: -20px;
  right: 0;
  background-color: #bd1e1e;
  color: #fff;
  width: 30px;
  height: 30px;
}

.back,
.next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #bdbec9a3;
  color: #000;
}

.back {
  left: 0;
}

.next {
  right: 0;
}

.gallery__lightbox-image {
  box-shadow: 1px 1px 5px 1px #320917, -1px -1px 5px 1px #320917;
  border-radius: 4px;
}

.gallery__lightbox:target {
  opacity: 1;
  pointer-events: auto;
}
.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: #0487ff;
    color: #fff;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 19px 30px;
    min-width: 170px;
    border-radius: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.contact-feature {
    padding: 30px;
    border-radius: 0px;
    border: 1px solid #E6E6E6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
}

.contact-feature:not(:last-child) {
    margin-bottom: 25px
}

@media (max-width: 1300px) and (min-width: 1200px) {
    .contact-feature {
        padding:14px 10px 14px 14px
    }
}

.contact-feature .box-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: var(--white-color);
    background-color: #0487ff;
    border-radius: 50%;
    text-align: center
}

.contact-feature .box-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px
}

@media (max-width: 1199px) {
    .contact-feature .box-title {
        font-size:22px
    }
}

.contact-feature .box-text {
    /*line-height: 24px*/
}

.contact-feature .box-text a {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    color: inherit
}

.contact-feature .box-text a:hover {
    color: #0487ff
}

.contact-feature .th-social a {
    --icon-size: 40px;
    border-radius: 10px
}

.contact-feature .th-social a:not(:hover) {
    color: var(--title-color)
}

@media (max-width: 1299px) {
    .contact-feature .th-social a:not(:last-child) {
        margin-right:3px
    }
}

.contact-form-v1 {
    padding: 60px;
    margin-right: 36px
}
.background-image, [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg-smoke {
    background-color: #F7F7F7 !important;
}
@media (max-width: 991px) {
    .hero-section .scroll-down {
    
    bottom: 110px !important;
    
}
    .contact-form-v1 {
        margin-right:0;
        margin-top: 50px
    }
}

@media (max-width: 767px) {
    .contact-form-v1 {
        padding:40px
    }
}

@media (max-width: 575px) {
    .contact-form-v1 {
        padding:30px
    }
}

.rounded-20 {
    border-radius: 20px;
    overflow: hidden
}

.form-text {
    font-size: 16px
}

.contact-map {
    line-height: 0px;
    max-width: 1520px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px
}

.contact-map iframe {
    width: 100%;
    height: 670px;
    border-radius: 30px
}

@media (max-width: 1199px) {
    .contact-map iframe {
        height:400px
    }
}

@media (max-width: 991px) {
    .contact-map iframe {
        height:350px;
        border-radius: 20px
    }
}

.contact-map.style2 {
    max-width: 100%;
    padding: 0;
    margin-bottom: -110px
}

.contact-map.style2 iframe {
    border-radius: 0
}

@media (max-width: 767px) {
    .contact-map.style2 {
        margin-bottom:-220px
    }

    .contact-map.style2 iframe {
        height: 600px
    }
}
.space-top {
    padding-top: 120px;
}
select,.form-control,.form-select,textarea,input {
    height: 60px;
    padding: 0 25px 0 25px;
    padding-right: 45px;
    border: 1px solid transparent;
    color: var(--body-color);
    background-color: var(--smoke-color2);
    border-radius: 0px;
    font-size: 16px;
    width: 100%;
    font-family: var(--body-font);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out
}

select:focus,.form-control:focus,.form-select:focus,textarea:focus,input:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--th-border-color);
    background-color: var(--smoke-color2)
}

select::-moz-placeholder,.form-control::-moz-placeholder,.form-select::-moz-placeholder,textarea::-moz-placeholder,input::-moz-placeholder {
    color: var(--body-color)
}

select::-webkit-input-placeholder,.form-control::-webkit-input-placeholder,.form-select::-webkit-input-placeholder,textarea::-webkit-input-placeholder,input::-webkit-input-placeholder {
    color: var(--body-color)
}

select:-ms-input-placeholder,.form-control:-ms-input-placeholder,.form-select:-ms-input-placeholder,textarea:-ms-input-placeholder,input:-ms-input-placeholder {
    color: var(--body-color)
}

select::-webkit-input-placeholder, .form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
    color: var(--body-color)
}

select::-moz-placeholder, .form-control::-moz-placeholder, .form-select::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
    color: var(--body-color)
}

select:-ms-input-placeholder, .form-control:-ms-input-placeholder, .form-select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder {
    color: var(--body-color)
}

select::-ms-input-placeholder, .form-control::-ms-input-placeholder, .form-select::-ms-input-placeholder, textarea::-ms-input-placeholder, input::-ms-input-placeholder {
    color: var(--body-color)
}

select::placeholder,.form-control::placeholder,.form-select::placeholder,textarea::placeholder,input::placeholder {
    color: var(--body-color)
}

input[type=date] {
    padding: 0 25px 0 25px;
    position: relative
}

input[type=date]:after {
    content: "\f073";
    position: relative;
    font-family: var(--icon-font);
    top: 0px;
    font-weight: 300;
    color: #0487ff
}

input[type=date]::-webkit-calendar-picker-indicator {
    background: transparent;
    position: absolute;
    right: 20px;
    z-index: 1;
    cursor: pointer
}

.form-select,select {
    display: block;
    width: 100%;
    line-height: 1.5;
    vertical-align: middle;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 26px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer
}

.form-select.style2,select.style2 {
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.87109 1.71094L5.71484 5.62109C5.56901 5.7487 5.41406 5.8125 5.25 5.8125C5.08594 5.8125 4.9401 5.7487 4.8125 5.62109L0.65625 1.71094C0.382812 1.40104 0.373698 1.09115 0.628906 0.78125C0.920573 0.507812 1.23047 0.498698 1.55859 0.753906L5.25 4.25391L8.96875 0.753906C9.27865 0.498698 9.57943 0.498698 9.87109 0.753906C10.1263 1.08203 10.1263 1.40104 9.87109 1.71094Z' fill='%238B929C'/%3E%3C/svg%3E")
}

textarea.form-control,textarea {
    min-height: 154px;
    padding-top: 16px;
    padding-bottom: 17px
}

textarea.form-control.style2,textarea.style2 {
    min-height: 100px
}

.form-group {
    margin-bottom: var(--bs-gutter-x);
    position: relative
}

.form-group>i {
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 19px;
    font-size: 16px;
    color: var(--body-color)
}

.form-group>i.fa-envelope {
    padding-top: 1px
}

.form-group>i.fa-comment {
    margin-top: -2px
}

.form-group>i.fa-chevron-down {
    width: 17px;
    background-color: var(--smoke-color2)
}

.form-group.has-label>i {
    top: 50px
}

.form-group.style-border input {
    background: transparent;
    border: 1px solid rgba(230,230,230,0.3);
    color: var(--white-color)
}

.form-group.style-border input::-webkit-input-placeholder {
    color: var(--white-color)
}

.form-group.style-border input::-moz-placeholder {
    color: var(--white-color)
}

.form-group.style-border input:-ms-input-placeholder {
    color: var(--white-color)
}

.form-group.style-border input::-ms-input-placeholder {
    color: var(--white-color)
}

.form-group.style-border input::placeholder {
    color: var(--white-color)
}

.form-group.style-border i {
    color: #0487ff
}

.form-group.style-white .form-select,.form-group.style-white .form-control {
    background: #fff
}

.form-group.style-white>i {
    top: 15px;
    background: transparent;
    color: #0487ff
}

[class*="col-"].form-group>i {
    right: calc((var(--bs-gutter-x) / 2) + 25px)
}

.form-rounded-10 .form-control,.form-rounded-10 .form-select {
    border-radius: 10px !important
}

.form-rounded-10 .th-btn {
    border-radius: 10px
}

option:checked,option:focus,option:hover {
    background-color: #0487ff;
    color: var(--white-color)
}

input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type="number"] {
    -moz-appearance: textfield
}

input[type="checkbox"] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none
}

input[type="checkbox"]:checked ~ label:before {
    content: "\f00c";
    color: var(--white-color);
    background-color: #0487ff;
    border-color: #0487ff
}

input[type="checkbox"] ~ label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block
}

input[type="checkbox"] ~ label:before {
    content: "";
    font-family: var(--icon-font);
    font-weight: 700;
    position: absolute;
    left: 0px;
    top: 3.5px;
    background-color: var(--white-color);
    border: 1px solid var(--th-border-color);
    height: 18px;
    width: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px
}

input[type="checkbox"].style2 ~ label {
    color: #8B929C;
    padding-left: 23px;
    margin-bottom: -0.5em
}

input[type="checkbox"].style2 ~ label:before {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid #8B929C;
    height: 14px;
    width: 14px;
    line-height: 14px;
    border-radius: 3px;
    top: 6px
}

input[type="checkbox"].style2:checked ~ label:before {
    color: #0487ff
}

input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none
}

input[type="radio"] ~ label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0
}

input[type="radio"] ~ label::before {
    content: "\f111";
    position: absolute;
    font-family: var(--icon-font);
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    padding-left: 0;
    font-size: 0.6em;
    line-height: 19px;
    text-align: center;
    border: 1px solid #0487ff;
    border-radius: 100%;
    font-weight: 700;
    background: var(--white-color);
    color: transparent;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease
}

input[type="radio"]:checked ~ label::before {
    border-color: #0487ff;
    background-color: #0487ff;
    color: var(--white-color)
}

label {
    margin-bottom: 0.5em;
    margin-top: -0.3em;
    display: block;
    color: var(--title-color);
    font-family: var(--body-font);
    font-size: 16px
}

textarea.is-invalid,select.is-invalid,input.is-invalid,.was-validated input:invalid {
    border: 1px solid var(--error-color) !important;
    background-position: right calc(0.375em + 0.8875rem) center;
    background-image: none
}

textarea.is-invalid:focus,select.is-invalid:focus,input.is-invalid:focus,.was-validated input:invalid:focus {
    outline: 0;
    box-shadow: none
}

textarea.is-invalid {
    background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem)
}

.row.no-gutters>.form-group {
    margin-bottom: 0
}

.form-messages {
    display: none
}

.form-messages.mb-0 * {
    margin-bottom: 0
}

.form-messages.success {
    color: var(--success-color);
    display: block
}

.form-messages.error {
    color: var(--error-color);
    display: block
}

.form-messages pre {
    padding: 0;
    background-color: transparent;
    color: inherit
}
/*gallery*/
.gallery-section {
    padding: 0 0 60px 0;
}

.gallery-section h2 {
    color: #333333;
    text-transform: uppercase;
    font-size: 1.6em;

}

.gallery-section .gallery-box {
    background: #fff;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(4, auto);
    /*grid-template-rows: repeat(1, 18vw);*/
    grid-auto-rows: 16vw;
    grid-gap: 1rem;
    grid-auto-flow: dense;
}

.gallery-section .gallery-box .box {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0px 4px 20px -4px rgba(0, 0, 0, 0.15);
    transition: all .5s ease;
}

.gallery-section .gallery-box .box:hover {
    box-shadow: 0px 4px 40px -4px rgba(0, 0, 0, 0.3);
}

.gallery-section .gallery-box .box.big {
    grid-row: span 2;
    grid-column: span 2;
}

.gallery-section .gallery-box .box.horizontal {
    grid-column: span 2;
}

.gallery-section .gallery-box .box.vertical {
    grid-row: span 2;
}

.gallery-section .gallery-box .box img {
   /* object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all .5s ease;*/
    object-fit: contain;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
    background: #ececec;
}

.gallery-section .gallery-box .box:hover img {
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .gallery-section .gallery-box {
        grid-template-columns: repeat(4, auto);
        grid-auto-rows: 18vw;
    }
}

@media (max-width: 767px) {
    .gallery-section .gallery-box {
        grid-template-columns: repeat(3, auto);
    }
}

@media (max-width: 575px) {
    .gallery-section .gallery-box {
        grid-template-columns: repeat(2, auto);
        grid-auto-rows: 35vw;
    }
}
.faq-sec .container {
    width: 100%;
    display: block;
}
.contact-one__form select{
        background: #282828;
}
select:focus, .form-control:focus, .form-select:focus, textarea:focus, input:focus {
   
    border-color: none !important;}

    #myCarousel {
  
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }

    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-start,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next,
    .carousel-item-next:not(.carousel-item-start) {
        transform: translateX(25%) !important;
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-item-prev:not(.carousel-item-end),
    .active.carousel-item-start,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-25%) !important;
    }

    .carousel-item-next.carousel-item-start,
    .active.carousel-item-end {
        transform: translateX(0) !important;
    }

    .carousel-inner .carousel-item-prev,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-25%) !important;
    }
}
.carousel-control-prev{
    background: none !important;
    height: auto !important
}
.carousel-control-next{
   background: none !important;
    height: auto !important 
}
.awards img{
    width: 100%;
    height: 300px;
    object-fit: contain;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    /*display: inline-block;*/
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    /* background-position: 50%; */
    background-size: 100% 60%;
    background-color: #0487ff;
    padding: 10px;
    border-radius: 50%;
    margin: 32px;
    font-size: 6px;
}
button.send-msg {
    border: none;
    height: 50px;
    padding: 0 40px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px !important;
    background: #0487ff;
    font-weight: 500;
    color: #fff;
}