* {
    margin: 0;
    padding: 0;
    font-family: 'Itim', cursive;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

.row {
    width: 100%;
    height: 100%;
    margin: 0;
}

.container {
    width: 100%;
    height: 100%;
    padding: 0;
}

.container-fluid {
    width: 100%;
    height: 100%;
    padding: 0;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    width: 100%;
}

.swiper-slide {
    text-align: center;
    width: auto;
}

.dataTables_wrapper .dataTables_filter input {
    outline: none;
}

.page-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.custom-btn {
    display: block;
    margin: auto;
    margin-bottom: 20px;
    background: #fa302f;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    transition: all 0.3s;
}

.custom-btn:hover {
    background: #002959;
    color: white;
}

button[title~="edit"] {
    padding: 0.175rem .45rem;
    font-size: 14px;
}

button[title~="delete"] {
    padding: 0.175rem .45rem;
    font-size: 14px;
}

.loader {
    font-size: 25px;
    display: none;
    text-align: center;
}

.loader.active {
    display: block;
}

#dltModal .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
    margin-top: auto;
    margin-bottom: auto;
}

#error-modal .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
    margin-top: auto;
    margin-bottom: auto;
}

#error-modal .modal-body button {
    margin: 5px auto;
    display: block;
}

#mail-success-modal .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
    margin-top: auto;
    margin-bottom: auto;
}

#mail-success-modal .modal-body button {
    margin: 5px auto;
    display: block;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.section-heading h1 {
    text-align: center;
    margin-bottom: 0;
    position: relative;
    font-size: calc(1vw + 25px);
}

.section-heading .underline {
    display: inline-block;
    position: relative;
}

.section-heading .underline::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 130px;
    background: #000;
    bottom: 13px;
    left: 25px;
}

.section-heading .underline::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 120px;
    background: #000;
    bottom: 13px;
    right: 25px;
}

/*-----------------------------------------------------------Scroller----------------------------------------------------------------*/

/* width */

::-webkit-scrollbar {
    width: 5px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: rgb(200, 199, 199);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: rgb(200, 199, 199);
}

/*-----------------------------------------------------------Input----------------------------------------------------------------*/

.inputBox {
    position: relative;
}

.inputBox input, .inputBox textarea, .inputBox select {
    width: 100%;
    padding: 0.5rem 10px;
    font-size: 1rem;
    letter-spacing: 0.062rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    background: transparent;
    border-radius: 4px;
    outline: none;
    background: white;
    color: rgb(27, 27, 27);
}

.inputBox label {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: grey;
    pointer-events: none;
    transition: 0.5s;
}

.inputBox input:focus~label, .inputBox input:not(:placeholder-shown)~label, .inputBox textarea:focus~label, .inputBox textarea:not(:placeholder-shown)~label {
    top: -0.7rem;
    left: 10px;
    color: #1a73e8;
    font-size: 0.95rem;
    background-color: white;
    height: auto;
    padding: 0;
    padding-left: 5px;
    padding-right: 5px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.inputBox input:focus, .inputBox textarea:focus {
    outline: none;
    border: 2px solid #1a73e8;
}

/*---------------------------------------About--------------------------------------------*/

#about-section {
    background: #f3f3f3;
    padding: 40px 0;
}

.responsive-map{
overflow: hidden;
padding-bottom:56.25%;
position:relative;
height:0;
}
.responsive-map iframe{
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}
/*---------------------------------------Clients--------------------------------------------*/

#clients-section {
    background: #f3f3f3;
    padding: 40px 0;
}

#clients-section .clients-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

#clients-section .clients-container .img {
    width: 190px;
    height: 120px;
    margin: 5px;
    box-shadow: 1px 2px 4px 0px rgb(0 0 0 / 75%);
}

#clients-section .clients-container .img img {
    width: 100%;
    height: 100%;
}

@media(max-width:439px) {
    #clients-section .clients-container .img {
        width: 140px;
        height: 95px;
    }
}

/*-----------------------------------------------------------Contact----------------------------------------------------------------*/

