/* header part start  */
.top-header {}

header {
    position: sticky;
    top: 0px;
    z-index: 999999;
    background-color: var(--white);
    -webkit-box-shadow: 0px 10px 15px var(--shadow);
    box-shadow: 0px 10px 15px var(--shadow);
}

#exampleModal {
    z-index: 5555555555;
}

.top-header .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fs-19 {
    font-size: 19px;
}

.modal {
    z-index: 50000000;
}

.imageControl img { width:250px !important;  }
.imageControl .img { max-width: unset !important;  }

.top-header .content .left {
    width: 20%;
}

.smallButton button {
    background: #e61c54;
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 50px;
    margin: 10px 0px;
    display: inline-block;
    font-size: 12px;
    border: none;
}

.btnClose { position: absolute;
    right: 0px;
    padding: 20px;
    color: white;
    z-index: 222222222 !important;  }

.top-header .content .left a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top-header .content .left .logo {
    padding: 10px;
}

.top-header .content .right .shop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.top-header .content .right {
    width: 10%;
}

.top-header .content .mid {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top-header .content .con-info {
    margin-right: 40px;
}

.top-header .content .con-info .icon {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px;
    border-radius: 200%;
    margin-right: 10px;
    -webkit-box-shadow: 5px 5px 10px var(--main-shadow);
    box-shadow: 5px 5px 10px var(--main-shadow);
}

.bottom-header {
    background-color: rgb(236, 236, 236);
}

.bottom-header .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bottom-header .navbar .left .nav-item .nav-link {
    font-weight: 500;
    text-transform: capitalize;
    color: var(--secondary);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    padding: 12px;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    white-space: nowrap;

}

.bottom-header .navbar .left .nav-item .nav-link:hover {
    color: var(--white);
    background-color: var(--primary);
}

.bottom-header .navbar .left .nav-item .nav-link:active {
    color: var(--white);
    background-color: var(--primary);
}

.bottom-header .navbar .left .nav-item .nav-link:focus {
    color: var(--white);
    background-color: var(--primary);
}

.dropdown-toggle::after {
    content: "";
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 0.5em solid;
    border-right: 0.5em solid transparent;
    border-bottom: 0;
    border-left: 0.5em solid transparent;
    z-index: 999;
    float: right;
    margin-top: 9px;
    margin-left: 10px;
    font-size: 10px;
}

.dropdown-toggle-right::after {
    content: "";
    position: absolute;
    bottom: 50%;
    right: 10px;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    border-top: 0.4em solid transparent;
    border-right: 0;
    border-bottom: 0.4em solid transparent;
    border-left: 0.4em solid;
    z-index: 999;
}

.dropdown {
    position: relative;
}

.dropdown-menus {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    visibility: hidden;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    -webkit-box-shadow: 5px 5px 10px var(--shadow);
    box-shadow: 5px 5px 10px var(--shadow);
    list-style: none;
    padding: 0px;
    background-color: var(--white);
    z-index: 999;
}

.dropdown:hover .dropdown-menus {
    visibility: visible;
}

.dropdown-item {
    padding: 8px 35px;
    border-bottom: 1px solid var(--shadow);
    font-weight: 500;
    text-transform: capitalize;
    color: var(--secondary);
    font-family: "Inter", sans-serif;
    font-size: 15px;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    background-color: var(--white);
    white-space: nowrap;

}

.dropdown-item:hover {
    color: var(--white);
    background-color: var(--primary);
}

.dropdown-menus .dropdown-item:active {
    color: var(--white);
    background-color: var(--primary);
}

.dropdown-menus .dropdown-item:focus {
    color: var(--white);
    background-color: var(--primary);
}

.sub-dropdown {
    position: relative;
}

.sub-dropdown-menus {
    position: absolute;
    top: 0px;
    left: 100%;
    visibility: hidden;
    -webkit-box-shadow: 5px 5px 10px var(--shadow);
    box-shadow: 5px 5px 10px var(--shadow);
    list-style: none;
    padding: 0px;
    z-index: 999;
    background-color: var(--white);

}

.sub-dropdown:hover .sub-dropdown-menus {
    visibility: visible;
}


.nav-toggle {
    background-color: var(--secondary);
    border: none;
    height: 46px;
    width: 60px;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: -12px;
    text-transform: capitalize;
}

.nav-toggle .line {
    background-color: var(--white);
    width: 30px;
    height: 2px;
    margin: 5px 0px;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;


}
.nav-toggle .line::after{
content: '' !important;
display: none;
}
.nav-toggle .line::before{
    content: '' !important;
    display: none;
}


.nav-toggle .line1 {
    width: 10px;
}

.nav-toggle .line3 {
    width: 20px;
}

.nav-toggle:hover.nav-toggle .line1 {
    width: 30px;
}

.nav-toggle:hover.nav-toggle .line3 {
    width: 30px;
}

/* header part end  */



/* service part start  */
.service {
    overflow: hidden;
}

.service .service-text:after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    margin: 33px 0 0 0;
}

