/*Basic Css*/
:root {
    --orange: #ffae56;
    --bk: #171D34;
    --blue: #4AA5F0;
    --textColor:#AFB6D2;
    --bk2: #1d233c;
}
html {
 overflow-x:hidden;
  scroll-behavior: smooth;
}

html,body {
    background: var(--bk);
    color: #fff;
}
body.rtl {
    direction:rtl;
    font-size: 14px;
}
button,form,input,select,textarea {
    font-family: inherit;
 
}
.rtl input,.rtl select,.rtl textarea {
    direction:rtl;
    text-align:right
}
.rtl input[type="tel"]:focus,.rtl input[type="email"]:focus{
    text-align:left
}
.color {
    color: var(--blue);
}
body {
    font-family: "Poppins","Alexandria", sans-serif;
    overflow-x: hidden;
    line-height: 1.8;
    text-transform: capitalize;
}
h1,h2,h3,h4 {
     text-transform: capitalize;
}
.flex-column {
    display:flex;
    flex-direction:column;
    justify-content: center;
}
.container {
    max-width: 1140px;
}
@media(max-width:1139px) {
    .container {
        padding:0 20px
    }
}
.pd {
    padding: 75px 0;
}

.otgs-development-site-front-end {
    display: none;
}

.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
    display: none;
}
.row-gap-20 {
    margin: 0 -20px;
}
.row-gap-15 {
    margin: 0 -15px;
}
.row-gap-10 {
    margin: 0 -10px;
}
.h-100vh {
    height: 100vh;
}

header {
    background: var(--bk);
}

header .menu {
    display: flex;
    list-style: none;
    font-size: 20px;
}
@media(min-width:1024px) {
    header .menu .sub-menu {
    position:absolute;
    top: 100%;
    list-style: none;
    z-index: 9999;
    background: #fff;
    left: 50%;
    border-radius: 9px;
    transform: translateX(-50%);
    visibility:hidden;
    opacity:0;
    transition:.35s ease;
    box-shadow: 0 0 35px rgba(0,0,0,.2);
}
      header .menu li:hover .sub-menu {
        opacity:1;
          visibility:visible
      }
    header .menu .sub-menu li {
        padding: 10px 30px;
        border-bottom: 1px solid #eee;
        transition:.35s ease;
        white-space: nowrap;
        color: #000;
    }
    header .menu .sub-menu li:hover {
        color:var(--blue)
    }
    header .menu .sub-menu li:last-child {
        border;0
    ;
        border: 0;
    }
}
.rtl header .menu {
    font-size:16px
}
header .menu > li {
    height: 100px;
    display: flex;
    align-items: center;
    margin: 0 15px;
    position:relative;
    transition:.35s ease;
    font-size: 17px;
}
header .menu li:before {
    content:'';
    position:absolute;
    width: 100%;
    height: 2px;
    background: var(--blue);
    bottom: 30px;
    right: 0;
    transition: .35s ease;
    opacity: 0;
}
.menu li.current-menu-item:before {
}
.menu > li:hover {
    color:var(--blue)
}
.menu > li:hover:before {
    opacity:1
}
header .container {
    height: 100px;
}

figure.logo img {
    display: block;
}

.bk {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
}

article.hero {
    position: relative;
    z-index: 1;
}
article.hero .container~.container {
    margin-top:50px
}
.sh {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    height: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}
.sh_2 {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-position:right bottom;
    z-index: -1;
}
.about .sh {transform: rotateY(180deg);}
.dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: -24%;
    background-position: right;
    background-repeat: no-repeat;
    z-index: -1;
}
.dots_2 {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: -24%;
    background-position: left top;
    background-repeat: no-repeat;
    z-index: -1;
    transform: rotateX(180deg);
}
.about .dots {
    transform: rotateY(180deg);
    right: 24%;
}
.h1 {
    font-size: 50px;
    line-height: 1.1em;
}
.h1 div {
    font-size: 22px;
    color: var(--blue);
}
.rtl .h1 {
    font-size:40px;
    line-height: normal;
}
p.p {
    font-size: 22px;
    line-height: 1.5em;
}
.rtl p.p {
    font-size:18px;
    line-height: normal;
}

.hero-content p {
    color: var(--textColor);
    margin: 15px 0 30px 0;
    font-size: 17px;
}

.btn {
    padding: 13px 47px 13px 47px;
    border-radius: 15px;
    font-size: 20px;
    transition: .35s ease;
}
.rtl .btn {
    font-size:14px
}
.btn-blue {
    background:var(--blue)
}
.btn-dark {
    background:var(--bk);
    border: 1px solid #ffffff45;
}
.btn-orange-hover:hover {
    background:var(--orange);
    transform:translateY(-5px)
}
.btn-blue-hover:hover {
    background:var(--blue);
}

.btns .btn {
    margin-inline-end: 16px;
}