#contact-section {
    padding: 20px 0;
}

#contact-section .container {
    position: relative;
    width: 100%;
    padding: 20px;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-section .form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

#contact-section .contact-form {
    background-color: #192f59;
    position: relative;
}

#contact-section .circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #149279);
    position: absolute;
}

#contact-section .circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

#contact-section .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

#contact-section .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #1abc9c;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

#contact-section form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

#contact-section .title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

#contact-section .input-container {
    position: relative;
    margin: 1rem 0;
}

#contact-section .input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

#contact-section textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

#contact-section .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

#contact-section .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

#contact-section .btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #1abc9c;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

#contact-section .btn:hover {
    background-color: transparent;
    color: #fff;
}

#contact-section .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

#contact-section .input-container span:before, #contact-section .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #1abc9c;
    top: 50%;
    transform: translateY(-50%);
}

#contact-section .input-container span:before {
    left: 50%;
}

#contact-section .input-container span:after {
    right: 50%;
}

#contact-section .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

#contact-section .input-container.focus span:before, #contact-section .input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

#contact-section .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

#contact-section .contact-info .title {
    color: #1abc9c;
}

#contact-section .text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

#contact-section .information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

#contact-section .icon {
    width: 28px;
    margin-right: 0.7rem;
}

#contact-section .social-media {
    padding: 2rem 0 0 0;
}

#contact-section .social-media p {
    color: #333;
}

#contact-section .social-icons {
    display: flex;
    margin-top: 0.5rem;
}

#contact-section .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #1abc9c, #192f59);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

#contact-section .social-icons a:hover {
    transform: scale(1.05);
}

#contact-section .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #1abc9c;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

#contact-section .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #1cd4af, #192f59);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}

#contact-section .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

#contact-section .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

@media (max-width: 850px) {
    #contact-section .form {
        grid-template-columns: 1fr;
    }
    #contact-section .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }
    #contact-section .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }
    #contact-section .square {
        transform: translate(140%, 43%);
        height: 350px;
    }
    #contact-section .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }
    #contact-section .text {
        margin: 1rem 0 1.5rem 0;
    }
    #contact-section .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    #contact-section .container {
        padding: 0;
    }
    #contact-section .contact-info:before {
        display: none;
    }
    #contact-section .square, .big-circle {
        display: none;
    }
    #contact-section form, #contact-section .contact-info {
        padding: 1.7rem 1.6rem;
    }
    #contact-section .text, #contact-section .information, #contact-section .social-media p {
        font-size: 0.8rem;
    }
    #contact-section .title {
        font-size: 1.15rem;
    }
    #contact-section .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    #contact-section .icon {
        width: 23px;
    }
    #contact-section .input {
        padding: 0.45rem 1.2rem;
    }
    #contact-section .btn {
        padding: 0.45rem 1.2rem;
    }
}

/*-----------------------------------------------------------Sticky----------------------------------------------------------------*/

#sticky-section {
    position: absolute;
    z-index: 999;
}

#sticky-section .phone {
    position: fixed;
    bottom: 25px;
    left: 10px;
}

#sticky-section .whatsapp {
    position: fixed;
    bottom: 25px;
    right: 10px;
}

#sticky-section a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 25px;
    color: white;
    animation: shake 1.5s cubic-bezier(.36, .07, .19, .97) both infinite;
    transform: translate3d(0, 0, 0);
}

#sticky-section .phone a {
    background: #af0f24;
}

#sticky-section .whatsapp a {
    background: #0d9c3f;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

/*-----------------------------------------------------------Header----------------------------------------------------------------*/

#topbar {
    width: 100%;
    height: 48px;
    background: #002959;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    padding: 0 20px;
}

#topbar span {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 10px;
    text-align: center;
    letter-spacing: 3px;
}

#topbar .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
}

#topbar .social-icons i {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    background: #ffffff;
    position: relative;
    /*background-color: transparent;
    background-image: url('../img/dot.png');*/
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
    height: 100px;
}

