@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;1,6..12,400&family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    box-sizing: border-box;
}

/* loader start */

.loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    transform: rotate(45deg);
}

.loader::before {
    content: '';
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: -24px;
    animation: animloader 4s ease infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    animation: animloader2 2s ease infinite;
}

@keyframes animloader {
    0% {
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
    }

    12% {
        box-shadow: 0 24px white, 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
    }

    25% {
        box-shadow: 0 24px white, 24px 24px white, 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
    }

    37% {
        box-shadow: 0 24px white, 24px 24px white, 24px 48px white, 0px 48px rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 24px white, 24px 24px white, 24px 48px white, 0px 48px white;
    }

    62% {
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px white, 24px 48px white, 0px 48px white;
    }

    75% {
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px white, 0px 48px white;
    }

    87% {
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px white;
    }

    100% {
        box-shadow: 0 24px rgba(255, 255, 255, 0), 24px 24px rgba(255, 255, 255, 0), 24px 48px rgba(255, 255, 255, 0), 0px 48px rgba(255, 255, 255, 0);
    }
}

@keyframes animloader2 {
    0% {
        transform: translate(0, 0) rotateX(0) rotateY(0);
    }

    25% {
        transform: translate(100%, 0) rotateX(0) rotateY(180deg);
    }

    50% {
        transform: translate(100%, 100%) rotateX(-180deg) rotateY(180deg);
    }

    75% {
        transform: translate(0, 100%) rotateX(-180deg) rotateY(360deg);
    }

    100% {
        transform: translate(0, 0) rotateX(0) rotateY(360deg);
    }
}


/* loader end */

/*-------------header start------------ */

.header_main_div {
    width: 100%;
    height: 180px;
    position: relative;
    display: grid;
    grid-template-columns: 31.2% 1fr;
}

.social_icon_div {
    width: 608px;
    height: 50px;
    background-color: rgb(189, 56, 8);
    clip-path: polygon(0 0, 94% 0%, 98% 100%, 0 100%);
    display: grid;
    grid-template-rows: 50% 1fr;
}

.header_left_shape {
    width: 30%;
    height: 180px;
    background-color: #ff4500;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_left_shape img{
    width: 40%;
}

.outer_main_div {
    width: 102.7%;
    height: 180px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    right: 37px;
}

.header_line_div {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 100px;
    z-index: -1;
}

.header_line_div h5 {
    text-transform: capitalize;
    font-size: 17px;
}

.header_line_div a {
    text-decoration: none;
}

.header_line_div a i {
    display: flex;
    justify-content: end;
    font-size: 20px;
    color: #120303;
}

.header_line_div a i:hover {
    color: rgb(181, 36, 36);
}

.outer_address_div {
    width: 115%;
    height: 180px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #373d4c;
    gap: 20px;
    position: relative;
    left: -100px;
    z-index: -1;
    color: #fff;
    padding: 0 150px;
}

.icon_div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon_div span {
    font-size: 17px;
}

.icon_div span:hover {
    color: red;
}

.outer_address_div .icon_div svg {
    height: 35px;
}

/* -------------header End--------------- */

/* -----------------navbar Start------------------ */

#sticky_header_main_div {
    background-color: #232331;
    padding: 0;
    display: flex;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
}

.toggle_btn {
    font-size: 25px;
}

.navbar-brand {
    display: none;
}

#navbarNav {
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav .nav-item {
    padding: 0 30px;
    transition: all 0.5s;
    height: 70px;
    line-height: 70px;
}

.navbar-nav .nav-item:hover {
    background-color: #767676;
}

.navbar-nav .nav-item .nav-link {
    color: #e2e2e2;
    letter-spacing: 1px;
    padding: 0;
    font-size: 18px;
}

@media (max-width: 1440px) {
    .outer_main_div{
        width: 100%;
    }
    .social_icon_div{
        width: 454px;
    }    
    .outer_address_div{
        width: 110%;
        left: -51px;
    }

    .icon_inner_div{
        width: 150px;
    }
}

@media (max-width:1024px) {
    #sticky_header_main_div {
        padding: 10px;
    }

    .header_main_div {
        display: none;
    }

    .navbar-brand {
        display: block;
        margin-left: 10px;
        font-size: 40px;
    }

    .navbar-brand img {
        width: 40%;
    }
}

