@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-color: #FFB805;
    --trans-1: all .3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background-color: transparent;
    border: none;
}

ul,
li,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

body {
    font-family: "Montserrat", sans-serif;
}

.mobile-sidebar {
    padding: 0 20px;
    transform: translateX(13000px);
    transition: var(--trans-1);
    display: none;

}
.mobile-sidebar .services-btn{
    padding: 10px 20px;
    margin-top:15px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    justify-content: center;
    background-color: var(--main-color);
    color: #fff;
    font-weight: 500;

}

.mobile-sidebar.active {
    transform: translate(0);
}

header .header-top {
    background-color: var(--main-color);
    color: #fff;
}

header .menu {
    display: flex;
    justify-content: flex-end;
}

header .menu i {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.header-top .hedader-top-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 50px;
}

.header-top .hedader-top-list li {
    border-right: 1px solid #fff;
    padding: 0 20px;
}

.header-top .hedader-top-list li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 27px;
    transition: var(--trans-1);
    position: relative;
}

.header-top .hedader-top-list li a:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    height: .5px;
    width: 0;
    background-color: #eee;
    transition: var(--trans-1);
}

.header-top .hedader-top-list li a:hover {
    color: #eee;
}

.header-top .hedader-top-list li a:hover:after {
    width: 100%;
}

.header-top .hedader-top-list li a img {
    width: 16px;
    height: 16px;
}

.header-top .lang {
    position: relative;
    cursor: pointer;
}
.header-top .lang li{
   padding:0 !important;
}
.header-top .lang li a{
display:block;
}

.header-top .lang ul {
    display: none;
    position: absolute;
    z-index: 1111;
    width: 73px;
    left: 8px;
    top: auto;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    text-align: center;
    padding: 5px;
}

.header-top .lang ul li {
    transition: var(--trans-1);
}

.header-top .lang ul li a {
    color: #000;
}

.header-top .lang ul li:hover {
    background-color: #eee;
cursor: pointer;
    color: #333;
}
.header-top .lang ul li:hover  a{
    color: #333;

}


.bg {
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.general-header {
    padding: 50px 0 0;
    height: 130px;
    position: absolute;
    top: 50px;
    z-index: 119;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    left: 0;
}

.general-header .header-logo {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
}

.general-header .header-logo img {
    width: 100%;
    height: 100%;
}

.general-header .search {
    position: relative;
}

.general-header .search i {
    color: #fff;
    font-size: 30px;
}

.general-header .search .search-popup {
    position: absolute;
    left: -250px;
    bottom: -70px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    z-index: 4;
    background-color: #fff;
    width: 300px;
    padding: 10px;
    display: none;

}

.general-header .search .search-popup form {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eee;

}

.general-header .search .search-popup i {
    color: #333;
    font-size: 22px;
}

.general-header .search .search-popup input {
    border: none;
    outline: none;
    border: 1px solid #eee;
    border-right: none;
    height: 45px;
    padding-left: 10px;
    font-size: 15px;
    color: #303030;
    border-radius: 5px 0 0 5px;
    width: 100%;
}

.general-header .search .search-popup button {
    height: 45px;
    margin-left: 4px;
    display: flex;

    padding: 5px 7px;
    align-items: center;
    justify-content: space-between;
}

.general-header .search .search-popup button:hover {
    background-color: #eee;
}

.general-header .header-content {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
}

.general-header nav {
    width: 100%;
}

.general-header nav ul {
    align-items: center;
    justify-content: space-evenly;
    display: flex;

}

.general-header nav ul li a {
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    font-weight: 500;
}

.general-header nav ul li a:hover {
    color: var(--main-color);
    transition: var(--trans-1);
}

.breadcrumb-general {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.breadcrumb-general .breadcrumb-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 45px;
    letter-spacing: 1px;
    color: #303030;
    margin-bottom: 15px;
}

.breadcrumb-general .breadcrumb-item {
    color: #363333;
}

.breadcrumb-general .breadcrumb-item a:hover {
    color: var(--main-color);
}

.contact-form .genral-info li {
    margin-bottom: 10px;
    position: relative;
}

.contact-form .form-title {
    text-transform: uppercase;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 30px;

}

.contact-form .form-title img {
    width: 50px;
    height: 50px;
}

.contact-form .genral-info li::after {
    position: absolute;
    content: "";
    left: -40px;
    top: 50%;
    width: 30px;
    background-color: var(--main-color);
    height: 3px;
    transform: rotate(90deg) translateY(-50%);
}

.contact-form .form-group {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form .form-group input {
    padding: 10px 16px;
    width: 100%;
    background-color: #FCFCFD;
    border: 1px solid #E6E6E6;
    outline: none;
    color: #B3B3B3;
}
.contact-form .form-group input:focus,.contact-form .form-group textarea:focus{
    border-color:var(--main-color);
    background:#fff;
}
.contact-form .form-group textarea {
    padding: 10px 16px;
    width: 100%;
    background-color: #FCFCFD;
    border: 1px solid #E6E6E6;
    outline: none;
    color: #B3B3B3;
    resize: none;
}

.contact-form .form-group label {
    font-size: 18px;
    font-style: normal;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 22px;
}

.contact-form button {
    background-color: var(--main-color);
    color: #fff;
    font-weight: 600;
    width: 100%;
    height: 50px;
    transition: var(--trans-1);
    margin-bottom: 60px;

}

.contact-form button:hover {
    opacity: .9;

}

footer {
    position: relative;
}

footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 209px;
    height: 90px;

}

footer .footer-logo img {
    width: 100%;
    height: 100%;
}

footer::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url('../images/pat-1.png');
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: bottom right;
    z-index: 1;
}