.logo img {
    width: 100%;
    height: 100%;
}

#header .text-two {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

#header .media {
    color: rgb(0, 0, 0);
    font-size: 15px;
    margin: 0 10px;
}

#header .media i {
    width: 40px;
    height: 40px;
    border: 2px solid #fa302f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

#header .media h5 {
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

#navbar {
    position: relative;
    transition: all 0.3s;
}

#navbar ul {
    margin: 0;
    list-style: none;
    transition: all 0.5s;
}

#navbar ul li {
    display: inline-block;
    position: relative;
}

#navbar ul li a {
    display: block;
    padding: 5px 10px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 22px;
}

#navbar ul li a:hover {
    color: #fa302f;
}

.hamburger {
    width: 25px;
    margin-right: 10px;
    display: none;
    position: absolute;
    right: 0;
    cursor: pointer;
}

.hamburger div {
    width: 100%;
    height: 2px;
    margin-bottom: 4px;
    background: #002959;
    transition: all 0.3s;
}

@media(max-width:1094px) {
    #header .text-two {
        display: none;
    }
}

@media(max-width:916px) {
    #topbar span {
        margin: 0 auto;
        font-size: 13px;
    }
    #topbar {
        padding: 0 4px;
    }
    #topbar .social-icons {
        display: none;
    }
    #header {
        height: 80px;
        padding: 10px 10px;
    }
    #header button {
        margin-right: 50px;
        width: 200px;
    }
    .logo {
        height: 80px;
    }
    .hamburger {
        display: block;
    }
    #navbar {
        height: 0;
        overflow: hidden;
        transition: all 0.3;
    }
    #navbar ul li {
        display: block;
    }
    #navbar ul li a {
        border-bottom: 1px dotted gray;
        padding: 5px 10px;
        padding-left: 60px;
    }
}

#navbar.open {
    position: absolute;
    height: 270px;
    top: 80px;
    background: #002959;
    color: white;
    z-index: 8;
    width: 100%;
    left: 0;
}

#header.open .hamburger .div1 {
    transform: rotate(38deg);
}

#header.open .hamburger .div3 {
    transform: rotate(-38deg);
}

#header.open .hamburger .div2 {
    display: none;
}

/*-----------------------------------------------------------Hero----------------------------------------------------------------*/

#hero-section {
    position: relative;
}

#hero-section .col-md-12 {
    padding: 0;
}

#hero-section img {
    width: 100%;
    height: 600px;
}

#hero-section .black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    z-index: 2;
}

#hero-section .container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    z-index: 4;
    color: white;
    transform: translateX(-50%);
}

#hero-section .container .left {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}


#hero-section .container .col-md-6 {
    padding-top: 20px;
    padding-bottom: 20px;
}


#hero-section .container .col-md-6:nth-child(2) {
    padding-left: 40px;
    padding-right: 40px;
}

#hero-section .container .left .custom-btn {
    margin: 1px;
}

#hero-section .container .left h1 {
    color: #ffffff;
    font-size: calc(1vw + 18px);
}

#hero-section .container .left h3 {
    color: #fa302f;
    text-align: center;
    font-size: calc(1vw + 16px);
}

#hero-section .container .left p {
    text-align: center;
}

#hero-section .container #enquiry_form {
    border-radius: 8px;
}

#hero-section .container #enquiry_form .form {
    padding: 15px 0;
}

#hero-section .container #enquiry_form h3 {
    background: #fa302f;
    width: 100%;
    padding: 8px 15px;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
    display: inline-block;
}

@media(max-width:720px) {
    #hero-section img {
        height: 800px;
    }
}

/*-----------------------------------------------------------About-Why----------------------------------------------------------------*/

#about-why-section {
    padding: 40px 0;
}

#about-why-section h4 {
    margin: 0;
    margin-bottom: 20px;
}

#about-why-section h4 span {
    background: #fa302f;
    color: white;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    padding: 5px 10px;
    padding-right: 50px;
}

