@charset "UTF-8";

:root {
    --background-color-one: #fff;
    --background-color-two: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

html {
    font-size: 10px;
}

body {
    font-size: 1.4rem;
    font-family: 'Rubik','Noto Color Emoji', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 200;
    line-height: normal;
    position: relative;
}

#bg {
    background: #fff;
}

.section-title h2 {
    font-weight: 700;
}

.section-title h4 {
    color: rgb(234, 94, 11);
    font-size: 18px;
    letter-spacing: 5px;
}

.section-title p {
  
    margin: 0 auto;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: var(--background-color-one);
    top: 0;
    left: 0;
    font-size: 30px;
    vertical-align: center;
}

    .preloader .logo-wrapper {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .preloader [class="loader"] {
        display: inline-block;
        width: 1em;
        height: 1em;
        color: #004C80;
        pointer-events: none;
    }

    .preloader .loader {
        animation: loader-1 2s infinite linear;
        position: absolute;
        top: 45%;
        left: 50%;
    }

        .preloader .loader:before,
        .preloader .loader:after {
            content: "";
            width: 0;
            height: 0;
            border: 1rem solid currentcolor;
            display: block;
            position: absolute;
            border-radius: 100%;
            animation: loader-2 2s infinite ease-in-out;
        }

        .preloader .loader:before {
            top: 0;
            left: 50%;
        }

        .preloader .loader:after {
            bottom: 0;
            right: 50%;
            animation-delay: -1s;
        }
.previous {
    width: 100px;
}

.next {
    width: 100px;
}
@keyframes loader-1 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-2 {
    0%, 100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.scroll_up {
    background: #EA5E0B;
    color: #fff;
    cursor: pointer;
    display: none;
    padding: 0.8rem 0.9rem;
    position: fixed;
    z-index: 9;
    right: 3rem;
    bottom: 9rem;
    transition: all ease 0.5s;
}

    .scroll_up:hover {
        background: #EA5E0B;
        transition: all ease 0.5s;
        box-shadow: 0 0.5rem 1rem 0 rgba(255, 106, 0, 0.5) !important;
    }

    .scroll_up i {
        font-size: 2.2rem;
    }

section {
    padding: 4rem 0;
}

.blog-details-area
.template-sidebar
.sidebar-widget-area
.ag_input_area
.search-btn {
    background: #EA5E0B;
    height: 100%;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    transition: all 500ms linear;
    border: none;
}

    .blog-details-area
    .template-sidebar
    .sidebar-widget-area
    .ag_input_area
    .search-btn:hover {
        transition: all 500ms linear;
        background: #EA5E0B;
        box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
    }

.service-details-area .template-sidebar .sidebar-widget-area,
.blog-details-area .template-sidebar .sidebar-widget-area {
    padding: 1.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    margin: 0 0;
}

.ag_process-area .ag_process-item .item_icon,
.ag_counter-widget .counter-container .widget_icon,
.ag_feature-area .ag_feature-item .item_icon,
.service-item .item_icon {
    width: 12rem;
    height: 12rem;
    border-radius: 1rem;
    vertical-align: middle;
    align-items: center;
 /*   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);*/
    padding: 3.3rem 0;
    transition: all 0.5s ease-in-out;
}
    .ag_feature-area .ag_feature-item{}
    .ag_process-area .ag_process-item .item_icon i::before,
    .ag_counter-widget .counter-container .widget_icon i::before,
    .ag_feature-area .ag_feature-item .item_icon i::before,
    .service-item .item_icon i::before {
        font-family: Flaticon;
        font-size: 60px;
        font-style: normal;
        margin: 0 auto;
        color: #EA5E0B;
        transition: all 0.5s ease-in-out;
    }

    .ag_counter-widget .counter-container .widget_icon:hover i::before,
    .ag_feature-area .ag_feature-item:hover .item_icon i::before,
    .service-item:hover > .item_icon i::before {
        color: #fff;
        transition: all 0.5s ease-in-out;
    }

.ag_why-us-area .ag_why-single-box .box_icon {
    max-width: 7rem;
    max-height: 5rem;
    border-radius: 0.5rem;
    vertical-align: middle;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    transition: all 0.5s ease-in-out;
}

    .ag_why-us-area .ag_why-single-box .box_icon i::before {
        font-family: Flaticon;
        font-size: 3rem;
        font-style: normal;
        margin: 0 auto;
        color: #fff;
        transition: all 0.5s ease-in-out;
    }

:hover {
    /* transition: all 0.5s ease-in-out;*/
}

.social-media .media-link {
    background: #f5f5f5;
    border-radius: 90%;
    padding: 10px;
    margin-right: 0.5rem;
    transition: all 0.5s ease-in-out;
    width: 40px;
    height: 40px;
}

    .social-media .media-link:hover {
        box-shadow: 0 0.5rem 1rem 0 rgba(221, 221, 221, 0.9) !important;
    }

    .social-media .media-link i {
        margin: 0 !important;
    }

        .social-media .media-link i:before {
            font-size: 2rem;
            font-weight: 600;
        }

    .social-media .media-link:nth-child(1) {
        color: #3cf !important;
    }

        .social-media .media-link:nth-child(1):hover {
            color: #fff !important;
            background: #3cf;
        }

    .social-media .media-link:nth-child(2) {
        color: #3c5a99 !important;
    }

        .social-media .media-link:nth-child(2):hover {
            color: #fff !important;
            background: #3c5a99;
        }

    .social-media .media-link:nth-child(3) {
        color: #007ab9 !important;
    }

        .social-media .media-link:nth-child(3):hover {
            color: #fff !important;
            background: #007ab9;
        }

    .social-media .media-link:nth-child(4) {
        color: red !important;
    }

        .social-media .media-link:nth-child(4):hover {
            color: #fff !important;
            background: red;
        }

.element-item {
    background: 0 0;
    position: relative;
    overflow: hidden;
}

    .element-item img {
    }

    .element-item .caption {
        box-sizing: border-box;
        position: absolute;
        width: 90%;
        height: 180px;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        margin: 0 auto;
        background: #004c80d1;
        color: #fff;
        cursor: pointer;
        text-align: center;
        font-size: 1.6rem;
        border-radius: 3px 3px 0 0;
        transition: all 0.3s ease-out;
        transform: translateY(100%);
    }

        .element-item .caption h5{
            font-size: 1.6rem;
            color: #fff;
            font-weight: 600;
            margin: 15px 0 0;
        }

        .element-item .footer-mobile h5{
            font-size: 1.5rem;
            color: #fff;
            font-weight: 600;
            margin: 0 8px;
            text-align: center;
        }

        .element-item .caption p{
            color: rgba(255, 255, 255, 0.75);
            line-height: normal;
            padding: 0;
            text-align: center;
        }
        
        .element-item .footer-mobile p{
            line-height: normal;
            padding: 0;
            color: lightgray;
        }

        .element-item .caption a.btn-primary {
            border-radius: 30px;
            padding: 8px 25px;
            text-align: center;
            margin: 15px 0 0;
        }

    .element-item:hover .caption {
        transform: translateY(0);
    }

h1 {
    font-size: 6.5rem;
    font-family: rubik, sans-serif;
    color: #fff;
    font-weight: 700;
    font-style: normal;
}

h2,
h3,
h5,
h6 {
    color: #032944;
}

h2 {
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 5.2rem;
    text-transform: capitalize;
}

h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    font-style: normal;
    line-height: 33px;
}

    h3 a {
        color: #6a6971;
    }

h4 {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    margin-top: 1.5rem;
    color: #7a7a7a;
}
a:hover{
    color:#EA5E0B ;
}

h5 {
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #262339;
}

h6 {
    font-size: 1.8rem;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: normal;
}

p {
    font-size: 1.6rem;
    color: #7a7a7a;
    font-weight: 400;
    margin-top: 1.5rem;
    line-height: 2.3rem;
    word-break: break-word;
}

abbr.abr {
    text-decoration: none;
    cursor: pointer;
}

.theme-btn-tag {
    padding: 0.5rem 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 107, 0, 0.1);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.6;
    color: #EA5E0B;
    transition: all 500ms linear;
}

    .theme-btn-tag:hover {
        color: #fff;
        transition: all 500ms linear;
        background: #EA5E0B !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
    }

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%); /* Soldan başlar */
        opacity: 0;
    }

    to {
        transform: translateX(0); /* Orijinal konuma gelir */
        opacity: 1;
    }
}
.modal-bottom-left {
    animation: slideInFromLeft 0.7s ease-in-out;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 90%; 
    max-width: 900px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.modal-special{
    margin: 0; 
}

.modal.fade.show {
    display: block; 
    opacity: 1;
}

@media (min-width: 900px) {
    .modal-bottom-left {
        width: auto;
       
    }
}

.pop-btn-main {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    padding: 10px 3rem;
    border: none;
    border-radius: 4px;
    background: #EA5E0B !important;
    transition: all 500ms linear;
}
    .pop-btn-main:hover {
        color: #fff;
        transition: all 500ms linear;
        background: #e37736 !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
    }
.pop-btn-gray {
    font-size: 1.6rem;
    font-weight: 500;
    color: #525252;
    padding: 10px 3rem;
    border:none;
    border-radius: 4px;
    background: #F0F0F0 !important;
    transition: all 500ms linear;
}

    .pop-btn-gray:hover {
        font-size: 1.6rem;
        font-weight: 400;
        color: #fff;
        background: #8f8f8f !important;
        transition: all 500ms linear;
        box-shadow: 0 0.5rem 1rem 0 rgba(61 60 60 / 47%) !important;
    }
.countries-link {
    font-size: 16px;
    font-weight: 600;
    color: #032944;
}
.country-li {
    padding: 7px !important;
    border: 0 solid gray;
    border-radius: 6px;
}
    .country-li:hover {
        background: #dfdfdf !important;
        color: #EA5E0B!important;
    }
.countries-link:hover {
    color: #EA5E0B;
    
}
.theme-btn {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 3px;
    background: #EA5E0B !important;
    transition: all 500ms linear;
}

    .theme-btn:hover {
        color: #fff;
        transition: all 500ms linear;
        background: #EA5E0B !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
    }
.theme-btn-yellow {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 1px;
    background: #ffc21c !important;
    transition: all 500ms linear;
}

    .theme-btn-yellow:hover {
        color: #fff;
        transition: all 500ms linear;
        background: #ffa900 !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
    }
.theme-btn-pricing {
    font-size: 1.6rem;
    font-weight: 600;
    font-weight: 600;
    color: rgb(234, 94, 11);
    padding: 0.7rem 2.2rem;
    border-radius: 7px;
    background: #fff !important;
    box-shadow: 0 0rem 0.2rem 0 #7a7a7a !important;
    transition: all 500ms linear;
}
.theme-btn-pricing:hover {
    color: #fff;
    transition: all 500ms linear;
    background: rgb(234, 94, 11)!important;
    box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
}
.theme-btn-themeblue {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 3px;
    background: rgba(9, 66, 107, 1) !important;
    transition: all 500ms linear;
}

    .theme-btn-themeblue:hover {
        color: #fff;
        transition: all 500ms linear;
        background: rgba(46, 80, 104, 1) !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(9, 66, 107, 0.5) !important;
    }
.theme-btn-table-orrange {
    font-size: 1.6rem;
    text-align:center;
    font-weight: 400;
    color: #fff;
    min-width: 200px;
    padding: 1rem 3rem;
    border-radius: 3px;
    background: rgba(9, 66, 107, 1) !important;
    transition: all 500ms linear;
}

    .theme-btn-table-orrange:hover {
        color: #fff;
        transition: all 500ms linear;
        background: rgba(46, 80, 104, 1) !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(9, 66, 107, 0.5) !important;
    }

.theme-btn-joinus {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 400;
    color: #fff;
    min-width: 100px;
    padding: 1rem 3rem;
    border-radius: 3px;
    background: #043C8A !important;
    transition: all 500ms linear;
}

    .theme-btn-joinus:hover {
        color: #fff;
        transition: all 500ms linear;
        background: rgba(46, 80, 104, 1) !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(9, 66, 107, 0.5) !important;
    }
.theme-btn-table-blue {
    font-size: 1.6rem;
    font-weight: 600;
    min-width:200px;
    color: rgba(9, 66, 107, 1) !important;
    padding: 1rem 3rem;
    background: rgb(242 242 242);
    transition: all 500ms linear;
}

    .theme-btn-table-blue:hover {
        color: #fff !important;
        transition: all 500ms linear;
        background: rgba(9, 66, 107, 1) !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(9, 66, 107, 0.5) !important;
    }
.theme-btn-blue.active {
    margin: 15px 5px 15px 5px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    padding: 0.2rem 3rem 0.5rem 3rem;
    border: 1px solid #004c80;
    border-radius: 3px;
    background: #004c80 !important;
    transition: all 500ms linear;
}
.theme-btn-blue {
    margin: 15px 5px 15px 5px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #030e16;
    padding: 0.2rem 3rem 0.5rem 3rem;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    background: /*#ebebeb*/ #f2f2f2 !important;
    transition: all 500ms linear;
}
.button.theme-btn-blue {
    background: #004c80 !important;
}
.theme-btn-blue:hover {
    color: #fff;
    transition: all 500ms linear;
    border: 1px solid #004c80;
    background: #004c80 !important;
    box-shadow: 0 0.5rem 1rem 0px rgb(6 43 126 / 47%) !important;
}
.theme-btn-secondary,
.theme-btn-lg-secondary {
    background: #fff !important;
    font-weight: 700 !important;
    font-size: 1.6rem;
    padding: 0.5rem 1.8rem;
    border: 0.1rem solid #004C80;
    color: #262339;
}

.theme-btn-new {
    font-size: 1.7rem;
    font-weight: 400;
    cursor: pointer;
    border-radius: 1px;
    background: #f2f2f2 !important;
    color: #262339;
    margin: 3rem 0.5rem;
    padding: 1rem 3.7rem;
    transition: all 500ms linear;
}

    .theme-btn-new:hover {
        color: #fff;
        transition: all 500ms linear;
        background: #EA5E0B !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
    }

    .theme-btn-new.active {
        color: #fff;
        transition: all 500ms linear;
        background: #EA5E0B !important;
    }

.theme-btn-small -tag {
    padding: 0.6rem 2rem;
    border-radius: 1px;
    background: rgba(255, 107, 0, 0.1);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 2.4;
    color: #EA5E0B;
    transition: all 500ms linear;
}

.theme-btn-small-tag:hover {
    color: #fff;
    transition: all 500ms linear;
    background: #EA5E0B !important;
    box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
}

.theme-btn-small {
    font-size: 1.3rem;
    font-weight: 300;
    color: #fff;
    padding: 0.6rem 2rem;
    border-radius: 1px;
    background: #EA5E0B !important;
    transition: all 500ms linear;
}

    .theme-btn-small:hover {
        color: #fff;
        transition: all 500ms linear;
        background: #EA5E0B !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
    }

.theme-btn-small-secondary,
.theme-btn-small-lg-secondary {
    background: #fff !important;
    font-weight: 300 !important;
    font-size: 1.3rem;
    padding: 0.6rem 2rem;
    border: 0.1rem solid #004C80;
    color: #262339;
}



.mt-30 {
    margin-top: 30px;
}

.theme-standart-btn {
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 1px;
    background: #EA5E0B !important;
    transition: all 500ms linear;
    border: none;
}

    .theme-standart-btn:hover {
        color: #fff;
        transition: all 500ms linear;
        background: #EA5E0B !important;
    }


a.blue, button.blue {
    color: #fff;
    border-radius: 1px;
    background: #004C80 !important;
}

    a.blue:hover, button.blue:hover {
        color: #fff;
        border-radius: 1px;
        background: #3e4188 !important;
    }


a.grey, button.grey {
    color: #fff;
    border-radius: 1px;
    background: #b7b7b7 !important;
}

    a.grey:hover, button.grey:hover {
        color: #fff;
        border-radius: 1px;
        background: #837e7e !important;
    }

a.red, button.red {
    color: #fff;
    border-radius: 1px;
    background: #EA5E0B !important;
}

    a.red:hover, button.red:hover {
        color: #fff;
        border-radius: 1px;
        background: #ffa202 !important;
    }

.read-more {
    text-decoration: none !important;
    color: #EA5E0B;
    font-size: 1.6rem;
    text-align: left;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: all 0.3s ease-in-out;
}

    .read-more::after {
        content: " ➜";
        color: #EA5E0B;
        font-size: 1.6rem;
        vertical-align: middle;
    }

    .read-more:hover {
        color: #004C80;
        transition: all 0.5s ease-in-out;
    }

        .read-more:hover::after {
            color: #004C80;
            transition: all 0.5s ease-in-out;
        }

button.btn-submit {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 1px;
    background: #EA5E0B !important;
    transition: all ease 0.5s;
}

    button.btn-submit:hover {
        color: #fff;
        transition: all 200ms linear;
        transition: all ease 0.5s;
        background: #EA5E0B !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
    }

.rebon {
    position: absolute;
    top: 3%;
    left: 5%;
}

    .rebon .rebonding {
        font-size: 1rem;
        color: #fff;
        background: #032944a8;
        font-weight: 500;
        padding: 1rem 1.5rem;
        border-radius: 5px;
        text-transform: uppercase;
        transition: all 0.3s ease-in-out;
    }

       /* .rebon .rebonding:hover {
            background: #ffa900 !important;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
        }*/

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

input,
.theme-btn,
.button,
.theme-btn.focus,
textarea,
:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.nav-link:hover {
    color: #EA5E0B !important;
}

.navbar-light .navbar-nav .show > .nav-link {
    color: #EA5E0B !important;
}

textarea {
    resize: vertical;
    padding: 15px 20px;
    min-height: 150px;
}

.btn-reply {
    padding: 0.3rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all ease 0.5s;
    background: #fff;
    color: #7a7a7a;
}

    .btn-reply:hover {
        transition: all ease 0.5s;
        color: #004C80;
    }

.service-item {
    text-align: center;
    padding: 3rem;
    border-radius: 1rem;
    transition: all 0.5s ease-in-out;
}

    .service-item:hover {
        transition: all 500ms linear;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transform: scale(1.03);
        color: #fff;
        background: url(../images/service_item-bg.svg);
        background-size: cover;
        background-repeat: no-repeat;
    }

        .service-item:hover > .item_icon {
            background: #EA5E0B;
        }

        .service-item:hover > .item_content h3 a {
            color: #fff;
            transition: all ease-in-out 0.5s;
        }

        .service-item:hover > .item_content p {
            color: rgba(255, 255, 255, 0.75);
            transition: all ease-in-out 0.5s;
        }

        .service-item:hover > .service_item-btn {
            opacity: 1;
            transition: all ease-in-out 0.5s;
        }

    .service-item .item_icon1 {
        background: rgba(255, 106, 0, 0.3);
    }

    .service-item .item_icon2 {
        background: rgba(255, 31, 31, 0.3);
    }

        .service-item .item_icon2 i::before {
            color: #ff1f1f;
        }

    .service-item .item_icon3 {
        background: rgba(255, 106, 0, 0.3);
    }

    .service-item .item_icon4 {
        background: rgba(255, 106, 0, 0.3);
    }

    .service-item .item_icon5 {
        background: rgba(102, 203, 51, 0.3);
    }

        .service-item .item_icon5 i::before {
            color: #66cb33;
        }

    .service-item .item_icon6 {
        background: rgba(16, 20, 87, 0.3);
    }

        .service-item .item_icon6 i::before {
            color: #004C80;
        }

    .service-item .item_content h3 {
        padding-top: 1rem;
    }

        .service-item .item_content h3 a {
            color: #262339;
        }

    .service-item .service_item-btn {
        padding: 1.5rem 0;
        opacity: 0;
    }

.blog-box {
    box-shadow: 0 0 30px 0 rgba(0, 42, 106, 0.1);
    padding-bottom: 2rem;
    position: relative;
    border-radius: 3px;
    transition: all ease-in-out 0.5s;
    margin-bottom: 25px;
}

    .blog-box:hover {
        transform: translateY(-1rem);
        transition: all ease-in-out 0.5s;
    }

    .blog-box .blog-img {
        margin-top: 1rem;
    }

        .blog-box .blog-img a img {
            border-radius:0;
        }

    .blog-box .dateAndComment {
        line-height: normal;
        padding: 16px 0 16px 13px;
        color: #4c4a4a;
    }

.event-date{
    padding: 5px 0 !important;
   
}
.blog-box .dateAndComment span.comment {
    font-weight: 500;
}

            .blog-box .dateAndComment span.comment i {
                color: #7a7a7a;
                vertical-align: middle;
            }

    .blog-box .blog-content {
        padding: 0 1.5rem;
        text-align: left;
    }

        .blog-box .blog-content h3 {
            margin-top: 0;
            line-height: 18px;
        }

            .blog-box .blog-content h3 a {
                font-size: 2rem;
                font-weight: 500;
                line-height: 1.5;
                color: #262339;
                transition: all ease 0.5s;
            }

                .blog-box .blog-content h3 a:hover {
                    color: #004C80 !important;
                    transition: all ease 0.5s;
                }

     

        .blog-box .blog-content p {
            margin-top: 5px;
        }

    .blog-box .ag_more-btn {
        text-align: left;
    }

        .blog-box .ag_more-btn .read-more {
            margin-left: 0.4rem;
        }

.pagination li.page-item {
    position: relative;
}

    .pagination li.page-item a {
        outline: none !important;
        padding: 1.5rem 2rem;
        font-size: 1.6rem;
        font-weight: 500;
        transition: all ease-in-out 0.5s;
        border: 1px solid #EA5E0B !important;
        color: #EA5E0B;
    }

        .pagination li.page-item a:hover {
            background: #EA5E0B;
            transition: all ease-in-out 0.5s;
            color: #fff;
        }

        .pagination li.page-item a.active {
            background: #EA5E0B;
            color: #fff;
            font-weight: 500;
            padding: 1.5rem 3rem;
            font-size: 1.6rem;
        }

.social-links {
    bottom: 3rem !important;
    justify-content: left !important;
}

    .social-links .social-button {
      
        margin-top: 0 !important;
        padding: 1.5rem 0;
    }

.caption-member,
.social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #004c80b8;
    width: 100%;
    height: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-out;
}

    .caption-member .social-button,
    .social-links .social-button {
        margin: 1rem;
        color: #fff;
        text-align: center;
        border-radius: 1rem;
        font-size: 2.8rem;
        transition: all ease-in-out 0.3s;
    }

        .caption-member .social-button i.bxl-facebook,
        .social-links .social-button i.bxl-facebook {
            /*background: #395185;*/
        }

        .caption-member .social-button i.bxl-twitter,
        .social-links .social-button i.bxl-twitter {
            /*background: #55acee;*/
        }

        .caption-member .social-button i.bxl-pinterest-alt,
        .social-links .social-button i.bxl-pinterest-alt {
            background: red;
        }

        .caption-member .social-button i.bxl-dribbble,
        .social-links .social-button i.bxl-dribbble {
            background: #004c80d1;
        }

        .caption-member .social-button i,
        .social-links .social-button i {
            padding: 0.5rem;
            border-radius: 0.5rem;
        }

            .caption-member .social-button i:hover,
            .social-links .social-button i:hover {
                /*background: #EA5E0B;
                box-shadow: 0 0.5rem 1rem 0 rgba(255, 72, 0, 0.7) !important;*/
                transition: all 0.3s ease-in-out;
            }