.division-card {
    /* overflow: hidden; */
    position: relative;
    -webkit-box-shadow: 0px 10px 15px var(--shadow);
    box-shadow: 0px 10px 15px var(--shadow);
}

.card-body {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    padding: 35px;
    background-color: var(--primary);
    visibility: hidden;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.card-body .body-title {
    background-color: var(--white);
    padding: 10px;
    -webkit-box-shadow: 0px 10px 15px var(--shadow);
    box-shadow: 0px 10px 15px var(--shadow);
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
}

.card-body .body-title .icon {
    background-color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 60px !important;
    width: 60px !important;
    border-radius: 500px;
    color: var(--white);
    -webkit-box-shadow: 5px 10px 15px var(--main-shadow);
    box-shadow: 5px 10px 15px var(--main-shadow);

}

.card-body .body-title .body-title-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 28px;
    text-transform: capitalize;
}

.card-body p {
    color: var(--white);
}

.card-title {
    position: absolute;
    bottom: -20px;
    left: 0px;
    background-color: var(--white);
    padding: 20px 10px;
    -webkit-box-shadow: 0px 10px 15px var(--shadow);
    box-shadow: 0px 10px 15px var(--shadow);
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 85%;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    visibility: visible;

}

.card-title .icon {
    background-color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 60px !important;
    width: 60px !important;
    border-radius: 500px;
    color: var(--white);
    margin-right: 10px;
    -webkit-box-shadow: 5px 10px 15px var(--main-shadow);
    box-shadow: 5px 10px 15px var(--main-shadow);
}

.card-title .title-text {
    color: var(--primary);
    line-height: 28px;
    text-transform: capitalize;
}

