*,
body {
    outline: 0;
}
*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-os-font-smoothing: grayscale;
    box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #050748;
    font-weight: 500;
}
ul {
    list-style: none;
}
a:hover {
    text-decoration: none;
}
img {
    width: 100%;
    height: 100%;
}
a {
    text-decoration: auto;
}
body {
    background: #e5e9ec;
    font-family: "Montserrat", sans-serif;
}
/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 30px 40px 0;
    background: transparent;
    z-index: 10;
}
header .header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 0 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 5px;
    background: rgb(255, 255, 255);
    padding: 12px 15px 12px 25px;
}
header.sticky {
    padding: 0px 40px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 5px;
}
header.sticky .header {
    box-shadow: unset;
}
header.sticky ul li a,
header.sticky .logo {
    color: #000;
}
header .logo {
    position: relative;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    text-transform: 2em;
    letter-spacing: 2px;
    transition: 0.6s;
    width: fit-content;
    max-height: 35px;
    height: 35px;
    line-height: 35px;
}
header ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul li {
    position: relative;
    list-style: none;
    padding: 0 12px;
}
header ul li a {
    position: relative;
    text-decoration: none;
    color: #050748;
    letter-spacing: 1px;
    font-weight: 500;
    transition: 0.6s;
    display: block;
    height: 35px;
    line-height: 35px;
}
header nav ul .quote-btn a {
    padding-right: 0;
}
header nav ul .quote-btn a:hover {
    border: 0;
}
header nav ul .quote-btn .button {
    padding: 0px 25px;
}
.quote-btn .button--pipaluk.button--inverted::after {
    background: #000;
}
.menuToggle {
    position: absolute;
    top: 5px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: #000
        url(https://frezaeistudio.ir/wp-content/uploads/2020/12/toggle.png);
    z-index: 2;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: 0.6s;
    display: none;
}
header.sticky .menuToggle {
    filter: invert(1);
}
.header .style-9:hover:before {
    transform: translate3d(0, 2px, 0) scale3d(1.08, 3, 1);
    clip-path: polygon(
        0% 0%,
        0% 100%,
        50% 100%,
        50% 0,
        50% 0,
        50% 100%,
        50% 100%,
        0 100%,
        100% 100%,
        100% 0%
    );
}
.header .style-9:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.7px;
    background: #ff5600;
    top: 100%;
    left: 0;
    pointer-events: none;
    transform-origin: 50% 100%;
    transition: clip-path 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
    clip-path: polygon(
        0% 0%,
        0% 100%,
        0 100%,
        0 0,
        100% 0,
        100% 100%,
        0 100%,
        0 100%,
        100% 100%,
        100% 0%
    );
}
.header .dropdown:hover ul.dropdown-menu {
    display: block;
    width: 225px;
}
.header .dropdown .dropdown-menu li a {
    font-size: 14px;
    height: unset;
    line-height: 30px;
}
.dropdown-menu .style-29 {
    color: #d7a150;
    text-decoration: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(
        to right,
        #ff5600,
        #ff5600 50%,
        #050748 50%
    );
    background-size: 200% 100%;
    background-position: 100%;
    transition: all 0.3s cubic-bezier(0, 0, 0.23, 1);
}
.dropdown-menu .style-29:hover {
    background-position: 0%;
}

