﻿/******** Developed by OCA ********
************** Texas **************
********************************/

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('Fonts/Nunito-Regular.ttf')format('truetype');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    src: url('Fonts/Nunito-SemiBold.ttf')format('truetype');
}


body {
    background-color: #fff !important;
    font-family: 'Nunito', "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #636367;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/*input[type="text"]::-webkit-input-placeholder {
    color: #212121;
}*/
.clr-yelow {
    color: #f0ad4e;
    font-size: 40px;
    background-color: #fcf8e3;
}

.pd-30 {
    padding: 30px;
}

a {
    color: #29577a;
    text-decoration: none;
}

    a:hover, a:focus {
        color: #29577a;
        text-decoration: underline;
    }

.clr-drk {
    color: #212121;
}

.login-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}

    .login-wrapper .login-brand {
        text-align: center;
        color: #fff;
        margin-top: 30%;
        padding: 20px;
        background-color: #29577a;
        margin-bottom: 0;
        font-weight: 200;
        font-size: 22px;
        text-transform: capitalize;
        letter-spacing: 1px;
        line-height: 35px;
    }

.login-brand .brand-sub {
    font-size: 15px;
}

.login-form {
    background: #fff;
    box-shadow: inset 0 0 1px #000000, 0 0 15px #000000;
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 15px 20px 40px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e6e7e8 !important;
    border-radius: .45rem;
}

    .login-form .form-title {
        font-family: 'Nunito', "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #4572c7;
        font-weight: 400;
        font-size: 24px;
    }

    .login-form .form-content {
        color: #716d6d;
        font-size: 15px;
        font-family: 'Nunito', "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 200;
        line-height: 2.4rem;
        line-height: 24px;
    }

.login-bottom .signup-link {
    font-size: 16px;
}

.login-terms {
    font-size: 13px;
    font-style: italic;
    text-align: center;
    line-height: 24px;
    color: #999;
    padding-top: 10px;
}