#about-why-section .about-section img {
    float: left;
    width: 100%;
    max-width: 300px;
    height: 200px;
    margin-right: 15px;
    border-radius: 5px;
    box-shadow: 2px 2px 4px 4px gainsboro;
}

#about-why-section .about-section p {
    text-align: justify;
    padding: 0 10px;
}

.rate-calc form {
    padding: 20px 15px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #f1f1f1;
    box-shadow: 0px 3px 4px 2px gainsboro;
    margin-top: 15px;
}

#distance_form_result table, #distance_form_result_modal table {
    border: 1px solid gainsboro;
    border-collapse: collapse;
    width: 100%;
}

#distance_form_result table th, #distance_form_result table td, #distance_form_result_modal table th, #distance_form_result_modal table td {
    padding: 8px 6px;
    border: 1px solid gainsboro;
}

#distance_form_result table td, #distance_form_result_modal table td {
    text-align: end;
}

#quoteModal .modal-header {
    background: #fa302f;
    color: white;
    font-size: 20px; 
}

/*-----------------------------------------------------------Placement----------------------------------------------------------------*/

#placement-section {
    padding: 20px 0;
}

#placement-section .swiper-slide {
    padding: 5px 0;
}

#placement-section .placement-slider img {
    width: 250px;
    height: 210px;
    box-shadow: 1px 2px 4px 0px rgb(0 0 0 / 75%);
}

/*-----------------------------------------------------------Services----------------------------------------------------------------*/

#services-section {
    background: #f3f3f3;
    padding: 20px 0;
}

#services-section .box {
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 2px 3px gainsboro;
}

#services-section .box .img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: 5px solid rgb(190, 189, 189)
}

#services-section .box .img img {
    width: 100%;
    height: 100%;
}

#services-section .box .text {
    padding: 10px 8px;
}

#services-section .box .text h3 {
    font-style: italic;
    color: #002959;
}

/*-----------------------------------------------------------Placement----------------------------------------------------------------*/

#placement-section .placement-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

#placement-section .placement-container .img {
    width: 180px;
    height: 110px;
    margin: 5px;
    box-shadow: 1px 2px 4px 0px rgb(0 0 0 / 75%);
}

#placement-section .placement-container .img img {
    width: 100%;
    height: 100%;
}

@media(max-width:439px) {
    #placement-section .placement-container .img {
        width: 140px;
        height: 95px;
    }
}

/*-----------------------------------------------------------pic video----------------------------------------------------------------*/

#pic-video-section {
    padding: 40px 0;
    background: rgb(0, 41, 89);
    background: linear-gradient(333deg, rgba(0, 41, 89, 1) 0%, rgba(77, 77, 129, 1) 46%, rgba(233, 152, 94, 1) 100%);
}

.pic-section .box {
    position: relative;
    padding: 10px 20px;
    color: white;
    margin-bottom: 20px;
    z-index: 2;
    width: 100%;
    height: 265px;
}

.pic-section .box h3 {
    color: #fa302f;
}

.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.4;
    z-index: -1;
}

.pic-section .box img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/*-----------------------------------------------------------Testimonial----------------------------------------------------------------*/

