/*
    font-family: 'Montserrat', sans-serif;
    font-family: 'Nunito Sans', sans-serif;
*/

@import url('font-awesome.css');
@import url('flaticon.css');
@import url('animate.css');
@import url('owl.css');
@import url('jquery-ui.css');
@import url('jquery.fancybox.min.css');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
/***

====================================================================
    Reset
====================================================================

***/

/**/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/***

====================================================================
    Global Settings
====================================================================

 ***/

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #777777;
    line-height: 1.7em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #0060ff;
    /* transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: inline-block;*/
}

button,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.6em;
    font-family: 'Anton', sans-serif;
}

p {
    position: relative;
    line-height: 1.8em;
    font-size: 15px;
    font-family: 'Poppins';
    color: rgb(10 7 7);
    margin-bottom: 20px;
}


/* Typography */

h1 {
    font-size: 72px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: inline-block;
}

.text-warning {
    /* color: #ed8b00!important; */
    color: #71BF43 !important;
}

input,
input.form-control:focus,
input[type=text]:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 0px 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 7px;
    border: 1px solid #a3a3a3;
    margin: 0;
    display: inline-block;
    outline: none;
    border-radius: 0;
}

.form-control {
    width: 100%;
    padding: 7px;
    border: 1px solid #a3a3a3;
    margin: 0;
    display: inline-block;
    outline: none;
    border-radius: 0;
}