.form-content p {
    line-height: 24px;
    font-size: 15px;
    font-family: 'Nunito', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.reset-form {
    max-width: 400px;
}

.form-control {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 45px;
}

.text-center {
    text-align: center;
}

    .text-center a {
        text-decoration: underline;
    }

.success-content,
.success-title {
    color: #337533;
}

.login-form .success-content {
    padding: 10px;
    font-size: 15px;
    font-family: 'Nunito', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.login-form .email-instruct {
    color: #555;
    margin: 25px 0;
}

.error-content,
.error-title {
    color: #DF1A0C;
}

.login-form .error-content {
    background-color: #fff;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Nunito', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#about img {
    height: 200px;
    max-width: 100%;
}

.about-section {
    padding: 20px;
}

    .about-section p {
        font-size: 16px;
        line-height: 24px;
    }

.forgot-password {
    text-decoration: none !important;
    line-height: 3.4rem;
    line-height: 34px;
    font-size: 16px;
}

    .forgot-password:hover {
        text-decoration: underline !important;
    }

hr {
    border-top: 1px solid #dcdcdc;
}


/*Footer styles*/

.footer-menu {
    position: relative;
    height: 150px;
    width: 100%;
    margin-top: 50px;
    /*background-color: #F1F1F1;*/
    color: #6f6a6a;
    padding-bottom: 20px;
    text-align: center;
    font-size: 13px;
}

ul.list-content {
    padding-left: 0;
}

.footer-menu .list-content li {
    display: inline;
}

.list-content li > a {
    color: #6f6a6a;
    margin-right: 5px;
    text-decoration: underline;
}

    .list-content li > a:hover {
        color: #337ab7;
    }


/*Check Box Styles*/

.checkbox input[type="checkbox"] {
    opacity: 0;
}

.checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 22px;
}

.checkbox label::before,
.checkbox label::after {
        position: absolute;
        content: "";
        display: inline-block;
    }


/*Outer box checkbox*/

.checkbox label::before {
        height: 16px;
        width: 16px;
        border: 2px solid #ccc;
        left: 0;
        top: 3px;
    }


/*Checkmark checkbox*/

.checkbox label::after {
        height: 5px;
        width: 9px;
        border-left: 2px solid #4572c7;
        border-bottom: 2px solid #4572c7;
        transform: rotate(-45deg);
        left: 4px;
        top: 7px;
    }


/*Hide the checkmark by default*/

.checkbox input[type="checkbox"] + label::after {
    content: none;
}


/*Unhide on the checked state*/

.checkbox input[type="checkbox"]:checked + label::after {
    content: "";
}


/*Adding focus styles on the outer-box of checkbox*/

/*.checkbox input[type="checkbox"]:focus+label::before {
	outline: rgb(59, 153, 252) auto 10px;
}*/


/*Button Styles*/

.button {
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid transparent;
}

.button.button-log {
        /*background-color:#4572c7;
    padding:8px;
    border-radius:0px;*/
        color: #29577a;
        padding: 10px;
        font-size: 16px;
        background-color: #f7f7f7;
        border-color: #29577a;
    }

.button.button-log:hover {
            color: #f7f7f7;
            background-color: #29577a;
            border-color: #29577a;
        }

.validation-error {
    color: red;
    padding-top: 8px;
}


/*New layout*/

.navbar-inverse {
    background-color: #f8f9fa;
    border-color: transparent;
}

.header-logo {
    display: flex;
    align-items: center;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 9999;
    top: 0;
    padding: 10px;
    border-width: 0 0 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-logo h3 {
        text-align: left;
        text-transform: capitalize;
        letter-spacing: 2px;
        /*background-color: #0f125a;*/
        background-color: #2B5C82;
        padding: 15px;
        min-height: 55px;
        margin: 0;
        color: #fff;
        font-size: 20px;
    }

.scrolled {
    box-shadow: 0 0 10px #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    background-color: #fff;
    position: fixed;
    right: 0;
    z-index: 9999 !important;
    background-color: #ffffff;
    border-bottom: 1px solid transparent;
}

.card-content {
    /*background-color:#eceff3; /*#f8f9fa;*/
    /*background-color:#0f125a;*/
    background-color: #29577a;
    min-height: 500px;
    padding: 130px 0 100px 0;
}

.card-content h3 {
        line-height: 45px;
        /*color: #374760;*/
        color: #ffffff;
        font-size: 27px;
    }

 .card-content h3 span {
            color: #f1c40f;
        }

.card-content h3,
.card-content p {
        margin: 0 auto 5px auto;
        width: 100%;
    }

.card-content p {
        line-height: 25px;
        font-size: 16px;
        color: #fff;
    }

.br-b {
    border-bottom: 1px solid #ccc;
}

.card-form {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.card-form h4 {
        /*color: #374760;*/
        color: #58575D;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 30px;
        margin-top: 0;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
    }

.card-form input {
        border: 1px solid #eee;
        height: 38px;
        box-shadow: none !important;
        font-size: 14px;
    }

.form-control {
    box-shadow: none !important;
    outline: none !important;
    border: 2px solid #cecece;
    height: 38px;
    font-size: 14px;
}

.form-control:hover,
.form-control:focus {
        border-color: #97a0af;
    }

.forgot {
    text-align: left;
    padding-top: 10px;
}

.signup .create {
    line-height: 38px;
    text-align: left;
    font-size: 16px;
}

.requirements h4 {
    color: #f1c40f;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px !important;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #808080;
}

.btn-primary {
    color: #fff;
    background-color: #4572c7;
    border-color: #4572c7;
}

.requirements ul li {
    font-size: 15px;
    line-height: 24px;
    color: #fff;
}

.requirements ul li a {
        color: #f1c40f;
    }

footer {
    padding: 20px;
}

.col-offset {
    margin-left: 25%;
}

.left-content {
    text-align: left;
}


/*login*/

.main-header .navbar-inverse {
    /*
    background-color:#eceff3;
    border-color: transparent;
*/
    background-color: #29577a;
    border-color: transparent;
    border-bottom: 1px solid #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-transition: height .5s, line-height .5s; /* Safari */
    transition: height .5s, line-height .5s;
    min-height:70px;
}

.main-header .navbar-inverse .navbar-brand {
        /*color: #1b1a1a;*/
        color: #ffffff;
        font-size: 20px;
    }


        /*.main-header .navbar-inverse .navbar-brand:hover {
    color: #1b1a1a;
    background-color: transparent;
}*/

.main-header .navbar-inverse .navbar-brand:hover {
            color: #fff;
            background-color: transparent;
        }

.main-header .navbar-inverse .navbar-nav > li > a {
        color: #fff;
        padding: 25px 15px;
        height: auto;
        line-height: 1;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: 10px;
    }

.main-header .navbar-inverse .navbar-nav > li > a:hover {
            color: #a59d9d;
            background-color: transparent;
        }

.main-header .navbar-brand {
    letter-spacing: 1px;
    /*margin-top: 10px;*/
}

.forgot {
    text-align: left;
    padding-top: 10px;
}

.carousel-control.right,
.carousel-control.left {
    background-image: none !important;
    color: #4572c7 !important;
}

.carousel-indicators li {
    border-color: #4572c7 !important;
}

.carousel-indicators li.active {
        background-color: #4572c7;
    }

.item h4 {
    font-size: 19px;
    line-height: 1.375em;
    font-weight: 400;
    margin: 70px 0;
}

.item span {
    font-style: normal;
}


/* Services*/

.bg-white {
    background-color: #fff;
}

.bg-grey {
    background-color: #eceff3;
}

.g-logo {
    font-size: 150px;
}

.service-header {
    color: #1b1a1a;
    font-weight: normal;
    font-family: 'Nunito', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.services h4 {
    line-height: 26px;
    font-size: 16px;
}

.services .container-fluid {
    padding: 60px 50px;
}

.about-section p, .phone p, .email p, .address p {
    color: #58575D;
}
/*Chrome textbox auto fill color change */

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

@media only screen and (max-width: 500px) {
    .login-wrapper .login-brand {
        margin-top: 10%;
    }
}


/*New */

.section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}

.text-center {
    text-align: center !important;
}

.section-heading h6 {
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #ffffff;
    border-radius: 6px;
    padding: .5rem 1.5rem;
    background-color: #F1C40F;
    /*#3f43fd;*/
    font-weight: 400;
    display: inline-block;
    padding: 10px 25px;
}

.section-heading h3,
.section-heading h4 {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 1.5;
    font-weight: 600;
}

    .section-heading h3 span,
    .section-heading h4 span {
        color: #0653b5;
    }

.section-heading h4 {
    margin-top: 30px;
}

.section-heading .line {
    width: 120px;
    height: 5px;
    margin: 30px auto 0;
    border-radius: 6px;
    background: #2d2ed4;
    background: -webkit-linear-gradient(to right, #2d2ed4, #f33e31);
    background: linear-gradient(to right, #2d2ed4, #f33e31);
}

.bg-gray {
    background-color: #f7f7f7;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.mt-5 {
    margin-top: 5px;
}

.mt-100 {
    margin-top: 100px;
}

.single-benifits {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.single-benifits .icon-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    max-width: 80px;
    width: 80px;
    height: 80px;
    font-size: 2.25rem;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    margin-right: 1.5rem;
    background-color: #3f43fd;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
    margin-top: 2px;
}

    .single-benifits .icon-box i {
        line-height: 80px;
        font-size: 26px;
    }

.single-benifits .single-benifits-text h5 {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    color: #020710;
}

.single-benifits h5 {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    color: #ffffff;
    margin-bottom: .75rem;
    font-weight: 600;
    font-size: 21px;
}

.single-benifits .single-benifits-text p {
    color: #555;
}

.single-benifits p {
    margin-bottom: 0;
    font-size: 15px;
    color: #ffffff;
    color: rgba(255, 255, 255, 0.7);
}


/*.single-benifits:hover .single-benifits-text h5,
.single-benifits:focus .single-benifits-text h5 {
	color: #3f43fd;
}*/


#scroll {
    position: fixed;
    right: 10px;
    bottom: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #29677A;
    /*text-indent:-9999px;*/
    z-index: 99999;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
}
#scroll:hover {
        background-color: #204560;
    }
#scroll span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -10px;
        margin-top: -14px;
        color: #f7f7f7;
        font-size: 20px;
    }

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0 !important;
    }
}

