/********** Template CSS **********/
:root {
    --primary: #355eac;;
    --secondary: #FFC448;
    --light: #FAFAFB;
    --dark: #12141D;
	--white: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.fixed-top {
    display: block;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: #000000;
    font-size: 18px;
    font-weight:300;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ee3c43;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}


/*** Header ***/
#home {
    /**margin-bottom: 6rem;
    background: url(../img/bg-header.png) left top no-repeat;**/
}

.typed-cursor {
    font-size: 30px;
    color: var(--dark);
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--white);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 10px solid #000000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    transform: rotate(89deg);
    top: 4px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** About ***/
#about .years .display-1 {
    font-size: 10rem;
    line-height: 9rem;
}

#about .years h5 {
    letter-spacing: 30px;
    margin-right: -30px;
}


/*** Skills ***/
#skill .progress {
    height: 5px;
    border-radius: 5px;
}

#skill .progress .progress-bar {
    width: 0px;
    border-radius: 5px;
    transition: 3s;
}

#skill .nav-pills .nav-link {
    color: var(--dark);
}

#skill .nav-pills .nav-link.active {
    color: #FFFFFF;
}

#skill .tab-content hr {
    width: 30px;
}


/*** Service ***/
.service-item .bg-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/bg-icon.png) center center no-repeat;
    background-size: cover;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 68, 197, .9);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    padding-bottom: 30px !important;
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    opacity: .7;
}

.team-item .team-text {
    position: absolute;
    left: 0;
    right: 60px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    right: 30px;
    opacity: 1;
}

.team-item .team-text div {
    transition: .5s;
}

.team-item:hover .team-text div {
    margin-left: 30px;
}


/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px solid var(--secondary);
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.testimonial-carousel .testimonial-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid var(--secondary);
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 5px;
    left: 5px;
    border-radius: 16px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}
	/*****css cus09082tt2v1*******/
.logobox {
    width: 150px;
}
.videbx {
    width: 100%;
}
.custom-module::before {content: "";
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;}

.innervideo {
    position: relative;
	height: 100vh;
    overflow: hidden;
}

.textup {
    position: absolute;
    z-index: 2;
    padding: 0 0 0 35px;
    height: auto;
    bottom: 66px;
    left: 0;
    right: 0;
    width: 100%;
}

.whiclo,  .typed-cursor, .typed-text-output.d-inline {color: var(--white)}

.btn-play.platone {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: 0 auto;
	    background: var(--white);
}

