/* HOME PAGE CSS */

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

p {
    line-height: 1.3;
}

/* Header */
header {
    display: flex;
    flex-direction: row;
    padding: 0 1rem;
}

/* https://www.w3schools.com/css/css_z-index.asp */
.headerNav {
    display: flex;
    background:#1e2748;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Logo*/
.logo {
    max-width: 11em;
    width: 65%;
    margin: 1rem auto;
}

/* Motto text */
.motto {
    display: flex;
    color: white;
    text-align: center;
    margin: 1rem auto;
    padding: 0 30px 0 0;
    align-items: center;
    justify-content: center;
    font-size: 1rem; 
}

/* Navigation */

ul {
    margin: 0;
    padding: 0;
    list-style: none; 
}

/* first li for hamburger menu */
.navigation li:first-child {
    display: block; 
}

.navigation li {
    display: none; 
}

.navigation a {
    display: block;
    text-align: center;
    text-decoration: none;
    transition: 0.4s;
    color: white; 
}

.navOption {
    padding: 0.5rem;
}

.navOption2 {
    padding: 0 0 0.5rem 0;
}

.navigation a:hover {
    font-weight: 700;
    color: white;
    border-radius: 25px;
}

/* Responsive menu */
.responsive li {
    display: block;
}

/* Fullscreen mobile menu */
.navigation.responsive {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #1e2748;
    z-index: 2;
}

.navigation.responsive li {
    margin: 20px 0;
}

.navigation.responsive a {
    font-size: 1.5rem;
    color: white;
}

/* Hamburger menu icon */
.menu, .menu-icon {
    display: block;
    text-align: center;
    cursor: pointer;
    width: 42px;
    margin: auto;
}

#menu-icon {
    position: absolute; 
    top: 20px;
    right: 20px;
    height: 30px;
    z-index: 3;
}

#menu-icon::before,
#menu-icon::after,
#menu-icon span {
    background-color: #307ad9;
    border-radius: 5px;
    content: '';
    display: block;
    height: 5px;
    margin: 6px 0; 
    transition: all 0.3s ease-in-out;
}

#menu-icon:hover::before,
#menu-icon:hover::after,
#menu-icon:hover span {
    background: white;
}

/* Hamburger close animation */
.close::before {
    transform: translateY(11px) rotate(45deg);
}

.close::after {
    transform: translateY(-11px) rotate(-45deg);
}

.close span {
    transform: scale(0);
}

/* Active link */
.active {
    background: #307ad9;
    border-radius: 25px;
}

/* video {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: -2px;
    margin-left: -.5%;
} */

.video_container {
    overflow: hidden;
}

video {
    display: block;        
    width: 100vw;         
    height: auto;
    max-width: none;       
    margin: 0;
    padding: 0;
    border: none;   
    transform: scale(1.01)
}

.imageContainer {
    display: none;
}

.smallCall {
    text-align: center;
    background: #1e2748; 
}

.companyName {
    color: white;
    margin: 0;
    padding: 20px;
    font-size: 2.3rem;
}

.imageButton {
    margin: 10px 0 30px 0;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background: red;
    color: white;
    border-radius: 8px;
    box-shadow: 2px 2px 4px black;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 2px 2px 4px black;
    transition: background 0.3s ease, transform 0.2s ease;
}

.imageButton:hover {
    background: #b91c1c;
    transform: translateY(-3px);
}

.homeAbout {
    display: block;
    max-width: 100%;
    margin: 1.5rem;
}

.homeAbout a:hover {
    font-size: 1.1rem;
}

.homeBio {
    display: block;
    max-width: 100%;
    box-shadow: 10px 10px 15px rgba(0,0,0,0.4);
    border-radius: 15px;
}

.home_bioTextContainer {
    font-size: 1.2rem;
}

.homeServicesContainer {
        max-width: 100%;
        justify-content: center;
        text-align: center;
        background-color: #1e2748;
        margin: 1rem 0;
        padding: 2rem;
        color: white;
}