.mt-11 {
    margin-top: 11rem !important;
}

.main-features-thumnail img {
    height: auto;
    max-width: 100%;
}

.pt-30 {
    padding-top: 30px;
}

.pt-70 {
    padding-top: 70px;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
    background-color: #f5f5ff !important;
}

.single-work-step {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    text-align: center;
}

.single-work-step h4 {
        font-weight: 500;
        font-size: 17px;
    }


    /*.single-work-step h4:hover,
.single-work-step h4:focus {
	color: #0653b5;
}*/

    .single-work-step .step-icon i {
        font-size: 40px;
        color: #3f43fd;
    }

.step-icon img {
    height: 100px;
    max-width: 100%;
}

p {
    color: #555;
}

.single-work-step .step-icon:before {
    font-family: "Glyphicons Halflings";
    content: "\e258";
    float: right;
    font-size: 45px;
    transition-duration: 500ms;
    position: absolute;
    top: 50%;
    right: -18%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    z-index: 1;
    line-height: 1;
    color: #777;
}

.work-process .row .col-sm-2:last-child .single-work-step .step-icon:before {
    display: none;
}


/*Footer styles */

footer {
    padding: 20px;
}

footer img {
        height: 80px;
        max-width: 100%;
    }
/* ---------------------------------------------------
             Loader 
----------------------------------------------------- */

