* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f43334;
    --faq:#c12e2f;
    --gray: #999999;
    --black-900: #191919;
    --black-800: #202020;
    --yellow: #eb9500;
    --white: #ffffff;
}

a {
    display: inline-block;
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Jost';
    background-color: var(--black-800);
}

input,
button,
textarea {
    font-family: 'jost';
}

.container {
    max-width: 1320px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

ul,
ol {
    list-style: none;
}
.col-1{padding:15px; width: 8.3333%;}
.col-2{padding:15px; width: 16.6666%;}
.col-3{padding:15px; width: 25%;}
.col-4{padding:15px; width: 33.3333%;}
.col-5{padding:15px; width: 41.6666%;}
.col-6{padding:15px; width: 50%;}
.col-7{padding:15px; width: 5.3333%;}
.col-8{padding:15px; width: 66.6666%;}
.col-9{padding:15px; width: 75%;}
.col-10{ padding: 15px; width: 83.3333%;}
.col-11{ padding: 15px; width: 91.6666%;}
.col-12{ padding: 15px; width: 100%;}

.text-red{
    color: var(--primary);
}
.text-white {
    color: var(--white);
}
.text-center{
    text-align: center;
}
.text-gray {
    color: var(--gray);
}
.font-16{
    font-size: 16px;
}
.font-14{
    font-size: 14px;
}
.font-18{
    font-size: 18px;
}
.font-20{
    font-size: 20px;
}
.font-40{
    font-size: 40px;
}
.padding-100{
    padding: 100px 0;
}
.py-20{
    padding: 20px 0;
}
.pb-0{
    padding-bottom: 0;
}
.mx-auto{
    margin: 0 auto;
}
/* header  */

header .menu{
    color: var(--white);
    font-size: 18px;
}

header {
    padding: 15px;
    position: absolute;
    width: 100%;
    z-index: 9999;
}

header nav ul li a {
    color: var(--white);
    text-transform: capitalize;
    font-size: 18px;
    display:block;
    padding: 15px;
    border-bottom: 1px solid var(--primary);
}

header nav ul li a i {
    padding-left: 8px;
}
.fixed{
    position:fixed;
    background-color: var(--black-900);
    padding-bottom: 30px;
}

.active {
    color: var(--primary);
    position: relative;
}

.active::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    top: -19px;
    left: 50%;
    transform: rotate(45deg) translatex(-50%);
    background-color:transparent;
}

