/* Update */

@font-face {
    font-family: Poppins;
    src: url('../fonts/Poppins/Poppins-Regular.ttf');
}

.preloader {
    display: flex;
    position: fixed;
    opacity: 1;
    z-index: 200;
    background: #fff;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
}

.preloader img {
    width: 80px;
    height: auto;
}

#preloader.loaded .preloader {
    opacity: 0;
    pointer-events: none;
}

.panels {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100vh;
}

.left-panel {
    display: flex;
    justify-content: center;
    width: 20%;
    position: relative;
    z-index: 100;
    background: #ffffff;
}

.right-panel {
    display: flex;
    width: calc(100vw - 20%);
    position: relative;
}

/* Typography */


h1,
h2,
h3,
h4,
h5,
p,
a {
    font-family: 'Poppins', sans-serif !important;
}


a,
button,
input {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    outline: 0;
}


.text-primary {}

.text-secondary {}

.text-description {}

#menuToggle {
    display: none;
    position: absolute;
    top: 20px;
    z-index: 180;
    -webkit-user-select: none;
    user-select: none;
    background: #5687e5;
    border-radius: 5px;
    transform: translateX(-12%);
    right: 30px;
    padding-top: 7px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 3.5px;
}

/*#menuToggle:before {*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 0px;*/
/*    left: 5px;*/
/*    background: linear-gradient(-40deg, #0046e200, #ffffff);*/
/*    width: calc(100% - 1px);*/
/*    height: 100%;*/
/*    border-radius: 8px;*/
/*    opacity: .5;*/
/*    border-bottom-right-radius: 70px;*/
/*    border-bottom-left-radius: 70px;*/
/*    filter: blur(4px);*/
/*}*/

#menuToggle a {
    text-decoration: none;
    color: #f1f2f7;

    transition: color 0.3s ease;
}

#menuToggle a:hover {
    color: tomato;
}

#menuToggle input {
    display: block;
    width: 50px;
    height: 40px;
    position: absolute;
    top: 0px;
    left: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: #f1f2f7;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 83% 0%;
}

#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-7px, -13px);
    background: #f1f2f7;
}

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -7px);
}

#menuToggle input:checked~ul {
    transform: none;
}

/* Section */

.section {
    background-color: transparent;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section:not(.active){
    opacity: 0;
}

.section.active{
    opacity: 1;
}

/* Profile */

.profile {
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile h2 {
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
}

.profile img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    box-shadow: 0px 1px 1px rgba(91, 96, 255, 0.02), 0px 5px 4px rgba(91, 96, 255, 0.03), 1px 5px 9px rgba(91, 96, 255, 0.05), -1px 8px 15px rgba(91, 96, 255, 0.06), 1px 8px 24px rgba(91, 96, 255, 0.08);

}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 0;
}

.socials a {
    width: 30px;
    height: 30px;
    background: #5486E5;
    margin-right: 5px;
    margin-bottom: 5px;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 1px 1px rgba(91, 96, 255, 0.02), 0px 5px 4px rgba(91, 96, 255, 0.03), 1px 5px 9px rgba(91, 96, 255, 0.05), -1px 8px 15px rgba(91, 96, 255, 0.06), 1px 8px 24px rgba(91, 96, 255, 0.08);
}

.socials a:hover {
    background: #ffffff;
    border: 1px solid transparent;
    color: #5486E5;
}

.navigation {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    margin-top: 20px;
    padding: 10px;
    border-radius: 14px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #f1f1f1;
    box-shadow: 0px 1px 1px rgba(91, 96, 255, 0.02), 0px 5px 4px rgba(91, 96, 255, 0.03), 0px 12px 9px rgba(91, 96, 255, 0.05), 0px 20px 15px rgba(91, 96, 255, 0.06), 0px 32px 24px rgba(91, 96, 255, 0.08)
}

.navigation li {
    position: relative;
}

.navigation li a {
    padding: 10px;
    width: 100%;
    color: #d5d5d5
}

.navigation li:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 2px;
    background: #5486e5;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
}

.navigation li.active:before {
    content: '';
    display: block;
    position: absolute;
    width: 18px;
    height: 2px;
    background: #5486e5;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.navigation li.active a,
.navigation li:hover a {
    color: #5486e5 !important;
}

/* Slide nav */

#pp-nav li .active span,
.pp-slidesNav .active span {
    background: #5486e5;
}

.pp-tooltip {
    color: #333333;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
}

.pp-scrollable {
    overflow-y: auto !important;
}

/* Skills */

.skill-box ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
}