.homeServicesContainer h1 {
    text-shadow: 3px 3px 3px #307ad9;
}

.realtorImageBox, .homeownerImageBox {
    margin: 1rem;
}

.realtorImageBox img, .homeownerImageBox img {
    display: block;
    max-width: 100%;
    max-height: 434px;
    margin: 1rem;
    border-radius: 15px;
}

.realtor_homeownerButton {
    cursor: pointer;
    background: #307ad9;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    padding: .6rem .8rem;
    margin: 0 .4rem;
    text-shadow: 2px 2px 10px black;
}

.homeServices {
    display: block;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 1.5rem;
    font-size: 1.3rem;
}

.homeServicesBox {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
}

.homeServicesBoxBlock {
    display: block;
}

.homeServices li {
    margin-left: 2.5rem;
}

.homeServices ul {
    margin: 1rem 0;
}

.homeServices li:before {
    content: '\2713';
    padding: 0 6px 0 0;
    color: #307ad9;
    font-weight: bold;
}

.homeServices h2 {
    font-size: 1.7rem;
}

.homeAboutLink {
    text-decoration: none;
    color: #307ad9;
    font-weight: bold;
    text-shadow: .7px .7px 1px black;
}

.homeServicesLink {
    text-decoration: none;
    color: #307ad9;
    font-weight: bold;
    font-size: 1rem;
    margin: 1rem 0;
    text-shadow: .7px .7px 1px black;
}

.homeServices a:hover {
    font-size: 1.1rem;
}

.homeTruck {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.4);
}

.homeFooter {
    background-color: #1e2748;
    color: white;
    padding: 3rem 1rem;
    margin: 2rem 0 0 0;
}

.footerContainer {
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footerAbout h3 {
    font-size: 1.8rem;
    margin: 1rem;
    color: #307ad9;
    text-shadow: 3px 3px 3px black;
}

.footerAbout p {
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
    color: white;
}

.footerContact p {
    margin: 0.3rem 0;
    color: white;
}

.footerContact a {
    color: #307ad9;
    font-weight: bold;
}

.footerSocial {
    margin-top: 1.5rem;
}

.footerSocial a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 8px;
    border-radius: 50%;
    background-color: #307ad9;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footerSocial a:hover {
    background-color: #307ad9;
    color: white;
    font-size: 1.6rem;
}

.footerBottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid white;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: white;
}

/* REALTOR HOMEOWNER PAGE CSS */

.realtorContent li:before, .homeownerContent li:before {
    content: '\2713';
    padding: 0 6px 0 0;
    color: #307ad9;
    font-weight: bold;
}

.realtorTrust h2, .homeownerTrust h2 {
    text-shadow: 2px 2px 3px #307ad9;
}

.realtorContent li, .homeownerContent li {
    padding: .5rem;
}

.realtorIntro, .realtorContent, .homeownerIntro, .homeownerContent {
    margin: 1.5rem;
}

.realtorIntro h1, .realtorContent h1, .homeownerIntro h1, .homeownerContent h1 {
    font-size: 1.6rem;
}

.realtorContentRight img, .homeownerContentRight img {
    max-width: 100%;
    box-shadow: 2px 2px 10px black;
}

.realtorTrust, .homeownerTrust {
    background-color: #1e2748;
    color: white;
    padding: 1.2rem;
    box-shadow: 2px 2px 10px black;
}

.realtorContentLeft button, .homeownerContentLeft button, .reviewForm button, .loginForm button {
    background-color: #307ad9;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    padding: 12px;
    font-weight: bold;
    text-shadow: 2px 2px 10px black;
    margin: 1rem auto;
    display: block;
    width: 100%;
    font-size: 1.2rem;
    box-shadow: 2px 2px 10px black;
}

.sample_pdf, .contact_link {
    display: inline-block;       
    width: 100%;                 
    text-align: center;          
    background-color: #307ad9;
    color: white;
    padding: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 3px 3px 5px black;
    text-shadow: 2px 2px 3px black;
    text-decoration: none;      
    cursor: pointer;
    margin: 0 auto 1rem;
    box-sizing: border-box;
    transition: background-color 0.3s ease; 
}