.social-button .twitter-bi {
    padding: 0 0.8rem;
    border-radius: 0.5rem;
    color: white;
}

.social-button:hover .twitter-bi {
   color: #ffc21c;
    transition: all 0.3s ease-in-out;
}

        .owl-carousel .owl-dots {
            text-align: center;
            position: relative;
            bottom: 5px;
            width: 100%;
            backface-visibility: hidden;
            text-align: center;
            margin-top: 3rem;
        }

    .owl-carousel .owl-dots .owl-dot {
        margin: 0.5rem;
        width: 1.3rem;
        height: 1.3rem;
        background: #949090;
        border-radius: 90%;
        display: inline-block;
        vertical-align: middle;
    }

    .owl-carousel .owl-dots .active {
        background: #004C80;
        position: relative;
    }

        .owl-carousel .owl-dots .active::before {
            content: "";
            height: 1.9rem;
            width: 1.9rem;
            border: 1px solid #004C80;
            display: inline-block;
            vertical-align: middle;
            position: absolute;
            border-radius: 90%;
            top: -3px;
            left: -3px;
        }

.form_control .nice_selection {
    display: block;
    width: 100%;
    height: 5rem;
    padding: 1rem 1.5rem;
    font-size: 1.6rem !important;
    font-weight: 500;
    border: 0.1rem solid #ddd !important;
    color: #262339 !important;
    outline: none !important;
    margin-bottom: 3rem;
}

    .form_control .nice_selection:nth-child(2):hover {
        background: green;
    }

