From ea96997bbe5eb21e5b52546609a21f639db77155 Mon Sep 17 00:00:00 2001 From: Saqib Islam Date: Sat, 22 Jul 2023 16:11:35 +0500 Subject: [PATCH] minor fixes --- assets/css/style.css | 37 +++++++++++++++++++++++++++---------- assets/css/style.min.css | 2 +- index.html | 2 +- robots.txt | 5 ++++- sitemap.xml | 38 +++++++++++++++++++++++++++++++++++--- 5 files changed, 68 insertions(+), 16 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index d0a0b38..f73d3e5 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -6,9 +6,9 @@ --accent-color: #f45050; --even-bg-color: #f0f0f0; --odd-bg-color: #f9f9f9; - --button-shadow: inset 0 -2px 0 rgba(0,0,0,0.25), 1px 1px 2px 0 rgba(0,0,0,0.25); - --box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25); - --text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25); + --button-shadow: inset 0 -2px 0 rgba(0,0,0,0.3), 1px 1px 2px 0 rgba(0,0,0,0.3); + --box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3); + --text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); --transition: all ease-in-out 0.2s; } @@ -83,7 +83,7 @@ ul { } .button:hover { - text-shadow: none; + box-shadow: inset 0 -2px 0 rgba(0,0,0,0.3); } .button:active { @@ -453,7 +453,7 @@ h3.home-contact-us-button { } .hero a.home-phone > i:hover { - text-shadow: none; + box-shadow: inset 0 -2px 0 rgba(0,0,0,0.3); } .hero a.home-phone > i:active { @@ -779,17 +779,21 @@ h4.ag-courses-item_title { } .contact-form input, .contact-form textarea { + background-color: var(--even-bg-color); + border-radius: 5px; + border: 1px solid #212529; margin-bottom: 1rem; - width: 100%; + outline: 0; padding: .5rem; transition: var(--transition); - border: 1px solid #212529; - border-radius: 5px; + width: 100%; } + .contact-form input:focus, .contact-form textarea:focus { - outline-color: var(--accent-color); - box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.25); + background-color: var(--odd-bg-color); + box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25); + border-color: var(--accent-color); } .contact-form .required-label { color: var(--accent-color); @@ -807,10 +811,23 @@ h4.ag-courses-item_title { margin-bottom: 0; } +.working-hours > table > .thead > tr > th { + color: var(--primary-color); + background-color: var(--even-bg-color); +} + .working-hours > table > tbody > tr > td:nth-child(odd) { font-weight: 700; } +.working-hours > table > tbody > tr:nth-child(odd) > td { + background-color: var(--odd-bg-color); +} + +.working-hours > table > tbody > tr:nth-child(even) > td { + background-color: var(--even-bg-color); +} + /* footer */ .site-footer { color: #fff; diff --git a/assets/css/style.min.css b/assets/css/style.min.css index dd2449b..ee2899a 100644 --- a/assets/css/style.min.css +++ b/assets/css/style.min.css @@ -1 +1 @@ -@charset "UTF-8";:root{--primary-color:#3c486b;--secondary-color:#f9d949;--accent-color:#f45050;--even-bg-color:#f0f0f0;--odd-bg-color:#f9f9f9;--button-shadow:inset 0 -2px 0 rgba(0,0,0,0.25),1px 1px 2px 0 rgba(0,0,0,0.25);--box-shadow:2px 2px 4px rgba(0, 0, 0, 0.25);--text-shadow:1px 1px 2px rgba(0, 0, 0, 0.25);--transition:all ease-in-out 0.2s}body{font-family:Montserrat,Lato,sans-serif;font-weight:400;font-size:16px}h1,h2,h3,h4,h5,h6{color:var(--primary-color);font-weight:700;text-shadow:var(--text-shadow)}h1{margin-bottom:1.25rem;line-height:3rem}h2{margin-bottom:1rem;line-height:2.4rem}h3{margin-bottom:.875rem;line-height:2.1rem}h4{margin-bottom:.75rem;line-height:1.8rem}h5{margin-bottom:.625rem;line-height:1.5rem}h6{margin-bottom:.5rem;line-height:1rem}a{color:var(--primary-color);text-decoration:none}p{line-height:1.2rem}ul{list-style:none;padding-left:0}.button{background-color:var(--secondary-color);border-radius:5px;box-shadow:var(--button-shadow);color:#212529;display:inline-block;font-weight:780;padding:1rem 2rem;text-transform:uppercase;text-shadow:var(--text-shadow);transition:all ease-in-out .1s;width:auto}.button:hover{text-shadow:none}.button:active{box-shadow:none}.e-button{background-color:transparent;border:1px solid var(--secondary-color);color:var(--secondary-color);box-shadow:none}.section-heading{text-align:center;padding-bottom:1rem;position:relative}.section-heading::before{content:"";position:absolute;display:block;width:120px;height:1px;background:#ddd;bottom:1px;left:calc(50% - 60px)}.section-heading::after{content:"";position:absolute;display:block;width:40px;height:3px;background:var(--secondary-color);bottom:0;left:calc(50% - 20px)}.subsection-heading{color:var(--primary-color);font-weight:700;font-size:1.5rem;margin-bottom:.75rem;line-height:1.8rem}.site-header{background-color:rgba(60,72,107,.9);border-bottom:1px solid var(--primary-color);box-shadow:0 2px 2px rgba(0,0,0,.25);left:0;border-bottom:1px solid var(--primary-color);position:fixed;top:0;width:100%;z-index:10;padding:0 5%}.site-header.flex{display:-ms-grid;display:grid;-ms-grid-columns:2fr 7.5fr;grid-template-columns:2fr 7.5fr}.site-title{margin-bottom:0}.dark .title-area,.title-area{padding:5px 0}.site-title>a{background:url(../../media/site-logo.png) no-repeat left bottom;background-size:contain;display:block;height:76px;text-indent:-9999px;margin-bottom:0;z-index:-99;filter:drop-shadow(0 0 .3rem #fff)}.dark .site-title>a{height:56px}.site-description{display:block;height:0;margin-bottom:0;text-indent:-9999px}.primary-menu{display:-ms-flexbox;display:flex;gap:20px;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:1200px}ul.primary-menu{margin:0;list-style:none}.primary-menu .menu-item:has(a.active){border-bottom:1px solid var(--secondary-color)}.primary-menu a{color:#fff;text-shadow:var(--text-shadow);transition:var(--transition)}.primary-menu a.active,.primary-menu a:hover{color:var(--secondary-color)}.primary-menu a{font-size:14px;font-weight:700;line-height:86px;text-transform:uppercase}.dark .primary-menu a{line-height:66px}@media only screen and (min-width:769px){.menu-toggle{display:none;visibility:hidden}.nav-primary{display:block!important}.home-section{background-image:url(img/home-bg.webp);background-attachment:fixed}}@media only screen and (max-width:920px){.primary-menu a{font-size:12px}}@media only screen and (max-width:810px){.primary-menu a{font-size:11px}}@media only screen and (max-width:1024px){.site-title>a{height:56px}.dark .primary-menu a,.primary-menu a{line-height:66px}}@media only screen and (max-width:768px){.site-header.flex{-ms-grid-columns:80% 20%;grid-template-columns:80% 20%}nav.nav-primary{max-height:0;transition:var(--transition);overflow:hidden;position:relative}nav.nav-primary.show{margin-top:2rem;max-height:100vh;transition:var(--transition);visibility:visible}ul.primary-menu{margin-bottom:20px}.primary-menu a{font-size:1rem}.menu-toggle{background:0 0;border-width:0;color:#fff;display:block;padding:0;visibility:visible;cursor:pointer;text-align:right}.primary-menu{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:20px}.primary-menu .menu-item{display:block;margin-left:calc(10% + 10px);width:100%}.dark .primary-menu a,.primary-menu a{line-height:30px}.menu-toggle:focus,.menu-toggle:hover{bakground-color:transparent;border-width:0}.menu-toggle::before{border:1px solid var(--primary-color);content:'\eb5f';display:inline-block;font-size:3rem;padding:0;text-rendering:auto;transform:rotateX(0);transition:var(--transition)}.menu-toggle.activated::before{box-shadow:inset 1px -1px 4px rgba(0,0,0,.4);content:'\ec8d';transform:rotateX(180deg)}.menu-toggle.activated::before,.menu-toggle::before{text-rendering:auto}}.section{min-height:100vh;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center;justify-content:center;padding:100px 0}.section:nth-child(2n){background-color:var(--even-bg-color)}.section:nth-child(odd){background-color:var(--odd-bg-color)}.section-copy>p{font-size:1.5rem;line-height:2.25rem}.hero{background-image:url("../../media/header-bg.webp");background-position:center center;background-repeat:no-repeat;background-size:cover;position:relative}.hero a.home-phone,.hero h1,.hero h2,.hero h3{color:#fff}.hero h1{margin-bottom:1.25rem}.hero h2{margin-bottom:1rem}h3.home-contact-us-button{font-size:16px}.hero a.home-phone{font-weight:700;font-size:1.75rem}.hero a.home-phone>i{background-color:var(--accent-color);padding:1rem;color:#212529;border-radius:2rem;box-shadow:var(--button-shadow);transition:var(--transition)}.hero a.home-phone>i:hover{-ms-transform:rotate(30deg);transform:rotate(30deg)}.hero a.home-phone>i:hover{text-shadow:none}.hero a.home-phone>i:active{box-shadow:none}.hero .container *{z-index:2}.hero .background-overlay{height:100%;width:100%;min-height:100vh;top:0;left:0;position:absolute;mix-blend-mode:multiply;background-color:var(--primary-color);opacity:.5;z-index:0}@media(max-width:1024px){.hero{background-image:url("../../media/header-bg-mobile.webp")}}.ag-courses_box{display:-ms-flexbox;display:flex;-ms-flex-align:stretch;align-items:stretch;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-line-pack:center;align-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:2.5rem 0;color:#fff}.ag-courses_item{background-color:#3c486b;border-radius:10px;display:block;-ms-flex-preferred-size:calc(33.33333% - 30px);flex-basis:calc(33.33333% - 30px);margin:0 15px 30px;overflow:hidden;padding:30px 20px;position:relative;box-shadow:var(--box-shadow)}.ag-courses_item:hover .ag-courses-item_bg{-ms-transform:scale(10);transform:scale(10)}h4.ag-courses-item_title{color:#fff;position:relative;margin:0 0 11px;z-index:2;overflow:hidden;border-bottom:1px solid #ccc;padding-bottom:11px;text-shadow:1px 1px 2px rgba(0,0,0,.3)}.ag-courses_item .icon{font-size:2em;padding-bottom:.5em;position:relative;z-index:2}.ag-course-body{z-index:3;position:relative}.ag-courses-item_bg{height:128px;width:128px;background-color:#f9b234;z-index:1;position:absolute;top:-75px;righ:-75px;border-radius:50%;transition:var(--transition)}.ag-courses_item:nth-child(2n) .ag-courses-item_bg{background-color:#3ecd5e}.ag-courses_item:nth-child(3n) .ag-courses-item_bg{background-color:#e44002}.ag-courses_item:nth-child(4n) .ag-courses-item_bg{background-color:#952aff}.ag-courses_item:nth-child(5n) .ag-courses-item_bg{background-color:#cd3e94}.ag-courses_item:nth-child(6n) .ag-courses-item_bg{background-color:#4c49ea}@media only screen and (max-width:979px){.ag-courses_item{-ms-flex-preferred-size:calc(50% - 30px);flex-basis:calc(50% - 30px)}.ag-courses-item_title{font-size:24px}}@media only screen and (max-width:639px){.ag-courses_item{-ms-flex-preferred-size:100%;flex-basis:100%;padding:22px 40px}}.counter-box{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[4];grid-template-columns:repeat(4,1fr);grid-gap:1rem;-ms-flex-pack:center;justify-content:center;place-items:center}@media only screen and (max-width:992px){.counter-box{-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr)}}@media only screen and (max-width:380px){.counter-box{-ms-grid-columns:(1fr)[1];grid-template-columns:repeat(1,1fr)}}.counter-widget{background-color:var(--secondary-color);border-radius:1rem;box-shadow:var(--box-shadow);color:#212529;padding:1rem;text-align:center;width:100%;height:100%;display:-ms-grid;display:grid;place-items:center}.counter-number,.counter-number-suffix{font-size:2.5rem;font-weight:700;text-shadow:var(--text-shadow)}.elementor-counter-title{font-weight:700;font-size:1.5rem}.services-container ul{display:-ms-flexbox;display:flex;gap:2rem;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-line-pack:end;align-content:flex-end}.services-container ul li{font-weight:700;color:var(--primary-color);font-size:1.125rem;-ms-flex-preferred-size:calc(25% - 2rem);flex-basis:calc(25% - 2rem)}.services-container ul li>p{color:#212529;font-weight:400;font-size:1rem}@media only screen and (max-width:992px){.services-container ul li{-ms-flex-preferred-size:calc(33.33333333% - 2rem);flex-basis:calc(33.33333333% - 2rem)}}@media only screen and (max-width:768px){.services-container ul li{-ms-flex-preferred-size:calc(50% - 2rem);flex-basis:calc(50% - 2rem)}}@media only screen and (max-width:576px){.services-container ul li{-ms-flex-preferred-size:calc(100%);flex-basis:calc(100%)}}.why-row .col-12{margin-bottom:1rem}.why-item-container{background-color:var(--primary-color);border-radius:1rem;box-shadow:var(--box-shadow);color:#fff;height:100%;padding:1rem;font-weight:700;font-size:1.5rem}.why-item-container p{font-weight:400;font-size:1rem}.why-item-container h4{color:#fff}.why-item-container i{font-size:1.5rem;margin-bottom:.75rem;filter:drop-shadow(1px 1px 2px rgba(0,0,0,.25))}.testimonial-wrapper .testimonial-image{width:48px;height:48px;float:left;clear:left;margin-right:1rem}.testimonial-details>a{display:block}.contact-icon-list-item{font-weight:700}.map-widget-container{position:relative;padding-bottom:75%;height:0;overflow:hidden;height:50%;border:1px solid var(--primary-color);box-shadow:var(--box-shadow)}.map-widget-container iframe{position:absolute;top:0;left:0;width:100%!important;height:100%!important}.contact-form button,.contact-form input,.contact-form label,.contact-form textarea{display:block}.contact-form label{margin-bottom:.2rem;font-weight:700;color:var(--primary-color)}.contact-form input,.contact-form textarea{margin-bottom:1rem;width:100%;padding:.5rem;transition:var(--transition);border:1px solid #212529;border-radius:5px}.contact-form input:focus,.contact-form textarea:focus{outline-color:var(--accent-color);box-shadow:inset 2px 2px 4px rgba(0,0,0,.25)}.contact-form .required-label{color:var(--accent-color)}.contact-form button{border:none}.working-hours{border:1px solid var(--primary-color);box-shadow:var(--box-shadow)}.working-hours>table{margin-bottom:0}.working-hours>table>tbody>tr>td:nth-child(odd){font-weight:700}.site-footer{color:#fff;padding-top:1rem;background-color:var(--primary-color)}.site-footer .powered{text-align:right}.site-footer .powered a{color:#ccc}@media only screen and (max-width:767px){.site-footer .powered{text-align:left}} \ No newline at end of file +@charset "UTF-8";:root{--primary-color:#3c486b;--secondary-color:#f9d949;--accent-color:#f45050;--even-bg-color:#f0f0f0;--odd-bg-color:#f9f9f9;--button-shadow:inset 0 -2px 0 rgba(0,0,0,0.3),1px 1px 2px 0 rgba(0,0,0,0.3);--box-shadow:1px 1px 4px rgba(0, 0, 0, 0.3);--text-shadow:1px 1px 2px rgba(0, 0, 0, 0.3);--transition:all ease-in-out 0.2s}body{font-family:Montserrat,Lato,sans-serif;font-weight:400;font-size:16px}h1,h2,h3,h4,h5,h6{color:var(--primary-color);font-weight:700;text-shadow:var(--text-shadow)}h1{margin-bottom:1.25rem;line-height:3rem}h2{margin-bottom:1rem;line-height:2.4rem}h3{margin-bottom:.875rem;line-height:2.1rem}h4{margin-bottom:.75rem;line-height:1.8rem}h5{margin-bottom:.625rem;line-height:1.5rem}h6{margin-bottom:.5rem;line-height:1rem}a{color:var(--primary-color);text-decoration:none}p{line-height:1.2rem}ul{list-style:none;padding-left:0}.button{background-color:var(--secondary-color);border-radius:5px;box-shadow:var(--button-shadow);color:#212529;display:inline-block;font-weight:780;padding:1rem 2rem;text-transform:uppercase;text-shadow:var(--text-shadow);transition:all ease-in-out .1s;width:auto}.button:hover{box-shadow:inset 0 -2px 0 rgba(0,0,0,.3)}.button:active{box-shadow:none}.e-button{background-color:transparent;border:1px solid var(--secondary-color);color:var(--secondary-color);box-shadow:none}.section-heading{text-align:center;padding-bottom:1rem;position:relative}.section-heading::before{content:"";position:absolute;display:block;width:120px;height:1px;background:#ddd;bottom:1px;left:calc(50% - 60px)}.section-heading::after{content:"";position:absolute;display:block;width:40px;height:3px;background:var(--secondary-color);bottom:0;left:calc(50% - 20px)}.subsection-heading{color:var(--primary-color);font-weight:700;font-size:1.5rem;margin-bottom:.75rem;line-height:1.8rem}.site-header{background-color:rgba(60,72,107,.9);border-bottom:1px solid var(--primary-color);box-shadow:0 2px 2px rgba(0,0,0,.25);left:0;border-bottom:1px solid var(--primary-color);position:fixed;top:0;width:100%;z-index:10;padding:0 5%}.site-header.flex{display:-ms-grid;display:grid;-ms-grid-columns:2fr 7.5fr;grid-template-columns:2fr 7.5fr}.site-title{margin-bottom:0}.dark .title-area,.title-area{padding:5px 0}.site-title>a{background:url(../../media/site-logo.png) no-repeat left bottom;background-size:contain;display:block;height:76px;text-indent:-9999px;margin-bottom:0;z-index:-99;filter:drop-shadow(0 0 .3rem #fff)}.dark .site-title>a{height:56px}.site-description{display:block;height:0;margin-bottom:0;text-indent:-9999px}.primary-menu{display:-ms-flexbox;display:flex;gap:20px;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:1200px}ul.primary-menu{margin:0;list-style:none}.primary-menu .menu-item:has(a.active){border-bottom:1px solid var(--secondary-color)}.primary-menu a{color:#fff;text-shadow:var(--text-shadow);transition:var(--transition)}.primary-menu a.active,.primary-menu a:hover{color:var(--secondary-color)}.primary-menu a{font-size:14px;font-weight:700;line-height:86px;text-transform:uppercase}.dark .primary-menu a{line-height:66px}@media only screen and (min-width:769px){.menu-toggle{display:none;visibility:hidden}.nav-primary{display:block!important}.home-section{background-image:url(img/home-bg.webp);background-attachment:fixed}}@media only screen and (max-width:920px){.primary-menu a{font-size:12px}}@media only screen and (max-width:810px){.primary-menu a{font-size:11px}}@media only screen and (max-width:1024px){.site-title>a{height:56px}.dark .primary-menu a,.primary-menu a{line-height:66px}}@media only screen and (max-width:768px){.site-header.flex{-ms-grid-columns:80% 20%;grid-template-columns:80% 20%}nav.nav-primary{max-height:0;transition:var(--transition);overflow:hidden;position:relative}nav.nav-primary.show{margin-top:2rem;max-height:100vh;transition:var(--transition);visibility:visible}ul.primary-menu{margin-bottom:20px}.primary-menu a{font-size:1rem}.menu-toggle{background:0 0;border-width:0;color:#fff;display:block;padding:0;visibility:visible;cursor:pointer;text-align:right}.primary-menu{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:20px}.primary-menu .menu-item{display:block;margin-left:calc(10% + 10px);width:100%}.dark .primary-menu a,.primary-menu a{line-height:30px}.menu-toggle:focus,.menu-toggle:hover{bakground-color:transparent;border-width:0}.menu-toggle::before{border:1px solid var(--primary-color);content:'\eb5f';display:inline-block;font-size:3rem;padding:0;text-rendering:auto;transform:rotateX(0);transition:var(--transition)}.menu-toggle.activated::before{box-shadow:inset 1px -1px 4px rgba(0,0,0,.4);content:'\ec8d';transform:rotateX(180deg)}.menu-toggle.activated::before,.menu-toggle::before{text-rendering:auto}}.section{min-height:100vh;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center;justify-content:center;padding:100px 0}.section:nth-child(2n){background-color:var(--even-bg-color)}.section:nth-child(odd){background-color:var(--odd-bg-color)}.section-copy>p{font-size:1.5rem;line-height:2.25rem}.hero{background-image:url("../../media/header-bg.webp");background-position:center center;background-repeat:no-repeat;background-size:cover;position:relative}.hero a.home-phone,.hero h1,.hero h2,.hero h3{color:#fff}.hero h1{margin-bottom:1.25rem}.hero h2{margin-bottom:1rem}h3.home-contact-us-button{font-size:16px}.hero a.home-phone{font-weight:700;font-size:1.75rem}.hero a.home-phone>i{background-color:var(--accent-color);padding:1rem;color:#212529;border-radius:2rem;box-shadow:var(--button-shadow);transition:var(--transition)}.hero a.home-phone>i:hover{-ms-transform:rotate(30deg);transform:rotate(30deg)}.hero a.home-phone>i:hover{box-shadow:inset 0 -2px 0 rgba(0,0,0,.3)}.hero a.home-phone>i:active{box-shadow:none}.hero .container *{z-index:2}.hero .background-overlay{height:100%;width:100%;min-height:100vh;top:0;left:0;position:absolute;mix-blend-mode:multiply;background-color:var(--primary-color);opacity:.5;z-index:0}@media(max-width:1024px){.hero{background-image:url("../../media/header-bg-mobile.webp")}}.ag-courses_box{display:-ms-flexbox;display:flex;-ms-flex-align:stretch;align-items:stretch;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-line-pack:center;align-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:2.5rem 0;color:#fff}.ag-courses_item{background-color:#3c486b;border-radius:10px;display:block;-ms-flex-preferred-size:calc(33.33333% - 30px);flex-basis:calc(33.33333% - 30px);margin:0 15px 30px;overflow:hidden;padding:30px 20px;position:relative;box-shadow:var(--box-shadow)}.ag-courses_item:hover .ag-courses-item_bg{-ms-transform:scale(10);transform:scale(10)}h4.ag-courses-item_title{color:#fff;position:relative;margin:0 0 11px;z-index:2;overflow:hidden;border-bottom:1px solid #ccc;padding-bottom:11px;text-shadow:1px 1px 2px rgba(0,0,0,.3)}.ag-courses_item .icon{font-size:2em;padding-bottom:.5em;position:relative;z-index:2}.ag-course-body{z-index:3;position:relative}.ag-courses-item_bg{height:128px;width:128px;background-color:#f9b234;z-index:1;position:absolute;top:-75px;righ:-75px;border-radius:50%;transition:var(--transition)}.ag-courses_item:nth-child(2n) .ag-courses-item_bg{background-color:#3ecd5e}.ag-courses_item:nth-child(3n) .ag-courses-item_bg{background-color:#e44002}.ag-courses_item:nth-child(4n) .ag-courses-item_bg{background-color:#952aff}.ag-courses_item:nth-child(5n) .ag-courses-item_bg{background-color:#cd3e94}.ag-courses_item:nth-child(6n) .ag-courses-item_bg{background-color:#4c49ea}@media only screen and (max-width:979px){.ag-courses_item{-ms-flex-preferred-size:calc(50% - 30px);flex-basis:calc(50% - 30px)}.ag-courses-item_title{font-size:24px}}@media only screen and (max-width:639px){.ag-courses_item{-ms-flex-preferred-size:100%;flex-basis:100%;padding:22px 40px}}.counter-box{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[4];grid-template-columns:repeat(4,1fr);grid-gap:1rem;-ms-flex-pack:center;justify-content:center;place-items:center}@media only screen and (max-width:992px){.counter-box{-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr)}}@media only screen and (max-width:380px){.counter-box{-ms-grid-columns:(1fr)[1];grid-template-columns:repeat(1,1fr)}}.counter-widget{background-color:var(--secondary-color);border-radius:1rem;box-shadow:var(--box-shadow);color:#212529;padding:1rem;text-align:center;width:100%;height:100%;display:-ms-grid;display:grid;place-items:center}.counter-number,.counter-number-suffix{font-size:2.5rem;font-weight:700;text-shadow:var(--text-shadow)}.elementor-counter-title{font-weight:700;font-size:1.5rem}.services-container ul{display:-ms-flexbox;display:flex;gap:2rem;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-line-pack:end;align-content:flex-end}.services-container ul li{font-weight:700;color:var(--primary-color);font-size:1.125rem;-ms-flex-preferred-size:calc(25% - 2rem);flex-basis:calc(25% - 2rem)}.services-container ul li>p{color:#212529;font-weight:400;font-size:1rem}@media only screen and (max-width:992px){.services-container ul li{-ms-flex-preferred-size:calc(33.33333333% - 2rem);flex-basis:calc(33.33333333% - 2rem)}}@media only screen and (max-width:768px){.services-container ul li{-ms-flex-preferred-size:calc(50% - 2rem);flex-basis:calc(50% - 2rem)}}@media only screen and (max-width:576px){.services-container ul li{-ms-flex-preferred-size:calc(100%);flex-basis:calc(100%)}}.why-row .col-12{margin-bottom:1rem}.why-item-container{background-color:var(--primary-color);border-radius:1rem;box-shadow:var(--box-shadow);color:#fff;height:100%;padding:1rem;font-weight:700;font-size:1.5rem}.why-item-container p{font-weight:400;font-size:1rem}.why-item-container h4{color:#fff}.why-item-container i{font-size:1.5rem;margin-bottom:.75rem;filter:drop-shadow(1px 1px 2px rgba(0,0,0,.25))}.testimonial-wrapper .testimonial-image{width:48px;height:48px;float:left;clear:left;margin-right:1rem}.testimonial-details>a{display:block}.contact-icon-list-item{font-weight:700}.map-widget-container{position:relative;padding-bottom:75%;height:0;overflow:hidden;height:50%;border:1px solid var(--primary-color);box-shadow:var(--box-shadow)}.map-widget-container iframe{position:absolute;top:0;left:0;width:100%!important;height:100%!important}.contact-form button,.contact-form input,.contact-form label,.contact-form textarea{display:block}.contact-form label{margin-bottom:.2rem;font-weight:700;color:var(--primary-color)}.contact-form input,.contact-form textarea{background-color:var(--even-bg-color);border-radius:5px;border:1px solid #212529;margin-bottom:1rem;outline:0;padding:.5rem;transition:var(--transition);width:100%}.contact-form input:focus,.contact-form textarea:focus{background-color:var(--odd-bg-color);box-shadow:inset 1px 1px 2px rgba(0,0,0,.25);border-color:var(--accent-color)}.contact-form .required-label{color:var(--accent-color)}.contact-form button{border:none}.working-hours{border:1px solid var(--primary-color);box-shadow:var(--box-shadow)}.working-hours>table{margin-bottom:0}.working-hours>table>.thead>tr>th{color:var(--primary-color);background-color:var(--even-bg-color)}.working-hours>table>tbody>tr>td:nth-child(odd){font-weight:700}.working-hours>table>tbody>tr:nth-child(odd)>td{background-color:var(--odd-bg-color)}.working-hours>table>tbody>tr:nth-child(2n)>td{background-color:var(--even-bg-color)}.site-footer{color:#fff;padding-top:1rem;background-color:var(--primary-color)}.site-footer .powered{text-align:right}.site-footer .powered a{color:#ccc}@media only screen and (max-width:767px){.site-footer .powered{text-align:left}} \ No newline at end of file diff --git a/index.html b/index.html index 9ba74aa..1f4051a 100644 --- a/index.html +++ b/index.html @@ -19,7 +19,7 @@ - + diff --git a/robots.txt b/robots.txt index 72f93d0..6959cdb 100644 --- a/robots.txt +++ b/robots.txt @@ -1,5 +1,8 @@ User-agent: * + Disallow: Disallow: /cgi-bin/ Disallow: /src/ -Disallow: purgecss.config.js \ No newline at end of file +Disallow: /purgecss.config.js + +Sitemap: https://carclubtire.com/sitemap.xml \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml index 80a2275..0e5c428 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -3,15 +3,47 @@ - https://carclubtire.com/ + 2023-07-2 + weekly + 0.9 + + + https://carclubtire.com/#deals 2023-07-2 + weekly + 0.9 + + + https://carclubtire.com/#about + 2023-07-2 weekly + 0.9 + + + https://carclubtire.com/#whyus + 2023-07-2 + weekly + 0.9 + + + + https://carclubtire.com/#testimonial + 2023-07-2 + weekly 0.9 + + + + https://carclubtire.com/#contactus + 2023-07-2 + weekly + 0.9 + + + - - \ No newline at end of file