.menuToggle.active {
    background: #000
        url(https://frezaeistudio.ir/wp-content/uploads/2020/12/close.png);
    z-index: 3;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    filter: invert(1);
}
@media (max-width: 991px) {
    header {
        padding: 5px 100px;
        background: transparent;
    }
    header .logo {
        color: #000;
    }
    .menuToggle {
        display: block;
        /* filter: invert(1); */
        background: none;
        width: fit-content;
        height: fit-content;
    }
    header nav {
        /*position: absolute;*/
        /*top: 50px;*/
        /*left: -100%;*/
        /*width: 100%;*/
        /*height: 100vh;*/
        background: #fff;
        transition: 0.6s;
    }
    header ul li a {
        color: #000;
    }

    header nav.active {
        left: 0;
    }
    header nav ul {
        display: block;
        text-align: center;
    }
    /*header nav ul li a {*/
    /*    border-bottom: 1px solid rgba(0, 0, 0, 0.2);*/
    /*}*/
}
/* end header */

/* banner-section */
.banner-section {
    background: linear-gradient(to bottom, #fff 0%, #e5e9ec 100%);
    padding-top: 130px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.banner-section::after {
    content: "";
    background: url(../img/bg/Ellipse2.png) no-repeat;
    position: absolute;
    right: 75px;
    top: -115px;
    background-size: 100% 100%;
    height: 350px;
    width: 350px;
    z-index: 0;
}
.banner-section::before {
    content: "";
    background: url(../img/bg/Ellipse1.png) no-repeat;
    position: absolute;
    right: -45px;
    top: -60px;
    background-size: 100% 100%;
    height: 350px;
    width: 350px;
    z-index: 1;
}
.banner-section-left h1 {
    font-weight: 400;
    font-size: 48px;
    line-height: 70px;
    margin-bottom: 25px;
}
.banner-section-left h1 span {
    color: #155ac2;
    background: #ddeaff;
    padding: 0 10px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
}
.banner-section-left p {
    font-size: 20px;
    margin-bottom: 50px;
}
.banner-section-left1 {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 30px;
}
.banner-section-left1 h5 {
    color: #1589c4;
    font-size: 24px;
}
.banner-section-left1 h6 {
    font-weight: 400;
}
.banner-section-left1 .my-slider-img {
    width: 60px;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 5px;
}
.banner-section-left1 .arrow-right {
    width: 24px;
}
.banner-section-right {
    z-index: 1;
    position: relative;
}
.banner-section-left1 .wrapper {
    overflow-x: hidden;
    width: 45%;
}
.banner-section-left1 .slick-initialized .slick-slide {
    margin: 0 0px 10px 7px;
    display: flex;
    align-items: center;
}
.banner-section-left1 .slick-next,
.banner-section-left1 .slick-prev {
    z-index: 5;
}
.banner-section-left1 .slick-next {
    right: 15px;
}
.banner-section-left1 .slick-prev {
    left: 15px;
}
.banner-section-left1 .slick-next:before,
.banner-section-left1 .slick-prev:before {
    color: #000;
    font-size: 26px;
}
.banner-section-left1 .slick-slider {
    margin-bottom: 0px;
}
/* end banner-section */

/* button */
.button {
    border: none;
    background: none;
    color: inherit;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    padding: 11px 35px;
    border-radius: 50px;
    font-weight: 500;
}
.button--pipaluk.button--inverted {
    color: #fff;
    font-size: 14px;
}
.button--pipaluk::before,
.button--pipaluk::after {
    content: "";
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
}
.button--pipaluk::before {
    border: 2px solid #7986cb;
}
.button--pipaluk.button--inverted::before {
    border-color: #ff5600;
}
.button--pipaluk.button--inverted::after {
    background: #ff5600;
}
.button--pipaluk:hover::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.button--pipaluk::before,
.button--pipaluk:hover::after {
    -webkit-transform: scale3d(0.8, 0.6, 1);
    transform: scale3d(0.8, 0.6, 1);
}
.button--pipaluk.button--inverted:hover::after {
    background-color: #ff5600;
}
/* end button */

/* about-section */
.about-section {
    padding: 70px 0;
    background-color: #000000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url(../img/bg/blog2.webp);
    background-position: center;
    background-size: cover;
    color: #ffffff;
    background-attachment: fixed;
}
.about-section .about-section-txt {
    display: flex;
    align-items: center;
    height: 100%;
}
.about-section .about-section-txt h3 {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    margin-bottom: 10px;
    color: #fff;
}
.about-section .about-section-txt h3 span {
    color: #6156d8;
}
.about-section .about-section-txt p {
    font-size: 16px;
    line-height: 28px;
}
.about-section .about-section-btn {
    margin-top: 25px;
}
.about-section .about-section-btn img {
    width: 28px;
    margin-left: 3px;
}
.about-section-img .wrapper {
    width: 100%;
    /* overflow-x: hidden; */
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1199px) {
    .about-section-img .wrapper {
        flex-flow: column;
    }
}
.about-section-img{
    height: 100%;
    display: flex;
}
.about-section-img .swiper {
    width: 350px;
    height: 450px;
    margin: 0px;
    border-radius: 15px;
}
.about-section-img .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #000;
    width: 100%;
    height: 100%;
}
.about-section-img .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}
.about-section-img .swiper-slide .card-image {
    position: relative;
    transition: opacity 0.3s ease-out;
    width: 100%;
    height: 100%;
}
.about-section-img .swiper-slide .card-description {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #fff;
}
.about-section-img .swiper-slide .card-description:before {
    content: "";
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}
.about-section-img .swiper-slide .card-description h5 {
    position: relative;
    z-index: 10;
    text-align: center;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}
.about-section-img .swiper-slide .card-description p {
    margin-top: 0;
    letter-spacing: 1px;
}
.about-section-img .swiper-button-next,
.about-section-img .swiper-button-prev {
    color: #000;
}
.about-section-img .swiper-button-next::after,
.about-section-img .swiper-button-prev::after {
    font-size: 20px;
}
.about-section-img .swiperEffect {
    border-radius: 0;
}
.about-section-img .swiperEffect .swiper-slide {
    border-radius: 18px;
}
.about-section-img .swiperEffect .swiper-button-next,
.about-section-img .swiperEffect .swiper-button-prev {
    color: #fff;
}
.about-section-img .swiper-pagination-bullet-active {
    background: #ff0000;
}
.about-section-img .swiper-pagination-bullet {
    background: #ffffff;
}
.about-section-img .swiper-horizontal > .swiper-pagination-bullets,
.about-section-img .swiper-pagination-bullets.swiper-pagination-horizontal,
.about-section-img .swiper-pagination-custom,
.about-section-img .swiper-pagination-fraction {
    bottom: -35px;
}
/* end about-section */

/* our-works */
.our-works {
    padding: 40px 0 30px;
}
.our-works h3 {
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 38px;
}
.our-works h3 span {
    color: #6156d8;
}
.our-works p {
    text-align: center;
    font-size: 20px;
}
.our-works-img {
    height: 325px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}
.our-works-img:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.our-works-btn {
    text-align: center;
    margin-top: 30px;
}
.our-works-btn img {
    width: 25px;
    margin-left: 3px;
}
/* end our-works */

/* clients-say */
.clients-say {
    padding: 40px 0;
}
.clients-say section {
    position: relative;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}
.clients-say h3 {
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 38px;
    margin-bottom: 5px;
}
.clients-say h3 span {
    color: #6156d8;
}
.clients-say p {
    text-align: center;
    font-size: 20px;
}
.clients-say .slide-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-inline: auto;
}
.clients-say .swiper-container {
    position: relative;
}
.clients-say .swiper {
    width: 100%;
    padding: 40px 0 25px 0;
}
.clients-say .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    position: relative;
    border-radius: 12px;
    box-shadow: -1px 5px 15px #0000001f;
    padding: 40px 30px 30px;
    background: #fff;
}
.clients-say .swiper-slide h3 {
    color: #000;
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    letter-spacing: 0.8px;
    position: relative;
}
.clients-say .swiper-slide p {
    color: #000;
    line-height: 1.6;
    font-size: 16px;
}
.clients-say .swiper-slide .author {
    grid-template-columns: 1fr;
    justify-items: center;
    bottom: -90px;
    width: 100%;
    text-align: center;
}
.clients-say .swiper-slide .author span {
    color: #111;
    display: block;
    margin: 14px 0 5px 0;
    font-weight: 600;
    font-size: 18px;
}
.clients-say .swiper-slide .author img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ff5600;
}
.clients-say .swiper-slide-active .author {
    display: grid;
    opacity: 1;
}
.clients-say .swiper-button-prev {
    background: #cbdde8;
    border-radius: 50%;
    top: 47%;
    left: -30px;
    width: 45px;
    height: 45px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
}
.clients-say .swiper-button-prev::after {
    font-size: 1.4rem;
    content: "";
}
.clients-say .swiper-button-prev svg {
    width: 25px;
}
.clients-say .swiper-button-next {
    background: #cbdde8;
    border-radius: 50%;
    top: 47%;
    right: -30px;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
}
.clients-say .swiper-3d .swiper-slide-shadow-left,
.clients-say .swiper-3d .swiper-slide-shadow-right {
    background-image: unset;
}
.clients-say .swiper-button-next::after {
    font-size: 1.4rem;
    content: "";
}
.clients-say .swiper-button-prev img,
.clients-say .swiper-button-next img {
    width: 20px;
    height: fit-content;
}
.clients-say .swiper-button-prev,
.clients-say .swiper-button-next {
    display: none;
    z-index: 8;
}
@media (min-width: 760px) {
    .clients-say .swiper-button-prev,
    .clients-say .swiper-button-next {
        display: flex;
    }
}
.clients-say .morecontent span {
    display: none;
}
.clients-say .morelink {
    display: block;
    color: #ff5600;
}
/* end clients-say */

