/* ----------------- Contents ----------------------
01. Font family
02. Root
03. Focus
04. Basic style
05. Typography
06. Buttons
07. Backgrounds
08. Header
09. Footer
10. Home
------------------------------------------------- */

/* ----------------- Font family --------------------- */
@font-face {
    font-family: 'red-hat-display';
    src: url('../fonts/RedHatDisplay-Regular.ttf');
}



/* ----------------- Root --------------------- */
:root {
    --primary-color: #a70000;
    --secondary-color: #3a4046;
    --font-white: #ffffff;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-grey: #494949;
    --color-primary: #07A7FF;
    --primary-light-one: #4A99D31A;
    --primary-light-two: #EDF5FB;
    --fs-xsmall: 12px;
    --fs-small: 14px;
    --fs-normal: 16px;
    --fs-medium: 18px;
    --fs-20: 20px;
    --font-red-hat-display: 'red-hat-display';
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
}

/* ------------------- Focus --------------------- */
.form-control:focus {
    box-shadow: none;
}

/* ----------------- Basic style -------------------- */
body {
    font-family: var(--font-red-hat-display) !important;
    overflow-x: hidden;
}

/* html {
    scrollbar-color: var(--primary-color) #ddd;
    scrollbar-width: thin
} */

/* body::-webkit-scrollbar {
    height: 6px;
    width: 6px
} */

/* body::-webkit-scrollbar-track {
    background-color: #ddd;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px
} */

.logo {
    width: auto;
    height: 80px !important;
}

.section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.fs-20 {
    font-size: var(--fs-20);
}


/* -------------------- Typography ------------------ */
h3 {
    font-size: 34px;
    font-weight: var(--fw-600);
    font-family: var(--font-inter);
}

.fw-500 {
    font-weight: var(--fw-500);
}

.fw-600 {
    font-weight: var(--fw-600);
}

.fw-700 {
    font-weight: var(--fw-700);
}

h4 {
    font-size: 30px;
    font-weight: var(--fw-700);
}

h5 {
    font-size: 24px;
    font-weight: var(--fw-600);
    font-family: var(--font-inter);
}

h6 {
    font-size: 18px;
    font-weight: var(--fw-600);
    font-family: var(--font-inter);
}

@media (max-width: 1200px) {
    h4 {
        font-size: 20px !important;
    }
}

@media (max-width: 768px) {
    h3 {
        font-size: 28px !important;
    }

    h4 {
        font-size: 24px !important;
    }
}

/* ----------------------- Buttons ---------------------- */
.btn-main {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #ffffff;
    border-radius: 0px;
    box-shadow: 0px 4px 10px 0px #00000040;
    position: relative;
    padding: 15px 32px;
    text-decoration: none;
}

.btn-main:hover {
    transition: all 0.5s ease-in;
    background-color: #a70000;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .btn-main {
        font-size: 14px;
    }

}

/* --------------------header----------------------- */

.header.scrolled {
    position: fixed;
    background-color: var(--color-white);
    box-shadow: 0px 4px 10px 0px #00000040;
    left: 0px;
    width: 100%;
    z-index: 1000;
    right: 0px;
    top: 0px;
    animation: slideDown 0.7s ease-out;
    box-shadow: 0px 0px 7px 3px rgba(0, 0, 0, 0.1);
}

.header {
    width: 100%;
    position: relative;
    top: 0;
    background: transparent;
    box-shadow: 0px 0px 7px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background-color: #ffbd80 !important;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.header .nav-link {
    padding: 25px 10px;
    border-radius: 15px;
    margin-right: 7px;
    color: var(--secondary-color);
    font-weight: var(--fw-600);
    position: relative;
    font-size: 16px;
}

.header .nav-link:hover,
.header .nav-item.active .nav-link {
    color: var(--primary-color);
    transition: all 0.5s ease-in;

}

.header .navbar-toggler-icon {
    background: none;
    width: unset;
    height: unset;
}

.header .navbar-toggler {
    border: none;
}

.header .navbar-toggler:focus {
    box-shadow: none;
}

.btn-close {
    color: var(--color-black);
}

.btn-close:focus {
    box-shadow: none;
}

@media (max-width: 992px) {
    .header .nav-link {
        padding: 10px !important;
    }

    .header {
        padding: 10px 0px;
    }
}