::placeholder {
    opacity: 0.7;
    font-size: 15px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.block {
    display: block;
}

.m-b-30 {
    margin-bottom: 30px;
}

.pad-80 {
    padding: 80px 0px;
}

.pad-50 {
    padding: 50px 0px;
}

.pad-80-20 {
    padding: 80px 0px 20px;
}

.pad-20 {
    padding: 20px 0px;
}

.pad-80-50 {
    padding: 80px 0px 50px;
}

.pad-100 {
    padding: 100px 0px;
}

.bg-1 {
    background: #f7f7f7;
}

.centered {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.box-shadow-1 {
    -webkit-box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
    box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
}

.bg-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: linear-gradient(184deg, #d1223e, #a2636d) !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.overlay {
    position: relative;
    z-index: 0;
}

/*.overlay:before {
    position: absolute;
    content: "";
    background: rgba(0,0,0,1);
    -moz-background:rgba(0,0,0,1);
    -webkit-background: rgba(0,0,0,1);
    -ms-background: rgba(0,0,0,1);
    -o-background: rgba(0,0,0,1);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .5;
    top: 0;
}
*/
.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover;
}

.bg-overlay::after {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.bg-fixed {
    background-attachment: fixed !important;
}

/*Animation*/

@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes movebounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

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


@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fly {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateX(600px);
        transform: translateX(600px);
    }

    50% {
        top: 10px;
    }
}


/*==================Section Title Css===============*/

.section-title {
    position: relative;
    margin-bottom: 35px;
    color: #262261;
    font-family: "Roboto", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
}

.section-title span {
    color: #faaa3a;
}

/*==================Button Css===============*/
.theme-btn {
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
    line-height: normal;
}

.btn-style-one {
    display: inline-block;
    font-size: 15px;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: capitalize;
    background: -webkit-linear-gradient(to right, #1d4c42, #181716);
    background: linear-gradient(to right, #1d4c42, #181716);
}

.btn-style-one:hover {
    color: #000;
    transition: 500ms ease-out;
}

/***

====================================================================
    Top-Bar Css
====================================================================

***/
.header-top {
    background: #101010;
}

.header-top img {
    height: 150px;
    object-fit: fill;
}

/***

====================================================================
    Header Css
====================================================================

***/
.header {
    /*box-shadow: 0px 0px 5px rgb(136 133 133 / 80%);*/
    /*position: fixed;*/
    /*width: 100%;
    z-index: 99999;
    top: 0;*/


    width: 100%;
    z-index: 999;
    position: sticky;
    top: -1px;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.main-nav .site-navigation {
    padding: 0px;
}

.main-nav .site-navigation .navbar-brand {
    padding: 0;
}

.main-nav .site-navigation .navbar-brand img {
    height: 65px;
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    line-height: 75px;
    padding: 5px;
}

.main-nav .site-navigation .site-menu .nav-item {
    margin-right: 25px;
    position: relative;
}

.main-nav .site-navigation .site-menu .menu-link {
    position: relative;
    display: block;
    color: #000;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.main-nav .site-navigation .site-menu .menu-link:hover {
    color: rgb(216 135 38);
}

.main-nav .site-navigation .site-menu .menu-link.active {
    color: #e78c19;
}

.main-nav .site-navigation .outer-box .btn-box {
    display: flex;
    align-items: center;
}

.main-nav .site-navigation .outer-box .btn-box .nav-user {
    width: 38px;
    height: 38px;
    background: #10958714;
    text-align: center;
    display: inline-block;
    line-height: 38px;
    border-radius: 50px;
    box-shadow: 0px 0px 3px 0px rgb(98 195 184);
    margin-right: 30px;
    font-size: 22px;
    font-weight: 600;
    padding-left: 3px;
    color: #056839;
}

.main-nav .site-navigation .outer-box .btn-box .theme-btn {
    min-width: 80px;
    text-transform: uppercase;
    font-size: 15px;
}

.main-nav .site-navigation .close-menu-wrap {
    display: none;
}

.main-nav .site-navigation .site-menu .has-children span {
    font-size: 10px;
    margin-left: 4px;
    color: #fff;
}

/*Mobile Menu*/
.mobile-menu-trigger {
    cursor: pointer;
    margin-left: 30px;
    display: none;
    background: transparent;
    border: none;
}

.mobile-menu-trigger span {
    height: 2px;
    display: block;
    width: 25px;
    margin-bottom: 7px;
    background-color: #d5a300;
}

.mobile-menu-trigger span:last-child {
    margin-bottom: 0;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #282462;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow-x: hidden;
    -webkit-transition: .4s;
    transition: .4s;
}

.mobile-menu-container li {
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
    transform: translateX(100px);
    -webkit-transition: 1s;
    transition: 1s;
    border-top: 1px solid rgb(255 255 255 / 8%);
}

.mobile-menu-container li:nth-last-child(1) {
    border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.mobile-menu-container li>a .slicknav_arrow:after {
    content: "\f067";
    position: absolute;
    font-family: 'FontAwesome';
    top: 0;
    bottom: 0;
    color: white;
    z-index: 999;
    margin: 0 auto;
    text-align: center;
    right: 0;
    left: 0;
    font-size: 16px;
    line-height: 50px;
}

.mobile-menu-container.menu-open li.slicknav_open>a .slicknav_arrow:after {
    content: "\f068";
}

.mobile-menu-container.menu-open {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu-container.menu-open li {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}

.mobile-menu-close::before {
    left: 15px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    right: 13px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    position: absolute;
    height: 30px;
    width: 2px;
    background: #ffffff;
    content: '';
    top: 0;
}

#mobile-menu-wrap {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    padding: 150px 20px 20px 20px;
}

#mobile-menu-wrap div {
    background-color: transparent;
}

#mobile-menu-wrap .slicknav_item i {
    display: none;
}

/*Sidebar Start*/
.slicknav_nav,
.slicknav_nav.slicknav_hidden {
    display: block !important;
}

.slicknav_btn {
    display: none !important;
}

.slicknav_menu {
    padding-left: 0;
}

.slicknav_item.slicknav_row a {
    border-bottom: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
    padding: 10px 0px;
    margin: 0;
}

.slicknav_nav .slicknav_arrow {
    font-size: 0;
    background: rgb(255 255 255 / 8%);
    height: 100%;
    width: 50px;
    display: inline-block;
    position: absolute;
    top: 0;
}

.slicknav_nav ul {
    margin: 0 0 0 0px;
}

.slicknav_nav .menu-item-has-children ul {
    margin-bottom: 00px;
}

.slicknav_nav .menu-item-has-children ul li {
    padding-left: 25px;
}

.sub-menu .menu-item-has-children a i {
    position: absolute;
    right: 20px;
    top: 20px;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
    border-radius: 0;
}

.slicknav_item.slicknav_row {
    display: inline-block;
    width: 100%;
    position: relative;
}

.slicknav_arrow {
    -webkit-transition: .3s;
    transition: .3s;
    right: 0;
    top: 17px;
    position: absolute;
}

.slicknav_nav a,
.slicknav_row a {
    color: #ffffff;
    font-size: 16px;
    display: inline-block;
}

/* Mobile Menu CSS End*/


/*-========Sub Menu/Dropdown=========*/
.site-navigation .site-menu .nav-item.has-children {
    position: relative;
}

.site-navigation .site-menu .nav-item.has-children .dropdown {
    position: absolute;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    z-index: 9999;
    box-shadow: 0 0px 6px 3px rgba(0, 0, 0, 0.05);
    text-align: left;
    margin-top: 10px;
    transition: all .5s ease;
    visibility: hidden;
    opacity: 0;
    top: 68px;
    border-top: 2px solid #007e01;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .dropdown {
    min-width: 300px;
}

.site-navigation .site-menu .has-children .dropdown .dropdown {
    left: 200px;
    top: 3px;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .nav-item {
    display: block;
    position: relative;
    padding: 5px 20px;
    border-bottom: 1px solid #ebefef;
    width: 100%;
}

.nav-item.has-children .dropdown .nav-item a {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 10px;
    color: rgb(203 114 0);
    display: block;
    line-height: normal;
    text-transform: capitalize;
    transition: all .5s ease;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .nav-item:last-child {
    border-bottom: 0;
}

.nav-item.has-children .dropdown .nav-item a:hover {
    color: rgb(5 103 57);
    margin-left: 5px;
}

.site-navigation .site-menu .has-children:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transition: all .5s ease;
    margin-top: -4px;
}

/*Common Css*/
.p-40 {
    padding: 40px 0px;
}

.pb-30 {
    padding-bottom: 30px;
}

.p-70 {
    padding: 70px 0px;
}

.pb-70 {
    padding-bottom: 70px;
}

.p-100 {
    padding: 100px 0px;
}

.pb-100 {
    padding-bottom: 100px;
}

.relative {
    position: relative;
}

.bg-shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    top: 80px;
    left: 10px;
    width: 10%;
    -webkit-animation: rotation 50s infinite linear;
    animation: rotation 50s infinite linear;
    opacity: 0.4;
}

.shape-2 {
    top: 380px;
    right: 0px;
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 3s infinite alternate;
    opacity: 0.4;
}

.shape-3 {
    top: 448px;
    left: 30px;
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 3s infinite alternate;
    opacity: 0.4;
}

.shape-4 {
    top: 125px;
    left: 110px;
    opacity: 0.5;
    -webkit-animation: rotation 25s infinite linear;
    animation: rotation 25s infinite linear;
}

.shape-5 {
    top: 490px;
    right: 39%;
    opacity: 0.4;
    -webkit-animation: fly 25s infinite linear;
    animation: fly 25s infinite linear;
}

.shape-5 img {
    width: 60px;
}

/***

====================================================================
    Home Banner Css
====================================================================

***/

.hero-slider-item {
    width: 100%;
    height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.hero-slider-item .d-table {
    width: 100%;
    height: 100%;
}

.hero-slider-item .d-table-cell {
    vertical-align: middle;
}


.hero-slider-content .welcome-text {
    display: inline-block;
    padding: 10px;
    background: red;
    color: red !important;
    z-index: 1;
}

.animated.fadeInUp.welcome-text {
    color: #fff;
    font-size: 20px;
    border: 2px solid #b5aeae;
    padding: 5px 15px;
    border-radius: 10px;
    line-height: normal;
    font-weight: 600;
    font-family: monospace;
    margin-bottom: 30px;
    display: inline-block;
}

.hero-slide-content h1 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: normal;
    text-align: center;
    letter-spacing: 3px;
}

.hero-slider-area .owl-carousel {
    z-index: 1;

}

.hero-slider-area .owl-nav div {
    z-index: 9 !important;

}

.hero-slider-area .owl-nav div {
    position: absolute;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    line-height: 51px;
}

.hero-slider-area .owl-nav .owl-prev {
    top: 47%;
    left: 30px;
}

.hero-slider-area .owl-nav div span {
    color: #ffffff;
    font-size: 15px;
    padding: 20px;
    /* background-color: rgb(97, 206, 112); */
    background-color: rgba(41, 99, 157, 0.6);
}

.hero-slider-area .owl-nav div span:hover {
    /* background-color: #345739; */
    background-color: rgb(41, 99, 157);
}

.hero-slider-area .owl-nav .owl-next {
    top: 47%;
    right: 30px;
}


/***

====================================================================
    Home Text Box  Css
====================================================================

***/
.box-area {
    margin-top: -60px;
}

.single-box {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    background-position:
        center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 18px;
    font-family: 'Poppins';
    border-top: 5px solid #98cf99;
    border-radius: 5px;
}

.nth-01 {
    z-index: 2;
}

.single-box:nth-child(odd) {
    background: #216344;
}

.single-box.bg-2 {
    background: #007e01 !important;
}

.single-box:nth-child(3) {
    background: #216344;
}

.single-box h2 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.single-box p {
    color: #e6e1e1;
    margin-bottom: -6px;
    font-size: 15px;
}

/*About Us*/
.about-title span {
    font-size: 15px;
    color: #ec8d00;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 15px;
}

.about-title h2 {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-title h2 span {
    font-size: 35px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-title h3 {
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-title h3 span {
    font-size: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.text-1 {
    font-size: 15px;
    font-family: 'Poppins';
    color: rgb(10 7 7);
    text-align: justify;
    margin-bottom: 20px;
}


/*Project*/
.single-project {
    position: relative;
    display: block;
}

.equal-height {
    height: 217px;
    width: 100%;
    overflow: hidden;
}

.equal-height img {
    height: 100%;
    overflow: hidden;
    transition: 500ms ease-out;
}

.img-hover-layout {
    position: absolute;
    opacity: 0;
    transition: all .3s;
    background: #eee;
    z-index: 999;
}

.single-project:hover .img-hover-layout {
    opacity: 1;
}

.img-hover-layout.overleft {
    height: 100%;
    top: 0;
    left: 0;
    width: 0;
    margin-top: 0;
    background: #343a4075;
}

.overlay-text {
    position: absolute;
    color: #ffff !important;
    font-size: 21px;
    font-weight: 600;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.single-project:hover .img-hover-layout.overleft {
    width: 100%;
    margin-top: 0;
}

.single-project:hover img {
    transform: scale(2);
    overflow: hidden;
    transition: 500ms ease-out;
}

/***

====================================================================
    Top University Css
====================================================================

***/
.client-item {
    transition: all .5s ease-out;
}

.client-item a {
    overflow: hidden;
}

.client-section .owl-dots {
    display: none;
}

.client-item img {
    object-fit: scale-down;
    transition: 500ms ease-in-out;
    height: 120px;
}

.client-item:hover img {
    transform: scale(1.2);

}


/***

====================================================================
   Page Title Css
====================================================================

***/
.page-title-area {
    padding: 190px 0px 120px;
    text-align: center;
    color: #fff;
}

.page-title-area .page-title-content h2 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.page-title-area .page-title-content li {
    display: inline-block;
    color: #ff7777;
    position: relative;
    font-size: 15px;
    font-weight: 800;
}

.page-title-area .page-title-content li a {
    color: #ffff;
}

.page-title-area .page-title-content li a i {
    font-size: 13px;
    display: inline-block;
    margin: 0px 5px;
}

/***

====================================================================
    Blog Details Page
====================================================================

***/

.blog-bg {
    background: #eff0f7;
    padding: 20px;
    border-radius: 3px;
    position: relative;
}

.blog-details-sec.blog-bg .article-content h2 {
    font-weight: 600;
    color: #216344;
    width: 100%;
    font-size: 26px;
    font-family: 'Nunito Sans'
}

.blog-details-sec.blog-bg .article-content .text-1 {
    border-left: 3px solid #2163445c;
    margin-left: 37px;
    padding-left: 11px;
    margin-top: 10px;
}

.widget-title {
    position: relative;
    height: 30px;
    font-size: 18px;
    color: #007e01;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    font-family: 'Nunito Sans';
    border-bottom: 1px solid #00000057;
}

.widget-title:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #0009;
    margin: 0;
}

.blog-widget ul {
    width: 100%;
    margin-top: 25px;
}

.blog-widget-area ul li {
    display: block;
    padding: 10px 0px;
    border-bottom: 1px solid #80808040;
    line-height: normal;
}

.blog-widget ul li a {
    font-size: 17px;
    font-family: 'Nunito Sans';
    font-weight: 600;
    display: inline-block;
    width: 100%;
    color: #216344de;
    transition: 500ms ease-out;
}

.blog-widget ul li a:hover {
    color: red;
    margin-left: 10px;
}

.list-of-university-area .universities-list ul {
    column-count: 3;
}

.list-of-university-area .universities-list li {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #216344ed;
    padding: 10px 0px;
    border: 1px solid gray;
    border-bottom: none;
    text-align: center;
}

.universities-list {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

/*.list-of-university-area .universities-list li:last-child {
    border-bottom: 1px solid gray;
}*/
/***

====================================================================
    Contact Us Page
====================================================================

***/
.contact-section-title {
    position: relative;
    margin-bottom: 19px;
    color: #262261;
    font-family: "Roboto", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
}

.contact-section-title span {
    color: #faaa3a;
}

.contact-widget {
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0px 2px 4px 2px #ddd;
    padding: 10px;
    min-height: 120px;
}

.contact-widget h4 {
    font-size: 17px;
    color: #0c2c23;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0px;
}

.contact-widget span a {
    position: relative;
    line-height: 1.8em;
    font-size: 15px;
    font-family: 'Poppins';
    color: rgb(10 7 7);
    margin-bottom: 20px;
}

.contact-widget span a:hover {
    color: #216344;
}

/***

====================================================================
    Footer Section
====================================================================

***/
.main-footer {
    /* background: -webkit-radial-gradient(circle farthest-corner at center center, #1f1e1e 0%, #131E3C 100%);
    background: radial-gradient(circle farthest-corner at center center, #1f1e1e 0%, #131E3C 100%);*/
    position: relative;
    padding: 70px 0px 0px;
    background: #000;
}

.widget-section {
    position: relative;
    padding-bottom: 40px;
}

.footer-widget .about-widget img {
    width: 35%;
    margin-bottom: 25px;
}

.footer-widget p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8em;
    margin-bottom: 25px;
}

.footer-widget .title {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 14px;
    margin-bottom: 35px;
    letter-spacing: 2px;
    color: #fff;
}

.footer-widget .title span {
    color: #f8a53b;
}

.footer-widget ul li {
    position: relative;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-widget ul li a {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Poppins';
}

address {
    font-family: 'Poppins';
}

.footer-widget .contact-info-widget ul li a {
    padding-left: 16px;
}

.footer-widget .contact-info-widget ul li .icon {
    color: #f8a53b;
    font-size: 16px;
    font-weight: 600;
}

.footer-widget .social-link-widget a {
    display: inline-block;
    margin-right: 20px;
    color: #ffffff;
    text-align: center;
}

.footer-widget .social-link-widget a i {
    line-height: 35px;
    font-size: 17px;
}

.footer-bottom-area {
    /*background: -webkit-radial-gradient(circle farthest-corner at center center, #0c0c0c 0%, #0b1329 100%);
    background: radial-gradient(circle farthest-corner at center center, #0c0c0c 0%, #0b1329 100%);*/
    padding: 14px 0 6px;
    border-top: 1px solid #fff;
    background: #000;
}

/*Photo Gallery*/
.m-p-g__thumbs-img {
    margin: 0;
    float: left;
    vertical-align: bottom;
    cursor: pointer;
    z-index: 1;
    position: relative;
    opacity: 0;
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
    -webkit-tap-highlight-color: transparent;
    will-change: opacity, transform;
    -webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
    transition: all .5s cubic-bezier(.23, 1, .32, 1);
}

.m-p-g__thumbs-img.active {
    z-index: 50;
}

.m-p-g__thumbs-img.layout-completed {
    opacity: 1;
}

.m-p-g__thumbs-img.hide {
    opacity: 0;
}

.m-p-g__thumbs-img:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}

.m-p-g__fullscreen {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: 0 0;
    visibility: hidden;
    -webkit-transition: background .25s ease-out, visibility 10ms .5s linear;
    transition: background .25s ease-out, visibility 10ms .5s linear;
    will-change: background, visibility;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.m-p-g__fullscreen.active {
    -webkit-transition: background .25s ease-out, visibility .01s 0s linear;
    transition: background .25s ease-out, visibility .01s 0s linear;
    visibility: visible;
    background: rgba(0, 0, 0, .95);
}

.m-p-g__fullscreen-img {
    pointer-events: none;
    position: absolute;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    top: 50%;
    left: 50%;
    max-height: 100vh;
    max-width: 100%;
    visibility: hidden;
    will-change: visibility;
    -webkit-transition: opacity .5s ease-out;
    transition: opacity .5s ease-out;
}

.m-p-g__fullscreen-img.active {
    visibility: visible;
    opacity: 1 !important;
    -webkit-transition: -webkit-transform .5s cubic-bezier(.23, 1, .32, 1), opacity .5s ease-out;
    transition: transform .5s cubic-bezier(.23, 1, .32, 1), opacity .5s ease-out;
}

.m-p-g__fullscreen-img.almost-active {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

.m-p-g__controls {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    height: 20vh;
    background: -webkit-linear-gradient(bottom, transparent 0, rgba(0, 0, 0, .55) 100%);
    background: linear-gradient(to top, transparent 0, rgba(0, 0, 0, .55) 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s cubic-bezier(.23, 1, .32, 1);
    transition: all .5s cubic-bezier(.23, 1, .32, 1);
}

.m-p-g__controls-arrow,
.m-p-g__controls-close {
    position: absolute;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.m-p-g__controls.active {
    opacity: 1;
    visibility: visible;
}

.m-p-g__controls-arrow,
.m-p-g__controls-close {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: 0 0;
}

.m-p-g__controls-arrow:focus,
.m-p-g__controls-close:focus {
    outline: 0;
}

.m-p-g__controls-arrow {
    z-index: 1;
    top: 0;
    width: 20%;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
}

.m-p-g__controls-arrow:hover {
    opacity: 1;
}

.m-p-g__controls-arrow--prev {
    left: 0;
    padding-left: 3vw;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.m-p-g__controls-arrow--next {
    right: 0;
    padding-right: 3vw;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.m-p-g__controls-close {
    top: 3vh;
    left: 3vw;
    z-index: 5;
}

.m-p-g__btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.m-p-g__btn:hover {
    background: rgba(255, 255, 255, .15);
}

.m-p-g__alertBox {
    position: fixed;
    z-index: 999;
    max-width: 700px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .23), 0 10px 40px rgba(0, 0, 0, .19);
    color: grey;
}

.m-p-g__alertBox h2 {
    color: red;
}

.gallery-section {
    padding: 20px 0px 80px;
    position: relative;
    z-index: 1;
}

/*team section css*/
.team-img {
    box-shadow: 0px 0px 10px 4px #ddd;
}

.team-img h5 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.team-img span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/*Company CSS*/
/*ol li {
  list-style-type: upper-roman;
}*/

/*Service CSS*/

.service-section .service-block {
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 2px -2px 7px 3px #ddd;
    min-height: 300px;
}

.service-section .service-block .inner-box {
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    /* height: 300px; */
    min-height: 300px;
    border-radius: 15px;
}

.service-section .service-block .inner-box img {
    height: 350px;
}

.service-section .service-block .inner-box .icon-box {
    color: #000000;
    font-size: 60px;
    line-height: 1em;
}

.service-section .service-block h4 {
    font-weight: 600;
    line-height: 1.3em;
    margin-top: 22px;
    margin-bottom: 18px;
    font-size: 16px;
}

.service-section .service-block h4 a {
    color: #777777;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 30px;
    text-transform: uppercase;
}

.service-section .service-block .inner-text {
    color: #555555;
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 500;
    z-index: 1;
    margin-bottom: 0;
}

/* project section */


.project-section .project-block {
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 2px -2px 7px 3px #ddd;
    min-height: 300px;
}

.project-section .project-block .inner-box {
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    /* height: 300px; */
    border-radius: 15px;
}

.project-section .project-block .inner-box .icon-box {
    color: #000000;
    font-size: 60px;
    line-height: 1em;
}

.project-section .project-block h4 {
    font-weight: 600;
    line-height: 1.3em;
    margin-top: 22px;
    margin-bottom: 18px;
    font-size: 16px;
}

.project-section .project-block h4 a {
    color: #777777;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 30px;
    text-transform: uppercase;
}

.project-section .project-block .inner-text {
    color: #555555;
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 500;
    z-index: 1;
    margin-bottom: 0;
}

.project-page .project {
    transition: 0.3s ease-in-out;
}

.project-page .project:hover {
    transform: scale(1.05) translateY(-10px);
}

.owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 15px;
}

.owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0 !important;
    text-align: center;
}

.owl-dot span {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: none;
    background: #fff;
    border-radius: 100%;
    -webkit-transition: .3s;
    transition: .3s;
    border: 1px solid #98acc5c7;
}

.owl-dot.active span {
    background: #e78c19;
    border: #e78c19;
}

.blog-content {
    padding: 20px;
    width: 90%;
    margin: auto;
    text-align: center;
    margin-top: -60px;
    background: #fff;
    position: relative;
}

.box-shadow {
    border-color: transparent;
    box-shadow: 0 16px 20px 0px rgb(0 0 0 / 15%);
    transition: all 0.5s ease-in-out;
}

.counterup {
    border-right: 1px solid #959494;
}

.border-none {
    border-right: none;
}

/*.roots:after{
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.8;
    background: #ddd;
}*/

/*Testimonial Section*/
.testimonial-section .box-shadow {
    border-color: transparent;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
    transition: all 0.5s ease-in-out;
}

.testimonial-slide-item {
    border-radius: 10px;
}

.testimonial-section .owl-carousel .owl-item .testimonial-top img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
}

.testimonial-section .testimonial-top h4 {
    margin: 20px 0px 0px 10px;
    text-align: center;
    text-transform: uppercase;
}

.testimonial-section .owl-carousel {
    z-index: 1;

}

.testimonial-section .owl-nav div {
    z-index: 9 !important;

}

.testimonial-section .owl-nav div {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    line-height: 51px;
}

.testimonial-section .owl-nav .owl-prev {
    top: 47%;
    left: -40px;
    border: 2px solid #ddd;
}

.testimonial-section .owl-nav div:hover {
    border-color: #fff !important;
    background-color: transparent;
}

.testimonial-section .owl-nav div span {
    color: #ffffff;
    font-size: 15px;
}

.testimonial-section .owl-nav .owl-next {
    top: 47%;
    right: -40px;
    border: 2px solid #ddd;
}


@media (min-width: 1200px) {
    #toboxPoint {
        bottom: 25%;
        height: 90px;
        right: 0;
        width: 150px;
    }
}

@media (min-width: 992px) {
    #toboxPoint {
        bottom: 25%;
        height: 90px;
        right: 0;
        width: 150px;
    }
}

#toboxPoint {
    overflow: hidden;
    position: fixed;
    z-index: 9999;
    /* border: 2px solid #f4263e !important; */
    /* background-color: #1d2532; */
    background-color: rgba(220, 220, 220, 0.6);
    padding-top: 10px;
}

.button-wrap-box {
    position: relative;
    cursor: pointer;
    top: 0px;
    pointer-events: initial;
}

.icon-wrap-box {
    height: 70px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.button-icon-box {
    color: #f41a3e;
    text-align: center;
    line-height: 0.25rem;
    font-size: 15px;
}

.side-whatsapp-buttons {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 25px;
    bottom: 90px;
}

.side-mail-buttons {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 25px;
    bottom: 30px;
}

.service img {
    width: 100%;
    height: 180px;
}

.service-page .service {
    transition: 0.3s ease-in-out;
}

.service-page .service:hover {
    transform: scale(1.05) translateY(-10px);
}

.single-service img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.our-services img {
    width: 100%;
    height: 180px;
}

.our-services {
    transition: 0.3s ease-in-out;
}

.our-services:hover {
    transform: scale(1.05) translateY(-10px);
}


/* ******************************* todo: New CSS ********************************* */

.hero-slide-content .title {
    padding: 20px;
    /* background-color: rgb(75, 124, 92); */
    background-color: rgb(41, 99, 157);
    border-radius: 10px;
}

.hero-slide-content .title:hover {
    background-color: rgb(41, 99, 157, 0.8);
}

/* todo: Top Bar */

.top-bar {
    /* background-color: #EAF1E9; */
    background-color: rgb(41, 99, 157, 0.2);
    padding: 10px 0;
}

.top-bar .contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.top-bar .contact-info a {
    color: #252223;
    font-size: 16px;
}

.top-bar .contact-info a i {
    /* color: #389753; */
    color: rgb(41, 99, 157);
    font-size: 16px;
}

.top-bar .social-links li {
    /* background-color: #218B3F; */
    background-color: #29639D;
    margin: 0 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.top-bar .social-links li:hover {
    background-color: #000000;
}

.top-bar .social-links li a i {
    color: white;
    font-size: 14px;
}

.schedule-a-call-now {
    /* background-color: #218B3F; */
    background-color: #29639D;
    padding: 10px 15px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    transform-origin: center;
    display: inline-block;
    /* transform: scale(1.0); */
}

.schedule-a-call-now:hover {
    /* background-color: #1a6f31; */
    background-color: rgb(41, 99, 157);
    /* animation: zoom-in-out 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) infinite; */
    animation: zoom-in-out 0.8s ease-in infinite;
}

.company-profile {
    /* background-color: #218B3F; */
    background-color: #f45053;
    padding: 10px 15px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    transform-origin: center;
    display: inline-block;
    /* transform: scale(1.0); */
    margin-right: 20px;
}

.company-profile:hover {
    /* background-color: #1a6f31; */
    background-color: #e12327;
    /* animation: zoom-in-out 0.6s cubic-bezier(0.075, 0.82, 0.165, 1) infinite; */
    /* animation: zoom-in-out 0.8s ease-in infinite; */
}

@keyframes zoom-in-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.navbar .company-profile a {
    color: white;
    font-size: 16px;
}

.navbar .schedule-a-call-now a {
    color: white;
    font-size: 16px;
}

/* todo: About Us */

.about-us-section {
    padding: 80px 0;
    margin-bottom: 50px;
}

.about-us-section .about-us .absolute-image {
    position: relative;
}

.about-us-section .about-us .absolute-image .above {
    width: 100%;
    height: auto;
}

.about-us-section .about-us .absolute-image .above img {
    border-radius: 30px;
}

@media (min-width: 995px) {
    .about-us-section .about-us .absolute-image .below {
        width: 100%;
        height: auto;
        position: absolute;
        left: -100px;
        bottom: -130px;
        z-index: 400;
    }
}

@media (min-width: 500px) and (max-width: 991px) {
    .about-us-section .about-us .absolute-image .below {
        width: 100%;
        height: auto;
        position: absolute;
        left: 20px;
        bottom: -120px;
        z-index: 400;
    }
}

@media (min-width: 300px) and (max-width: 600px) {
    .about-us-section .about-us .absolute-image .below {
        width: 100%;
        height: auto;
        position: relative;
    }
}

.about-us-section .about-us .absolute-image .below img {
    border-radius: 30px;
    box-shadow: 10px 9px 10px 0 rgb(0 0 0 / .5);
}

/* todo: Portfolio */

.nav.nav-tabs {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.nav.nav-tabs .nav-link {
    border: none;
    outline: none;
    width: 32%;
    background-color: #F1F2F3;
    color: black;
    /* margin-right: 20px; */
    font-size: 18px;
    padding: 15px 0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 500px) {
    .nav.nav-tabs .nav-link {
        border: none;
        outline: none;
        width: 48%;
        background-color: #F1F2F3;
        color: black;
        /* margin-right: 20px; */
        font-size: 16px;
        padding: 10px 0;
        border-radius: 15px;
        margin-bottom: 15px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }
}

.nav.nav-tabs .nav-link.active {
    background-color: #29639D;
    color: white;
}

.nav.nav-tabs .nav-link:last-child {
    margin-right: 0;
}

.portfolio-content img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}


/* todo: Header */

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        align-items: center;
        justify-content: end;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
        align-items: center;
    }
}

@media(min-width: 992px) {
    .main-nav .site-navigation .site-menu .nav-item {
        margin-right: 25px;
        position: relative;
        height: 80%;
        display: flex;
        align-items: center;
    }
}

.main-nav .site-navigation .site-menu .nav-item:hover{
    border-top: 5px solid #29639d;
    border-bottom: 5px solid #29639d;
}

.main-nav .site-navigation .site-menu .nav-item.active{
    border-top: 5px solid #29639d;
    border-bottom: 5px solid #29639d;
}

/* todo: Let's Get Started */

.let-get-started-section{
    /* background-color: #29639D; */
    background-color: #518dc9;
    padding: 60px 0;
    /* border-radius: 20px; */
    color: white;
}

.let-get-started .title{
    font-size: 45px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    line-height: 1.4em;
    margin-bottom: 50px;
    text-shadow: 0 10px 2px rgb(0 0 0 / .3);
}

.let-get-started img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    object-position: center center;
    box-shadow: 0 0 10px 13px rgb(0 0 0 / .5);
}

.let-get-started .left-side .item{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255);
}

.let-get-started .left-side .item:last-child{
    border-bottom: 1px solid rgba(255, 255, 255);
}

.let-get-started .left-side .item .icon{
    font-size: 26px;
    /* margin-right: 20px; */
}

.let-get-started .left-side .item .text{
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6em;
}