/* our-blog */
.our-blog {
    padding: 50px 0 30px;
    background: linear-gradient(to bottom, #fff 0%, #e5e9ec 100%);
    position: relative;
}
.our-blog h3 {
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 38px;
    margin-bottom: 5px;
}
.our-blog h3 span {
    color: #6156d8;
}
.our-blog p {
    text-align: center;
    font-size: 20px;
}
.our-blog .swiper {
    padding-bottom: 40px;
}
.our-blog img {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    border-radius: 20px;
    height: 295px;
}
.our-blog .section {
    margin: 0 auto;
    padding: 30px 0 0;
}
.our-blog .swiper-button-next::after,
.our-blog .swiper-button-prev::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
    border-radius: 50%;
    color: #fff;
    background: #0c0f12;
}
.our-blog .swiper-slide1 {
    position: absolute;
    bottom: 0px;
    color: #fff;
    padding: 10px 20px 20px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(to bottom, #00000000 0%, #000000 100%);
}
.our-blog .swiper-slide1 p {
    font-size: 15px;
}
.our-blog .swiper-button-next,
.our-blog .swiper-button-prev {
    top: 45%;
}
.our-blog-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 10px auto 0;
}
.our-blog-btn img {
    width: 25px;
    margin-left: 3px;
    height: fit-content;
}
.our-blog-btn .button {
    display: flex;
    align-items: center;
}
/* end our-blog */