.h2 {
    font-size: 52px;
    line-height: 1.2em;
}
.rtl .h2 {
    font-size:32px;
    line-height: normal;
}
.h4 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 5px;
}
.rtl .h4 {
    font-size:16px
}
.h4.blue,.h4.color {
    display:none 
}
.serbox {
    border-radius: 10px;
    padding: 50px 51px 50px 51px;
    background: var(--bk2);
    margin: 20px;
    transition: .35s ease;
    border: 2px solid var(--bk2);
  
}
.home .serbox {
     min-height: 377px; 
}
.page-features .serbox {
    height: calc(100% - 40px);
}

.serbox:hover {
    border-color:var(--blue)
}
p.p2 {
    font-size: 18px;
}
.rtl p.p2{
    font-size:16px
}
.serbox p {
    color: var(--textColor);
    margin: 10px 0 30px;
    min-height: 130px;
}

.rtl .serbox p  {
    min-height: 90px;
}
.page-features  .serbox p {
    min-height:auto;
    margin: 10px 0 0 0;
}
.page-features  .serbox p:empty {
    display:none
}
.services p.p {
    color:var(--textColor)
}
.h3 {
    font-size: 22px;
}
.rtl .h3,.rtl .serbox.li h3 {
    font-size:16px
}
.pdt {
    padding-top: 30px;
}

.services-carousel {
    position: relative;
}

.services-carousel .owl-stage-outer {
    overflow: hidden;
}
.blue {
    color:var(--blue);
}

.list li {
    margin-bottom: 6px;
    font-size: 18px;
    display: flex;
}
.flexed-list li {
    flex:1;
    min-width:50%
}
.list li i {
    color: var(--orange);
    font-size: 18px;
    margin-inline-end: 10px;
    margin-top: 8px;
}

ul.list {
    margin-bottom: 30px;
}

.owl-dots {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
}
 button.owl-dot {
    background: #2a3150;
    border: none;
    width: 12px;
    height: 12px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 50%;
}
 button.owl-dot.active {
    background:var(--orange)
}

.owl-stage-outer {
    overflow: hidden;
}

.partner-image {
    padding: 26px;
    background: var(--bk2);
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: .35s ease;
}
.partner-image:hover {
    background:var(--blue)
}
.counter-section {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-inline-end: 30px;
}

figure.hero-image.left-image {
    margin-inline-start: 40px;
}
figure.hero-image.right-image  {
        margin-inline-end: 40px;
}
figure.hero-image img {
    width:100%
}
.about figure.hero-image {
    margin-inline-start: 0;
     margin-inline-end: 20px;
}

.counter-section-box h3 {
    font-size: 40px;
    color: var(--orange);
    line-height: 1;
}

.counter-section-box p {
    margin: 0;
    font-size: 18px;
}

.what-box p {
    margin: 0;
}

.what-box img {
    margin-inline-end: 15px;
    height: 50px;
}

.what-box {
    padding: 10px;
}

.what-we-do-holder {
    margin: 0 -15px;
}

.about .hero-content {
    margin-inline-start: 20px;
}

.plan {
    border-radius: 10px;
    padding: 32px;
    background: var(--bk2);
    margin: 15px;
    transition: .35s ease;
    border: 2px solid var(--bk2);
    position: relative;
}

label.label {
    position: absolute;
    width: 120px;
    background: var(--orange);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    border-radius: 10px;
}

figure.plan-icon {
    perspective: 200px;
    margin-bottom: 15px;
}

figure.plan-icon img {transition: .55s ease;height: 140px;}

.plan figure.plan-icon img:hover {
    transform:rotateY(360deg)
}

.pln-price {
    margin-bottom: 20px;
}

span.montlhy {
    color: var(--textColor);
}

.plan-features-list li {
    margin-bottom: 5px;
}
.plan-features-list li span {
    flex:1
}
.plan-features-list li i {
    margin-inline-end:10px;
    color:var(--orange)
}

a.plan-link {
    display: inline-flex;
    margin: 40px 0 0 0;
    padding: 12px 30px;
    border: 1px solid #ffffff1f;
    border-radius: 16px;
    transition: .35s ease;
}

a.plan-link:hover {
    background: var(--blue);
}

.plan:hover {
    border-color:var(--blue)
}


.team-content {
    margin-inline-end: 20px;
}

.our-teams {
    margin-inline-start: 20px;
}

.team-content p {
    color: var(--textColor);
    margin: 15px 0 40px 0;
}

.team-box {
    text-align: center;
    margin-bottom: 30px;
}

figure.avatar {
    height: 240px;
    position: relative;
    margin-bottom: 30px;
}

figure.avatar img {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.team-box p {
    color: var(--textColor);
    font-size: 16px;
}

.team-socials {
    display: flex;
    justify-content: center;
    margin-top: -30px;
}

.team-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-radius: 50%;
    margin: 0 3px;
}

