@import url('./variables.css');

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Josefin Sans", "Helvetica", "Arial", "sans-serif";
}

a {
    text-decoration: none;
    transition: 0.3s all ease;
    cursor: pointer;
    color: #4b67ad;
}
 
/*
p {
    color: goldenrod;
    font-size: 12px;
}
   */    

/* ////////////////////////////////////////////////////////
    Navbar CSS
///////////////////////////////////////////////////////////*/

.navbar {
    background-color: #f7f7f7;
    padding: 20px 0;
}

.navbar .navbar-nav {
    justify-content: space-between;
    width: 90%;
}

.navbar .nav-link {
    font-size: 18px;
    color: var(--black);

}



/* ////////////////////////////////////////////////////////
    Main Banner CSS
///////////////////////////////////////////////////////////*/
.main-banner-sec {
    padding: 50px 0 150px 0;
}

.main-banner-sec img {
    width: 70%;
}

.main-banner-sec h1 {
    font-size: 42px;
}




/* ////////////////////////////////////////////////////////
    Mockup Seciton CSS
///////////////////////////////////////////////////////////*/
.mockup-sec {
    background-color: var(--primary);
    box-shadow: rgba(0, 0, 0, 0.56) 0px 4px 74px 12px;
    margin-bottom: 85px;
    position: relative;
}

.mockup-sec .mockup-img {
    width: 100%;
}

.mockup-sec h2 {
    color: var(--white);
    text-shadow: 2px 2px #000;
    font-size: 30px;
    margin-bottom: 0;
}

.mockup-sec .help-box {
    background-color: #f1f1f2;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 4px 74px 12px;
    width: fit-content;
    padding: 15px 30px;
    position: relative;
    margin: 0 auto;
    top: 50px;

}

.mockup-sec .help-box p {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 600;
}

.call-box {
    text-align: center;
    padding-bottom: 10px;
}

.call-box a {
    color: var(--black);
    font-size: 38px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Josefin Sans", sans-serif;
}

.call-box a:hover {
    color: var(--primary);
}


/* ////////////////////////////////////////////////////////
    Testimonial Seciton CSS
///////////////////////////////////////////////////////////*/
.testimonial-sec {
    background-color: #dadadb;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 4px 74px 12px;
    padding: 80px 0;
    margin-top: 20px;
}

.testimonial-sec .testimonial-box {
    background-color: transparent;
    border: 3px solid var(--primary);
    text-align: center;
}

.testimonial-sec .testimonial-box .title {
    color: var(--black);
    font-size: 24px;
    font-family: "Josefin Sans", sans-serif;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 0;
}

.testimonial-sec .testimonial-box .testimonial-inner-box {
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 70px;
    margin: 0 30px 30px 30px;
}

.testimonial-sec .testimonial-box .testimonial-inner-box p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 0;
}

.testimonial-box-new {
    background-color: transparent;
    border: 3px solid var(--primary);
    text-align: center;
}

.testimonial-box-new .title {
    color: var(--black);
    font-size: 24px;
    font-family: "Josefin Sans", sans-serif;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 0;
}

.testimonial-box-new .testimonial-inner-box {
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 30px;
    margin: 0 30px 30px 30px;
    text-align: left;
    min-height: 220px;
}

/* Testimonial Seciton CSS */
.testimonial-sec {
    background-color: #dadadb;
    padding: 80px 0;
    margin-top: 20px;
}