@media (max-width:992px) {
    #sticky_header_main_div {
        background-color: orangered;
        padding: 0;
        display: flex;
        justify-content: space-between;
    }

    .header_main_div {
        display: none;
    }

    .navbar-brand {
        display: block;
        margin-left: 10px;
        font-size: 40px;
    }

    .navbar-brand img {
        width: 45%;
    }

    .toggle_btn {
        margin-right: 10px;
    }

    .navbar-nav {
        gap: 10px;
        display: flex;
        justify-content: start;
        background-color: #fff;
        height: 220px;
    }

    .navbar-nav .nav-item .nav-link {
        color: #232331;
        display: flex;
        justify-content: left;
    }

    .navbar-nav .nav-item .nav-link:hover {
        color: #ca1f26;
    }

    #navbarNav {
        justify-content: left;
    }

    .navbar-nav .nav-item {
        background-color: #fff;
        height: 40px;
    }

    .navbar-nav .nav-item:hover {
        background-color: #fff;
    }
}

/* -------------------navbar End----------------*/

/*------------Carousel Start---------------- */

.carousel-inner {
    position: relative;
}

.carousel-item {
    position: relative;
    left: 0;
    top: 0;

}

.carousel-item img {
    height: 800px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
}

.carousel_overlay_contact_div {
    position: absolute;
    top: 20%;
    left: 15%;
    transform: translate(-50% -50%);
}

.carousel_overlay_contact_div h1 {
    font-size: 90px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

@media(max-width:1024px) {
    .carousel-item img {
        height: 900px;
    }

    .carousel_overlay_contact_div {
        top: 10%;
        left: 10%;
    }

    .carousel_overlay_contact_div h1 {
        font-size: 100px;

    }

}


@media (max-width:992px) {
    .carousel_overlay_contact_div {
        left: 10%;
    }

    .carousel_overlay_contact_div h1 {
        font-size: 76px;
    }

}

@media (max-width:768px) {

    .carousel_overlay_contact_div {
        top: 15px;
        left: 0;

    }

    .carousel_overlay_contact_div h1 {
        font-size: 50px;
        padding: 50px 30px;
    }
    
    .carousel_overlay_contact_div button {
        margin: 0 30px;
    }

    .carousel-item img {
        height: 700px;
    }

}

.contact_button {
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: orangered;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid orangered;
    background-color: transparent;

}

.contact_button a {
    text-decoration: none;
    color: orangered;
}

.contact_button:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 2px solid orangered;
    box-shadow: 4px 5px 17px -4px orangered;
}

.contact_button::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    /* background-color: #2c9caf; */
    background-color: #373d4c;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.contact_button:hover::before {
    width: 250%;
}

/*------------Carousel Start---------------- */

/* ------------About Cta Start-------------- */

.about_cta_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: rgb(244, 244, 244);
}

.about_cta_img {
    width: 100%;
    background-color: #232331;
}

.about_cta_img img {
    width: 100%;
    height: 100%;
}