/* faq-section */
.faq-section {
    padding: 30px 0 40px;
}
.faq-section .faq-section-txt h3 {
    font-family: "Playfair Display", serif;
    /* text-align: center; */
    font-size: 34px;
    margin-bottom: 5px;
}
.faq-section .faq-section-txt h3 span {
    color: #6156d8;
}
.faq-section .faq-section-txt p {
    font-size: 16px;
}
.faq-section-txt .contain {
    background-color: white;
    color: black;
    border-radius: 10px;
    box-shadow: 0 2px 5px 0 rgb(0, 0, 0, 0.25);
    margin: 18px 0;
}
.faq-section-txt .question {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 35px 16px 15px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.faq-section-txt .question.active {
    color: #155ac2;
}
.faq-section-txt .question::after {
    content: "\002B";
    font-size: 26px;
    position: absolute;
    right: 15px;
    transition: 0.2s;
}
.faq-section-txt .question.active::after {
    transform: rotate(45deg);
}
.faq-section-txt .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}
.faq-section-txt .answer {
    padding: 0 15px 15px;
    font-size: 15px;
    line-height: 26px;
}
.faq-section-img {
    width: 325px;
    margin: 50px auto 0;
}
/* end faq-section */

/* footer */
.footer-section {
    background: #134796;
    padding: 30px 0 20px;
    position: relative;
    z-index: 0;
}
.footer-section::after {
    content: "";
    background: url(../img/bg/footer-bg.png) no-repeat;
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-size: 100% 100%;
    height: 200px;
    width: 250px;
    z-index: -1;
}
.footer-section::before {
    content: "";
    background: url(../img/bg/footer-bg1.png) no-repeat;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-size: 100% 100%;
    height: 135px;
    width: 140px;
    z-index: -1;
}
.footer-section .footer-logo .img {
    width: 275px;
    margin-bottom: 20px;
}
.footer-section .footer-logo p {
    color: #fff;
    font-size: 14px;
}
.footer-logo .social-links {
    line-height: 1;
    margin-top: 0px;
        float: right;
}
.footer-logo .social-links li:not(:last-child) {
    margin-right: 8px;
}
.footer-logo .social-links li a {
    display: block;
    font-size: 14px;
    border-radius: 50%;
    border: 1px solid transparent;
    line-height: 28px;
    overflow: hidden;
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    background: #ffffff;
    transition: all 0.4s ease-in-out;
}
.footer-logo .social-links li a i {
    display: block;
    color: #134796;
    line-height: 30px;
}
.footer-logo .social-links li a:hover {
    color: #000;
}
.footer-logo .social-links li a:hover i {
    animation: toTopFromBottom 0.3s forwards;
}
@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    51% {
        opacity: 1;
    }
}
.footer-services h4 {
    margin-bottom: 25px;
    position: relative;
    color: #fff;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    width: fit-content;
}
.footer-services h4 span {
    content: "";
    background: #fff;
    height: 3px;
    width: 98%;
    display: block;
    position: absolute;
    bottom: -8px;
    border-radius: 4px;
}
.footer-services h4 span::after {
    content: "";
    background: #ff5600;
    height: 3px;
    width: 12px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 10px;
    border-radius: 0;
    animation: linear infinite alternate;
    animation-name: run;
    animation-duration: 2000ms;
}
@-webkit-keyframes run {
    0% {
        left: 0;
        transform: translateX(0);
    }
    100% {
        left: 100%;
        transform: translateX(-100%);
    }
}
.footer-services ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer-services ul li a {
    color: #fff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}
.footer-section-address1 {
    display: flex;
    align-items: normal;
    margin-bottom: 12px;
}
.footer-section-address1:nth-child(3) {
    align-items: center;
    margin-bottom: 15px;
}
.footer-section-address1:nth-child(4) h6 {
    margin-bottom: 3px;
}
.footer-section-address1 img {
    width: 20px;
    margin-right: 12px;
    margin-top: 5px;
}
.footer-section-address1 h6 {
    font-size: 14px;
    margin: 0;
    line-height: 22px;
}
.footer-section-address1 h6 a {
    color: #fff;
}
.footer-copyright {
    /*border-top: 1px solid #fff;*/
    /*padding-top: 20px;*/
    /*margin-top: 30px;*/
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}
.footer-copyright p {
    color: #fff;
    text-align: center;
    font-size: 16px;
}
/* end footer */

/* banner-section-right */
.banner-section-right{
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px 30px;
    border-radius: 10px;
}
.banner-section-right h4{
    text-align: center;
    margin-bottom: 12px;
    color: #155ac2;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7);
}
.banner-section-right .form-group{
    margin-bottom: 15px;
}
.banner-section-right .form-group span{
    font-size: 14px;
}
.banner-section-right .form-group label{
    margin-bottom: 5px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.banner-section-right .form-group .form-control,
.banner-section-right .form-group .form-select{
    font-size: 14px;
}
.banner-section-right .button{
    margin: 25px auto 0;
    display: block;
}
/* end banner-section-right */

/* services-sec */
.services-sec{
    padding: 60px 0;
}
.services-sec h3{
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 38px;
    margin-bottom: 35px;
    text-transform: capitalize;
}
.services-sec h3 span{
    color: #6156d8;
}
.our-services-card {
    position: relative;
    text-align: center;
}
.our-services-card-img{
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}
.our-services-card .our-services-card-img img {
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.our-services-card-img img:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.our-services-card h5{
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    background: #fff;
    color: #000;
    padding: 12px 12px;
    margin: 0 25px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 1.5s linear;
}

/* .services-sec .wrapper{
  padding: 45px 0 0;
  overflow-x: hidden;
} */
/* .services-sec .my-slider{
  padding: 0 70px;
} */
.services-sec .slick-slider{
    margin-bottom: 0;
}
.services-sec .slick-initialized .slick-slide{
  margin: 0 15px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-sec .slick-next, 
.services-sec .slick-prev{
  z-index: 5;
}
.services-sec .slick-next{
  right: 5px;
}
.services-sec .slick-prev{
  left: 0px;
}
.services-sec .slick-next:before, 
.services-sec .slick-prev:before{
  color: #000;
  font-size: 26px;
}
/* END services-sec */

/* industries-sec */
.industries-sec{
    padding: 50px 0 70px;
}
.industries-sec h3{
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
}
.industries-sec h3 span{
    color: #6156d8;
}
.card1 {
    /* display: block; */
    position: relative;
    /* max-width: 262px; */
    /* background-color: #f2f8f9; */
    /* border-radius: 4px; */
    padding: 20px 0 20px 20px;
    /* margin: 12px; */
    /* text-decoration: none; */
    z-index: 0;
    overflow: hidden;

    border-radius: 7px;
    border: 2px solid rgb(219, 219, 219);
    display: flex;
    /* justify-content: center; */
    align-items: center;
    box-shadow: 2px 2px 7px #dadada;
    background: #fff;
    margin-top: 25px;
}
.card1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -35px;
    left: -35px;
    background: #00838d;
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 25% 50%;
    transition: transform 0.25s ease-out;
}
.card1:hover:before {
    transform: scale(21);
}
.card1:hover img{
    filter: brightness(0) invert(1);
}
.card1:hover h4 {
    transition: all 0.3s ease-out;
    color: #ffffff;
}
.image-wrapper{
    margin-right: 10px;
}
.image-wrapper img{
    width: 35px;
    /* height: 50px; */
}
.card1 h4{
    font-size: 18px;
}
/* end industries-sec */

/*  */
.bg-section {
    max-width: calc(100% - 80px);
    margin: 0 20px;
}
.bg-section {
    width: 100%;
    /* max-width: 1820px; */
    /* background-color: #bef1de; */
    background-color: #27aae29e;
    border-radius: 20px;
    margin: 0 auto;
}
.our-approach {
    padding: 100px 0;
    margin-bottom: 70px;
}
.approach-image {
    height: 100%;
    margin: 0 60px;
}
.approach-image figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}
.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
.approach-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.061;
    object-fit: cover;
    border-radius: 20px;
}
.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.approach-content {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
}
.section-title {
    margin-bottom: 40px;
}
.bg-section .section-title h3 {
    border-color: #172c45;
}
.section-title h3 {
    position: relative;
    display: inline-block;
    border: 1px solid #172c451a;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: #172c45;
    padding: 8px 20px 8px 20px;
    margin-bottom: 15px;
}
.bg-section .section-title h3::before {
    background: #172c45;
}
/*.section-title h3::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 16px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    background: #bef1de;*/
/*    border-radius: 50%;*/
/*    width: 6px;*/
/*    height: 6px;*/
/*}*/
.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2em;
    /* letter-spacing: -0.02em; */
    margin-bottom: 0;
    /* cursor: none; */
    font-family: "Playfair Display", serif;
}
.section-title h2 span{
    color: #6156d8;
}
.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 28px;
}
/*  */