.footer-top {
    background-color: #2B2929;
    padding: 60px 0;
    color: #fff;
    z-index: 1111;
}

footer .column-title {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 24px;


}

footer .footer-column {
    z-index: 99;
    position: relative;

}

footer .footer-column li {
    margin-bottom: 10px;
    position: relative;
    width: max-content;

}

footer .footer-column li a:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    height: .5px;
    width: 0;
    background-color: var(--main-color);
    transition: var(--trans-1);
}

footer .info img {
    margin-right: 10px;
}

footer .footer-column li a:hover {
    color: var(--main-color);
}

footer .footer-column li a:hover:after {
    width: 100%;
}

footer .copyright {
    background-color: #212020;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #E1E1E1;
    color: #fff;
}

.blog-detail img {
    width: 100%;
    max-height: 500px;
}

.blog-detail .date {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
    color:
        #0E3654;
}

.blog-detail .blog-detail-title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color:
        #363333;
    ;
}

.blog-detail .blog-detail-text {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color:
        #363333;
    ;
}

.media .media-item {
    background-color: #fff;

    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.media .media-item .item-img {
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
}

.media .media-item .item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.media .media-item .content {
    padding: 16px 20px;
}

.media .media-item .content .date-time {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.4px;
}

.media .media-item .content .blog-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1.1px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EFEFEF;
}

.media .media-item .content .blog-detail {
    margin: 25px 0 10px;
    display: flex;
    align-items: center;
    color: #0E3654;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.2px;
    justify-content: space-between;
    transition: 0.3s ease;
    text-transform: capitalize;
    padding: 14px;
}

.media .media-item .content .blog-detail:hover {
   color: #FCAF1A;
}

._info-list {
    margin-top: 20px;
}

._info-list li {
    margin-bottom: 20px;
    font-size: 15px;
}

._info-list img {
    width: 20px;
    height: 20px;
}

.services {
    padding-bottom: 40px;
}

.services .single-service {
    display: flex;
    gap: 30px;
}
.services .single-service:hover {
   color:#333;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.services .single-service .img {
    width: 300px;
    height: 300px;
}

.services .single-service .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services .single-service .content {
    width: 240px;
}

.services .single-service .content .title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: capitalize;
}

.services .single-service .content ._txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
}

.section {
    padding: 40px 0;
}

.section .item-single .img {
    cursor: pointer;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    width: 100%;
    margin-bottom: 30px;
}

.section .item-single .img img {
    width: 100%;
    height: 100%;
    transition: var(--trans-1);
    border: 2px solid transparent;
}

.section .item-single .img img:hover {
    border: 2px solid var(--main-color);
}

.section .item-single .name {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    padding: 10px 20px;
    margin: 0 auto;
    max-width: max-content;
    line-height: 24px;
    transition: var(--trans-1);
}

.section .item-single:hover .name {
    background-color: var(--main-color);
    color: #fff;
    z-index: 1;
    position: relative;

}