.testim {
    width: 100%;
    background: #002959;
    padding-top: 20px;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #eee;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
    color: #ea830e;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active, .testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;
    -moz-animation: testim-scale .5s ease-in-out forwards;
    -ms-animation: testim-scale .5s ease-in-out forwards;
    -o-animation: testim-scale .5s ease-in-out forwards;
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {
    position: relative;
    opacity: 1;
}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #ea830e;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #eee;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;
    -moz-animation: testim-show .5s ease-in-out forwards;
    -ms-animation: testim-show .5s ease-in-out forwards;
    -o-animation: testim-show .5s ease-in-out forwards;
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;
    -moz-animation: testim-content-in .4s ease-in-out forwards;
    -ms-animation: testim-content-in .4s ease-in-out forwards;
    -o-animation: testim-content-in .4s ease-in-out forwards;
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;
    -moz-animation: testim-content-in .5s ease-in-out forwards;
    -ms-animation: testim-content-in .5s ease-in-out forwards;
    -o-animation: testim-content-in .5s ease-in-out forwards;
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;
    -moz-animation: testim-hide .5s ease-in-out forwards;
    -ms-animation: testim-hide .5s ease-in-out forwards;
    -o-animation: testim-hide .5s ease-in-out forwards;
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;
    -moz-animation: testim-content-out .4s ease-in-out forwards;
    -ms-animation: testim-content-out .4s ease-in-out forwards;
    -o-animation: testim-content-out .4s ease-in-out forwards;
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;
    -moz-animation: testim-content-out .5s ease-in-out forwards;
    -ms-animation: testim-content-out .5s ease-in-out forwards;
    -o-animation: testim-content-out .5s ease-in-out forwards;
    animation: testim-content-out .5s ease-in-out forwards;
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }
    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }
    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }
    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;
        box-shadow: 0px 0px 10px 5px #ea830e;
    }
    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;
    }
    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    to {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5em;
    }
    .testim .cont div p {
        line-height: 25px;
    }
}

/*-----------------------------------------------------------Footer----------------------------------------------------------------*/

.new_footer_area {
    background: #fbfbfd;
}

.new_footer_top {
    padding: 0px 0px 270px;
    position: relative;
    overflow-x: hidden;
}

.new_footer_area .footer_bottom {
    padding-top: 5px;
    padding-bottom: 20px;
}

footer .form-control {
    margin-bottom: 10px;
}

.footer_bottom {
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    color: #002959;
    padding: 27px 0px;
}

.new_footer_top .company_widget p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 1px;
    margin-top: 20px;
}

.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}

.btn_get:hover {
    color: #fff;
    background: #6754e2;
    border-color: #6754e2;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
    text-decoration: none;
    outline: none;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: #5e2ced;
}

.new_footer_top .f_widget.about-widget .f_list li {
    margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
    margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
    margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
    margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 43px;
    background: transparent;
    border: 1px solid #e2e2eb;
    font-size: 24px;
}

.f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 45px;
    color: #858da8;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.ti-facebook:before {
    content: "\e741";
}

.ti-twitter-alt:before {
    content: "\e74b";
}

.ti-vimeo-alt:before {
    content: "\e74a";
}

.ti-pinterest:before {
    content: "\e731";
}

.btn_get_two {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #5e2ced;
    border-color: #5e2ced;
    color: #fff;
}

.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}

.new_footer_top .f_social_icon a:hover {
    background: #5e2ced;
    border-color: #5e2ced;
    color: white;
}

.new_footer_top .f_social_icon a+a {
    margin-left: 4px;
}

.new_footer_top .f-title {
    margin-bottom: 30px;
    margin-top: 30px;
    color: #263b5e;
}

.f_600 {
    font-weight: 600;
}

.f_size_18 {
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    color: #4b505e;
}

.new_footer_top .f_widget.about-widget .f_list li a {
    color: #6a7695;
}

.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    background: url("http://droitthemes.com/html/saasland/img/seo/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
    background: url("../img/truck.gif") no-repeat center center;
    width: 330px;
    height: 245px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
    /*background: url("https://1.bp.blogspot.com/-hjgfxUW1o1g/Xck--XOdlxI/AAAAAAAAT_4/JWYFJl83usgRFMvRfoKkSDGd--_Sv04UQCLcBGAsYHQ/s1600/cyclist.gif") no-repeat center center;*/
    width: 88px;
    height: 100px;
    background-size: 100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}

@-moz-keyframes myfirst {
    0% {
        left: -25%;
    }
    100% {
        left: 100%;
    }
}

@-webkit-keyframes myfirst {
    0% {
        left: -25%;
    }
    100% {
        left: 100%;
    }
}

@keyframes myfirst {
    0% {
        left: -25%;
    }
    100% {
        left: 100%;
    }
}

/*************footer End*****************/

/*-----------------------------------------------------------Responsive----------------------------------------------------------------*/

@media screen and (max-width: 900px) {}