header .dropdown {
    position: absolute;
    background-color: var(--faq);
    top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
header .dropdown li a{
    padding: 15px 0;
}
header nav ul li:hover .dropdown {
    visibility: visible;
    opacity: 1;
}
.contact-btn{
    display: none;
}

.contact-btn button {
    background-color: var(--primary);
    padding: 15px 30px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.5s;
    border: none;
}

.contact-btn button:hover {
    background-color: var(--white);
    color: var(--primary);
}
header nav{
    position: absolute;
    top: 80px;
    width: 100%;
    transform: scaley(0);
    transform-origin: top;
    left: 0;
    transition: all 0.5s;
}

header nav ul{
    flex-direction: column;
    background-color: var(--black-800);
}
header nav.navtoggle{
    transform: scaley(1);
}
/* banner section  */
.banner-section {
    background: linear-gradient(343deg , #202020 36%, #4a2424 100%);
    padding-top: 200px;
}

.banner-content h2 {
    font-size: 28px;
}

.banner-content h1 {
    font-size: 42px;
    padding: 20px 0;
}

.banner-content p {
    font-size: 20px;
    padding-bottom: 20px;
}

.banner-content .banner-btn {
    background-color: var(--primary);
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: white;
    transition: all 0.5s;
    border-radius: 5px;
}

.banner-content .banner-btn:hover {
    background-color: var(--yellow);
    transform: translatey(-5px);
}
.banner-icon{
    padding-top: 40px;
}
.banner-icon i{
    padding-right: 20px;
}
.banner-content .banner-btn-2 {
    color: var(--white);
    background-color: transparent;
    margin-left: 12px;
    border: 2px solid var(--white);
}

/* banner services section  */

.banner-services-box label{
    background-color: var(--black-900);
    color: var(--yellow);
    display: inline-block;
    padding: 5px 18px;
    font-weight: 600;
}
.banner-services-box  p{
    padding: 25px 0;
}
.border-right{
    border-right: 1px dashed var(--gray);
}

/* trused company section  */

.trusted-company h3{
    padding-top: 80px;
    padding-bottom: 40px;
}
.trusted-company img{
    filter : brightness(0) invert(1) ;
}
/* services section  */
.right-bg {
    background:url(../images/about-us-section-right-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    padding: 100px 0;
}

.service-box {
    background-color: var(--black-900);
}

.common-hover-box {
    border-radius: 5px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.service-box .icon-box {
    width: 80px;
    height: 80px;
    font-size: 50px;
    text-align: center;
    background-color: var(--black-800);
    border-radius: 5px;
}

.service-box a {
    color: var(--gray);
}

.service-box p {
    padding: 20px 0;
}

.service-box h3 {
    padding-top: 10px;
}
.common-hover-box{
    cursor: pointer;
}
.common-hover-box:hover {
    border-bottom: 3px solid var(--primary);
}
.common-hover-box::after {
    position: absolute;
    content: "";
    background-color: transparent;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    opacity: 0.9;
}
.common-hover-box:hover::after {
    box-shadow: 0px 0px 150px 50px var(--primary);
}
.common-hover-box:hover .icon-box{
    background-color: var(--primary);
    color: var(--white);
}
.common-hover-box:hover h3{
    color: var(--white);
}
.commom-btn{
    padding: 10px 40px;
    background-color: transparent;
    border: 1px solid var(--gray);
    font-weight: 600;
}
/* about section  */
.about p{
    padding: 20px 0;
}

/* offer section  */

.offer{
    background:url(../images/about-section2-left-img\ \(1\).png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    padding: 100px 0;
}
.ui-accordion-header{
    background-color: var(--black-900);
    padding: 20px;
    border-radius: 20px;
    margin:20px 0;
    cursor: pointer;
}
.ui-accordion-content{
    font-size: 16px;
    padding: 20px;
}
.ui-accordion-header-active{
    background-color:var(--faq);
    color: var(--white);
}
/* pricing section  */
.pricing .service-box h2{
    padding: 25px 0;
}
.pricing .service-box ul li {
    padding: 10px 0;
}
.pricing .service-box button{
    padding: 15px 30px;
    background-color: transparent;
    border: 1px solid var(--gray);
    border-radius: 5px;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
}
.common-hover-box:hover button{
    border-color: transparent;
    background-color: var(--primary);
}
.team-box .img-box{
    border-radius: 15px;
    overflow: hidden;
}
.team .team-box .img-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.5s;
}
.team .team-box .img-box:hover img{
    filter: grayscale(0);
    transform: scale(1.1);
}
.team-box{
    color: var(--gray);
}
.team-box h3{
    font-size: 24px;
    padding-top: 20px;
}
.team-box h6{
    font-size: 16px;
    font-weight: normal;
}

.team-box p{
    padding:  30px;
}
.team-box .icon i{
    width: 30px;
    background-color: var(--black-900);
    color: var(--white);
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
}
.team-box:hover h3{
    color: var(--white);
}
.team-box:hover h6{
    color: var(--primary);
}
.team-box:hover .icon i{
    background-color: var(--primary);
}

/* blog section css */
.blog-box{
    background-color: var(--black-900);
    padding: 25px;
    border-radius: 15px;
    color: var(--gray);
}
.blog-box img{
    width: 100%;
}
.blog-box h3{
    padding: 30px 0;
    font-size: 20px;
    font-weight: 600;
}
.blog-box .blog-img-box{
    overflow: hidden;
    border-radius: 15px;
}
.blog-box img{
    transition:  all 0.5s;
}
.blog-box:hover img{
    transform: scale(1.1);
}
.blog-box:hover h3{
    color: var(--white);
}
.blog-box p{
    padding-bottom: 20px;
}
.news{
    background: linear-gradient(343deg , #191919 56%, #4a2424 100%);
    padding: 80px;
    border-radius: 10px;
}
.news .input-box{
    background-color: var(--white);
    width: 50%;
    padding: 5px;
    border-radius: 10px;
    margin:20px auto;
    display: flex;
    justify-content: space-between;
}
.news input{
    outline: none;
    border: none;
    width: 70%;
    font-size: 18px;
    padding: 15px;
}
.news button{
    padding: 15px 30px;
    background-color: var(--primary);
    border: none;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
   text-align: left;
}

.setting-box{
    background-color: var(--white);
    position: fixed;
    z-index: 99;
    top: 42%;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 5px 0px 0px 5px;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
}
.setting-box i{
    line-height: 50px;
    animation: setting 1s ease-in-out  infinite  ;
}
@keyframes setting {
    100%{
        transform: rotate(360deg)
    }
}
.theme-box{
    width: 150px;
    background-color: var(--white);
    position: fixed;
    z-index: 99;
    top:calc(42% + 65px);
    right: 0;
    display: flex;
    justify-content: space-between;
    border-radius: 5px 0px 0px 5px;
    height: 50px;
    align-items: center;
    padding: 15px;
    right: -15%;
    transition: all 0.5s;
}
.square{
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 5px;
}
.show{
    right: 0;
}
.red{
    background-color: #f43334;
}
.green{
    background-color: #66f433;
}
.blue{
    background-color: #3633f4;
}
/* footer  */
footer{
    background: linear-gradient(150deg , #19191900 80%, #4a2424 100% ) , url(../images/about-section2-left-img\ \(1\).png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
}

footer .footer-logo .icons i{
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
    background-color: var(--black-900);
    color: var(--gray);
}
footer .footer-logo p{
    color: var(--gray);
    padding: 30px 0;
}
.footer-info h2{
    color: var(--gray);
    padding: 25px 0 ;
    font-weight: 600;
}
.footer-info li a{
    color: var(--gray);
    padding: 5px 0;
}
.footer-info li a:hover{
    color: var(--primary);
}
.footer-info li a i{
    color: var(--primary);
}
.footer-info li span{
    color: var(--primary);
    font-weight: 900;
}
.copyright{
    border-top: 1px solid var(--gray);
    text-align: center;
    padding: 25px;
    margin-top: 100px;
    color: var(--gray);
}
.green-theme .news ,.green-theme .banner-section {
    background: linear-gradient(343deg , #191919 56%, #66f4339a 100%);
}

.green-theme footer{
    background: linear-gradient(150deg , #19191900 80%, #66f4339a 100% ) , url(../images/about-section2-left-img\ \(1\).png);
    background-repeat: no-repeat;
}

.blue-theme .news ,.blue-theme .banner-section {
    background: linear-gradient(343deg , #191919 56%, #3633f49a 100%);
}

.blue-theme footer{
    background: linear-gradient(150deg , #19191900 80%, #3633f49a 100% ) , url(../images/about-section2-left-img\ \(1\).png);
    background-repeat: no-repeat;
}