.sample_pdf:hover, .contact_link:hover {
    background-color: #055ac8;
}

.homeownerForm {
    max-width: 100%;
    background: #1e2748;
    color: white;
    padding: 1rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 10px black;
    text-align: left;
    box-shadow: 2px 2px 10px black;
}

.homeownerForm h1, .reviewForm h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.homeownerForm label, .reviewForm label, .loginForm label {
      display: block;
      margin-top: 1rem;
      font-weight: bold;
}

.homeownerForm input, .homeownerForm select, .homeownerForm textarea, .reviewForm input, .reviewForm select, .reviewForm textarea, .loginForm input {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;

}

.requiredStar {
    color: #307ad9;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Reviews Page */ 
.reviewContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviews_container {
    background: #1e2748;
    padding: 2rem 0;
}

.reviewImage { 
    position: relative;
    width: 100%;
}

.reviewContent {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.reviewContent h2 {
    font-size: 2.5rem;
    text-shadow: 1.3px 1.3px 3px #307ad9;
    color: #1e2748;
}

.reviewForm {
    max-width: 90%;
    background: #1e2748;
    color: white;
    padding: 2.3rem;
    text-shadow: 2px 2px 10px black;
    text-align: left;
    box-shadow: 2px 2px 10px black;
    margin: 0 auto 3rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border: 2px solid #307ad9;
    box-shadow: 3px 3px 10px #307ad9;
    transition: box-shadow .1s ease-in-out;
}

/* Honeypot for spam bots to fill out */
.milo {
    display: none !important;
    visibility: hidden;
    height: 0;
    width: 0;
    opacity: 0;
    pointer-events: none;
}

.reviewForm button:hover {
    font-size: 1.3rem;
    background-color: #1166d6;
    box-shadow: 5px 5px 15px black;
}

.reviews_h2 {
    text-align: center; 
    color: white;
    text-shadow: 3px 3px 3px #307ad9;
    font-size: 2.5rem;
}
.current_reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0 0 0;
}

.review_card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 2px 3px 8px black;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1 1 300px;
    max-width: 400px;
    color: black;
    font-weight: 500;
}

.review_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px #307ad9;
}

.review_card h3 {
    margin-bottom: .25rem;
    font-size: 1.8rem;
    text-shadow: .7px .7px 2px black;
    color: #307ad9;
}

.review_card .rating {
    font-weight: 600;
}

.review_card .comment {
    margin: .75rem 0;
    line-height: 1.5;
}

.review_card .date {
    font-size: .9rem;
    text-align: right;
}

.averageRating {
    text-align: center;
    margin: 40px auto 25px auto;
    padding: 25px 20px;
    max-width: 420px;
    background: #307ad9;
    border-radius: 12px;
    box-shadow: 10px 10px 15px black;
    line-height: 1.6;
    font-weight: bold;
    font-size: 1.3rem;
    color: white;
    text-shadow: 2px 2px 4px black;
}

.home_advisor_button {
    display: flex;
    justify-content: center;
}

.homeAdvisorLink {
    display: inline-block;
    background: #307ad9;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 2px 2px 4px black;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 2px 2px 4px black;
    transition: background 0.3s ease, transform 0.2s ease;
}

.homeAdvisorLink:hover {
    background: #245fa7;
    transform: translateY(-2px);
    box-shadow: 4px 4px 10px black;
}

.averageReview {
    font-size: 1.6rem;
}

.totalReviews {
    font-size: .9rem;
}

/* Thank You Page */
.thankyou_body {
    color: black;
    background-color: #1e2748;
    text-align: center;
}

.thankyou_container {
    width: 60%;
    margin: 8rem auto;
    max-width: 600px;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 4px 4px 12px #307ad9;
}

.thankyou_container img {
    width: 100px;
    margin-bottom: 1rem;
}