.skill-box ul li {
    width: calc(100%/3 - 20px);
    height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 20px;
    background-color: #5486E5;
    color: #ffffff;
    box-shadow: 0px 1px 1px rgba(91, 96, 255, 0.02), 0px 5px 4px rgba(91, 96, 255, 0.03), 0px 12px 9px rgba(91, 96, 255, 0.05), 0px 20px 15px rgba(91, 96, 255, 0.06), 0px 32px 24px rgba(91, 96, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    border-bottom: 1px solid #ffffff;
    position: relative;
}

/*.skill-box ul li:before {*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: -2px;*/
/*    left: 5px;*/
/*    background: linear-gradient(-40deg, #0046e200, #ffffff);*/
/*    width: calc(100% - 1px);*/
/*    height: calc(50%);*/
/*    border-radius: 8px;*/
/*    opacity: .5;*/
/*    border-bottom-right-radius: 70px;*/
/*    border-bottom-left-radius: 70px;*/
/*    filter: blur(4px);*/
/*}*/

.skill-box ul li img {
    width: 20%;
    padding: 5px;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.skill-box ul li p {
    width: 80%;
    margin: 0;
    margin-left: 20px;
    margin-bottom: 15px;
}

.skill-box {
    display: block;
    position: relative;
    width: 100%;
}

.rating {
    display: block;
    position: absolute;
    bottom: 10px;
    left: calc(20% + 25px);
    color: #ffffff !important;
}

.rating .fa-star {
    margin-right: 2px;
    font-size: 10px;
}

.rating .fa-star:before {
    content: "\f111" !important;
}

.skill-featured {
    height: 300px;
    width: 100%;
    overflow: hidden;
    display: block;
    position: absolute;
    background: #5486e5;
    right: -20px;
    border-bottom-left-radius: 145px;
    box-shadow: 26px 26px 41px 1px rgba(191, 216, 230, 0.75);
    -webkit-box-shadow: 26px 26px 41px 1px rgba(191, 216, 230, 0.75);
    -moz-box-shadow: 26px 26px 41px 1px rgba(191, 216, 230, 0.75);
    top: -90px;
}

.skill-featured img {
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    object-fit: cover;
    object-position: top center;
}

/* Width */

.width-80 {
    width: 80% !important;
}

/* Services */

.service-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.service-item {
    width: calc(100%/2 - 20px);
    background: #5486e5;
    margin-right: 20px;
    margin-bottom: 20px;
    height: 150px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 20px;
    box-shadow: 0px 1px 1px rgba(91, 96, 255, 0.02), 0px 5px 4px rgba(91, 96, 255, 0.03), 0px 12px 9px rgba(91, 96, 255, 0.05), 0px 20px 15px rgba(91, 96, 255, 0.06), 0px 32px 24px rgba(91, 96, 255, 0.08);
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

/*.service-item:before {*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: -2px;*/
/*    left: 5px;*/
/*    background: linear-gradient(-40deg, #0046e200, #ffffff);*/
/*    width: calc(100% - 1px);*/
/*    height: calc(50%);*/
/*    border-radius: 8px;*/
/*    opacity: .5;*/
/*    border-bottom-right-radius: 70px;*/
/*    border-bottom-left-radius: 70px;*/
/*    filter: blur(4px);*/
/*}*/

.service-item .fa-solid {
    width: 20%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.service-detail {
    width: 80%;
}

.service-detail h4,
.service-detail p {
    color: #ffffff;
}

/* Sliders */

.news-bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items:center;
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid #dddddd;
}

.news-bottom .date {
    font-size: 9px;
}

.news-bottom span {
    font-size: 12px;
}

.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.news-item {
    width: 100%;
    position: relative;
    background: #ffffff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 1px 1px rgba(91, 96, 255, 0.02), 0px 5px 4px rgba(91, 96, 255, 0.03), 0px 12px 9px rgba(91, 96, 255, 0.05), 0px 20px 15px rgba(91, 96, 255, 0.06), 0px 32px 24px rgba(91, 96, 255, 0.08);
}

.news-category {
    display: block;
    position: absolute;
    padding: 2px 8px;
    background: #1dbe04;
    color: #ffffff;
    font-size: 12px;
    left: 8px;
    top: 8px;
    border-radius: 5px;
    font-family: 'CabinRegular', sans-serif;
}

.news-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
}

.news-content {
    padding: 15px;
    position: relative;
}

.news-content h4 {
    /* white-space: nowrap; */
    height: 42px;
    overflow:hidden;
    font-size: 14px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    word-break: break-word;
    transition: .2s all ease-in-out;
    -webkit-transition: .2s all ease-in-out;
    -moz-transition: .2s all ease-in-out;
}

.news-content a:hover h4 {
    color: #5486e5;
}

.news-content p.news-description {
    height: 95px;
    font-size: 14px;
}

.swiper-container {
    overflow: visible;
}

.testimony-bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid #dddddd;
}

.testimony-bottom .date {
    font-size: 12px;
}

.testimony-bottom span {
    font-size: 12px;
}

.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.testimony-item {
    width: 100%;
    position: relative;
    background: linear-gradient(322deg, #d6d8f7, #ffffff);
    display: flex;
    justify-content: center;
    flex-direction: row;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 1px 1px rgba(91, 96, 255, 0.02), 0px 5px 4px rgba(91, 96, 255, 0.03), 0px 12px 9px rgba(91, 96, 255, 0.05), 0px 20px 15px rgba(91, 96, 255, 0.06), 0px 32px 24px rgba(91, 96, 255, 0.08);
}

.testimony-category {
    display: block;
    position: absolute;
    padding: 2px 8px;
    background: #1dbe04;
    color: #ffffff;
    font-size: 12px;
    left: 8px;
    top: 8px;
    border-radius: 5px;
    font-family: 'CabinRegular', sans-serif;
}

.testimony-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.testimony-img {
    width: 30%;
    border-bottom-right-radius: 45px;
    overflow: hidden;
}

.testimony-content {
    width: 70%;
}

.testimony-content {
    padding: 15px;
    position: relative;
}

/*.testimony-img:before {*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    width: 60px;*/
/*    height: 50px;*/
/*    background: #f5f5fd;*/
/*    bottom: 6px;*/
/*    border-bottom-right-radius: 30px;*/
/*}*/

/* .testimony-content:before{
    content: '';
    display: block;
    position: absolute;
    top: -2px;
    left: 5px;
    background: linear-gradient(-40deg, #0046e200, #ffffff);
    width: calc(100% - 1px);
    height: calc(50%);
    border-radius: 8px;
    opacity: .5;
    border-bottom-right-radius: 70px;
    border-bottom-left-radius: 70px;
    filter: blur(4px);
    pointer-events: none;
} */

.testimony-content h4 {
    /* white-space: nowrap; */
    height: auto;
    margin-bottom: 10px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    word-break: break-word;
    transition: .2s all ease-in-out;
    -webkit-transition: .2s all ease-in-out;
    -moz-transition: .2s all ease-in-out;
}

.testimony-content a:hover h4 {
    color: #5486e5;
}

.testimony-content p.testimony-description {
    height: 80px;
    font-size: 14px;
}

/* Forms */

.error {
    font-size: 11px;
    color: red;
    text-align: right;
    margin-top: 8px;
    font-family: 'Poppins',sans-serif;
}

.form-control {
    font-family: 'Poppins',sans-serif!important;
    background: #ffffff!important;
    border: 1px solid #dddddd!important;
    border-radius: 10px!important;
    transition: .2s all ease-in-out!important;
    -webkit-transition: .2s all ease-in-out!important;
    -moz-transition: .2s all ease-in-out!important;
}

form label {
    font-family: 'Poppins',sans-serif;
    color: #bbbbbb;
}

.form-control:focus, .form-control:active, .form-control:hover {
    border: 1px solid #5486e5 !important;
    box-shadow: unset!important;
}

.btn-submit {
    background: #5486e5;
    color: #ffffff;
    font-family: 'Poppins',sans-serif;
    font-weight: normal;
    font-size: 14px;
    padding: 10px 10px!important;
    height: auto!important;
    line-height: 1.2!important;
    border-radius: 10px;
}

.btn-submit:hover {
    background: #395ea7;
    color: #ffffff;
}

.btn-small {
    text-decoration:none!important;
    background: #5486e5;
    color: #ffffff;
    font-family: 'Poppins',sans-serif;
    font-weight: normal;
    font-size: 11px;
    padding: 8px 10px!important;
    height: auto!important;
    line-height: 1.2!important;
    border-radius: 10px;
}

.btn-small:hover {
    background: #395ea7;
    color: #ffffff;
}


.grad{
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh!important;
    height: 100%!important;
}

.responsive{
        display:none;
    }
    
/* Modal */
.modal-header{
    align-items:flex-start;
}

.modal-title{
    margin-bottom:20px;
}

.modal-body {
    height: 60vh;
    overflow: auto;
}
.modal-body img{
    height: auto;
    object-fit: contain;
    background: #f7f7f7;
    border-radius: 25px;
    object-position: center;
}

.modal .modal-dialog {
    max-width: 600px;
    margin: 0 auto;
    padding:0 20px;
    height:100vh;
}

.modal-body p {
    font-size: 14px;
}

.text-link {
    font-size: 12px;
    color: #5486e5;
}

form#contactForm {
    background: #f8f9fb;
    padding: 20px;
    border-radius: 10px;
    border: 0.5px solid #e2e9f5;
}