.dropdown-menu li.active .dropdown-item {
    color: var(--primary-color);
    background-color: transparent;
}

.dropdown-menu li .dropdown-item:focus {
    color: var(--primary-color);
    background-color: transparent;
}

/* -----------------------------------Banner Section--------------------- */
.sub-title-box h6 {
    margin-bottom: 0px;
    margin-left: 8px;
}

.sub-title-box img {
    width: auto !important;
}

.sub-title-box {
    /* background-image: url('../images/shape/sub-title.png');
    background-repeat: no-repeat;
    background-position: left center;
    padding: 20px 0px 4px 30px; */
    display: flex;
    align-items: center;
}

.sub-title-box::after,
.sub-title-box::before {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.sub-title-box:after {
    clear: both;
}

.sub-title-box .sub-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.ban-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--color-black);
    position: relative;
}

.ban-title .bg-shape {
    position: relative;
}

.ban-title .bg-shape::after {
    position: absolute;
    background-color: #ff6666;
    border-radius: 50%;
    right: -20px;
    padding: 4px;
    top: -10px;
    width: 3rem;
    height: 3rem;
    z-index: -1;
    content: '';
}

.banner-left-content {
    padding: 95px 60px 100px 60px;
}

@media (min-width: 1600px) {

    .banner-left-content {
        padding: 95px 100px 100px 100px;
    }

    .ban-title {
        font-size: 65px;
    }
}

@media (min-width: 1200px) {
    .ban-title {
        font-size: 35px;
    }
}

@media (max-width: 1200px) {
    .banner-left-content {
        padding: 50px 60px 50px 60px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .ban-title .bg-shape {
        font-size: 24px;
    }

    .banner-left-content p {
        font-size: 15px;
    }

    .banner-carousel .owl-dots {
        bottom: 5% !important;
        left: 12% !important;
    }
}

.banner-carousel img {
    height: 100%;
    object-fit: cover;
}

.banner-carousel .owl-dots {
    left: 8%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 15%;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .banner-carousel .owl-dots {
        bottom: 10%;
    }

    .resource-section .single-resource h4 {
        font-size: 16px !important;
    }

    .how-work-section .single-work h3 {
        font-size: 24px;
    }

    .why-choose-section .single-card .content h3 {
        font-size: 24px !important;
    }
}

@media (max-width: 992px) {
    .banner-carousel .owl-dots {
        left: 50%;
        bottom: 2%;
    }

    .banner-carousel .row .content {
        order: 2;
    }

    .banner-carousel .row .image {
        order: 1;
    }

    .banner-left-content {
        padding: 50px 60px 100px 60px;
    }
}

.banner-carousel .owl-dots button.active span {
    background: var(--primary-color) !important;
}

.banner-carousel .owl-dots button span {
    width: 18px;
    height: 10px;
    margin: 5px 4px;
    background: #d9d9d9;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.banner-carousel .image {
    background: #fff2e6;
}

/* ---------------------------Footer----------------------------- */
.footer {
    background-color: #ffbd80 !important;
    position: relative;
    z-index: 1;
}

.footer .top-footer {
    padding: 80px 0 50px;
}

.footer .shape-img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url('../images/bg/footer-bg.png');
    z-index: -1;
}

.footer .logo {
    width: auto;
    height: 90px;
}

.footer .footer-title {
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer .footer-list li {
    position: relative;
    margin-bottom: 10px;
}

.footer .footer-list li a {
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    padding: 8px 0px 15px 15px;
}

.footer .footer-list li a:hover {
    color: var(--primary-color);
}

.footer .footer-list li::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 13px;
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .footer .footer-list li::after {
        left: -4px;
    }
}