.thankyou_container h1 {
    color: #307ad9;
    margin-bottom: 1rem;
}

.thankyou_container p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.thankYou_button {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #307ad9;
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.thankYou_button:hover {
    background-color: #245fa7;
}

/* Admin Page */
.loginForm {
    max-width: 90%;
    color: #1e2748;
    padding: 2.3rem;
    text-align: left;
    margin: 0 auto;
}

.adminLogin_container {
    width: 60%;
    margin: 8rem auto;
    max-width: 600px;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 4px 4px 12px #307ad9;
}

.adminLogin_container h1 {
    color: #307ad9;
    font-size: 3rem;
    text-decoration: underline;
}

.adminDashboard {
    max-width: 1400px;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 4px 4px 12px #307ad9;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem auto;  
}

.adminApprove {
    background-color: #22c55e;
    color: white;
    font-weight: bold;
}

.adminApprove:hover {
    background-color: #16a34a;
}

.adminDelete {
    background-color: #ef4444;
    color: white;
    font-weight: bold;
}

.adminDelete:hover {
    background-color: #b91c1c;
}

.adminActions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.adminDashboard button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s; 
}

.adminBody {
    background-color: #1e2748;
    color: white;
}

.adminBody h1 {
    text-align: center;
}

.loginForm h1 {
    margin: 0 0 3rem 0;
}

.admin_logout {
    display: flex;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    justify-content: center;
    margin: 2rem;
}

.admin_logout:hover {
    color: #307ad9;
    text-shadow: .5px .5px 3px black;
}

/* About Page*/
.aboutHeader {
    background: linear-gradient(135deg, #1e2748, #307ad9);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeInDown 1.2s ease;
    line-height: 1.6;
}

.aboutHeader h1 {
    font-size: 2.8rem;
    margin: 0;
    text-shadow: 2px 2px 2px black;
}

.aboutHeader p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.aboutSection {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 0 2rem;
}

.aboutSection img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.aboutText h2 {
    font-size: 2rem;
    color: #1e2748;
    margin-bottom: 1rem;
}

.aboutText p {
    color: #333;
    margin-bottom: 1rem;
}

.actionCall {
    background: linear-gradient(135deg, #307ad9, #1e2748);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
}

.actionCall h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 2px black;
}

.actionCall a, .service_call a {
    display: inline-block;
    background: red;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 2px 2px 4px black;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 2px 2px 4px black;
    transition: background 0.3s ease, transform 0.2s ease;
}

.actionCall a:hover, .service_call a:hover {
    background: rgb(211, 0, 0);
    transform: translateY(-3px);
}

@keyframes fadeInDown {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}

.aboutContainer {
    max-width: 1300px; 
    display: flex; 
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center; 
    gap: 60px;
    margin: 2rem auto;
    padding: 0 2rem;
    line-height: 1.6;
}

.aboutImage {
    flex:1 1 400px; 
    text-align:center;
}
    
.aboutImage img {
    width:100%; 
    max-width:425px; 
    border-radius:20px; 
    box-shadow:0 8px 25px rgba(0,0,0,0.1); 
    transition:transform .4s ease;
}

.aboutImage img:hover {
    transform:scale(1.05);
}

.aboutContent {
    flex:1 1 500px;
}
    
.aboutContent h1 {
    font-size:2.5rem; 
    margin-bottom:20px; 
    color:#1a3e59;
    text-shadow: 1px 1px 2px #307ad9;
}

.aboutContent h1 .highlight {
    text-shadow: 1px 2px 2px black;
}
    
.aboutContent p {
    margin-bottom:18px; 
    font-size:1.05rem;
}
    
.highlight {
    color:#307ad9; 
    font-weight:600;
}
   
.divider {
    width:80px; 
    height:4px; 
    background:#307ad9; 
    border-radius:2px; 
    margin:20px 0;}

.features {
    margin-top:30px; 
    display:grid; 
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); 
    gap:25px;
}
    