input[type="text"],
input[type="date"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="search"],
textarea.form-control {
    background: #f3f5f8 !important;
    height: 30px;
    font-size: 1.3rem;
    border-radius: 0.5rem;
    padding: 1.2rem 1.8rem;
    width: 100%;
    border: 1px solid #9ea8b244 !important;
}

.theme-select {
    background: #f3f5f8 !important;
    height: 30px;
    font-size: 1.3rem;
    border-radius: 0.5rem;
    width: 100%;
    border: 1px solid #9ea8b244 !important;
    color: #9b9b9b !important;
}

textarea:focus,
input:focus {
    outline: 1px solid #9ea8b244 !important;
    border-radius: 0.5rem;
}

.theme-textarea {
    background: #f3f5f8 !important;
    height: 40px;
    font-size: 1.3rem;
    border-radius: 0.5rem;
    padding: 1.2rem 1.8rem;
    width: 100%;
    border: 1px solid #9ea8b244 !important;
    vertical-align: bottom;
}

.form-label {
    color: #9b9b9b;
    font-size: 1.6rem;
}

.breadCrumbs-area {
    background: url(../images/breadcrumbs-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
    position: relative;
    padding: 15rem 0;
    vertical-align: middle;
}

    .breadCrumbs-area .breadCrumbs-content .page-name h2 {
        font-size: 4.8rem;
        color: #fff;
        text-align: left;
        font-weight: 600;
    }

    .breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul {
        list-style: none;
    }

        .breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li {
            font-size: 1.8rem;
            font-weight: 400;
            margin: 0 0.5rem;
            color: #fff;
        }

            .breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li a {
                color: rgba(255, 255, 255, 0.75);
                transition: all ease-in-out 0.3s;
            }

                .breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li a:hover {
                    color: #EA5E0B;
                    transition: all ease-in-out 0.3s;
                }

            .breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li i {
                vertical-align: middle;
                position: relative;
                right: -5px;
            }

            .breadCrumbs-area .breadCrumbs-content .breadcrumbs-link ul li a.active {
                color: #EA5E0B !important;
            }

.header-top-area {
    background-color: #fff;
}

.header-top-left ul,
.header-top-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .header-top-left ul li {
        display: inline-block;
        color: #262339;
        font-size: 14px;
        padding: 10px 32px;
        font-weight: 500;
    }

        .header-top-left ul li i {
            color: #364675;
            font-size: 20px;
            margin-right: 5px;
            vertical-align: middle;
            margin-top: -3px;
        }

        .header-top-left ul li:first-child {
            padding-left: 5px;
        }

.header-top-right {
    margin-top: 9px;
}

    .header-top-right ul li {
        display: inline-block;
    }

        .header-top-right ul li a {
            padding: 10px;
            color: #a8a7af;
            transition: 0.3s;
            font-size: 15px;
        }

            .header-top-right ul li a i:before {
                font-size: 1.8rem;
                vertical-align: middle;
                font-weight: 500;
            }

            .header-top-right ul li a:hover {
                color: #EA5E0B;
            }

.header-top-area {
    border-bottom: 1px solid #f9f8fb;
}

.logo {
    margin: 10px 0;
}

.hamburger {
    position: relative;
    width: 40px;
    height: 30px;
    cursor: pointer;
    border: 5px solid transparent;
    float: right;
    margin-top: 15px;
}

    .hamburger span {
        width: 100%;
        height: 2px;
        background: #212121;
        display: block;
        position: absolute;
        right: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

        .hamburger span.h-top {
            top: 0;
        }

        .hamburger span.h-bottom {
            bottom: 0;
            width: 27px;
        }

        .hamburger span.h-middle {
            top: 50%;
            margin-top: -1px;
            width: 25px;
        }

    .hamburger.h-active span {
        width: 100%;
    }

        .hamburger.h-active span.h-top {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 50%;
            margin-top: -1px;
        }

        .hamburger.h-active span.h-middle {
            -webkit-transform: translateX(-30px);
            -moz-transform: translateX(-30px);
            -ms-transform: translateX(-30px);
            -o-transform: translateX(-30px);
            transform: translateX(-30px);
            opacity: 0;
        }

        .hamburger.h-active span.h-bottom {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            bottom: 50%;
            margin-bottom: -1px;
        }

.bottombar {
    background-color: #08509e;
}

.main-nav {
    float: right;
    padding: 2rem 0;
}

    .main-nav > ul {
        padding: 0.5rem 0;
        margin: 0;
        list-style: none;
    }

        .main-nav > ul > li {
            display: inline-block;
            position: relative;
            padding-right: 15px;
        }

            .main-nav > ul > li.has-child-menu:after {
                position: absolute;
                right: -5px;
                color: #fff;
                top: 0.5rem;
                font-family: boxicons;
                content: "";
                font-size: 20px;
                cursor: pointer;
            }

            .main-nav > ul > li + li {
                padding: 0 20px;
            }

            .main-nav > ul > li > a {
                display: block;
                text-decoration: none;
                color: #fff;
                padding: 0.2rem 0;
                font-size: 18px;
                font-weight: 400;
                position: relative;
                transition: all 0.3s;
            }

            .main-nav > ul > li:hover > a {
                color: #EA5E0B;
            }

            .main-nav > ul > li > a:after {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 2px;
                content: "";
                background-color: #EA5E0B;
                opacity: 0;
                transition: all 200ms linear;
            }

                .main-nav > ul > li > a:after:hover {
                    background-color: #EA5E0B;
                }

            .main-nav > ul > li:hover > a:after {
                opacity: 1;
            }

.action_menu {
    float: right;
    margin: 20px 0 20px 10px;
}

    .action_menu a.menu-link {
        padding: 0.8rem 2rem;
        display: block;
        text-decoration: none;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        position: relative;
        transition: all 0.3s;
    }

        .action_menu a.menu-link:hover a {
            color: #fff !important;
        }

            .action_menu a.menu-link:hover a:after {
                opacity: 0 !important;
            }

.main-nav ul li .sub-menu {
    position: absolute;
    left: 0;
    top: auto;
    right: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transform: translateY(20px);
    transition: all 0.3s;
}

    .main-nav ul li .sub-menu li .sub-menu {
        right: -220px;
        left: inherit;
        top: 0;
    }

    .main-nav ul li .sub-menu > li {
        display: block;
        margin: 0;
        position: relative;
    }

        .main-nav ul li .sub-menu > li a {
            display: block;
            padding: 15px 18px;
            color: #262339;
            line-height: 1;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }

            .main-nav ul li .sub-menu > li a:last-child {
                border: none;
            }

            .main-nav ul li .sub-menu > li a:hover {
                background: rgba(16, 20, 87, 0.9);
                color: #EA5E0B;
            }

.main-nav ul > li a.active {
    color: #EA5E0B !important;
}

.main-nav ul li .sub-menu > li a.active {
    color: #EA5E0B !important;
}
/*.main-nav ul > li a:hover {
  background: 0 0;
  color: #EA5E0B !important;
}*/
.main-nav ul li .sub-menu > li a:hover {
    background: 0 0;
    color: #EA5E0B !important;
}

.main-nav .fl {
    width: 30px;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    font-style: normal;
    position: absolute;
    right: -5px;
    top: 0;
    z-index: 999;
    display: none;
    cursor: pointer;
}

    .main-nav .fl:before {
        font-size: 14px;
        text-align: center;
        line-height: 35px;
    }

.main-nav > ul > li + li > .sub-menu {
    left: 15px;
}

.main-nav > ul > li:hover > .sub-menu,
.main-nav ul li .sub-menu li:hover > .sub-menu,
.main-nav ul li .sub-menu li .sub-menu li:hover > .sub-menu {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.slideInUp {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.is-active .slideInUp {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slideInUp2 {
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.header-area {
    width: 100%;
}

.menu-search a i {
    background: #f3f2f7;
    padding: 12px;
    border-radius: 50%;
    text-align: center;
}

.logo img {
    margin: 7.6px 0;
}

.action_menu.m-view {
    display: none;
}


header.ag_header-area {
    padding-bottom: 0;
    background: linear-gradient(1deg, #FFC21C 35%, #ffffff 102.71%);
}

    header.ag_header-area:before {
        content: "";
        position: absolute;
        background-image: url(../images/slider-bg-shape.png);
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        background-size: 100% 100%;
    }

.header-area {
    background: linear-gradient(90deg, rgba(3,41,68,1) 0%, rgba(9,66,107,1) 23%, rgba(9,66,107,1) 40%, rgba(3,41,68,1) 100%);
    position: fixed;
    padding-top: 2rem;
    padding-bottom: 2rem;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom 40%;
    padding-bottom: 0;
}

    .header-area.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.1);
        background: linear-gradient(90deg, rgba(3,41,68,1) 0%, rgba(9,66,107,1) 23%, rgba(9,66,107,1) 40%, rgba(3,41,68,1) 100%);
        
    }

.slider_wrap {
    padding-top: 12rem;
    padding-bottom: 6rem;
    position: relative;
}

    .slider_wrap .slider_content {
        padding: 3rem 0;
        position: relative;
    }

        .slider_wrap .slider_content .slider_title {
            padding-right: 2rem;
        }

        .slider_wrap .slider_content .title_content {
            font-size: 1.6rem;
            color: #fff;
            font-weight: 400;
            line-height: 3rem;
            margin-right: 3rem;
            padding-top: 1rem;
        }

        .slider_wrap .slider_content .slider-btn {
            padding: 3rem 0 0 0;
        }

    .slider_wrap .slider_img {
        padding: 0rem 0 1rem 0;
    }

.ag_feature-area {
    padding-top: 90px;
}
    .ag_feature-area .ag_feature-item {
        min-height: 300px;
        height: auto;
        text-align: center;
        border-radius:10px;
        padding: 2rem;
        transition: all ease-in-out 0.5s;
    }

        .ag_feature-area .ag_feature-item:hover {
            transition: all 0.5s ease-in-out;
            border: 0.2rem solid #ffc21c2e;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }

            .ag_feature-area .ag_feature-item:hover .item_icon {
                background: #06304f;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
                transition: all 0.5s ease-in-out;
                transform: translateY(-0.8rem);
            }

        .ag_feature-area .ag_feature-item .item_icon i.flaticon-medal::before {
            padding-left: 1.2rem;
        }

        .ag_feature-area .ag_feature-item .item_content h3.item_title {
            padding-top: 1rem;
        }

            .ag_feature-area .ag_feature-item .item_content h3.item_title a {
                color: #262339;
            }

                .ag_feature-area .ag_feature-item .item_content h3.item_title a:hover {
                    color: #262339;
                }

.ag_abut-us-area .ag_about-wrapper .img_box {
    margin-top: 53px;
}

.ag_abut-us-area .about_content-area h2 {
    font-weight: 700;
}

.ag_abut-us-area .about_content-area h4 {
    color: #424242;
    font-size: 16px;
    letter-spacing: 5px;
}

.ag_abut-us-area .about_content-area .check_content p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #595656;
    padding: 0;
}

    .ag_abut-us-area .about_content-area .check_content p i {
        font-size: 3rem;
        vertical-align: middle;
        color: #EA5E0B;
    }

.ag_abut-us-area .about_content-area .about_area-btn {
    padding-top: 1rem;
}

.ag_service-area {
    position: relative;
}


.ag_team-area .teams_slider .team_item .photo-member:hover .caption-member {
    height: 40%;
    padding: 15px;
}

        .ag_team-area
        .teams_slider
        .team_item
        .photo-member:hover
        .caption-member
        .social_icon {
            width: 100%;
            text-align: center;
        }

    .ag_team-area .teams_slider .team_item .photo-member {
        width: 310px;
        height: 70%;
        position: relative;
        margin: auto;
    }

        .ag_team-area .teams_slider .team_item .photo-member .info_member {
            padding-bottom: 1rem;
            text-align: center;
        }

            .ag_team-area .teams_slider .team_item .photo-member .info_member h3 {
                margin: 10px 0 0;
            }

        .ag_team-area .teams_slider .team_item .photo-member img {
            width: 100%;
            height: 100%;
            max-height:490px;
            min-height:490px;
            object-fit: cover;
        }

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: 0;
}

.ag_team-area {
    position: relative;
}

    .ag_team-area .teams_slider .owl-nav {
        display: none;
    }

.ag_counter-widget .counter-container .widget_icon {
    text-align: start;
}

.ag_counter-widget .counter-container .widget_icon1 {
    
}

.ag_counter-widget .counter-container .widget_icon2 {
    
}

    .ag_counter-widget .counter-container .widget_icon2 i::before {
        color: #EA5E0B;
    }

.ag_counter-widget .counter-container .widget_icon3 {
    
}

    .ag_counter-widget .counter-container .widget_icon3 i::before {
        color: #EA5E0B;
    }

.ag_counter-widget .counter-container .widget_icon4 {
    
}

.ag_counter-widget .counter-container .widget_icon4 i::before {
    color: #EA5E0B;
}

.ag_counter-widget .counter-container .widget_info {
    margin: 15px 0 15px 15px;
}

    .ag_counter-widget .counter-container .widget_info .counter {
        font-size: 4.5rem;
        font-weight: 700;
        line-height: 40px;
        margin: 10px 0;
    }

    .ag_counter-widget .counter-container .widget_info .counter {
        color: #EA5E0B;
    }

    .ag_counter-widget .counter-container .widget_info .counter2 {
        color: #EA5E0B;
    }

    .ag_counter-widget .counter-container .widget_info .counter3 {
        color: #EA5E0B;
    }

    .ag_counter-widget .counter-container .widget_info .counter4 {
        color: #EA5E0B;
    }

    .ag_counter-widget .counter-container .widget_info span {
        font-size: 1.6rem;
        font-weight: 400;
        padding-left: 7px;
        color: #262339;
    }

.ag_portfolio-area .portfolio_wrapper {
    position: relative;
}

    .ag_portfolio-area .portfolio_wrapper .button-group .button {
        display: inline-block;
        cursor: pointer;
        border-radius: 3px;
        background: #f8f8f8 !important;
        color: #262339;
        margin: 3rem 0.5rem;
    }

        .ag_portfolio-area .portfolio_wrapper .button-group .button:hover {
            background-color: #ffc21c !important;
            color: #fff;
        }

        .ag_portfolio-area .portfolio_wrapper .button-group .button:active,
        .ag_portfolio-area .portfolio_wrapper .button-group .button.is-checked {
            background-color: #004C80 !important;
        }

        .ag_portfolio-area .portfolio_wrapper .button-group .button.is-checked {
            color: #fff;
        }

    .ag_portfolio-area .portfolio_wrapper .button-group:after {
        content: "";
        display: block;
        clear: both;
    }

.margintop-20 {
    margin-top: 20px;
}

.ag_why-us-area .ag_why-single-box .box_icon {
    margin-top: 2rem;
}

.ag_why-us-area .ag_why-single-box .box_1 {
    background: #ffc21c;
}

.ag_why-us-area .ag_why-single-box .box_2 {
    background: #ffc21c;
}

.ag_why-us-area .ag_why-single-box .box_3 {
    background: #ffc21c;
}

.ag_why-us-area .ag_why-single-box .box_4 {
    background: #ffc21c;
}

.ag_why-us-area .ag_why-single-box .box_content {
    margin-left: 2rem;
}

    .ag_why-us-area .ag_why-single-box .box_content h3 {
        text-align: left;
        font-size: 2.5rem;
    }

    .ag_why-us-area .ag_why-single-box .box_content p {
        text-align: left;
        margin-top: 1rem;
    }

.ag_pricing-area .ag_pricing-table .block {
    text-align: center;
    border-radius: 0.5rem !important;
    transition: all ease-in-out 0.3s;
}

.button.menu-btn.theme-btn {
    background-color: #EA5E0B;
    color: white;
}
/*.ag_pricing-area .ag_pricing-table .block:hover {
  transition: all ease-in-out 0.3s;
  background: #004C80;
  color: #fff;
}*/
.ag_pricing-area .ag_pricing-table .block:hover .pricing-inner-content {
    border-color: #004C80;
    transition: all ease-in-out 0.3s;
}
/*.ag_pricing-area .ag_pricing-table .block .title,
.ag_pricing-area .ag_pricing-table .block .content p.hint,
.ag_pricing-area .ag_pricing-table .block p.price {
  color: #fff;
}*/
.ag_pricing-area .ag_pricing-table .block .features li {
    color: rgba(255, 255, 255, 0.75);
}

.ag_pricing-area .ag_pricing-table .block .pricing_btn {
    opacity: 1;
}

.ag_pricing-area .ag_pricing-table .block .pricing-inner-content {
    border-radius: 16px !important;
    border: 0.5px solid #EA5E0B;
    background: #ea5e0b0a;
    width: 350px !important;
    min-height: 570px !important;
}

.ag_pricing-area .ag_pricing-table .block .content .hint {
    color: #262339;
}

.ag_pricing-area .ag_pricing-table .block .content .price {
    color: #ffc21c;
    padding: 1.5rem 0;
}

    .ag_pricing-area .ag_pricing-table .block .content .price sub {
        font-size: 3rem;
    }

    .ag_pricing-area .ag_pricing-table .block .content .price span {
        font-weight: 600;
        font-size: 6.5rem;
    }

.ag_pricing-area .ag_pricing-table .block .features li {
    font-size: 1.6rem;
    font-weight: 400;
    padding: 1rem 0;
    color: #7a7a7a;
}

.ag_pricing-area .ag_pricing-table .block .pricing_btn {
    opacity: 1;
    padding: 1.5rem 3rem 1rem;
    border-radius: 0.5rem;
}

.ag_pricing-area .ag_pricing-table .active {
    transition: all ease-in-out 0.3s;
    background: #004C80;
    color: #fff;
}

    .ag_pricing-area .ag_pricing-table .active .pricing-inner-content {
        border-color: #004C80;
        transition: all ease-in-out 0.3s;
    }

    .ag_pricing-area .ag_pricing-table .active .title,
    .ag_pricing-area .ag_pricing-table .active .content p.hint,
    .ag_pricing-area .ag_pricing-table .active p.price {
        color: #fff;
    }

    .ag_pricing-area .ag_pricing-table .active .features li {
        color: rgba(255, 255, 255, 0.75);
    }

    .ag_pricing-area .ag_pricing-table .active .pricing_btn {
        opacity: 1;
    }

.started_area {
    background: linear-gradient(90deg, rgba(3, 41, 68, 1) 0%, rgba(9, 66, 107, 1) 23%, rgba(9, 66, 107, 1) 40%, rgba(3, 41, 68, 1) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 0rem 8rem 7rem;
}

    .started_area .started_area-content h2 {
        color: #fff;
    }

    .started_area .started_area-content p {
        color: rgba(255, 255, 255, 0.75);
    }

    .started_area .started_area-btn {
        padding: 6rem 0;
    }

.ag_testimonial-area .ag_testimonial-slider .owl-stage-outer {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    padding: 5rem 0;
}

.ag_testimonial-area .ag_testimonial-slider .owl-item.active {
    width: 547.5px;
    margin-right: 15px;
    padding-right: 0.5rem;
}

.ag_testimonial-area .ag_testimonial-slider .slide_caption {
    background: #fff;

    border-radius: 2rem;
    box-shadow: 0 2px 5px 0 rgba(10, 6, 20, 0.24);
    align-items: center;
}

.ag_testimonial-area .ag_testimonial-slider .quote {
    border-radius: 90%;
    padding: 1.5rem;
    background: #004C80;
    width: 9rem;
    padding: 2.2rem;
    margin-top: 11.5rem;
    margin-bottom: 11.5rem;
    margin-right: -4.5rem;
    z-index: 1;
    text-align: center;
}

    .ag_testimonial-area .ag_testimonial-slider .quote i::before {
        font-size: 4.2rem;
        color: #fff;
    }

.ag_testimonial-area .ag_testimonial-slider .caption_info {
   
    padding: 2rem 2rem 3rem 2rem;
  
}

    .ag_testimonial-area
    .ag_testimonial-slider
    .caption_info
    .customer_info
    .profile {
        margin-right: 1rem;
    }

        .ag_testimonial-area
        .ag_testimonial-slider
        .caption_info
        .customer_info
        .profile
        img {
            border-radius: 90%;
        }

    .ag_testimonial-area
    .ag_testimonial-slider
    .caption_info
    .customer_info
    .profile_info {
        text-transform: capitalize;
    }

        .ag_testimonial-area
        .ag_testimonial-slider
        .caption_info
        .customer_info
        .profile_info
        h3 {
            margin-top: 10px;
            font-weight: 600;
            font-size: 20px;
            line-height: 18px;
        }

        .ag_testimonial-area
        .ag_testimonial-slider
        .caption_info
        .customer_info
        .profile_info
        .designation {
            margin: 0 !important;
        }

.ag_testimonial-area .ag_testimonial-slider .review-icon i {
    color: #EA5E0B;
}

    .ag_testimonial-area .ag_testimonial-slider .review-icon i::before {
        margin-left: 0.2rem;
        font-size: 2.4rem;
    }

.ag_testimonial-area .ag_testimonial-slider .owl-nav {
    display: none;
}

.ag_marquee-area .marquee .marquee-content .inner {
    margin: 2rem 0;
    transition: all 0.5s ease-in-out;
}

    .ag_marquee-area .marquee .marquee-content .inner:hover > a img {
        transform: scale(1.1);
        transition: all 0.5s ease-in-out;
    }

    .ag_marquee-area .marquee .marquee-content .inner img {
        max-height: 3rem;
    }

.footer-area .footer-wrapper {
    background: linear-gradient(90deg, rgba(3, 41, 68, 1) 0%, rgba(9, 66, 107, 1) 23%, rgba(9, 66, 107, 1) 40%, rgba(3, 41, 68, 1) 100%);
    padding-top: 20rem;
    padding-bottom: 1.5rem;
}

    .footer-area .footer-wrapper .footer-wrap {
        padding: 3rem 0;
    }

        .footer-area .footer-wrapper .footer-wrap p {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 400;
            padding-right: 5rem;
            padding-left: 1.5rem;
        }

        .footer-area .footer-wrapper .footer-wrap .social-icon {
            margin-top: 3rem;
        }

            .footer-area .footer-wrapper .footer-wrap .social-icon a i {
                font-size: 20px;
                color: #262339;
                border-radius: 3px;
                margin-right: 15px;
                transition: 0.6s;
                padding: 3px 5px;
                border: 2px solid #262339;
            }

                .footer-area .footer-wrapper .footer-wrap .social-icon a i:hover {
                    background: #EA5E0B;
                    color: #fff;
                }

    .footer-area .footer-wrapper .footer-widget {
        position: relative;
    }

        .footer-area .footer-wrapper .footer-widget h3 {
            margin-top: 4rem;
            color: #fff;
            font-weight: 600;
            font-size: 2.5rem;
            text-transform: capitalize;
            position: relative;
        }

        .footer-area .footer-wrapper .footer-widget ul {
            margin-top: 2rem;
        }

            .footer-area .footer-wrapper .footer-widget ul li {
                list-style: none;
                transition: all 0.3s ease-in-out;
            }

                .footer-area .footer-wrapper .footer-widget ul li:hover {
                    transform: translateX(0.5rem);
                    transition: all 0.3s ease-in-out;
                }

                    .footer-area .footer-wrapper .footer-widget ul li:hover a {
                        color: #EA5E0B !important;
                        transition: all 0.3s ease-in-out;
                    }

                .footer-area .footer-wrapper .footer-widget ul li .fa-long-arrow-alt-right {
                    color: #262339 !important;
                    font-size: 1.8rem;
                    margin-right: 0.5rem;
                }

                .footer-area .footer-wrapper .footer-widget ul li a {
                    text-decoration: none;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 2;
                    color: rgba(255, 255, 255, 0.75);
                }

        .footer-area .footer-wrapper .footer-widget .contact-info-content .single_info {
            margin-top: 1rem;
            color: #fff;
        }

            .footer-area
            .footer-wrapper
            .footer-widget
            .contact-info-content
            .single_info
            i {
                font-size: 2.2rem;
                position: relative;
                top: 18px;
            }

            .footer-area
            .footer-wrapper
            .footer-widget
            .contact-info-content
            .single_info
            p {
                color: rgba(255, 255, 255, 0.75);
                margin: 0 0 0 1.2rem;
            }

                .footer-area
                .footer-wrapper
                .footer-widget
                .contact-info-content
                .single_info
                p
                a {
                    color: rgba(255, 255, 255, 0.75);
                    font-size: 1.6rem;
                }

                    .footer-area
                    .footer-wrapper
                    .footer-widget
                    .contact-info-content
                    .single_info
                    p
                    a:hover {
                        color: #EA5E0B;
                        transition: all ease 0.5s;
                    }

        .footer-area .footer-wrapper .footer-widget .subscribe_form {
            width: 100%;
            margin: 0 auto;
            box-shadow: 0 2px 5px 0 rgba(10, 6, 20, 0.24);
        }

            .footer-area .footer-wrapper .footer-widget .subscribe_form .input-group {
                padding-top: 2rem;
                padding-bottom: 4.5rem;
            }

            .footer-area .footer-wrapper .footer-widget .subscribe_form input {
                height: 44px;
                font-size: 1.6rem;
                padding: 0 1rem;
            }

            .footer-area .footer-wrapper .footer-widget .subscribe_form button {
                border-radius: 0 0.25rem 0.25rem 0;
                width: 10rem;
                padding: 1rem 0.5rem;
                text-transform: uppercase;
                transition: all ease 0.3s;
            }

            .footer-area
            .footer-wrapper
            .footer-widget
            .subscribe_form
            .input-group-btn:last-child > .theme-btn,
            .footer-area
            .footer-wrapper
            .footer-widget
            .subscribe_form
            .input-group-btn:last-child > .btn-group {
                z-index: 2;
                margin-left: 0;
            }

.footer-area .other-page-footer {
    padding-top: 0 !important;
}

.copy-right {
    background: #EA5E0B;
    padding: 1rem 0;
}

    .copy-right p {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.75);
        font-weight: 500;
        margin: 0;
        text-transform: capitalize;
    }

        .copy-right p a {
            color: #004C80;
        }

.page-header {
    background: url(../images/header_bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-bottom: 0;
}

    .page-header .main-nav .ul li a {
        color: #262339;
    }

        .page-header .main-nav .ul li a:hover {
            color: #EA5E0B !important;
        }

    .page-header .sticky {
        background: url(../images/header_bg.html);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
        padding-bottom: 0;
    }

        .page-header .sticky .main-navbar .navigation .ag_nav_area .menus li a {
            color: #262339;
        }

            .page-header .sticky .main-navbar .navigation .ag_nav_area .menus li a:hover {
                color: #EA5E0B !important;
            }

.ag_about-area .ag_about-wrapper .img_box {
    margin-top: 3rem;
}

.ag_about-area .about_content-area h2 {
    font-size: 3.8rem;
}

.ag_about-area .about_content-area p {
    font-size: 1.5rem;
    font-weight: 400;
    color: #7a7a7a;
    padding: 0;
}

    .ag_about-area .about_content-area p i {
        font-size: 3rem;
        vertical-align: middle;
        color: #EA5E0B;
    }

.ag_about-area .about_area-btn {
    padding-top: 1rem;
}

.ag_business-solution {
    background: #004C80;
}

    .ag_business-solution .counter-inner .widget_info {
        width: 15rem;
        height: 15rem;
        border: 2px solid #fff;
        border-radius: 0.5rem;
        margin: 0 auto;
    }

        .ag_business-solution .counter-inner .widget_info .counter-value {
            font-size: 4.2rem;
            font-weight: 600;
            color: #fff;
            text-align: center;
            margin: 4.2rem 0;
        }

            .ag_business-solution .counter-inner .widget_info .counter-value span {
                background: #EA5E0B;
                padding: 3rem 1.5rem;
                vertical-align: middle;
                border-radius: 0.5rem;
            }

    .ag_business-solution .counter-inner h3 {
        color: #fff;
        font-size: 2.4rem;
        font-weight: 500;
        text-align: center;
    }

.contact-box-area .google_map {
    height: 80%;
}

    .contact-box-area .google_map iframe {
        border-radius: 1.5rem;
        margin: 7rem 0;
    }

.contact-box-area .form-label {
    font-size: 1.4rem;
}

.contact-box-area .form-button {
    margin-top: 20px;
}

.contact-box-area .single-contact-box {
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: all ease 0.3s;
    padding: 2rem;
    text-align: left;
}

    .contact-box-area .single-contact-box:hover {
        transform: translateY(-0.5rem);
        transition: all ease 0.3s;
    }

    .contact-box-area .single-contact-box .mete-title i {
        background: #EA5E0B;
        padding: 0.5rem;
        margin: 2rem 0;
        border-radius: 0.5rem;
    }

        .contact-box-area .single-contact-box .mete-title i::before {
            font-size: 3.7rem;
            color: #fff;
        }

    .contact-box-area .single-contact-box .meta-content {
        margin-left: 2rem;
        padding: 0;
    }

        .contact-box-area .single-contact-box .meta-content h3 {
            margin: 0;
        }

        .contact-box-area .single-contact-box .meta-content p {
            margin: 0;
        }

            .contact-box-area .single-contact-box .meta-content p a {
                color: #262339;
                transition: all ease 0.5s;
            }

                .contact-box-area .single-contact-box .meta-content p a:hover {
                    color: #EA5E0B;
                    transition: all ease 0.5s;
                }

.contact-area {
    margin-top: 50px;
}

    .contact-area form h3 {
        font-size: 3rem;
        font-weight: 700;
        margin-top: 3rem;
    }

    .contact-area form .form-group {
        margin-bottom: 30px;
    }

    .contact-area form button.theme-btn.btn-primary {
        margin-top: 20px;
    }

h4.widget-title {
    margin-bottom: 2.5rem;
    margin-top: 0;
    border-bottom: 1px solid #262339;
    text-transform: capitalize;
    padding-bottom: 0.5rem;
}

.tagcloud-widget {
    padding: 3rem 0;
}

    .tagcloud-widget ul li {
        display: inline-block;
        margin-right: 20px;
        position: relative;
    }

        .tagcloud-widget ul li::before {
            position: absolute;
            content: "";
            right: -12px;
            top: 50%;
            width: 1px;
            height: 18px;
            background: #004C80;
            transform: translateY(-50%) rotate(20deg);
        }

        .tagcloud-widget ul li a {
            color: #262339;
            transition: all ease-in-out 0.3s;
            font-size: 1.6rem;
            font-weight: 500;
        }

            .tagcloud-widget ul li a:hover {
                color: #EA5E0B;
                transition: all ease-in-out 0.3s;
            }

.ag_faq-area h3 {
    margin: 1px 0 60px;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}

.ag_faq-area .nav-tabs {
    justify-content: center;
}

    .ag_faq-area .nav-tabs .nav-link {
        text-transform: uppercase;
        font-weight: 500;
        font-size: 16px;
        padding: 10px 26px;
        color: #EA5E0B;
        border: none;
    }

        .ag_faq-area .nav-tabs .nav-link.active {
            color: #262339;
        }

.ag_faq-area .tab-content {
    padding: 20px;
    border: 1px solid #eee;
    margin-top: -1px;
}

    .ag_faq-area .tab-content .accordion-item {
        margin-bottom: 20px;
    }

        .ag_faq-area .tab-content .accordion-item a {
            font-size: 16px;
            text-transform: uppercase;
            margin: 6px 0;
            display: block;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            color: #353535;
        }

            .ag_faq-area .tab-content .accordion-item a:hover {
                color: #EA5E0B;
            }

            .ag_faq-area .tab-content .accordion-item a i {
                font-size: 24px;
                position: relative;
                top: 3px;
                transform: rotate(180deg);
            }

            .ag_faq-area .tab-content .accordion-item a.collapsed i {
                transform: rotate(0deg);
            }

        .ag_faq-area .tab-content .accordion-item p {
            padding: 0 28px;
        }

.blog_grid_area .section-title h3 {
    padding: 0.8rem 0;
}

.section-title {
    margin: auto;
}

.blog_grid_area .blog-box .blog-img a img {
    width: 100%;
}

.blog-details-area .blog-details-box .blog-details-content ul li {
    font-size: 1.6rem;
    color: #7a7a7a;
    font-weight: 400;
    margin-right: 3rem;
    align-items: center;
}

    .blog-details-area .blog-details-box .blog-details-content ul li img {
        width: 5rem;
        height: 5rem;
        border-radius: 90%;
    }

    .blog-details-area .blog-details-box .blog-details-content ul li i {
        position: relative;
        top: 2px;
    }

    .blog-details-area .blog-details-box .blog-details-content ul li p {
        margin: 0;
    }

        .blog-details-area .blog-details-box .blog-details-content ul li p a {
            color: #262339;
        }

            .blog-details-area .blog-details-box .blog-details-content ul li p a:hover {
                color: #EA5E0B;
            }

.blog-details-area .blog-details-box .blog-details-content h2 {
    font-size: 3.5rem;
    margin-top: 2rem;
    line-height: normal;
}

.blog-details-area
.blog-details-box
.blog-details-content
.quote-area
blockquote {
    text-align: center;
    background: #004C80;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 1rem;
    padding: 3rem;
}

    .blog-details-area
    .blog-details-box
    .blog-details-content
    .quote-area
    blockquote
    .quote {
        border-radius: 90%;
        padding: 1.5rem;
        background: #EA5E0B;
        width: 8rem;
        padding: 2.2rem;
        align-items: center;
        height: 8rem;
        margin: 0 auto;
        z-index: 1;
        text-align: center;
        vertical-align: middle;
    }

        .blog-details-area
        .blog-details-box
        .blog-details-content
        .quote-area
        blockquote
        .quote
        i::before {
            font-size: 4.2rem;
            color: #fff;
        }

    .blog-details-area
    .blog-details-box
    .blog-details-content
    .quote-area
    blockquote
    p {
        color: rgba(255, 255, 255, 0.75) !important;
    }

.blog-details-area
.blog-details-box
.blog-details-content
.blog-tag
ul
li.tag-wrap {
    position: relative;
}

.blog-details-area
.blog-details-box
.blog-details-content
.blog-comment
.widget-area-title {
    padding: 2rem 0;
}

.blog-details-area
.blog-details-box
.blog-details-content
.blog-comment
ul
li
.media {
    position: relative;
}

    .blog-details-area
    .blog-details-box
    .blog-details-content
    .blog-comment
    ul
    li
    .media
    img {
        width: 6rem;
        height: 6rem;
        border-radius: 90%;
        margin-top: 1rem;
    }

    .blog-details-area
    .blog-details-box
    .blog-details-content
    .blog-comment
    ul
    li
    .media
    .media-body {
        margin-left: 1.5rem;
    }

        .blog-details-area
        .blog-details-box
        .blog-details-content
        .blog-comment
        ul
        li
        .media
        .media-body
        h4 {
            color: #262339 !important;
            text-transform: capitalize;
        }

        .blog-details-area
        .blog-details-box
        .blog-details-content
        .blog-comment
        ul
        li
        .media
        .media-body
        p {
            padding-right: 8rem;
        }

        .blog-details-area
        .blog-details-box
        .blog-details-content
        .blog-comment
        ul
        li
        .media
        .media-body
        .btn-reply {
            position: absolute;
            top: 0;
            right: 0;
        }

.blog-details-area .template-sidebar .input-area {
    padding: 0 !important;
}

.blog-details-area .template-sidebar .sidebar-widget-area .ag_input_area {
    border-radius: 0.7rem;
    border: 1rem solid #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
}

    .blog-details-area .template-sidebar .sidebar-widget-area .ag_input_area input {
        margin: 0;
    }

    .blog-details-area
    .template-sidebar
    .sidebar-widget-area
    .ag_input_area
    .search-btn
    i {
        color: #fff;
        font-size: 2.8rem;
    }

.blog-details-area .template-sidebar .sidebar-widget-area h3.widget-title {
    color: #262339;
}

.blog-details-area
.template-sidebar
.sidebar-widget-area
.widget-post
ul
li.media {
    padding: 1rem 1.5rem;
}

    .blog-details-area
    .template-sidebar
    .sidebar-widget-area
    .widget-post
    ul
    li.media
    .left-box
    .item-figure {
        display: block;
        overflow: hidden;
        background: #000;
        border-radius: 0.5rem;
    }

        .blog-details-area
        .template-sidebar
        .sidebar-widget-area
        .widget-post
        ul
        li.media
        .left-box
        .item-figure
        img {
            border-radius: 0.5rem;
            transition: all 0.3s ease-in-out;
            opacity: 1;
        }

    .blog-details-area
    .template-sidebar
    .sidebar-widget-area
    .widget-post
    ul
    li.media:hover
    .left-box
    .item-figure
    img {
        transform: scale(1.2);
        opacity: 0.5;
        transition: all 0.3s ease-in-out;
    }

    .blog-details-area
    .template-sidebar
    .sidebar-widget-area
    .widget-post
    ul
    li.media
    .media-body {
        margin-left: 0;
    }

        .blog-details-area
        .template-sidebar
        .sidebar-widget-area
        .widget-post
        ul
        li.media
        .media-body
        h4.entry-title {
            font-size: 2rem;
            font-weight: 600;
            text-transform: none;
            margin-top: 0;
        }

            .blog-details-area
            .template-sidebar
            .sidebar-widget-area
            .widget-post
            ul
            li.media
            .media-body
            h4.entry-title
            a {
                color: #262339;
                transition: all 0.3s ease-in-out;
            }

                .blog-details-area
                .template-sidebar
                .sidebar-widget-area
                .widget-post
                ul
                li.media
                .media-body
                h4.entry-title
                a:hover {
                    color: #EA5E0B;
                    transition: all 0.3s ease-in-out;
                }

.blog-details-area .template-sidebar .sidebar-widget-area .widget-tag ul li {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.ag_process-area .ag_process-item {
    position: relative;
}

    .ag_process-area .ag_process-item .item_icon i::before {
        color: #fff;
    }

    .ag_process-area .ag_process-item span i {
        position: absolute;
        top: 45%;
        color: #EA5E0B;
    }

        .ag_process-area .ag_process-item span i::before {
            font-size: 4.2rem;
        }

        .ag_process-area .ag_process-item span i:nth-child(1) {
            left: -3rem;
        }

        .ag_process-area .ag_process-item span i:nth-child(2) {
            right: -3rem;
        }

.ag_process-area {
    position: relative;
}

    .ag_process-area .ag_process-item {
        text-align: center;
        padding: 3rem;
        border-radius: 1rem;
        transition: all 0.5s ease-in-out;
    }

        .ag_process-area .ag_process-item:hover .icon-box {
            background: #EA5E0B;
            transition: all 0.5s ease-in-out;
        }

        .ag_process-area .ag_process-item .icon-box {
            background: #004C80;
            border-radius: 1rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }

            .ag_process-area .ag_process-item .icon-box img {
                padding: 1rem;
                margin: 3.5rem 0;
            }

.service-details-area
.template-sidebar
.sidebar-widget-area
.services-menu
ul
li {
    font-size: 2rem;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    transition: all 0.5s ease-in-out;
}

    .service-details-area
    .template-sidebar
    .sidebar-widget-area
    .services-menu
    ul
    li:hover {
        background: #EA5E0B;
        transition: all 0.5s ease-in-out;
    }

        .service-details-area
        .template-sidebar
        .sidebar-widget-area
        .services-menu
        ul
        li:hover
        a {
            color: #fff;
            transition: all 0.5s ease-in-out;
        }

    .service-details-area
    .template-sidebar
    .sidebar-widget-area
    .services-menu
    ul
    li
    a {
        font-weight: 500;
        color: #004C80;
    }

        .service-details-area
        .template-sidebar
        .sidebar-widget-area
        .services-menu
        ul
        li
        a
        span
        i {
            float: right;
        }

.service-details-area .template-sidebar .sidebar-widget-area p {
    color: #004C80;
    margin: 0;
}

.service-details-content .services-btns .btn-service {
    border-radius: 0.5rem;
}

.service-details-content .services-btns a:first-child {
    background: #fff !important;
    color: #EA5E0B !important;
    border: 0.1rem solid #EA5E0B !important;
}

    .service-details-content .services-btns a:first-child:hover {
        background: #EA5E0B !important;
        color: #fff !important;
    }

.portfolio-item-box .box-item .box-content ul li {
    color: #004C80;
    font-size: 1.6rem;
    font-weight: 500;
}

.page-navigation .pagination-dots .dot {
    position: relative;
}

    .page-navigation .pagination-dots .dot a span::before {
        content: "";
        width: 1.5rem;
        height: 1.5rem;
        position: absolute;
        border-radius: 5rem;
        top: 0;
        background: #949090;
    }

    .page-navigation .pagination-dots .dot a:hover {
        background: #EA5E0B;
    }

    .page-navigation .pagination-dots .dot a.active {
        position: relative;
    }

        .page-navigation .pagination-dots .dot a.active span::before {
            content: "";
            height: 1.9rem;
            width: 1.9rem;
            border: 1px solid #EA5E0B;
            display: inline-block;
            vertical-align: middle;
            position: absolute;
            border-radius: 90%;
            top: -3px;
            left: -3px;
        }

.portfolio-details .project-info-item ul li h3 {
    font-size: 2rem;
    padding: 0.5rem 0;
    margin: 0 !important;
}

.portfolio-details .project-info-item ul li p {
    margin: 0;
}

.portfolio-details .box-content .arrow-box {
    min-width: 5rem;
    max-height: 5rem;
    background: #EA5E0B;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 3rem;
    margin-right: 1.5rem;
}

    .portfolio-details .box-content .arrow-box i {
        color: #fff;
        font-size: 3rem;
        min-width: 5rem;
        padding: 1rem 0;
    }

.portfolio-details .box-content p {
    margin-top: 2.5rem;
}

.ag_error_page .error-area .error .error-title {
    font-size: 20rem;
    font-weight: 700;
    color: #004C80;
}

.ag_error_page .error-area .error .erro-subTitle {
    margin-bottom: 3rem;
}

.ag_error_page .error-area .error p.error-content {
    font-size: 1.6rem;
    margin-bottom: 5rem;
}

.ag_error_page .error-area .error .btn-error {
    margin-right: 1rem;
}

.ag_error_page .error-area .error .btn-error2 {
    background: #fff !important;
    color: #004C80;
    border: 1px solid #004C80 !important;
}

    .ag_error_page .error-area .error .btn-error2:hover {
        box-shadow: 0 0.5rem 1rem 0 rgba(16, 20, 87, 0.3) !important;
    }

.section-menu-bar {
    border-bottom: none !important;
}

.field-validation-error {
    color: #f5325c !important;
    font-style: italic;
    font-size: 12px;
}

.password-eye {
    position: absolute;
    top: 30px;
    right: 12px;
    cursor: pointer;
}




@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type='checkbox'],
    input[type='radio'] {
        --active: rgb(16, 19, 87);
        --active-inner: #fff;
        --focus: 2px rgb(16, 19, 87);
        --border: 1px solid #9ea8b244;
        --border-hover: rgb(16, 19, 87);
        --background: #e3e3e344;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid rgb(199 199 199) !important;
        --active-inner: #fff;
        background: var(--b, var(--background));
        transition: background .3s, border-color .3s, box-shadow .2s;
    }

        input[type='checkbox']:after,
        input[type='radio']:after {
            content: '';
            display: block;
            left: 0.9px;
            top: 0.9px;
            position: absolute;
            transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
        }

        input[type='checkbox']:checked,
        input[type='radio']:checked {
            --b: var(--active);
            --bc: var(--active);
            --d-o: .3s;
            --d-t: .6s;
            --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
        }

        input[type='checkbox']:disabled,
        input[type='radio']:disabled {
            --b: var(--disabled);
            cursor: not-allowed;
            opacity: .9;
        }

            input[type='checkbox']:disabled:checked,
            input[type='radio']:disabled:checked {
                --b: var(--disabled-inner);
                --bc: var(--border);
            }

            input[type='checkbox']:disabled + label,
            input[type='radio']:disabled + label {
                cursor: not-allowed;
            }

        input[type='checkbox']:hover:not(:checked):not(:disabled),
        input[type='radio']:hover:not(:checked):not(:disabled) {
            --bc: var(--border-hover);
        }

        input[type='checkbox']:focus,
        input[type='radio']:focus {
            box-shadow: 1 0 0 var(--focus);
        }

        input[type='checkbox']:not(.switch),
        input[type='radio']:not(.switch) {
            width: 21px;
        }

            input[type='checkbox']:not(.switch):after,
            input[type='radio']:not(.switch):after {
                opacity: var(--o, 0);
            }

            input[type='checkbox']:not(.switch):checked,
            input[type='radio']:not(.switch):checked {
                --o: 1;
            }

        input[type='checkbox'] + label,
        input[type='radio'] + label {
            font-size: 14px;
            line-height: 21px;
            display: inline-block;
            vertical-align: top;
            cursor: pointer;
            margin-left: 4px;
        }

        input[type='checkbox']:not(.switch) {
            border-radius: 7px;
        }

            input[type='checkbox']:not(.switch):after {
                width: 5px;
                height: 9px;
                border: 2px solid var(--active-inner);
                border-top: 0;
                border-left: 0;
                left: 8px;
                top: 5px;
                transform: rotate(var(--r, 20deg));
            }

            input[type='checkbox']:not(.switch):checked {
                --r: 43deg;
            }

        input[type='checkbox'].switch {
            width: 38px;
            border-radius: 11px;
        }

            input[type='checkbox'].switch:after {
                left: 2px;
                top: 3px;
                border-radius: 50%;
                width: 15px;
                height: 15px;
                background: var(--ab, var(--border));
                transform: translateX(var(--x, 0));
            }

            input[type='checkbox'].switch:checked {
                --ab: var(--active-inner);
                --x: 17px;
            }

            input[type='checkbox'].switch:disabled:not(:checked):after {
                opacity: .6;
            }

    input[type='radio'] {
        border-radius: 50%;
    }

        input[type='radio']:after {
            width: 19px;
            height: 19px;
            border-radius: 50%;
            background: var(--active-inner);
            opacity: 0;
            transform: scale(var(--s, 0.7));
        }

        input[type='radio']:checked {
            --s: .5;
        }
}



.inputs-ul {
    margin: 12px;
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 320px;
}

    .inputs-ul li {
        margin: 16px 0;
        position: relative;
    }


.theme-tab-btn {
    font-size: 1.6rem;
    font-weight: 400;
    background-color: #fff !important;
    color: #EA5E0B !important;
    padding: 1rem 3rem;
    border-radius: 5rem;
    transition: all 500ms linear;
    border: 2px solid red !important;
    cursor: pointer;
}

    .theme-tab-btn.active {
        color: #fff !important;
        background: #EA5E0B !important;
    }

    .theme-tab-btn:hover {
        color: #fff !important;
        transition: all 500ms linear;
        background: #EA5E0B !important;
        box-shadow: 0 0.5rem 1rem 0 rgba(216, 125, 35, 0.5) !important;
    }

.theme-tab-btn-secondary,
.theme-tab-btn-lg-secondary {
    background: #fff !important;
    font-weight: 700 !important;
    font-size: 1.6rem;
    padding: 0.5rem 1.8rem;
    border: 0.1rem solid #004C80;
    color: #262339;
}

.menu-btn {
    background-color: #fff !important;
    color: #EA5E0B !important;
    border: 2px solid red !important;
}

    .menu-btn:hover {
        color: #fff !important;
    }

.signin-title {
    color: #EA5E0B;
    font-size: 20px;
    font-weight: 600;
}

.close-x {
    font-size: 25px !important;
    font-weight: 500 !important;
}

.forgot-label {
    color: #ac1b08 !important;
}

    .forgot-label:hover {
        color: #EA5E0B !important;
    }

.forgot-img-width {
    width: 360px !important;
}

.login-img-width {
    width: 500px !important;
}
/* ===================
User Nav
====================== */
.top-button {
    color: #fff !important;
    cursor: pointer;
    font-family: "DM Sans", "Noto Color Emoji", sans-serif;
}

.user-menu-avatar {
    height: 24px;
    width: 24px;
}

#user-image-mini {
    object-fit: cover;
}

.mobil-login .dropdown-menu {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid lightgray;
}

.dropdown-menu {
    margin: 1rem 16rem 0 0;
    font-size: 1.4rem !important;
    padding: 8px 3px !important;
}

.profile-img {
    margin-left:2rem;
    height:10rem;
    width: 10rem !important;
    border-radius: 50px;
}

.caption_info > p {
    width: 400px !important;
}

.img-public {
    width: 370px !important;
    height: 230px !important;
    object-fit: cover !important;
}

.blog-content p {
    text-align: justify;
}

.blog-box .dateAndComment.row {
    margin-top: 5px;
    flex-direction: column;
    align-items: flex-start !important;
}

.blog-thumb-img img {
    width: 100%
}

.recent-img {
    object-fit: cover;
    width: 60px;
    height: 60px;
}

.pupular-categories {
    text-transform: capitalize;
}

    .pupular-categories i {
        color: #EA5E0B;
    }

.blog-side-title {
    padding-left: 15px;
    margin-top: 0 !important;
}

.sidebar-content {
    padding-left: 10px;
}

.btn-tag {
    padding: 5px 5px !important;
    color: #EA5E0B;
    font-weight: 700;
    text-transform: capitalize;
}

    .btn-tag:hover {
        color: whitesmoke;
        background-color: #EA5E0B !important;
        border: 0 solid #EA5E0B;
        border-radius: 5px;
        box-shadow: 0 0.5rem 1rem 0 rgba(16, 20, 87, 0.3) !important;
    }

#faq .card {
    margin-bottom: 15px;
    border: 0;
}

    #faq .card .card-header {
        border: 1px solid #EA5E0B;
        -webkit-box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
        box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
        border-radius: 5px;
        padding: 0;
    }

        #faq .card .card-header .btn-header-link {
            
            display: block;
            text-align: left;
            border: 0px solid #EA5E0B;
            padding: 20px;
            position: relative;
            border-radius: 10px;
            
            font-size: 16px;
            font-weight: 600;
            background: #fff; /*#004C80*/
            color: #EA5E0B;
        }

            #faq .card .card-header .btn-header-link:after {
                content: "\F286";
                font-family: bootstrap-icons !important;
                font-weight: 900;
                float: right;
            }

            #faq .card .card-header .btn-header-link.collapsed {
                font-size: 16px;
                font-weight: 600;
                background: #fff; /*#004C80*/
                color: #EA5E0B;
            }

                #faq .card .card-header .btn-header-link.collapsed:after {
                    content: "\F282";
                    font-family: bootstrap-icons !important;
                    font-weight: 900;
                    float: right;
                }

    #faq .card .collapsing {
        background: transparent;
        line-height: 30px;
    }

    #faq .card .collapse {
        border: 0;
    }

        #faq .card .collapse.show {
            background: transparent;
            line-height: 30px;
            color: #222;
        }