.about_cta_content_div {
    margin: 0 30px;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.about_cta_content_div span {
    color: red;
    font-size: 20px;
}

.cta_heading {
    font-size: 50px;
    font-weight: bold;
}

.about_circle_container {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cta_circle span {
    width: 60px;
    height: 60px;
    background-color: #232331;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.cta_circle span:hover {
    background-color: #fff;
}

@media (max-width: 1024px) {
    .about_cta_container {
        grid-template-columns: 1fr;
    }

    .about_cta_content_div {
        margin-top: 50px;
        padding: 0;
    }
}

@media (max-width: 992px) {
    .about_cta_container {
        grid-template-columns: 1fr;
    }

    .about_cta_content_div {
        margin-top: 50px;
        padding: 0;
    }
}

@media (max-width:768px) {
    .cta_heading {
        font-size: 30px;
        font-weight: bold;
    }
}

/* -------------About Cta End------------------------- */


/* ----------------Cta2 Start---------------------------------*/

.cta2_container_div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #120303;
}

.cta2_img_div {
    width: 400px;
    height: 500px;
}


.home-demo .item {
    background: black;
}

.item {
    width: 100%;
}

.item span i {
    color: yellow;
}

.home-demo p {
    color: #fff;
    text-align: center;
    padding: 3rem 0;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

.cta2_review_img_div {
    display: flex;
    margin-top: 30px;
    position: relative;
    align-items: center;
}

.cta2_review_img_div img {
    border-radius: 50%;
    width: 10px;
    height: 80px;
    display: inline-block;
    border: 4px solid;
    color: #fff;
}

.cta2_author_name_div {
    color: #fff;
}

/* ----------------------Cta2 End----------------------------- */



/*------------------------- BreadCrumb Start-------------------------- */

.image_div {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.back_image {
    width: 100%;
    height: 550px;
    object-fit: fill;
}

.contact_info_div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.contact_heading {
    color: #fff;
    font-size: 50px;
}

.navlink {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.home_link {
    color: orangered;
    font-size: 18px;
    text-decoration: none;
}

.arrow_icon {
    color: #fff;
}

.icon_after_heading {
    color: #fff;
    font-weight: 300;
    font-size: 18px;
}

/*-------------------- BreadCrumb End------------------- */

/* ----------------Contact Form Start---------------------------------- */
::placeholder {
    color: #fff;
    opacity: 1;
}

.contact_container_div {
    position: relative;
    width: 100%;
    padding: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.form {
    width: 820px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-info-form {
    background-color: #D50000;
    position: relative;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #a7323254);
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px
}

.contact-info-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #D50000;
    transform: rotate(45deg);
    bottom: 66px;
    left: -13px
}

.form_main_div {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative
}

.title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem
}

.form_input_div {
    position: relative;
    margin: 1rem 0
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: 0.3s
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 4px;
    resize: none;
    overflow-y: auto;
    color: #fff;

}


.form_input_div label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s
}

.form_input_div_textarea label {
    top: 1rem;
    transform: translateY(0)
}

.submit_button {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #1abc9c;
    line-height: 1;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.submit_button:hover {
    background-color: transparent;
    color: #fff;
}

.form_input_div span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500
}

.form_input_div span:before,
.form_input_div span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #d50000;
    top: 50%;
    transform: translateY(-50%)
}

.form_input_div span:before {
    left: 50%
}

.form_input_div span:after {
    right: 50%
}

.form_input_div.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem
}

.form_input_div.focus span:before,
.form_input_div.focus span:after {
    width: 50%;
    opacity: 1
}

.contact-info {
    padding: 30px 20px;
    position: relative
}

.contact-info .title {
    color: #d50000
}

.text {
    color: #333;
    margin: 1.5rem 0 2rem 0
}

.social-information {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    margin: 20px 0;
    align-items: center;
    font-size: 0.95rem
}

.icon {
    width: 28px;
    margin-right: 0.7rem
}

.social-media {
    padding: 2rem 0 0 0
}

.social-media p {
    color: #333
}

.social-icons {
    display: flex;
    margin-top: 0.5rem
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 43px;
    background: linear-gradient(45deg, #d50000, #d50000);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s
}

.social-icons a:hover {
    transform: scale(1.05)
}

.contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #d50000;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3
}

.social-information i {
    font-size: 22px;
    margin-bottom: 23px;
    margin-right: 8px;
    color: #cf0606
}

.social-information span p{
    font-size: 16px;
    line-height: 20px;
}

.big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #d50000, #cb0b0b);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%)
}

.big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px)
}

.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2
}

@media (max-width: 850px) {
    .form {
        grid-template-columns: 1fr
    }

    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95)
    }

    .contact-info-form:before {
        top: -13px;
        left: initial;
        right: 70px
    }

    .square {
        transform: translate(140%, 43%);
        height: 350px
    }

    .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%
    }

    .text {
        margin: 1rem 0 1.5rem 0
    }

    .social-media {
        padding: 1.5rem 0 0 0
    }
}

@media (max-width: 480px) {
    .contact_container_div {
        padding: 1.5rem
    }

    .contact-info:before {
        display: none
    }

    .square,
    .big-circle {
        display: none
    }

    form,
    .contact-info {
        padding: 1.7rem 1.6rem
    }

    .text,
    .social-information,
    .social-media p {
        font-size: 0.8rem
    }
/* 
    .social-information span{
        line-height: 20px !important;
    } */

    .title {
        font-size: 1.15rem
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px
    }

    .icon {
        width: 23px
    }

    .input {
        padding: 0.45rem 1.2rem
    }

    .submit_button {
        padding: 0.45rem 1.2rem
    }
}

/*-----------------Contact Form End----------------- */

/* -------------------About Start-------------------- */

.about_main_div {
    margin: 50px 0;
}