.featureBox {
    background: linear-gradient(160deg,#1e2748 10%, #307ad9 100%);
    color: white;
    padding:20px; 
    border-radius:16px; 
    box-shadow: 3px 3px 5px black; 
    transition:transform .3s ease, box-shadow .3s ease; 
    cursor:pointer;
}
    
.featureBox:hover {
    transform:translateY(-5px); 
    box-shadow: 5px 5px 10px black;
}
    
.featureBox h3 {
    text-shadow: 2px 2px 2px black;
}

.loadMore {
    display: block;
    margin: 30px auto;
    padding: 10px 50px;
    background: #307ad9;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    box-shadow: 3px 3px 5px black;
    font-weight: bold;
}

.loadMore:hover {
  background: #004a8c;
}

/* Services Page */ 
.service_section {
    padding: 0 20px 20px;
    margin: 0 auto;
    background: #1e2748;
}

.service_h2 {
    text-align: center;
    margin: 0 0 2rem 0;
    font-size: 3rem;
    color: white;
    text-shadow: 3px 3px 3px #307ad9;
}

.service_card {
    max-width: 1000px;
    background: white;
    padding: 25px;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-shadow: 2px 3px 8px black;
}

.service_card h3 {
    color: #307ad9;
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-shadow: 1px 1px 3px black;
}

.service_card p {
    margin-bottom: 10px;
}

.service_card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}

.service_card ul li {
    margin-bottom: 5px;
}

.service_card img {
    display: block;
    width: 100%;
    border-radius: 30px;
    justify-content: center;
    margin: 1rem auto;
    box-shadow: 2px 2px 4px black;
}

.service_image, .contact_image {
    height: 300px; 
    overflow: hidden;
}

.service_image img, .contact_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.service_call {
    text-align: center;
    margin: 1rem;
}

.services_link {
    text-decoration: none;
    color: #307ad9;
    font-weight: bold;
    margin: 1rem 1.8rem;
    font-size: 1.2rem;
    line-height: 2.3;
}

.service_nav {
    display: none;
    justify-content: center;
    padding: 20px;
    margin-bottom: 30px;
}

.service_nav a {
    text-decoration: none;
    color: #1e2748;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 6px;
    background: #f3f6ff;
    transition: background 0.2s ease;
    box-shadow: 3px 3px 5px #307ad9;
}

.service_nav a:hover {
    background: #dbe6ff;
}

.service_select {
    display: none;
}

.back_to_top {
    display: none;
}

/* Contact Page */
.homeownerForm p {
    text-align: center;
}

.contact_container {
    display: block;
    margin: 2rem auto;
    gap: 2rem;
    padding: 0 1rem;
}

.contact_right, .contact_left {
    background: white;
    padding: 1rem;
    margin: 2rem 0 1rem;
    border-radius: 15px;
    box-shadow: 2px 2px 15px black;
}

.contact_left h1 {
    color: #307ad9;
    text-shadow: 1px 1px 2px black;
    text-align: center;
}

.contact_left p {
    margin: .3rem;
}

.contact_top {
    text-align: center;
    text-shadow: 2px 2px 5px black;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(135deg, #1e2748, #307ad9);
    animation: fadeInDown 1.2s ease;
}

.contact_top h1 {
    margin: 0;
    font-size: 2.4rem;
    color: white;
}

.contact_top p {
    margin-top: .5rem;
    color: white;
}

@keyframes fadeUp {
    from {
        opacity: 0; 
        transform: translateY(18px);
    }

    to {
        opacity: 1; 
        transform: translateY(0);
    }
}

.homeownerForm button {
    display: block;
    background: red;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: 2px 2px 4px black;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 2px 2px 4px black;
    transition: background 0.3s ease, transform 0.2s ease;
    margin: 1rem auto;
}

.contact_home {
    width: 100%;
    border-radius: 15px;
    box-shadow: 2px 4px 15px black;
}

.faq {
    margin: 1.3rem;
}

.faq_question {
    font-weight: bold;
    font-size: 1rem;
}

.contact_number {
    color: #307ad9;
}