.footer .contact-links li {
    margin-bottom: 10px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer .contact-links li .icon {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 25px !important;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 500ms ease;
    margin: 8px 0;
    margin-right: 15px;
    font-size: 18px;
}

.footer .contact-links li:hover .icon,
.footer .bottom-footer .social-links li a:hover {
    background: var(--primary-color);
}

.footer .contact-links li:hover a {
    color: var(--primary-color);
}

.footer .contact-links li a {
    text-decoration: none;
    color: var(--color-white);

}

.footer .bottom-footer .social-links {
    position: relative;
    margin-bottom: 0px;
    float: right;
}

@media (max-width: 992px) {
    .footer .bottom-footer .social-links {
        float: left;
        padding-left: 0px;
        margin-top: 10px;
    }
}

.footer .bottom-footer .social-links li {
    position: relative;
    margin-right: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

.footer .bottom-footer .social-links li a {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 14px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 500ms ease;
    margin: 8px 0;
    margin-right: 15px;
}

.footer .bottom-footer {
    padding: 10px 0px;
    border-top: 1px solid #a70000;
}

.footer .bottom-footer p {
    color: var(--color-white);
    margin-bottom: 0px;
}

.footer .bottom-footer p a {
    text-decoration: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
}


/* ------------------------------About section-------------------- */

.about-section .nav-pills .nav-link.active,
.about-section .nav-pills .show>.nav-link {
    background-color: transparent;
    color: var(--primary-color);
}

.about-section .nav-pills .nav-link.active::before,
.about-section .nav-pills .show>.nav-link::before {
    width: 70%;
}

.about-section .nav-pills .nav-link {
    color: var(--color-black);
    position: relative;
}

.about-section .nav-pills .nav-link::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    transition: all 500ms ease;
    background: var(--primary-color);
}

/* -------------------------How it Work Section ----------------------- */
.how-work-section .single-work .shape {
    background-image: url('../images/shape/shape-4.png');
}

.how-work-section .single-work .overlay-shape {
    background-image: url('../images/shape/shape-05.png');
}

.how-work-section .single-work .shape {
    position: absolute;
    left: -16px;
    top: -27px;
    width: 194px;
    height: 138px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    transition: all 500ms ease;
}

.how-work-section .single-work .overlay-shape {
    position: absolute;
    left: 0px;
    top: -10px;
    width: 161px;
    height: 105px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(0, 0);
    transition: all 500ms ease;
}

.how-work-section .single-work {
    position: relative;
    display: block;
    padding-right: 80px;
}

.how-work-section .single-work .arrow {
    position: absolute;
    top: -30px;
    left: 185px;
    width: 197px;
    height: 42px;
    background-repeat: no-repeat;
}

.how-work-section .single-work.first .arrow {
    background-image: url('../images/shape/arrow-1.png');
}

.how-work-section .single-work.second .arrow {
    background-image: url('../images/shape/arrow-2.png');
    top: 70px;
}

.how-work-section .single-work .icon-box {
    position: relative;
    display: inline-block;
    width: 161px;
    height: 105px;
    line-height: 105px;
    font-size: 64px;
    text-align: center;
    margin-bottom: 51px;
    transition: all 500ms ease;
    color: var(--primary-color);
}

.how-work-section .single-work:hover .icon-box {
    color: var(--primary-color);
}


.how-work-section .single-work .icon-box span {
    position: absolute;
    top: -36px;
    right: -2px;
    width: 43px;
    height: 34px;
    line-height: 34px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    background: var(--secondary-color);
}

.how-work-section .single-work .icon-box span:before {
    position: absolute;
    content: '';
    background: url('../images/shape/decor-1.png');
    width: 10px;
    height: 9px;
    left: 14px;
    bottom: -8px;
    background-repeat: no-repeat;
}

.how-work-section .single-work:hover .icon-box .shape {
    opacity: 0;
}

.how-work-section .single-work:hover .icon-box .overlay-shape {
    transform: scale(1, 1);
}

@media (max-width: 991px) {
    .how-work-section .single-work .arrow {
        display: none;
    }

    .how-work-section .single-work {
        padding: 0px;
        text-align: center;
        margin-bottom: 70px;
    }
}

.how-work-section {
    position: relative;
}

/* ----------------values-section-------------------------- */
.values-section {
    background: url('../images/bg/values-bg.png');
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
}

.values-section .single-value {
    position: relative;
    padding: 40px 55px 50px;
    margin-bottom: 30px;
}

.values-section .single-value .shape {
    position: absolute;
    top: -17px;
    left: 0px;
    right: 0;
    bottom: -17px;
}

.values-section .single-value .shape svg {
    width: 100%;
    height: 100%;
}

.values-section .single-value .icon {
    position: relative;
    font-size: 50px;
    line-height: 50px;
    top: -15px;
    color: var(--primary-color);
    transition: .5s;
}

.values-section .single-value h4 {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    transition: .5s;
}

.values-section .single-value p {
    position: relative;
    font-size: 13px;
    transition: .5s;
}

@media (max-width: 768px) {
    .values-section .single-value p {
        width: 80%
    }

    .values-section .single-value {
        width: 90%;
    }
}

.values-section .single-value:hover .shape svg path {
    fill: var(--primary-color);
}

.values-section .single-value:hover .icon,
.values-section .single-value:hover h4,
.values-section .single-value:hover p {
    color: #fff;
}

.values-section .single-value .shape svg path {
    transition: .5s;
}

/* -------------------------Resource Section----------------------- */
.resource-section .single-resource {
    position: relative;
    margin-bottom: 55px;
    margin-left: 30px;
    padding: 40px 20px;
    padding-left: 105px;
    box-shadow: 0px 10px 21.25px 3.75px rgba(0, 0, 0, 0.06);
}

.resource-section .single-resource:before {
    border-bottom: 1px solid var(--primary-color);
    position: absolute;
    content: '';
    left: 0;
    top: 1px;
    right: 0;
    bottom: 0;
}

.resource-section .single-resource .icon {
    color: var(--primary-color);
    position: absolute;
    width: 98px;
    height: 100%;
    top: 0;
    left: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: .7s;
}

.resource-section .single-resource .icon img {
    position: relative;
}

.resource-section .single-resource:hover .icon img {
    filter: brightness(0) invert(1);
}

.resource-section .single-resource h4 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 17px;
}