.arrow {
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-color: var(--white);
    height: 60px;
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    visibility: hidden;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.division-card:hover .card-body {
    visibility: visible;
}

.division-card:hover .arrow {
    visibility: visible;
}

.division-card:hover .card-title {
    visibility: hidden;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

/* service part end  */

/* contact part start  */
.contact .top {
    background: -webkit-gradient(linear, left top, left bottom, from(#00e4fdcc), to(#00e4fdcc)), url(/assets/frontend/images/contact/con-bg.jpg);
    background: -o-linear-gradient(#00e4fdcc, #00e4fdcc), url(/assets/frontend/images/contact/con-bg.jpg);
    background: linear-gradient(#00e4fdcc, #00e4fdcc), url(/assets/frontend/images/contact/con-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact .top .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
}

.contact .top .content .icon {
    background-color: #fff;
    height: 70px;
    width: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    border-radius: 50%;
    -webkit-box-shadow: 5px 10px 15px var(--shadow);
    box-shadow: 5px 10px 15px var(--shadow);
}

.contact .top .content h3 {
    font-weight: 500 !important;
    font-size: 24px !important;
    color: var(--white);
    text-align: center;
    margin: 20px 5px;
}

.contact .top .content span {
    font-size: 18px;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;

}

.contact .bottom {
    margin-top: -90px;
    z-index: 9999;
    position: relative;
}


.section-content {
    border: 1px #dbdbdb solid;
    padding: 20px 0px 0px 0px;
    background-color: #e7e7e7;
}

.section-content h5 {
    font-size: 22px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
}

.section-content img {
    padding: 0px 0px;
    width: 100%;
}

.contact-content {
    padding: 20px;
    -webkit-box-shadow: 0px 0px 25px var(--shadow);
    box-shadow: 0px 0px 25px var(--shadow);
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffffd3), to(#ffffffd3)), url(/assets/frontend/images/patner/patnerbg.png);
    background: -o-linear-gradient(#ffffffd3, #ffffffd3), url(/assets/frontend/images/patner/patnerbg.png);
    background: linear-gradient(#ffffffd3, #ffffffd3), url(/assets/frontend/images/patner/patnerbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact-title {
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;

}

.form-input {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    background-color: #f8f8fa;
    border: 1px solid #f8f8fa;
    color: #6c7176;
    width: 100%;
    border-radius: 0;
    padding: 12px 12px 12px 17px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.form-input:hover {
    background-color: var(--white);
    border: 1px solid var(--primary);
}

.form-input:active {
    background-color: var(--white);
    border: 1px solid var(--primary);
}

.form-input:focus {
    background-color: var(--white);
    border: 1px solid var(--primary);
}

.contact-right {
    position: relative;
}

.contact-right .happy-clients {
    position: absolute;
    bottom: -80px;
    right: -20px;
    z-index: 99;
    background-color: var(--primary);
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 10px solid var(--white);
}

.contact-right .happy-clients i {
    font-size: 28px;
    font-weight: 500;
}

.contact-right .happy-clients h3 {
    font-size: 28px;
    font-weight: 500;
}

.contact-right .happy-clients span {
    font-weight: 600;
}

/* contact part end  */
/* partners part start  */
.partner {
    overflow: hidden;
}

.partner .left {
    background-image: url(/assets/frontend/images/patner/patnerbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.partner-card {
    border: 2px solid var(--shadow);
    margin: 8px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 20px;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background-color: var(--white);
}

.partner-card img {
    width: 100%;
}

.partner-card:hover {
    border: 2px solid var(--primary);
    -webkit-box-shadow: 5px 10px 10px var(--main-shadow);
    box-shadow: 5px 10px 10px var(--main-shadow);
}

.ceoImag {
    background-color: #ddc;
    border: solid 13px #eee;
    border-bottom-color: #fff;
    border-left-color: #eee;
    border-radius: 2px;
    border-right-color: #eee;
    border-top-color: #ddd;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .25) inset, 0 5px 10px 5px rgba(0, 0, 0, .25);
    box-sizing: border-box;
    padding: 2px;
    text-align: center;
}

.ceoImag {
    background: #a0cff1;
    border-radius: none;
    text-align: center;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    transition-duration: .3s;
}

.ceoImag {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.ceoImag {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.ceoImag img {
    border: solid 2px;
    border-bottom-color: #ffe;
    border-left-color: #eed;
    border-right-color: #eed;
    border-top-color: #ccb;
    width: 100%;
}

.ceoImag h5 {
    position: absolute;
    bottom: -66px;
    right: 10px;
    font-size: 17px;
}

/* partners part end  */




/* footer part start  */
.icon-main {
    margin: 0px 0px 20px 0px;
}

.mid-footer {
    margin-top: -100px;
    background-color: #000000;
}

.footer-top-mar {
    margin-top: 150px;
}

.footer-top-ma .add {
    padding-top: -50px;
}

.backgroundGray {
    background: white;
    padding: 40px 0px;
}

.width200 {
    width: 200px;
}

.mid-footer .con-info-card {
    background-color: var(--white);
    -webkit-box-shadow: 0px 10px 15px var(--main-shadow);
    box-shadow: 0px 10px 15px var(--main-shadow);
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-bottom: 30px;
}

span.octf-btn {
    background: #000000;
    color: white;
    padding: 7px 30px;
    border-radius: 33px;
    transition: all 400ms;
}

.ltn__currency-menu {
    margin: 20px;
}

.icon-box.s3 {
    border: 0.1px solid #9e9e9e;
}

.icon-box:hover {
    box-shadow: 4px 4px 30px 0px #20c1e0 !important;
    -webkit-box-shadow: 4px 4px 30px 0px #20c1e0 !important;
    -moz-box-shadow: 4px 4px 30px 0px #20c1e0 !important;
    background-color: #fff;
}

span.octf-btn:hover {
    box-shadow: 4px 4px 30px 0px #20c1e0 !important;
    -webkit-box-shadow: 4px 4px 30px 0px #20c1e0 !important;
    -moz-box-shadow: 4px 4px 30px 0px #20c1e0 !important;
}

.icon-box.s3 {
    padding: 0px 0px 27px 0px;
    position: relative;
    box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 30px 0px rgba(42, 67, 113, 0.15);
}

.icon-box {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.mid-footer .con-info-card .icon {
    background-color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 45px !important;
    width: 45px !important;
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    -webkit-box-shadow: 5px 10px 15px var(--main-shadow);
    box-shadow: 5px 10px 15px var(--main-shadow);
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mid-footer .con-info-card .footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 15px;
}

.mid-footer .con-info-card a {
    text-align: center;
}

.mid-footer .footer-link .footer-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-top: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.mid-footer .footer-link ul {
    padding: 0px;
    list-style: none;
}

.mid-footer .footer-link ul li {
    padding: 3px 0px;
}

.mid-footer .footer-link ul li a {
    color: var(--white);
    font-weight: 500;
    text-transform: capitalize;
    width: 100%;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    display: block;
    cursor: pointer;
}

.mid-footer .footer-link ul li a::before {
    font-weight: 800;
    margin-right: 5px;
}

.mid-footer .footer-link ul li a:hover {
    color: var(--primary);

}

.mid-footer .footer-link p {
    line-height: 22px;
    font-size: 15px;
    text-align: left;
    color: var(--white);
}

.error {
    font-size: 13px;
    color: red;
}

.footer-logo {
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 10px;
}

.newslatter {
    background-color: var(--white);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 2px solid var(--secondary);
}

.newslatter .main-btn {
    border: 0px;
    border-left: 2px solid var(--secondary);
    width: 30%;
}

.newslatter input {
    border: none;
    padding: 5px;
    outline: none;
    width: 70%;
}

.bottom-footer {
    background-color: #000;
    padding: 15px 0px;
    color: #fff;
}

.bottom-footer .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bottom-footer .left a {
    color: var(--primary);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;

}

.bottom-footer .left a:hover {
    color: var(--black);
}

.bottom-footer .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bottom-footer .right .icon {
    height: 40px;
    width: 40px;
    background-color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 200px;
    margin-left: 10px;
    -webkit-box-shadow: 5px 10px 15px var(--main-shadow);
    box-shadow: 5px 10px 15px var(--main-shadow);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.bottom-footer .right .icon:hover {
    background-color: var(--black);
    -webkit-box-shadow: 5px 10px 15px var(--shadow);
    box-shadow: 5px 10px 15px var(--shadow);
}

.bottom-footer .right .icon i {
    color: var(--white);
}

/* footer part end  */


/* contact page start */

.contactpage .table thead th {
    background-color: var(--primary);
}

.contactpage h6 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin: 25px 0px;
}

.contactpage .con .con-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contactpage .con .con-info .icon {
    font-size: 18px;
    margin: 10px 10px 10px 0px;
    background-color: var(--primary);
    border-radius: 200px;
    height: 45px;
    width: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    -webkit-box-shadow: 5px 10px 15px var(--main-shadow);
    box-shadow: 5px 10px 15px var(--main-shadow);
}

.about .img {
    position: relative;
}

.satisfaction {
    position: absolute;
    top: -100px;
    right: -10px;
    z-index: 99;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.satisfaction i {
    font-size: 24px;
}

.satisfaction h4 {
    text-align: center;
    font-size: 18px !important;
    font-weight: 700;
}

.satisfaction .text-center {
    font-size: 14px;
}

.counts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 20px;
}

.line:before {
    content: '→';
    font-weight: 800;
    margin-right: 12px;
    color: white;
    font-size: 12px;
    float: left;
}

.counts .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.counts .left i {
    font-size: 50px;
    color: var(--primary);
    margin-right: 20px;
}

.counts .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.counts .right i {
    font-size: 50px;
    color: var(--primary);
    margin-right: 20px;

}

.counts h4 {
    font-size: 30px;
    font-weight: 900;
    color: var(--primary);
}



.directors .directors-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
    padding: 20px;
    border: 10px solid var(--shadow);
    background-color: var(--white);
}

.directors .directors-card .directors-title {
    /* font-size: 24px;*/
    font-weight: 400;
    /* color: var(--primary);*/
    text-align: center;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.directors-title {
    /* font-size: 24px;*/
    font-weight: 400;
    /* color: var(--primary);*/
    text-align: center;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.directors .directors-card .left {
    margin-right: 20px;
}

.directors .directors-card .left img {
    overflow: hidden;
    border-radius: 100%;
}

.key-customer .tab-content {
    border: 1px solid #e1e1e1;
    border-top: 0px;
    padding: 20px;
}

.key-customer .tab-content .name {
    background-color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    padding: 10px 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.colorColor {
    background: #2fc4d0;
}

.page-card {
    margin-bottom: 27px;
}

.page-heading {
    font-size: 20px;
    padding: 0px 20px 0px 20px;
}

.page-body {
    font-size: 15px;
    padding: 20px;
}

.who-we {
    overflow: hidden;

}

.who-we .top {
    background: -webkit-gradient(linear, left top, left bottom, from(#00e4fdcc), to(#00e4fdcc)), url(/assets/frontend/images/about/bg-vision.jpg);
    background: -o-linear-gradient(#00e4fdcc, #00e4fdcc), url(/assets/frontend/images/about/bg-vision.jpg);
    background: linear-gradient(#00e4fdcc, #00e4fdcc), url(/assets/frontend/images/about/bg-vision.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.who-we-content .nav {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
}

.who-we-content .nav .nav-item {
    width: 20%;
    margin: 0px 20px;
}

.who-we-content .nav .nav-link {
    width: 85%;
    -webkit-box-shadow: 5px 10px 15px var(--shadow);
    box-shadow: 5px 10px 15px var(--shadow);
    background-color: var(--white);
    margin: 20px;
    color: var(--secondary);
    min-height: 80px;
    padding: 10px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    -webkit-box-shadow: 0px 10px 30px rgba(26, 54, 85, 0.15);
    box-shadow: 0px 10px 30px rgba(26, 54, 85, 0.15);
    cursor: pointer;
    position: relative;
}

.who-we-content .nav .nav-link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 10px;
    width: 20%;
    height: 2px;
    margin: auto;
    left: 0;
    right: 0;
    background-color: var(--primary);
    -webkit-transition: width .2s linear;
    -o-transition: width .2s linear;
    transition: width .2s linear;
}

.who-we-content .nav .nav-link:after {
    content: "+";

    position: absolute;
    top: 4px;
    left: 9px;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
}

.who-we-content .nav .nav-link:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.who-we-content .nav .active {
    background-color: var(--secondary);
    color: var(--white);
}

.banner {
    background: url(../../frontend/images/contact/con-banner.png);
    background-size: cover;
}

.heightSection {
    background: url(../../frontend/images/contact/con-banner.png);
    background-size: cover;
    height: 300px;
}

/* who-we-are part end  */

/* career part start  */
.career .job-card h3 {
    color: var(--primary);
}

/* career part end  */

.technology-partner .partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
}

.technology-partner .partners .partner-card {
    max-width: 14.5% !important;
}

.technology-partner hr {
    border: 2px solid gray;
    margin-top: 10px;
    margin-bottom: 50px;
}

.technology-partner .title h2 {
    font-size: 28px;
}

.gem .img {
    border: 2px solid gray;
    margin: 10px 10px 5px 0px;
}

.banner-nav {
    margin-top: -40px;
}

.banner-nav .content {}

.banner-nav .content .nav-card .active {
    background-color: var(--secondary);
    color: var(--white);
}

.banner-nav .content .nav-card .link {
    padding: 10px;
    overflow: hidden;
    -webkit-box-shadow: 5px 10px 15px var(--shadow);
    box-shadow: 5px 10px 15px var(--shadow);
    background-color: var(--white);
    margin: 10px 20px;
    color: var(--secondary);
    min-height: 80px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    -webkit-box-shadow: 0px 2px 15px rgba(26, 54, 85, 0.15);
    box-shadow: 0px 2px 15px rgba(26, 54, 85, 0.15);
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    border-radius: 5px;
    text-transform: capitalize;
    text-align: center;
}

.banner-nav .content .nav-card .link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 10px;
    width: 20%;
    height: 2px;
    margin: auto;
    left: 0;
    right: 0;
    background-color: var(--primary);
    -webkit-transition: width .2s linear;
    -o-transition: width .2s linear;
    transition: width .2s linear;
}

.banner-nav .content .nav-card .link:after {
    content: "+";
    position: absolute;
    top: 4px;
    left: 9px;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
}

.banner-nav .content .nav-card .back:after {
    content: "-";
    position: absolute;
    top: 4px;
    left: 9px;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
}

.banner-nav .content .nav-card .link:hover {
    background-color: var(--secondary);
    color: var(--white);
}


.navcard {
    -webkit-box-shadow: 5px 10px 25px var(--shadow);
    box-shadow: 5px 10px 25px var(--shadow);
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.bottom-header {
    position: relative;
}

.offcanvas.offcanvas-end {
    display: none !important;
}

.banner-text h3 {
    font-size: 32px !important;
    font-weight: 600;
    color: var(--white);
}

.value-text {
    font-size: 22px !important;
}

.main-division {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*    align-items: center;*/
    flex-wrap: wrap;
}

.main-division .m-3 {
    width: 20%;
    padding: 10px;
    margin: 0px !important;
}

.main-division .m-3 h5 {
    font-size: 17px !important;
    padding: 22px 10px !important;
    line-height: 1.5rem !important;
    min-height: 92px;
}

@media (max-width: 1200px) {
    .banner-text {
        padding: 50px 0px !important;
    }

    .banner-text h3 {
        font-size: 28px !important;
        margin: 0px !important;
    }

    .main-division .m-3 {
        width: 33.33%;
        padding: 18px;
    }

    .who-we-content .nav .nav-link {
        width: 100% !important;

    }

}

@media (max-width: 992px) {
    .technology-partner .partners .partner-card {
        max-width: 27.5% !important;
    }

    .main-division .m-3 {
        width: 33.33%;
        padding: 8px;
    }



    .who-we-content .nav .nav-item {
        width: 20%;
        margin: 0px 10px !important;
    }

    .banner-text h3 {
        font-size: 22px !important;
        margin: 0px !important;
    }

    .pt-100 {
        padding-top: 80px;
    }

    .pb-100 {
        padding-bottom: 80px;
    }

    .top-header .content {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .top-header .content .left {
        width: 40%;
    }

    .top-header .content .mid {
        display: none;
        width: 40%;
    }

    .top-header .content .right {
        width: 20%;
    }

    .offcanvas.offcanvas-end {
        display: block !important;
    }

    .banner-text {
        padding: 50px 0px !important;
    }

    .bottom-footer .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .bottom-footer .content .left {
        text-align: center;
    }

    .banner-nav .content .nav-card .link {
        padding: 20px;
        min-height: 80px;
        font-size: 16px;
        margin: 5px;
    }

    .banner-nav {
        margin-top: -40px;
    }


}

@media (max-width: 775px) {

    .banner-space {
        padding: 30px 10px !important;
    }

    .heightSection {
        height: 200px !important;
    }

    .heightSection h1 {
        font-size: 22px !important;
    }

    .heightSection h4 {
        font-size: 15px !important;
    }

    .mid-footer .con-info-card .footer-title {
        font-size: 15px !important;
    }

    .mid-footer .con-info-card a {
        font-size: 13px !important;
    }

    .con-info-card iframe {
        height: 77px;
    }

    .side-btn .con-text h6 {
        font-size: 13px !important;
    }

    .main-division .m-3 {
        width: 33.33% !important;
        padding: 5px;
    }

    .technology-partner .partners .partner-card {
        max-width: 27.5% !important;
    }

    .banner-text {
        padding: 50px 0px !important;
    }

    .pt-100 {
        padding-top: 50px !important;
    }

    .pb-100 {
        padding-bottom: 50px !important;
    }

    .banner-text {
        padding: 10px 0px !important;
    }

    .banner-text h3 {
        font-size: 20px !important;
        margin: 0px !important;
    }

    .banner-text p {
        font-size: 14px !important;

    }

    .contact-content {
        padding: 20px;
    }

    .who-we-content .nav .nav-link {

        padding: 10px;
        min-height: 60px;
        font-size: 14px;
        margin: 5px;
    }

    .banner-nav {
        margin-top: -10px;
    }

    .banner-nav .content .nav-card .link {
        padding: 10px;
        min-height: 60px;
        font-size: 14px;
        margin: 5px;

    }

    .value-text {
        font-size: 18px !important;
        line-height: 30px !important;
    }

    .side-btn:hover .con-text {
        right: -70px !important;
    }
}



.who-we-content .mt-5 {
    font-weight: 400 !important;
    line-height: 32px;
}

.backbtn {
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 200px;
    transition: all 300ms;
}

.backbtn:hover {
    background-color: #000000;
    color: var(--white);

}

.event-card {
    border-radius: 5px;
    border: 1px solid #bdbdbd;
    overflow: hidden;
    background-color: #ececec87;
    box-shadow: 10px 10px 15px #ececec87;
}

.event-card .date {
    border-radius: 100px;
    padding: 10px 20px;
    background-color: #acf2ff;
    font-weight: 600;
    /*color: #fff;*/
}

.right-contact {
    padding: 8px !important;
}

.right-contact .form-input {
    font-size: 12px !important;
    padding: 5px !important;
}

.con-btn {
    font-size: 12px !important;
    padding: 5px 18px !important;
}


.banner-space {
    padding: 100px 0px;
}

.testi-nav {
    margin: 5px;
    border: 2px solid var(--primary);
    overflow: hidden;
    border-radius: 5px;
}

.testimonials .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testi-img {
    height: 250px;
    width: 250px;
    border-radius: 100%;
    overflow: hidden;
}

.testimonials .text {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.testimonials {
    background-color: #f2f2f2;
}

.side-btn {
    position: fixed;
    top: 45%;
    right: 0px;
    background-color: var(--primary);
    padding: 5px;
    z-index: +99999;
    height: auto;

}
.side-btn hr{
 color: #fff;
}

.side-btn .con-text {
    height: 100%;
    background-color: var(--primary);
    position: absolute;
    padding: 5px;
    top: 0px;
    right: -230px;
    width: 220px;
    z-index: -1;
    transition: all 300ms;
}

.side-btn .con-text h6 {
    color: #fff;
}

.side-btn:hover .con-text {
    right: -10px;
}

.gemproduct h6 {
    font-size: 12px !important;
    margin-top: 5px;
}

.gemproduct .border {
    overflow: hidden;
}

.gemproduct .border:hover img {
    scale: 1.05;
    transition: all 300ms ease-in-out;
}

.our-achiv .achivments-slider{
    background-image: url(/assets/frontend/images/patner/patnerbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.our-achiv .ach-card {

    transition: all 400ms;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.our-achiv .ach-card .img {
    transition: all 400ms;
    max-width: 120px;
    overflow: hidden;
    padding: 10px;
    margin-right: 30px;
}

.our-achiv .ach-card .text {
    max-width: 80%;
}


.our-achiv .ach-card p{
    position: relative;
    margin: 10px 0px;
}
.our-achiv .ach-card p::before {
    content: "‟";
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 65px;
    color: var(--primary);
}
.our-achiv .ach-card p::after {
    content: "„";
    position: absolute;
    bottom: -0px;
    right: -10px;
    font-size: 65px;
    color: var(--primary);
}

@media (max-width: 550px) {


.our-achiv .ach-card .img {
    margin-right: 15px !important;
}

    .con-info-card iframe {
        height: 96px;
    }

    .main-division .m-3 h5 {
        font-size: 15px !important;
        padding: 22px 5px !important;
        line-height: 1.5rem !important;
        font-weight: 600 !important;
    }

    .main-division .m-3 {
        width: 50% !important;
        padding: 8px;
    }

    .side-btn img {
        width: 20px;
        z-index: 999;
    }

    .who-we-content .nav .nav-item {
        width: 40%;
        margin: 0px 10px !important;
    }
}