article.testimonial {
    background: var(--blue);
    position: relative;
    z-index: 1;
}
article.testimonial:before {
    content:'';
    position:absolute;
    z-index:-1;
    width: 100%;
    height: 100%;
    left: 4%;
    top: 0;
    background: url(../images/opening-quote-icon-1.png);
    background-repeat: no-repeat;
}
article.testimonial:after {
    content:'';
    position:absolute;
    z-index:-1;
    width: 100%;
    height: 100%;
    right: 4%;
    bottom: 0;
    background: url(../images/closing-quote-icon-1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.stars {
    font-size: 26px;
    color: #fdde47;
}

.feedback {
    margin: 20px 0 30px;
    font-size: 26px;
}
.rtl .feedback {
    font-size:22px
}
h4.name {
    font-size: 22px;
}
.rtl h4.name {
    font-size: 18px;
}
.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
}
.rtl .wpcf7-form  {
    flex-direction:row-reverse
}
form.wpcf7-form p {
    flex: 1;
    padding: 10px;
    min-width: 33.33%;
}
form.wpcf7-form input:not([type="submit"]) ,form.wpcf7-form textarea {
    background: #29304b;
    padding: 18px;
    border-radius: 10px;
    width: 100%;
    max-height:130px;
    transition: .35s ease;
    border: 2px solid transparent;
    color:#fff
}
form.wpcf7-form input:not([type="submit"]):hover ,
form.wpcf7-form textarea:hover {
    border-color:var(--blue)
}
form.wpcf7-form p:nth-of-type(4),form.wpcf7-form p:nth-of-type(5) {
    min-width:100%
}
form.wpcf7-form input[type="submit"] {
    color:#fff;
    cursor: pointer;
}

.footer-box {
    flex: 1;
    padding: 0 15px;
}
.footer-box  .socials {
    display:flex;
    margin: 20px 0 0 0;
}
.footer-box  .socials  a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    background: var(--bk2);
    justify-content: center;
    border-radius: 7px;
    margin-inline-end: 10px;
    transition: .35s ease;
}
.footer-box  .socials  a:hover {
    background:var(--orange)
}
.textwidget {
    margin: 15px 0 0 0;
}

.footer-box .menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.footer-box .menu li {
    position:relative;
    font-size: 18px;
    display: flex;
    align-items: center;
    width: 100%;
}
.rtl .footer-box .menu li{
    font-size: 14px;
}
.footer-box .menu li:before {
        content: "\f111";
        font-family: "Font Awesome 6 Free";
        font-size: 8px;
        color: var(--blue);
        transition: .35s ease;
        margin-inline-end: 5px;
}
.footer-box .menu li:hover:before {
    color:var(--orange)
}

h2.widgettitle {
    margin-bottom: 20px;
}
.contact-list li {
    font-size:18px;
    margin-bottom:7px
}
.contact-list li a {
    display:flex;
    direction:ltr;
    text-transform: lowercase;
}
.contact-list li i {
    color:var(--orange);
    margin-inline-end:10px
}

article.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #ffffff2b;
}

article.bar {
    height: 330px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.page-description {
    font-size: 22px;
    color: var(--textColor);
    max-width: 540px;
}
.dots-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0%;
    background-position: center 0;
    background-repeat: no-repeat;
    z-index: -1;
}
.breadcrumb {
    padding: 12px 25px 12px 30px;
    border-radius: 15px;
    border: 1px solid #878787;
    margin: 15px 0 0 0;
}

.breadcrumb li {

}
.breadcrumb li i {margin: 0 4px;}
.breadcrumb li a {
    transition: .35s ease;
}
.breadcrumb li a:hover {
    color:var(--blue)
}
figure.hero-images {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between
}
figure.hero-images img {
    border-radius: 8px;
    margin: 15px;
    flex: 1;
    box-shadow: 0px 0px 32px 4px #0000002e;
}

article.services {
    position: relative;
    z-index: 1;
}

.faq-body {
    padding: 15px 25px 15px 20px;
    background: var(--bk2);
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: .35s ease;
    cursor: pointer;
}

.question strong {
    font-size: 22px;
}
.question i {
    width: 30px;
    height: 30px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-body:hover {
    border-color: var(--blue);
}

.answer {
    display: none;
}

.serbox.li {
    border: 0 !important;
    background: none;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    margin: 1px;
    text-align: start;
}
.serbox.li i {
    margin-inline-end: 10px;
    color: var(--orange);
}
.serbox.li h3 {
    font-weight:normal;
    font-size: 17px;
}
.bars {
    display:none;
    font-size: 30px;
}
.show-sub-menu {
    font-size: 13px;
    margin-inline-start: 15px;
}

figure.scan img {
    height: 200px;
}
#gallery-1 img {
    border: 0 !important;
    width: auto;
}
body #gallery-1 .gallery-item {
    width: auto;
    margin: 0 20px;
}