.bg-light {
    background-color: #F8F8F8;
    background-image: url('../images/pat-1.png');
    background-size: 20%;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.about-1 {
 padding: 50px 0;
}

.about-1 .single-item {
    border: 1px solid #E8E8E8;
    padding: 30px;
    background-image: url('../images/pat-1.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right bottom;
    height: 350px;
    max-width: 370px;
    margin: 0 auto;
}

.about-1 .single-item .s-img {
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
}

.about-1 .single-item .sname {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    position: relative;
    margin-bottom: 20px;
}

.about-1 .single-item .sname:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -10px;
    height: 3px;
    background-color: var(--main-color);
    width: 30%;
}

.about-1 .single-item .s-img img {
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.about-1 .single-item ._text {
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
max-width: 200px;
    color: #1E1E1E;
}

.about-detail .row:nth-child(even) {
    flex-direction: row-reverse;
}

.about-detail img {
    width: 100%;
    max-height: 500px;
}

.about-detail .date {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
    color: #0E3654;
}

.about-detail .blog-detail-title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #363333;
}

.about-detail .blog-detail-text {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color:
        #363333;
    ;
}

.about-2 {
    margin: 80px 0;
}

.about-2 .about-2-content {
    background-color: #F8F8F8;
    height: 600px;
    display: flex;
    justify-content: space-between;
}

.about-2 .about-2-content .progress_1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 0 130px;
    background-size: 45%;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-image: url('../images/pat-1.png');
}

.about-2 .about-2-content .progress_1 .column {
    width: 45%;
    margin-bottom: 34px;
}

.about-2 .about-2-content .progress_1 .column {
    color: var(--main-color);
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;

}

.about-2 .about-2-content .progress_1 .column .txt2 {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    color: #303030;


}

.about-2 .about-2-content .progress_1 .column .txt {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #303030;
    margin-bottom: 10px;


}

.about-2 .about-2-content .progress_1 .column .icon {
    width: 70px;
    margin-bottom: 16px;
    height: 70px;
}

.about-2 .about-2-content .progress_1 .column .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-2 .number-counter-section {
    padding: 40px 0;
    width: 55%;
}

.about-2 .video {
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 45%;
}

.about-2 .video a {
    width: 50px;
    height: 50px;
    position: relative;
    transition: var(--trans-1);
}

.about-2 .video a:hover {
    transform: scale(1.05);
}

.about-2 .video a img {
    width: 50px;
    height: 50px;
    position: relative;
}

.about-2 .video a:after {
    width: 130px;
    height: 130px;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.35);
}
.title-content {
    margin-bottom: 35px;
}
.title-content .title-2 img {
    width: 50px;
    height: 50px;
}

.title-content .title-2 {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 30px;
    font-size: 24px;
 

}

.title-content .review {
    color: var(--main-color);
    font-weight: 500;
    text-decoration: underline;
}

.reviews {
    padding: 45px 0;
    background-color: rgba(248, 248, 248, 1);
}

.single-team-box {
    padding: 40px;
    text-align: center;
    background-color: #fff;
}