.accordion > .card > .card-header {
    margin-bottom: 0;
}

.footer-conpany-info i {
    color: #fff;
    margin-right: 10px;
    font-size: 1.7rem;
}

.footer-conpany-info p {
    color: rgba(255, 255, 255, 0.75) !important;
    text-align: justify;
}

.footer-conpany-info a {
    color: rgba(255, 255, 255, 0.75) !important;
}


@media screen and (max-width: 1199px) {
    .button-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .button-container a{
        width: 100%;
    }
}

.button-container{
    width: 100%;
}

.button-container a{
    text-align: center;
}

.button-container a:first-child{
    margin-left: 0;
}

.button-container a:last-child{
    margin-right: 0;
}
.meeting-side{

}
.meeting-brief {
    border: 0 solid red;
    border-radius: 10px;

    padding: 20px;
    margin-bottom: 18px;
    border-radius: 3px;
}
.case-sidebar-title {
    text-transform: uppercase;
    color: #004C80 ;
    font-weight:900;
    margin: 0 0 10px 0;
}
.event-type{
    padding:0px;
    color: grey;
}
.meeting-brief ul li {
    border-bottom: 2px solid #ffc21c;
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 33px;
    color: #004C80;
}

    .meeting-brief ul li span {
        display: block;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 500;
        line-height: 20px;
        color: gray;
    }