.about_grid_div {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about_grid_col01 {
    height: 490px;
    position: relative;
}

.about_grid_col01 .img1 {
    width: 70%;
    height: 430px;
}

.about_grid_col01 .img2 {
    width: 45%;
    height: 250px;
    position: absolute;
    bottom: 0;
    right: 80px;
    border: 8px solid #fff;
}

.about_grid_col01 .img3 {
    position: absolute;
    bottom: 10px;
    left: -30px;
    z-index: -1;
}

.years_div {
    width: 200px;
    height: 150px;
    background-color: orangered;
    position: absolute;
    top: 50px;
    right: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.years_div h1 {
    color: #fff;
    font-weight: 800;
    font-size: 60px;
}

.years_div p {
    color: #fff;
    font-size: 18px;
}

.about_grid_col02 span {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about_grid_col02 h5 {
    margin-top: 7px;
}

.about_grid_col02 h1 {
    font-weight: 600;
    margin-bottom: 15px;
}

.about_grid_col02 p {
    font-size: 17px;
}

@media (max-width: 992px) {
    .about_grid_div {
        grid-template-columns: 1fr;
    }

    .about_grid_col02 {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .about_grid_col01 .img1 {
        width: 100%;
    }

    .about_grid_col01 .img2 {
        width: 80%;
        right: 0;
    }

    .years_div {
        top: 170px;
        right: 50px;
    }
}


/* --------------------About End----------------------------- */

/* -----------------------Service Start------------------- */
.service_container {
    margin: 70px 300px 100px 300px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.service_row_div {
    display: flex;
    padding: 0 10px;
    gap: 10px;
}

.service_box {
    height: 570px;
    position: relative;
}

.service_img_div{
    position: relative;
}

.service_img_div img {
    width: 100%;
    height: 260px;
}

.service_img_div::after{
    content: "";
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.476);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.service_img_div:hover::after{
    width: 100%;
    height: 100%;
}

.service_info_div {
    width: 100%;
}

.heading1 {
    margin-top: 10px;
    text-align: center;

}

.service_info_div p {
    font-size: 18px;
    text-align: justify;
    padding-right: 15px;
}

.service_info_div a {
    text-decoration: none;

}

.service_button {
    width: 30%;
    height: 50px;
    background-color: #737386;
    color: #fff;
    text-align: center;
    line-height: 50px;
    justify-content: center;
    display: inline-block;
    position: absolute;
    bottom: 10px;
    transition: all 0.5s;
}

.service_button:hover {
    color: #fff;
    background-color: #bf2d31;

}

@media (max-width: 1440px) {
    .service_container {
        margin: 70px 100px 100px 100px;
    }
}

@media (max-width:1024px) {
    .service_container {
        margin: 100px 10px;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width:992px) {
    
    .service_container {
        margin: 80px 10px;
        grid-template-columns: 1fr 1fr;
        /* gap: 0px; */
    }
}

@media (max-width:767px) {
    .service_container {
        margin: 100px 10px;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* --------------Service End----------------------- */

/* ----------------Cta2 Start---------------------------------*/

.cta2_main_div{
    margin: 80px 0;
    background-color: #f2f2f2;
    padding: 30px 0 50px 0;
}

.cta2_grid_col02 h1{
    margin: 20px 0;
    text-align: center;
}

.owl-carousel .item{
    padding: 0 10px;
}

.owl-carousel .item .cta2_img_div{
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.owl-carousel .item .cta2_img_div img{
    height: 200px;
    width: 200px;
    border-radius: 50%;
}

.owl-carousel .item .cta2_img_div .cta2_author_name_div{
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.owl-carousel .item .cta2_img_div .cta2_author_name_div h4,
.owl-carousel .item .cta2_img_div .cta2_author_name_div div
{
    color: #120303;
}

.rating_div{
    text-align: center;
    margin: 10px 0;
}

.rating_div i{
    color: gold;
}

/* / ----------------------Cta2 End----------------------------- / */

/* ---------------Footer Start------------------------------ */
.footer_main_div {
    width: 100%;
    height: auto;
    background-color: #212529;
    padding: 60px 0;
}

.footer_grid_div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid_col h2 {
    margin: 0 0 20px 0;
    color: #fff;
}

.grid_col {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.grid_col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
}

.footer_address_div ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_address_div ul li a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.footer_address_div ul li a:hover {
    color: orangered;
}

.footer_address_div ul li i {
    font-size: 20px;
    color: orangered;
}

.footer_center_div img{
    width: 40%;
    margin-bottom: 20px;
}

.footer_center_div p {
    padding: 0 30px;
}

.footer_quick_links_div ul li a {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s;
}

.footer_quick_links_div ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s;
}

.footer_quick_links_div ul li:hover a::after {
    width: 100%;
}

.footer_quick_links_div ul li:hover a {
    color: orangered;
    width: 100%;
}

@media (max-width: 992px) {
    .footer_grid_div {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer_grid_div {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ---------------Footer End------------------------------ */