.typed-text-output.d-inline {
    font-weight: 800 !important;
    font-size: 54px;
	text-shadow: 0 0 0 #000000;
}
  .typed-text-output.d-inline span { background: var(--white); color: #ee3c43;}

.back-to-top {display: none;}

.btn-primary {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.display-3.whiclo {
    margin: 0;
    background: #fff;
    width: fit-content;
    padding: 21px;
    line-height: 43px;
    border-radius: 5px;
    color: #355eac;
}

.display-3.whiclo span, .display-5.mb-5 span {color: #ee3c43;}


.display-3.mb-3 span {
    color: #ee3c43;
    font-weight: 800;
    font-size: 97px;
}
.display-5.mb-0  {color: #fff;}
	.display-5.mb-0 span {
    color: #ee3c43;
    font-weight: 800;
}

.icoimg {
    width: 52px;
    display: inline-block;
    vertical-align: middle;
}

.service-item.bg-white.rounded h6 {
    padding: 0;
    margin: 0;
}

.service-item.bg-white.rounded span {
    color: #ee3c43;
    font-weight: 800;
    display: inline-block;
}

.texocx {
   display: inline-block;
    vertical-align: middle;
	width: 80%;
}

.texocx h6 {
      padding: 0;
    margin: 0;
}

.bgfx {background: url("../images/bg-1.jpg") no-repeat fixed; background-size: cover;}


.HomeView svg {
    width: auto;
    height: auto;
    max-height: 400px;
    max-width: 100%;
}

.tobx {
    width: 249px;
    float: none;
    position: absolute;
    z-index: 0;
    margin: 0 auto 0;
    display: block;
    left: 0;
    right: 0;
}
.tobx  img{
    width: 100%;
}
#abc {
    width: 220px;
    margin: 100px auto 12px;
}

.tebx {
    margin: 71px 0 0 0;
    font-size: 22px;
    color: #000;
    font-weight: 500;
}
	

.tebx p span {
    display: inline-block;
    color: #ee3c43;
    font-weight: 800;
}

.howtowkbx{background: url("../images/phome-img-2.png") no-repeat top left/cover;     padding-top: 142px;}

.howtowkbx ul {
    margin: 0;
    padding: 0 24px 50px;
    list-style: none;
}

.howtowkbx ul li {
    background: #edeff1;
    display: block;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 2px #c9bebe;
    margin: 0 0 15px 0;
}


.howtowkbx ul li img{
    width: 42px;
    display: inline-block;
    vertical-align: middle;
}

.howtowkbx ul li span{
    width: 80%;
    vertical-align: middle;
    margin: 0 0 0 6px;
    color: #355eac;
    font-weight: 600;
}

.tebx p {position: relative; padding: 0 0 0 45px;}

.tebx p i{position: absolute;
    left: 0;
    top: 10px;}

.tebx .text-primary {
    color: #355eac !important;
}

.howtowork .display-5.mb-0 {margin: 86px 0 0 0;} 

.font-weight-bold  {}

.skill .font-weight-bold.textwork {
    font-size: 68px;
    font-weight: 700;
    color: #ee3c43;
    line-height: 30px;
}
.skill .font-weight-bold {
    font-size: 28px;
    font-weight: 700;
    color:#355eac ;
}

.textwork::after {
    content: "%";
    font-size: 20px;
}
.bacpross{background: #355eac;}

.back-to-top i {
    line-height: 45px;
}

.btn-primary:hover {
    background-color: #ee3c43;
    border-color:#ee3c43;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #ee3c43;
    border-color: #ee3c43;
    box-shadow: 0 0 0 0.25rem rgb(238 60 67 / 50%);
}

.spinner-border{
    color: #ee3c43 !important;
}

.ibox  {
    margin: 90px 0 0 0;
    text-align: center;
}

.ibox h3 {
    font-weight: 800;
    font-size: 18px;
    color: #355eac;
}
	
.bgfx-tt {
    background: url(../images/bg-2.jpg) no-repeat fixed;
    background-size: cover;
    padding-bottom: 0;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.bgfx-tt .tebx p {
	color: #fff;
}

.bgfx-tt .tebx .text-primary {
    color:#ee3c43  !important;
}

.typed-cursor {    line-height: 54px;
    font-size: 54px;}


/***31-58-22****/

.logobx {margin: 0; padding: 0; list-style: none; text-align: center;}
	

.logobx li {
    width: 11%;
    display: inline-block;
    vertical-align: top;
    margin:7px;
}


.logobx li img {width: 100%;}
.bgloc {position: relative;}

.bgloc .container {
    z-index: 32;
    position: relative;
}

.bgloc:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    background: rgba(0,0,0,0.6);
}


/****software***/

.hebox {
    font-size: 22px;
    font-weight: 600;
    color: #ee3c43;
    margin: 0 0 4px 0;
}

.minboxa {
    display: block;
    margin: 0 0 25px 0;
    border-bottom: dotted 2px #ccc;
    padding-bottom: 10px;
}

.minboxa  p{
    margin: 0;
}

.minboxa  p.bultxt{
    font-size: 17px;
    font-weight: 600;
    color: #355eac;
    margin: 8px 0 4px 0;
}

.software .minboxa:last-child {border-bottom: 0;}

.owl-dots  {
    text-align: center;
    display: block;
}

.owl-dot {
    background: #ccc;
    height: 10px;
    width: 10px;
    border-radius: 10px;
    float: none;
    display: inline-block;
	margin: 0 5px;
}
	

.owl-dot.active { background:#355eac; }



.mobilevideo {
    width: 320px;
    margin: 0 auto;
    display: block;
}
.mobilebx::before, .mobilebx::after {
    content: "";
    background:#fafafb;
    width: 3px;
    height: 100%;
    position: absolute;
    right: 0;
    z-index: 2;
}

.mobilebx::after {  right: auto; left: 0; top: 0;}

.mobilebx {
    position: relative;
    width: 380px;
    margin: 0 auto;
}

.software {
    position: relative;
    z-index: 3;
}
.moehad {font-size: 60px;
    color: #ee3c43;
    font-weight: 700; margin-top: 60px;}

.moehad span {
    display: block;
    color: #000;
    font-size: 29px;
    font-weight: 500;
    margin: 17px 0 0 0;
}

/**price box**/
.pricing {
    text-align: center;
    padding: 50px 0 70px;
    position: relative;
    z-index: 22;
}
.section-title {
    margin: 0 0 59px 0;
}


.section-title h3 {
    color: #ee3c43;
}

.pricing-item {
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px #dbdbdb;
    max-width: 800px;
    margin: 0 auto;
	width: 100%
}
.pricing-heading{
    background: #ee3c43;
    color: #fff;
    padding: 20px;
}
.title  h6 {
    color: #fff;
}

.price h2 {
    font-weight: 800;
    color: #fff;
    margin: 0;
}



.price p {
    margin: 0;
}
.feature-list  {
    list-style: none;
    padding: 20px;
}

.section-title p a {color:#5A5A5A; text-decoration: none;}

.feature-list li {
    position: relative;
    padding: 0 0 0 34px;
}
.feature-list li span {
    display: block;
    position: absolute;
    left: 0;
    top: 3px;
    color: #f7a4a7;
    font-size: 22px;
}

.pricing-footer {
    background: #355eac;
    padding: 10px;
}

.pricing-footer a{
    color: #fff !important;
}

.typed-text.whiclo {
    font-size: 62px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 2px 6px 4px #000;
    font-family: 'Bebas Neue', cursive;
}
.textvidobx { position: relative;}

#report .owl-item .item  span{
    text-align: center;
    font-size: 22px;
    display: block;
    background: #f00;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: 9px auto;
}

.wid400 {max-width: 800px; display: block; width: 100%;  margin: 0 auto;}

.bg-withe h2.display-5.mb-0 {color: #000;}

	div.error {
	margin: 2px 0 0 2px;
	color: #D01111;
	text-align: left;
	width: 100%;
	float: right;
	font-size: 12px;
}


/**thankyoupage****/
.thankyoupage .logobox {
    margin: 76px auto 0;
    display: block;
}

 
.messagebx  {
    text-align: center;
    margin: 31px 0 0 0;
}


.messagebx h1 {
    font-size: 30px;
    font-weight: 700;
    color: #ee3c43;
    display: block;
    margin: 0 0 14px 0;
}