.single-team-box .img-quote {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.single-team-box .img-quote img {
    width: 60%;

    height: 60%;

}

.single-team-box .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.single-team-box .author {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 24px;

}

.single-team-box .text {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 24px;
}

.stars img {
    width: 15px;
}

.services.home .img {
    max-height: 300px;
    height: 300px;
}

.services.home .img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.services.home .title {
    font-size: 24px;
    text-align: center;
    margin-top: 43px;
    font-weight: 600;
    color: var(--main-color);
}

.about-section {
    overflow: hidden;
    position: relative;
}
.about-section .right{
    padding:41px 35px  !important;
    background-color: #F8F8F8;
    background-image: url('../images/pat-1.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 40%;

}
.about-section .about-section-text{
    position: absolute;
    right: 135px;
    padding: 50px;
    background-color: #fff;
    max-width: 800px;
}
.about-section .about-section-text .heading{
 font-weight: 700;
 font-size: 24px;
 line-height: 36px;
 margin-bottom: 24px;
}
.about-section .about-section-text .heading-2{
 font-weight: 400;
 font-size: 16px;
 line-height: 30px;
 margin-bottom: 24px;
 border-left: 2px solid var(--main-color);
 padding-left:17px;
}
.about-section .about-section-text .desc{
 font-weight: 400;
 font-size: 14px;
 line-height: 28px;
 margin-bottom: 24px;

}
.about-section .about-section-text .about-link{
border: 1px solid var(--main-color);
padding: 10px 15px;
color: var(--main-color);
font-weight: 500;
display: block;
transition: var(--trans-1);
max-width: 250px;
text-align: center;
}
.about-section .about-section-text .about-link:hover{
    background-color: var(--main-color);
    color: #fff;
}

.about-section .about-section-img {
    height: 600px;
}
.about-section .title-2{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 30px;
}
.about-section .title-2 img{
    width: 50px;
}
.about-section .about-section-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-section {
    position: relative;
}

.hero-section .form {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    padding: 45px 50px;
    z-index: 9;
    background-color: #fff;
    width: 450px;
    border-radius: 5px;
}
.hero-section .form .close-icon{
    display: none;
}
.form .form-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 24px;
}


.form .form-group {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.form .form-group input,.form .form-group select {
    padding: 10px 16px;
    width: 100%;
    margin-top: 10px;
    background-color: #FCFCFD;
    border: 1px solid #E6E6E6;
    outline: none;
    color: #B3B3B3;
}
.form .form-group input:focus,.form .form-group select:focus{
    border-color: var(--main-color);
}
.form button{
    color: #fff;
    text-align: center;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    background-color: var(--main-color);
    transition: var(--trans-1);
}
.form button:hover{
    opacity: .8;
}
.hero-section .swiper-slide {
    min-height: 900px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-section .swiper-slide::after {
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 100%;
    content: "";
}

.hero-section .swiper-slide.swiper-slide-active .slider-item h1,
.hero-section .swiper-slide.swiper-slide-active .slider-item p,
.hero-section .swiper-slide.swiper-slide-active .slider-item a {
    opacity: 1;
    transform: translate(0);
}

.hero-section .swiper-slide .slider-item {
    color: #fff;
    margin-left: 250px;
    max-width: 660px;
    z-index: 8;
}

.hero-section .swiper-slide .slider-item h1 {
    font-size: 36px;
    opacity: 0;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(-50px);
}

.hero-section .swiper-slide .slider-item p {
    opacity: 0;
    font-weight: 400;
    line-height: 32px;
    font-size: 16px;
    letter-spacing: 1.2px;
    transform: translateY(-70px);
    transition: transform 1200ms ease, opacity 1200ms ease;
}

.hero-section .swiper-slide .slider-item a {
    background-color: #FCAF1A;
    color: #fff;
    padding: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border-radius: 3px;
    max-width: 230px;
    transition: transform 1200ms ease, opacity 1200ms ease, color 0.2s ease, background-color 0.2s ease;
    transform: translateY(50px);
    opacity: 0;
}

.hero-section .swiper-slide .slider-item a:hover {
    opacity:.8;
}

.hero-section .swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}

.hero-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #FCAF1A;
}
.social-icons{
    display: flex;
    z-index: 9;
    position: relative;;
    align-items: center;
gap: 10px;
}
.social-icons li a{
   background-color: var(--main-color);
   color: #fff;
   border-radius: 6px;
   padding: 10px;
   display: flex;
   margin-top: 20px;
   align-items: center;
   transition: var(--trans-1);
   justify-self: start;
}
.social-icons li a:hover{
    opacity: .9;
}
   
.faq {
    padding: 60px 0;
}

.faq .accordion-item {
    border: none;
    margin-bottom: 30px;
}
.faq .accordion-header p {
    margin-bottom: 0;
}

.faq .accordion-header {
   background-color: var(--main-color);

}

.faq .accordion-button {
    color: #fff;
    background-color: transparent;
    box-shadow: none;
    text-transform: capitalize;

    font-size: 18px;
}

.faq .accordion-collapse {
    border-radius: 10px;
    margin: 10px 0;
}

.faq .accordion-item .accordion-button:after {
    background-image: url('../../assets/images/icon/arrow-light.svg');
}
.accordion-body{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.not-found{

    padding: 40px;
    text-align: center;

    font-size: 24px;
    font-weight: 500;
margin: 40px auto;
max-width: 700px;
border-radius: 5px;

}
.search-result .title{
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}
.search-result .text{
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}
.not-found-page{
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.not-found-page span{
    color: var(--main-color);
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
}   

.partners {
  padding-top: 79px;
  margin-bottom: 50px;
  background-color: #fff;
}
.partners .partner-single {
  height: 100px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #eee;
  background-color: #fff;
  justify-content: center;
}
.partners .partner-single img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
 .title-2{
        font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 30px;
}
 .title-2 img{
        width: 50px;
}
.back-to-top{
        position: fixed;
    align-items: center;
        color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    transition: .3s;
    cursor: pointer;
    background-color:var(--main-color);
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    justify-content: center;
    z-index: 999;
    transform: translateX(400px);
    box-shadow: rgba(50,50,93,.25) 0 50px 100px -20px,rgba(0,0,0,.3) 0 30px 60px -30px;
    
}
.back-to-top.show{
     transform: translateX(0);
    
}
.back-to-top:hover{
     transform: scale(1.05);
    
}