.price-title {
    color: #004C80 !important;
}
.widget {
    padding: 16px;
    margin-bottom: 18px;
    border-radius: 3px;
}
.meeting-link-card h4 {
    margin: 0;
    font-weight: 500;
    color: #004C80;
}
.theme-meeting-btn {
    margin-top:10px;
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    padding:1rem;
    border-radius: 3px;
    background: #ffc21c !important;
    transition: all 500ms linear;
    width:100%;


}
.fontWhite {
    color: #004C80;
    font-weight:600;
}
.detailButtons{

    min-height:590px;
}
.gradient-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 60%;
    border-radius: 10px ;
}
.meetingDetailImg {
    object-fit: cover;
    width: 100%;
    height: 590px;
    border-radius: 10px ;
}
.mDetail {
    margin-top: 18rem;
}
.mDetailTab{
    padding:0;
}
.meetingBorder {
    border-right: 2px solid #ffc21c;
}
.theme-meeting-btn:hover {
    color: #fff !important;
    background-color: #EA5E0B !important;
}
.meeting-recap-btn {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    padding: 1rem 5rem 1rem 2rem;
    border: 0px solid red;
    !important;
    border-radius: 1rem;
    background: #849bb9 !important;
    transition: all 500ms linear;
   
}
    .meeting-recap-btn:hover {
        color: #fff !important;
        background-color: #3d5e8a !important;
    }