/**/
.our-technologies{
    padding: 90px 0 60px;
    background-color: #000000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url(../img/bg/abstract.webp);
    background-position: center;
    background-size: cover;
    color: #ffffff;
    background-attachment: fixed;
    margin-bottom: 30px;
}
.our-technologies .base-template__content{
    margin-top:45px;
}
.our-technologies .base-template__wrapper {
	/*max-width: 100dvw;*/
	padding-bottom: 50px;
}
.our-technologies h3{
    font-family: "Playfair Display", serif;
    font-size: 38px;
    margin-bottom: 5px;
    text-align: center;
    color:#fff;
}
.our-technologies h3 span{
    color: #6156d8;
}
.our-technologies p{
    text-align: center;
    font-size: 18px;
}
/**
 * Slider Instance
 */

.our-technologies .swiper {
	width: 100%;
}

.our-technologies .swiper-wrapper {
	transition-timing-function: linear !important;
}

.our-technologies .swiper-slide {
	height: auto !important;
}

.our-technologies .horizontal-ticker {
	/*margin: 0 -20px;*/
	display: flex;
	flex-direction: column;
	row-gap: 2.50vw;
}

/*@media screen and (max-width: 767.9px) {*/
/*	.our-technologies .horizontal-ticker {*/
/*		row-gap: 15px;*/
/*	}*/
/*}*/

/**
 * Slider Slides
 */

.our-technologies .horizontal-ticker__slide {
	position: relative;
	width: 10vw;
	aspect-ratio: 300 / 205;
	border-radius: 10px;
	overflow: hidden;
	backdrop-filter: blur(50px);
}

/*@media screen and (max-width: 767.9px) {*/
/*	.our-technologies .horizontal-ticker__slide {*/
/*		width: 150px;*/
/*	}*/
/*}*/

.our-technologies .horizontal-ticker__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.6s ease-out;
}

.our-technologies .horizontal-ticker__slide img:last-child {
	position: absolute;
	inset: 0;
	/*opacity: 0;*/
}

/*@media (hover: hover) and (pointer: fine) {*/
/*	.our-technologies .horizontal-ticker__slide:hover img:last-child {*/
/*		opacity: 1;*/
/*	}*/
/*}*/

/**/