/* Critical CSS - Above the Fold Only */
/* Variables */

:root {
    --montserrat-font: "Montserrat", sans-serif;
    --inter-font: "Inter", sans-serif;
    --source-sans-pro: "Source Sans Pro", sans-serif;
    --color3: #013966;
    --color4: #ffffff;
    --color5: #EEF1F6;
    --color7: #2874AB;
    --color8: #11242D;
    --block-gray-color: #EEF1F6;
    --transition: .4s;
}

/* CSS Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--inter-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

img[width][height] {
    height: auto;
}

img.review__image__mobile {
    display: none !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--montserrat-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-weight: normal;
}

/* Container */

.container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 15px;
}

.image__hover:hover .hover__on {
    opacity: 1;
    visibility: visible;
}

.image__hover .hover__on {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.device__small {
    display: none;
}

/* Header Area */

header {
    padding-block: 20px;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    width: 213.26px;
}

.header__navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__navigation ul li a {
    color: var(--color8);
    text-transform: capitalize;
    font-size: 16px;
    line-height: 21px;
    position: relative;
}

.header__navigation ul li a::after {
    position: absolute;
    content: '';
    background-color: var(--color8);
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.header__navigation ul li a:hover::after {
    transform: scaleX(1);
}

.call__btn {
    background-color: var(--color3);
    color: #fff;
    padding: 18px 46px;
    border-radius: 13.04px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.call__btn:hover {
    background-color: var(--color3);
}

.call__btn img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Review/Hero Area - Above the Fold */

.review__area {
    padding-block: 60px 75px;
}

.review__content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.review__text h4 {
    font-size: 32px;
    color: var(--color8);
    font-weight: 600;
    margin-bottom: 15px;
}

.review__text p {
    font-size: 16px;
    line-height: 135.1%;
    color: var(--color8);
    margin-bottom: 20px;
}

.review__text a {
    background-color: var(--color3);
    color: white;
    padding: 15px 80px;
    border-radius: 18px;
    display: inline-block;
    font-size: 20px;
    margin-bottom: 40px;
}

.review__text a:hover {
    background-color: var(--color3);
}

.google__icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google__icon a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google__icon a span {
    font-size: 26px;
    color: var(--color8);
}

.google__icon a img {
    width: 52px;
    height: auto;
    aspect-ratio: 52 / 51.25;
    display: block;
}

.google__icon span {
    font-family: var(--source-sans-pro);
    color: var(--color8);
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
}

.review__star {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.review__star span {
    font-size: 24px;
    color: var(--color8);
}

.star__group img {
    width: 123.68px;
    height: auto;
    aspect-ratio: 123.683 / 31.9;
    display: block;
}

.review__google {
    max-width: 300px;
    box-shadow: 0 8px 8px 0 rgba(1, 57, 102, 0.16);
    padding: 20px 24px;
    border-radius: 35px;
    background-color: var(--color5);
}

.review__google_footer {
    max-width: 340px;
    box-shadow: 0 8px 8px 0 rgba(1, 57, 102, 0.16);
    padding: 20px 60px;
    border-radius: 20px;
}

.review__left {
    width: 41%;
}

.review__right {
    width: 59%;
    min-height: 479px;
}

.review__wrapper {
    position: relative;
}

.review__image {
    line-height: 0;
    content-visibility: auto;
    contain-intrinsic-size: 712px 479px;
}

.review__image img:not(.review__image__mobile) {
    width: 100%;
    height: auto;
    aspect-ratio: 712 / 479;
    display: block;
}

.review__image__mobile {
    display: none !important;
    aspect-ratio: 382 / 299;
}

.review__block {
    display: flex;
    align-items: center;
    background-color: var(--color7);
    justify-content: space-between;
    padding: 10px 13px;
    position: absolute;
    top: 40px;
    right: 0;
    left: 0;
}

.single__review__block {
    display: flex;
    align-items: center;
    width: 30%;
    gap: 5px;
}

.single__review__block p {
    font-size: 16px;
    color: var(--color4);
}

.single__review__block svg {
    width: 26px;
    flex-shrink: 0;
}

.call__symbol {
    position: absolute;
    bottom: 0px;
    left: 5px;
    width: 130px;
    height: 130px;
}

.call__symbol img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
}

/* Responsive Utilities */

.show-web {
    display: block !important;
}

.hide-web {
    display: none !important;
}

img.show-web {
    display: inline-block !important;
}

img.hide-web {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