div#gallery-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0 -15px 0;
}

dl.gallery-item:nth-child(1) img {
    max-height: 40px;
}
dl.gallery-item:nth-child(2) img {
    max-height: 65px;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
}
dl.gallery-item:nth-child(3) img {
    max-height: 84px;
}
dl.gallery-item:nth-child(4) img {
    max-height: 84px;
}
dl.gallery-item:nth-child(5) img {
    max-height: 140px;
}
.wpml-ls-legacy-list-horizontal>ul {
    font-size: 18px;
}
a.icon-link {
    flex: 1;
    text-align: center;
    background: var(--bk2);
    padding: 30px;
    margin: 15px;
    border-radius: 25px;
}

a.icon-link i {
    color: var(--orange);
    font-size: 25px;
}

a.icon-link p {
    opacity: .7;
}

article.map iframe {
    display: block;
    width: 100%;
    height: 450px;
}
@media(max-width:1139px){
    .row-gap-20 {
        margin:0
    }
}
@media(max-width:1023px){
    .bars {
        display:block
    }
    header div[class*="-container"]{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        z-index: 999999;
        background: #171d34e8;
        transition: .35s ease;
        transform:translateX(-100%)
    }
    .rtl header div[class*="-container"] {
        transform:translateX(100%)
    }
    header div[class*="-container"].open {
        transform:translateX(0%)
    }
    header .menu {
        position:absolute;
        width: 276px;
        height: 100%;
        background: #fff;
        flex-direction: column;
        padding: 15px;
        font-size: 16px;
        transition: .35s ease;
        transition-delay:.3s;
        transform: translate(-100%);
    }
    .rtl  header .menu{
        transform: translate(100%);
    }
   header div[class*="-container"].open  .menu {
        transform:translateX(0%)
    }
    .sub-menu {
        display:none;
        background: #eee;
        padding: 12px;
        margin: 10px -15px;
    }
    .show-sub-menu {
        position:absolute;
        background: transparent;
        top: 0;
        width: 100%;
        left: 0;
        right: 0;
        margin-inline-start: 0!important;
        text-align: right;
        color: #000;
        z-index: 99;
    }
    header .menu > li {
        margin: 0 0 10px 0;
        height: auto;
        display: block;
    }
    header .menu li:before {
        display:none
    }
    header .menu > li a {
        display: block;
        color: #000;
    }
}
@media(max-width:991px){
    .h1 {
    font-size: 30px;
    }
    .h2 {
        font-size:27px
    }
    .rtl .h1 {
        font-size:25px;
    }
    .h3 {
        font-size:18px
    }
    .rtl h3 {
        font-size:16px
    }
    p.p {
        font-size: 17px;
    }
    .rtl p.p {
        font-size:13px;
    }
    p.p2 {
        font-size:15px
    }
    .rtl p.p2 {
        font-size:13px
    }
    .btn {
        font-size: 13px;
        padding: 13px;
        flex: 1;
        text-align: center;
    }
    .feedback {
        font-size:22px
    }
}
@media(max-width:767px){
    div#gallery-1 {
    flex-wrap: wrap;
    }
    body #gallery-1 .gallery-item {
    }
    form.wpcf7-form p {
        min-width:100%;
        margin: 5px 0 0 0;
        padding: 0;
    }
    form.wpcf7-form input[type="submit"] {
        width:100%
    }
    .serbox {
        margin:0;
        width: 100%;
    }
    .page-features .serbox {
        height:calc(100% - 20px);

    }
    .home .serbox {
        min-height:auto
    }
   figure.hero-image.left-image {
       margin: 15px 0;
   }
    .hero-content h2 {
    }
    .flexed-list li {
        min-width:100%;
        font-size:15px
    }
    .footer-box {
        min-width:100%;
        padding: 15px 0;
    }
    .serbox.li h3 ,.list li,.footer-box .menu li,.rights,.contact-list li{
        font-size:15px
    }
    .pd {
        padding:30px 0
    }
    .hero-image {
     margin:15px    
    }
    .sh, .sh_2, .dots_2,.dots {
        opacity: .2;
    }
     dl.gallery-item {
         flex:1
     }
    dl.gallery-item img {
        max-height:50px !important;
        margin:5px
    }
}






.page-features .serbox h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}

.page-features .serbox h3 img {
    width: 58px;
}

.client-info img {
    width: 55px;
    background: #fff;
    height: 55px;
    border-radius: 50%;
}

.error-404 {
    text-align: center;
    font-size: 240px;
    font-weight: bold;
}

.error-404 span {
    font-size: 14px;
}

a.icon-link[href*="tel"] p {
    direction: ltr;
}

.home-services .serbox {
    min-height: 284px;
}