.testimonial-box-new {
    background-color: transparent;
    border: 3px solid var(--primary);
    text-align: center;
    display: none; /* Hide all testimonials initially */
}

    .testimonial-box-new.active {
        display: block; /* Show the active testimonial */
        opacity: 0; /* Start with invisible */
        animation: fadeIn 1s forwards; /* Fade in animation */
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




/* ////////////////////////////////////////////////////////
    Footer CSS
///////////////////////////////////////////////////////////*/
footer {
    padding: 20px 0 10px 0;
}

footer .copyright-box {
    display: flex;
    align-items: center;
    justify-content: center;

}

footer .copyright-box .img-box {
    margin-right: 10px;
}

footer .copyright-box .img-box img {
    width: 50px;
    height: 50px;
}

footer .copyright-box .content-box p {
    color: #636364;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

footer .footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

footer .footer-social a {
    background-color: #636364;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50rem;
    color: var(--white);
}

footer .footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

footer .footer-links ul li a {
    color: #636364;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}





/* ////////////////////////////////////////////////////////
    Auth Pages CSS
///////////////////////////////////////////////////////////*/

.auth-page-box {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.auth-page-box .auth-box {
    border: 15px solid var(--primary);
    padding: 20px;
}

.auth-page-box .auth-box .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.auth-page-box .auth-box .header img {
    width: 30px;
}

.auth-page-box .auth-box .header .title {
    font-size: 30px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}

.auth-page-box .auth-box .desc {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 30px;
}

.auth-page-box .auth-box .form-box {
    background-color: #cacaca;
    border-radius: 15px;
    padding: 30px 20px;
}

.auth-page-box .auth-box .form-box .padding-box {
    padding: 0 15px;
}

.auth-page-box .auth-box .form-box .form-control {
    min-height: 45px;
    border-right: 0;
}

.auth-page-box .auth-box .form-box .form-control:focus {
    box-shadow: none;
    outline: 0;
    border-color: transparent;
}

.auth-page-box .auth-box .form-box .input-group-text {
    background-color: #fff;
    border-left: 0;
}

.auth-page-box .auth-box .form-box label {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 20px;
    margin-top: 5px;
}

.auth-page-box .auth-box .form-box label small {
    font-size: 12px;
    font-weight: 400;
}


.auth-btn {
    background-color: var(--white);
    width: 60%;
    margin: 0 auto;
    position: relative;
    text-align: center;
    border: none;
    padding: 12px 30px;
    font-size: 20px;
    text-transform: uppercase;
    transition: 0.3s all ease;
}

.auth-btn img {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 35px;
}

.auth-btn:hover {
    color: var(--primary);
}

.auth-page-box .auth-box .form-box .check-box {
    margin-bottom: 30px;
    margin-top: 10px;
}

.auth-page-box .auth-box .form-box .check-box label {
    color: var(--black);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.auth-page-box .auth-box .form-box .check-box a {
    color: var(--black);
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: underline;
}


.signup-btn {
    display: block;
    background-color: var(--white);
    text-align: center;
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    width: 100%;
    border: 0;
}

.signup-btn:hover {
    color: var(--primary);
}


.singup-end-text {
    width: 90%;
    text-align: center;
    margin: 10px auto 25px auto;
    font-size: 13px;
    font-weight: 500;
}

/* ///////////// NEW SUBMIT ////////////*/
 
.newsubmitbox {
    color: darkblue;
    font-size: 12px;
    text-align: center;  
}

.newsubmit-disc {
    color: blue;
    font-size: 11px;
    text-align: left;  
}

 .circle {
    margin: 3rem;
    background-color: gold;
    width: 100px;
    height: 100px;
    border: 2px solid black; 
    border-radius: 50px; 
}

.newred-box {
    background-color: rgb(207, 206, 206);
    border: 0px solid black;
    font-size: .8rem;
    margin: 1.8em;
    padding: 1.3em;  
    border-radius: 1px; 
}


.newgreen-box {
    background-color: lightgreen;
    border: 2px dashed black;
    font-size: .8rem;
    margin: 1.8em;
    padding: 1.3em;  
    border-radius: 1px; 
}

.newblue-box {
    background-color: lightblue;
    border: 2px dashed #223187;
    font-size: 1.2rem;
    margin-left: 2em;
	margin-right: 2em;
    padding: 1.1em;
	padding-left: 5.5em; 
	padding-right: 1em;   
    border-radius: 30px;
	align: left; 
}

.newbb-text {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: .8rem;
    color: black;
	align: left; 
	/* background-color: lightcyan; */
}

.line-text-left {
	text-align: left; 
	/* background-color: lightcyan; */
}

.line-center {
	align-content: center
	/* background-color: lightcyan; */
}

/* ////////////////////////////////////////////////////////
    About Pages CSS  and NEW TERMS 
///////////////////////////////////////////////////////////*/
.newterms {
    color: darkslategray;
    font-size: 12px;
    text-align: left;  
}

.newterms-desc {
    color: dimgray;
    font-size: 11px;
    text-align: left;  
}

.about-sec {
    padding: 50px 0;
}

.about-sec .page-title {
    color: var(--black);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.about-sec .about-box {
    background-color: #e2e3e4;
    padding: 20px 50px 30px 50px;
    font-family: "Josefin Sans", sans-serif;
}

/* ~ ~ ~ adjustments ~ ~ ~ ~ */

.about-sec .about-box img {
    width: 60%;
    margin-left: 0px;
    margin-bottom: 30px;
    border: 2px solid var(--black);
	text-align: center;
}

.about-sec .about-box .name {
	color: var(--black);
	font-size: 38px;
	font-weight: 700;
	text-align: center;
	line-height: 35px;
	margin-bottom: 0;
}

.about-sec .about-box .position {
	color: var(--black);
	font-size: 33px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0;
}

.about-sec .about-box .position-bottom {
    color: var(--black);
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    line-height: normal;
}

.about-sec .about-box .phone-box {
    margin-bottom: 30px;
}

.about-sec .about-box .phone-box a {
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    line-height: normal;
    display: block;
    margin-bottom: 5px;
}

.about-sec .about-box .phone-box a:hover {
    color: var(--primary);
}

.about-sec .about-box .mail-box {
    margin-bottom: 30px;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-sec .about-box .mail-box a {
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    line-height: normal;
    display: block;
    margin-bottom: 10px;
}

.about-sec .about-box .mail-box a:hover {
    color: var(--primary);
}

.about-sec .about-box .desc {
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -1px;
}

.fade-in2 {
    opacity: 0; /* Start with invisible */
    animation: fadeIn 2s forwards; /* Fade in animation */
}

@keyframes fadeIn {
0% {
    opacity: 0;
}

100% {
    opacity: 1;
}
}



/* ////////////////////////////////////////////////////////
    Partners Pages CSS
///////////////////////////////////////////////////////////*/

.partner-sec {
    padding: 50px 0;
}

.partner-sec .page-title {
    color: var(--black);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.partner-sec .partner-title {
    color: var(--black);
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.partner-sec .partner-box {
    border: 3px solid var(--primary);
    text-align: center;
    padding: 40px 10px;
    margin-bottom: 30px;
}

.partner-sec .partner-box img {
    width: 70%;
    margin-bottom: 30px;
    height: 100px;
    object-position: center center;
    object-fit: contain;
}

.partner-sec .partner-box .first-text {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 63px;
}

.partner-sec .partner-box .second-text {
    color: var(--black);
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 53px;
}

.partner-sec .partner-box .bdr {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 20px;
}


/* ////////////////////////////////////////////////////////
    Resources Pages CSS
///////////////////////////////////////////////////////////*/

.resource-sec {
    padding: 50px 0;
}

.resource-sec .page-title {
    color: var(--black);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.resource-sec .resource-box {
    border: 3px solid var(--primary);
    padding: 40px 20px;
    margin-bottom: 30px;
}

.resource-sec .resource-box .title {
    color: var(--black);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
}

    .resource-sec .resource-box .desc {
        color: var(--black);
        font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
		font-size: 18px;
        font-weight: 400;
        margin-bottom: 20px;
        text-align: left;
    }

.resource-sec .resource-box a {
    color: #636364;
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.resource-sec .resource-box a.small {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    width: 70%;
}

.resource-sec .resource-box a i {
    font-size: 30px;
    margin-right: 15px;
}

.resource-sec .resource-box a:hover {
    color: var(--primary);
}

    .resource-sec .resource-box img {
        width: 70%;
        margin-bottom: 30px;
        height: 100px;
        object-position: center center;
        object-fit: contain;
    }



/* ////////////////////////////////////////////////////////
    Testimonial Pages CSS
///////////////////////////////////////////////////////////*/
.testminail-page-sec {
    padding: 30px 0;
}

.testminail-page-sec .bdr {
    border: 5px solid var(--primary);
}

.testminail-page-sec .page-title {
    color: var(--black);
    font-size: 40px;
    text-align: center;
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    padding: 30px 0 30px 0;
}


.testminail-page-sec .review-card {
    background-color: var(--primary);
    width: calc(100% - 60px);
	 /* height: 330px; */
    margin: 30px auto;
    padding: 20px 40px;
	/* padding-bottom: 93px; */
    position: relative;
}

.testminail-page-sec .review-card .review {
    color: var(--white);
    font-size: 18px;
    line-height: 24px;
}

.testminail-page-sec .review-card .from-box {
    position: absolute;
    left: 40px;
    bottom: 20px;
}

.testminail-page-sec .review-card .from-box p {
    margin-bottom: 0;
    color: #dfe0e0;
    font-size: 15px;
}


 /* ////////////////////////////////////////////////////////
    Landing now HOME Pages CSS --matt
///////////////////////////////////////////////////////////*/

.text-box-matt {
    padding-left: 50px ;
	padding-right: 50px ;
}

.landing-sec .logo-img-box {
    background-color: #f1f1f2;
    text-align: center;
}

.landing-sec .logo-img-box img {
    width: 50%;
}

.landing-sec .text-box {
    padding: 50px 0;
	align: center;
	align-items: center;
}

.landing-sec .text-box {
    font-size: 36px;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
	
}

.landing-sec .text-box .primary {
    color: var(--primary);
    font-weight: bold;
	text-align: center;
	align: center;
	align-items: center;
}

.landing-sec .calc-link-box .container {
	background-color: #BFE0F5;
	align: center;
	align-items: center;
	text-align: left;
	margin: 0 auto;
	width: 500px; /* Adjust width as needed */
}

.landing-sec .calc-link-box a {
    display: flex;
    align-items: center;
    justify-content: start;
    color: var(--primary);
    font-family: "Josefin Sans", sans-serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 7px;
    margin-top: 7px;
    line-height: normal;
	text-align: left;
	align-content: left;
	margin: 0 auto;
	width: 500px; /* Adjust width as needed */
}

.landing-sec .calc-link-box a img {
    margin-right: 0px;
    height: 50px;
    position: relative;
    top: -5px;
	text-align: left;
	align-content: left;
	margin: 0 auto;
	width: 500px; /* Adjust width as needed */
}


 /* ///  Second CALC LINK BOX ///////*/


.calc-link-box2 .container2 {
    display: flex;
    font-family: "Josefin Sans", sans-serif;
	background-color: lightgrey;
	margin: 0 auto;
    font-size: 36px;
    color: var(--black);
    font-weight: bolder;
    /* margin: 1.8em; */
    padding: .9em; 
    border-radius: 0px;
    /* font-size: .6rem; */ 
	align-items: left;
	text-align: left; 
	align-content: left; 
	justify-items: left;
	line-height: 1.0;
/* 	width: 640px;   */
}

.calc-link-box2 .container2 img {
    position: relative;
    top: -5px;
	margin: 0 auto;
	margin-right: 0px;
    height: 33px; 
	width: 33px; 
	text-align: left; 
	align-items: left; 
	align-content: left;
	justify-items: left;
	float: left; 
	/* background-color: lightcoral; */ 
	
	
	
}.calc-link-box2 .container2 a {
    display: flex;
    justify-content: start;
    color: var(--primary);
    font-family: "Josefin Sans", sans-serif;
    font-size: 77px;
    /* font-weight: 500; */
    margin-bottom: 7px;
    margin-top: 7px;
    line-height: normal;
	/*align-items: left; */
	/* text-align: left; */
	/* align-content: left; */
	margin: 0 auto;
	width: 500px; /* Adjust width as needed */
	background-color: red;
}


.landing-sec .bottom-sec {
    text-align: center;
}

.landing-sec .bottom-sec .text {
    font-family: "Josefin Sans", sans-serif;
    color: var(--black);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 50px;
}

.landing-sec .bottom-sec .help-box {
    background-color: #f1f1f2;
    padding: 13px 30px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
}

.landing-sec .bottom-sec .help-box p {
    color: var(--black);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 0;
}

.landing-sec .bottom-sec .phone {
    font-family: "Josefin Sans", sans-serif;
    color: var(--black);
    font-size: 36px;
    font-weight: 600;
    display: block;
    line-height: normal;
    margin-bottom: 10px;
}

.landing-sec .bottom-sec .phone:hover {
    color: var(--primary);
}

.landing-sec .bottom-sec .mail {
    font-family: "Josefin Sans", sans-serif;
    color: var(--black);
    font-size: 30px;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

.landing-sec .bottom-sec .mail:hover {
    color: var(--primary);
}

.landing-sec .bottom-sec .print-box {
    background-color: #f1f1f2;
    padding: 13px 30px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
    color: var(--black);
    font-size: 26px;
    font-weight: 500;
    border: 0;
}

.landing-sec .bottom-sec .print-box:hover {
    color: var(--primary);
}


.landing-sec .arrow-sec {
    padding-top: 50px;
}

.landing-sec .arrow-sec .arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-sec .arrow-sec .content-box {
    border: 3px solid var(--black);
    padding: 15px 30px;
    text-align: center;
}

.landing-sec .arrow-sec .content-box p {
    font-family: "Josefin Sans", sans-serif;
    color: #636364;
    font-size: 30px;
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 0;
    line-height: normal;
}

.landing-sec .arrow-sec .content-box p a {
    color: var(--primary);
}

.landing-sec .arrow-sec .arrow-box-in img {
    /* width: 300px; */
    height: 50px;
    margin-right: 30px;
    object-fit: contain;
    object-position: left center;
}

.landing-sec .arrow-sec .logo-box {
    text-align: center;
    position: relative;
}

.landing-sec .arrow-sec .logo-box .click {
    color: var(--primary);
    font-family: "Josefin Sans", sans-serif;
    font-size: 30px;
    text-align: center;
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
}

.landing-sec .arrow-sec .logo-box img {
    width: 200px;
    margin-top: 30px;
}
.newwterms-desc {
}

 /* NEW 2025 FORM BOX STYLE  Styles */

/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #000;
} */

/* Container */
.signup-container {
    border: 16px solid #4B67AD;
    padding: 10px;
    border-radius: 0px;
    max-width: 440px;
    margin: 50px auto;
    background-color: #FFFFFF;
    text-align: center;
}

/* Title and Description */
.signup-title {
    color: #000000;
    margin-bottom: 20px;
}

.signup-description {
    color: #000000;
    margin-bottom: 30px;
}

/* Form */
.signup-form {
    background-color: #D3D3D3;
    padding: 20px;
    border-radius: 10px;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

/* Hover Effects for Button */
.submit-button:hover {
    color: #4B67AD;
    font-weight: bold;
}

/* Active Effects for Button */
.submit-button:active {
    color: red;
}

/* Footer Text */
.signup-footer {
    font-size: 12px;
    color: #555;
    margin-top: 20px;
}


.calc-table .row {
    display: block;
}

.calc-body label {
    text-align: left;
    color: #282828;
}

.calc-table .row {
    margin: 25px -10px;
}







/*calculator css */

body #main {
    color: #282828;
    font-family: 'museo300', sans-serif !important;
}

.rightinput {
    text-align: right;
    color: #000;
}

.Emailpara {
    font-size: 13px;
    margin: 0px 60px;
    text-align: center;
}

.left.column.border {
    border-radius: 0px;
    padding: 2px 10px 2px 0px;
}

.calc-table .row {
    margin: 0px auto;
}

.left-col.fsize {
    font-size: 14px;
    width: 118px;
}

.SecondTD {
    padding-left: 30px;
    color: red;
}

.FirstTD {
    color: #426591;
}

.ThirdTD {
    color: red;
    padding-left: 21px;
}

.MainTD {
    color: #426591;
    /*            font-weight: bold;*/
    margin: 0px;
    text-align: center;
}

.DivLine {
    /*border: 1px solid #426591;
            display: inline-block;*/
    width: 100%;
    height: 60px;
}

.AllLable_Table {
    background-color: #a5a5a5;
    color: white;
    /*display: inline-block;*/
    text-align: center;
    width: 100%;
}

.AllTDData {
    background-color: #a5a5a5;
    color: white;
    /*display: inline-block;*/
    height: 19px;
    text-align: center;
    width: 121px;
}

AllTDData1 {
    /*display: inline-block;*/
    text-align: center;
    width: 110%;
}

.AllLable_Age {
    background-color: #a5a5a5;
    color: white;
    /*display: inline-block;*/
    text-align: center;
    width: 100%;
}

.AllTDAgeCol {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #cbcbcb;
    border-image: none;
    border-style: none none solid;
    border-width: 0 0 2px;
    box-sizing: border-box;
    /*display: block;*/
    font: inherit;
    height: 35px;
    letter-spacing: 1px;
    padding: 5px 0 5px 5px;
    width: 35%;
    /*display: inline-block;
            text-align: center;
            width: 55px;
            background-color: #a5a5a5;*/
}

.ANumetor {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #cbcbcb;
    border-image: none;
    border-style: none none solid;
    border-width: 0 0 2px;
    box-sizing: border-box;
    /*display: block;*/
    font: inherit;
    height: 35px;
    letter-spacing: 1px;
    padding: 5px 0 5px 5px;
    width: 10%;
}

.AllPerson {
    border: 0 none;
    border-radius: 8px;
    box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    display: block;
    font: inherit;
    height: 35px;
    letter-spacing: 1px;
    padding: 5px 0 5px 7px;
    /*width: 100%;*/
    width: 100px;
}


.AllWDDestribution {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #cbcbcb;
    border-image: none;
    border-style: none none solid;
    border-width: 0 0 2px;
    box-sizing: border-box;
    /*display: block;*/
    font: inherit;
    height: 35px;
    letter-spacing: 1px;
    padding: 5px 0 5px 25px;
    width: 55%;
    background: url("../images/icon_dollar.png") no-repeat scroll 12px center, rgba(0, 0, 0, 0);
    /*text-align: center;
            width: 124px;
            background-color: #a5a5a5;*/
}

.AllWDDestribution1 {
    text-align: center;
    width: 124px;
}


.SingalAge {
    /*display: inline-block;*/
    text-align: center;
    width: 55px;
}

.AllLabNumerator {
    background-color: #a5a5a5;
    color: white;
    /*display: inline-block;*/
    text-align: center;
    width: 100%;
}

.AllLabNume {
    background-color: #a5a5a5;
    color: white;
    text-align: center;
    min-width: 70px;
}

.AllLabNetShare {
    background-color: #a5a5a5;
    color: white;
    /*display: inline-block;*/
    text-align: center;
    width: 100%;
}

.AllTDLost {
    background-color: #a5a5a5;
    /*display: inline-block;*/
    text-align: center;
    width: 70px;
}

.AllTDLost1 {
    /*display: inline-block;*/
    text-align: center;
    width: 70px;
}

.AllCPS {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #cbcbcb;
    border-image: none;
    border-style: none none solid;
    border-width: 0 0 2px;
    box-sizing: border-box;
    /*display: block;*/
    font: inherit;
    height: 35px;
    letter-spacing: 1px;
    padding: 5px 0 5px 25px;
    width: 100%;
    background: url("../images/icon_dollar.png") no-repeat scroll 12px center, rgba(0, 0, 0, 0);
    /*display: inline-block;
            text-align: center;
            width: 124px;
            background-color: #a5a5a5;*/
}

.AllCPSDistribution {
    display: inline-block;
    text-align: center;
    width: 124px;
}


.Alltxt {
    border: 0 none;
    border-radius: 8px;
    box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    display: block;
    font: inherit;
    height: 28px;
    letter-spacing: 1px;
    padding: 5px 0 5px 5px;
    /*width: 100%;*/
    width: 99px;
}

.Alltxt1 {
    width: 120px;
    /*background-color: #a5a5a5;*/
}

.AllAnnunityBox {
    border: 0 none;
    border-radius: 8px;
    box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    display: block;
    font: inherit;
    height: 35px;
    letter-spacing: 1px;
    padding: 5px 0 5px 6px;
    width: 105px;
    /*width: 80px;*/
}

.AllAnnunityBox1 {
    width: 2%;
    background-color: #a5a5a5;
}

.AllDatetxt {
    border: 0 none;
    border-radius: 8px;
    box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    /*display: block;*/
    font: inherit;
    height: 28px;
    letter-spacing: 1px;
    padding: 5px 0 5px 6px;
    width: 90px;
}

.AllDatetxt1 {
    width: 80px;
}

.AllPersontxt {
    width: 50px;
}

.lbtext {
    padding-left: 9%;
}

.content-right-Images {
    float: left;
    padding-left: 20px;
    width: 18%;
}

.netshare_Width {
    width: 130px;
}


#EmailSuccess ._mCS_3{
    display:none !important;
}

/* header changes start  */

.navbar{
    padding: 0 !important;
}
.nav-link img{
    width: 108px !important;
    height: 108px !important;
}
/* header changes end  */

.links img {
    width: auto !important;
    height: 28px !important;
    border: none !important;
   
}
.about-box .mail-box{
    margin-bottom: 0 !important;
}

.about-box .phone-box{
    
    display: table;
    margin: 0 auto;
    text-align: left !important;

}
.about-sec .about-box .phone-box a{
    text-align: left !important;
}

span.phonspan {
    width: 71px !important;
    display: inline-block;
    font-size:20px;
    font-weight: 500;
    margin: -4px;
}
.about-box .mail-box{
     display: table !important;
    margin: 0 auto;
    text-align: left !important;
}
.about-box .mail-box a{
     text-align: left !important;
}
.links img:nth-child(1) {
    padding-left: 15px !important;
}
.about-box .colntxt{
    font-size: 20px;
    font-weight: 500;
    margin-top:-6px;
}

.phone-box a {
    margin-left: 18px;
}