.resource-section .single-resource .text {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #555555;
    margin: 0px 0px 15px;
}

.resource-section .single-resource .link-btn a {
    position: relative;
    font-size: 20px;
    color: #000;
    text-decoration: none;
}

.resource-section .single-resource .link-btn a span {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    margin-left: 15px;
    opacity: 0;
    transition: .5s;
    transform: translateX(20px);
    display: inline-block;
    vertical-align: middle;
}

.resource-section .single-resource .link-btn a i:before {
    padding-right: 6px;
    border-right: 3px solid #222;
    transition: .5s;
    color: #000;
    top: 3px;
    position: relative;
}

.resource-section .single-resource:hover .icon:before {
    background-color: var(--primary-color);
    max-height: 100%;
}

.resource-section .single-resource .icon:before {
    position: absolute;
    content: '';
    width: 98px;
    height: 100%;
    max-height: 165px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: .7s;
    background-color: #f4f4f4;
}

.resource-section .single-resource:hover .link-btn a span {
    transform: translateX(0);
    opacity: 1;
}

/* ------------------------------ why-choose-section---------------------------- */
.why-choose-section {

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.why-choose-section .section-title h3,
.why-choose-section .section-title h6 {
    color: var(--color-black);
}

.why-choose-section .single-card .icon {
    position: relative;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 23px 23px 23px 23px;
    justify-content: center;
    background-color: #a70000;
    border-radius: 27px 27px 27px 27px;
    width: 100%;
    display: flex;
    max-width: max-content;
    margin: 0 auto;
}

.why-choose-section .single-card:hover .icon img {
    animation: foldAnimation linear .3s;
}

@keyframes foldAnimation {
    0% {
        transform: rotateY(0);
    }

    50% {
        transform: rotateY(90deg);
    }

    100% {
        transform: rotateY(0);
    }

}

.why-choose-section .single-card .content {
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #000;
    margin: 32px 0px 17px 0px;
    padding: 26px 0px 0px 0px;
    text-align: center;
    color: var(--color-white);
}

.why-choose-section .single-card .content h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

/* -------------------------contact-section---------------------- */
.contact-section {
    background-image: url('../images/bg/contact-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* -------------------------Testimonial Section------------------------ */
.testimonial-section {
    background-color: #f4f4f4;
}

.testimonial-section .single-testimonial {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-section .single-testimonial .content .rating {
    color: var(--primary-color);
}

.testimonial-section .single-testimonial .content {
    position: relative;
    box-shadow: 0px 10px 21.25px 3.75px rgba(0, 0, 0, 0.06);
    padding: 45px 30px 50px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 43px;
    border-top: 2px solid var(--primary-color);
}

.testimonial-section .single-testimonial .content .shape {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
}

.testimonial-section .single-testimonial .author {
    position: relative;
    text-align: center;
}

.testimonial-section .single-testimonial .author .thumb {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-section .single-testimonial .author .thumb img {
    border-radius: 50%;
    width: auto;
    margin: 0 auto;
}

/* ------------------------------------Back to Top-------------------------- */
#button {
    background: var(--primary-color);
    padding: 10px 15px;
    color: var(--color-white);
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9;
}

#button:hover,
#button:focus {
    background: var(--secondary-color);
}

/* -------------------------specializations-section----------------------------------- */
.specializations-section {
    background-color: #f4f4f4;
}

.specializations-section .specializations-list {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;

    list-style: none;
    counter-reset: stepnr;
}

li:nth-child(6n + 1) {
    --accent-color: #ee3432;
}

li:nth-child(6n + 2) {
    --accent-color: var(--primary-color);
}

li:nth-child(6n + 3) {
    --accent-color: var(--secondary-color);
}

ol li {
    counter-increment: stepnr;
    width: 18rem;
    --borderS: 2rem;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: calc(var(--borderS) + 2rem);
    position: relative;
}

ol li::before,
ol li::after {
    inset: 0;
    position: absolute;
    border-radius: 50%;
    border: var(--borderS) solid rgba(245, 245, 245);
    line-height: 1.1;
}

ol li::before {
    content: counter(stepnr);
    color: var(--accent-color);
    padding-left: 10rem;
    font-size: 10rem;
    font-weight: 700;
    overflow: hidden;
}


ol li::after {
    content: "";
    filter: drop-shadow(-0.25rem 0.25rem 0.0675rem rgba(0, 0, 0, 0.75)) blur(5px);
}

ol li>* {
    width: 7.5rem
}

ol li .icon {
    font-size: 2rem;
    color: var(--accent-color);
    text-align: center
}

ol li .title {
    font-size: 30px;
    font-weight: 500
}

ol li .descr {
    font-size: 0.8rem;
    font-weight: 300
}


/* sakthi */


/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.news-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.news-two__img-box {
    position: relative;
    display: block;
}

.news-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.news-two__img>img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-two__single:hover .news-two__img img {
    transform: scale(1.05);
}

.news-two__img>a {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--fobex-black-rgb), 0.3);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
}

.news-two__img>a>span {
    position: relative;
}

.news-two__img>a>span::before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--fobex-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.news-two__img>a>span::after {
    content: "";
    transition: all 500ms ease;
    width: 2px;
    height: 20px;
    background-color: var(--fobex-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-two__img>a:hover>span::before,
.news-two__img>a:hover>span::after {
    background-color: var(--fobex-base);
}

.news-two__single:hover .news-two__img>a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.news-two__content {
    position: relative;
    display: block;
    background-color: #fff2e6;
    padding: 30px 30px 31px;
}

.news-two__tag-list {
    position: relative;
    display: flex;
    align-items: center;
}

.news-two__tag-list li {
    position: relative;
    display: block;
}

.news-two__tag-list li+li {
    margin-left: 10px;
}

.news-two__tag-list li span {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    border-radius: 3px;
    border: 1px solid #CED7D1;
    background: #FFF;
    padding: 4px 15px 4px;
    color: var(--fobex-black);
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-two__tag-list li span:hover {
    background-color: var(--fobex-base);
    color: var(--fobex-white);
}

.news-two__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 21px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.news-two__title a {
    color: var(--fobex-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-two__title a:hover {
    color: var(--fobex-base);
}

.news-two__reading {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--fobex-gray);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-two__reading:hover {
    color: var(--fobex-base);
}

.news-two__reading span {
    position: relative;
    margin-left: 10px;
    top: -1px;
}

.news-two__date {
    color: #15332A;
    margin-top: 14px;
}

.news-two__date span {
    color: var(--fobex-gray);
}

.small-text {
    color: #a70000 !important;
}

.btn-primary {
    background-color: #a70000 !important;
    border: 1px solid #a70000;
    border-radius: 50px;
}

.image-wht-we-do {
    border-radius: 30px !important;
}

.bg-light-custom {
    background-color: #fff2e6;
}

.article-img {
    height: 450px;
    width: autoh6;
}

.btn-danger {
    background-color: #a70000;
    border: 1px solid #a70000;
}

@media screen and (min-width: 1600px) {
    p {
        font-size: 22px !important;
    }
    .about-section .nav-pills .nav-link{
        font-size: 22px !important;
    }
    .footer .footer-list li a{
        font-size: 22px !important;
    }
    .footer .contact-links li a{
        font-size: 22px !important;
    }
}