.modal {
    text-align: center;
    padding: 0 !important;
}

.modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

[data-loader='spinner'] {
    width: 50px;
    height: 50px;
    -webkit-animation: spinner 1.2s infinite ease-in-out;
    -o-animation: spinner 1.2s infinite ease-in-out;
    animation: spinner 1.2s infinite ease-in-out;
    background-color: #fff;
    box-shadow: 0 0 10px #fff;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        -ms-transform: perspective(120px) rotateX(0) rotateY(0);
        -o-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        -ms-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        -o-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        transform: perspective(120px) rotateX(-180deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        -ms-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        -o-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        -ms-transform: perspective(120px) rotateX(0) rotateY(0);
        -o-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        -ms-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        -o-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        transform: perspective(120px) rotateX(-180deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        -ms-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        -o-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        -ms-transform: perspective(120px) rotateX(0) rotateY(0);
        -o-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        -ms-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        -o-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        transform: perspective(120px) rotateX(-180deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        -ms-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        -o-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        -ms-transform: perspective(120px) rotateX(0) rotateY(0);
        -o-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        -ms-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        -o-transform: perspective(120px) rotateX(-180deg) rotateY(0);
        transform: perspective(120px) rotateX(-180deg) rotateY(0);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        -ms-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        -o-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
    }
}

/*Media queries*/

@media screen and (max-width: 1200px) {
    .col-offset {
        margin-left: 145px;
    }
}
@media (max-width: 1024px) and (max-width: 1024px) {
    .step-icon img {
        height: 100px;
        max-width: 100%;
    }
    .single-work-step h4 {
        font-size: 16px;
    }
    .single-work-step .step-icon:before {
        right: -26%;
    }
    .card-content h3 {
        line-height: 36px;
        font-size: 25px;
    }
}
@media screen and (max-width: 992px) {
    .col-offset {
        margin-left: 140px;
    }
}
@media screen and (max-width: 768px) {
    .col-offset {
        margin-left: 0;
    }
    .card-content h3 {
        line-height: 38px;
        color: #ffffff;
        font-size: 22px;
    }
    .step-icon + h4 {
        font-size: 13px;
    }
    .main-header .navbar-inverse .navbar-brand {
        font-size: 19px;
        margin-top: 5px;
    }
    .single-work-step .step-icon:before {
        font-size: 30px;
        top: 52%;
        right: -68%;
    }
    .step-icon img {
        height: 80px;
        max-width: 70%;
    }
    #about img {
        height: 150px;
        max-width: 100%;
    }
}
@media screen and (max-width: 414px) {
    .col-offset {
        margin-left: 0;
    }
    .main-header .navbar-inverse .navbar-brand {
        font-size: 13px;
        margin-top: 0px;
    }
    .main-header .navbar-inverse .navbar-nav > li > a {
        padding: 12px 14px;
    }
    .header-logo h3 {
        font-size: 14px;
    }
    .card-content {
        min-height: 500px;
        padding: 30px 0 30px 0;
        margin-top: 50px;
    }
    .card-content h3 {
            font-size: 20px;
        }
    .card-content p {
            line-height: 24px;
            font-size: 15px;
            margin-bottom: 20px;
        }
    .section-heading h3,
    .section-heading h4 {
        font-size: 23px !important;
    }
    .mt-11 {
        margin-top: 0 !important;
    }
    .pt-30 {
        padding-top: 0 !important;
    }
    .main-features-thumnail img {
        height: 300px;
        margin-left: 100px;
    }
    .pd-30 {
        padding: 0px;
    }
    .single-work-step .step-icon:before {
        display: none;
    }
    .work-process .justify-content-center {
        display: inline-block;
    }
    .single-work-step {
        margin-bottom: 0;
    }
    .section-heading {
        margin-bottom: 30px;
    }
    .phone, .email, .address {
        text-align: center;
    }
}