.meeting-tab {
    width: 100%;
    text-align: center;
    background-color: #EEF1F6;
    color:#fff;
}
    .meeting-tab a {
        width: 100%;
        text-align: center;
        color: black;
    }
    .meeting-tab:active {
        width: 100%;
        text-align: center;
        background-color: #ffca004a !important;
    }
.meeting-nav {
    flex-wrap: nowrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    
    align-items: center;
    justify-content: center;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: black;
    background-color: #ffc21c !important;
}
.detailTab:hover {
    color: black !important;
    background-color: #ffca004a !important;
}
.footer-image {
    padding-right: 5rem;
   
}
.email-container {
    text-align: center;
}

    .email-container h3 {
        display: flex;
        align-items: center;
        
    }

    .email-container i {
        margin-right: 8px; 
    }
.contactInfoLine {
    height: 1px;
    background-color: #004C80;
}
.blogTitle {
    font-size: 25px;
    text-align: left !important;
    line-height: 1.2;
    color: black;
    font-weight: 700;
    
}
.blgReadMoreBtn {
    padding : 0 1.5rem;
    /*position: absolute;*/
    /*bottom: 0;*/
    /*left: 16%;*/
    /*transform: translateX(-50%);*/
    /*margin-bottom: 20px;*/
}
.testimoialsTitle {
   font-size:20px; font-weight:700; color:black;
}
.designation-title{
    margin :0px;
}
.testimoialsTitle:hover {
    color: rgb(234, 94, 11) !important;
}
.benefit-logo {
    background-color: #FFC21C ;
    padding: 21px;
    border-radius: 50px;
}
.benefits-btn {
    font-size: 16px;
    font-weight: 600;
    color: #EA5E0B;
}
    .benefits-btn:hover {
        color: #ff9701;
    }
    .benefits-btn:hover::after {
        color: #ff9701;
    }
    .benefits-btn::after {
        content: " ➜";
        color: #EA5E0B;
        font-size: 1.5rem;
        vertical-align: middle;
    }
.counter-sec {
    background-color: #bababa3b;
}
.meetingInfo {
    border: 1px solid #ffc21c;
    border-radius: 5px;
    margin-bottom:4rem;
}
.event-readMore:hover{
    color:#ffc21c !important;
    cursor:pointer;
}
.footer-fixed {
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    
}
.dark-row {
    background-color: #09426b;
}

#country-name-cell .country-name-link:hover {
    text-decoration: underline !important;
}
#freight-details-btn {
    color: gray !important;
}
