/* Start Global Properties */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    padding-top: 30px;
    padding-bottom: 30px;
    margin: 0 auto;
    width: 1100px;
    max-width: 100%;
}

.title h2 {
    font-size: 40px;
}

.title .line {
    width: 70px;
    height: 3px;
    margin: 10px auto 30px;
    background-color: #0355cc;
}

/* /End Global Properties */

/* Start Home Section */
/* Start Header */
.header {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: rgb(0 123 255 / 0.5);

    z-index: 1;
}

.header .logos {
    float: left;
}

.input1 {
    margin: 15px 0;
}

.input1 input[type="text"] {
    outline: none;
    width: 260px;
    height: 30px;
    border: none;
    border-radius: 25px;

    /* To make the text in the input starts after search-icon */
    padding-left: 40px;
}

.header .logos i {
    font-size: 22px;
    color: white;
}

.header .logos .homeicon {
    margin: 0 20px;
}

.header .logos .searchicon {
    position: relative;
    color: #007bff;
    display: block;
    width: 25px;
    left: 80px;
    top: -25px;
}

.header .links {
    float: right;
    margin-right: 20px;
}

.links .blog-link {
    position: relative;

}

.links .blog-link:hover .mega-menu {
    visibility: visible;
}

.blog-link .mega-menu {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 28px;
    font-size: 14px;
    width: 150px;
    height: 200px;
    background-color: white;
    border-radius: 10px;
    text-align: center;

    /* To divide the value of the padding equally */
    padding: 50% 0;
}

.blog-link .mega-menu span {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    position: relative;
}

.blog-link .mega-menu span a {
    text-decoration: none;
    color: #17a2b8;
}

.blog-link span::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    left: 0;
    height: 2px;
    background-color: #007bff;
    visibility: hidden;
}

.blog-link span:hover::after {
    width: 80%;
    margin-left: 10%;
    visibility: visible;
    transition: 0.7s;
}

.links li {
    display: inline;
    height: 60px;
    line-height: 60px;
    margin-right: 16px;
    font-weight: bold;
    position: relative;
}

.links li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: blue;
    top: 25px;
    left: 0;
    transition: 0.3s;
    visibility: hidden;
}

.links li:hover::after {
    width: 100%;
    visibility: visible;
}

.links li a {
    text-decoration: none;
    color: white;
}

/* /End Header */
/* Start Landing Page */
.landing {
    width: 100%;
    height: 100vh;
    background: url(../images/bench-accounting-C3V88BOoRoM-unsplash.jpg) fixed no-repeat;
    background-size: cover;
    position: relative;
}

.landing .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.landing .content {
    padding-top: 60px;
    width: 60%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.landing h1 {
    font-size: 65px;
    margin: 20px auto;
    word-spacing: 2px;
    text-transform: uppercase;
    color:rgb(85, 6, 6);
}

.landing p {
    margin: 0 auto 18px;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 25px;
}

.landing .main-button {
    border: none;
    padding: 16px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.landing .main-button:hover {
    opacity: 60%;
}

.buttons .btn1 {
    margin-right: 8px;
}

.buttons .btn2 {
    background-color: #007bff;
    color: white;
}

/* /End Landing Page */
/* /End Styling Home Section */

/*  Start Section 1 (Welcome)  */
.section1 {
    height: 80vh;
}

.section1 .container {
    overflow: auto;
    text-align: center;
    margin-top: 120px;
    margin-bottom: 120px;
}

.section1 h2 {
    margin: 40px auto 0;
}

.section1 .grid3 .form {
    float: left;
    padding: 15px;
    width: 30%;
    height: 200px;
    border: 1px solid #17a2b8;
    border-radius: 10px;
    position: relative;
}

.section1 .grid3 .form::after {
    content: "";
    width: 0%;
    height: 0%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #bbd2f8;
    transition: 0.5s;
}

.section1 .form:hover::after {
    width: 100%;
    height: 100%;
}

.section1 .form:hover h3 {
    color: white;
}

.section1 .form:hover p {
    color: black;
}

.section1 .form2 {
    margin: 0 5%;
}

.section1 i {
    font-size: 25px;
    color: #0355cc;
    padding: 15px 0;
}

.section1 h3 {
    text-transform: capitalize;
    margin: 0 auto 18px;
}

.section1 p {
    margin: 18px 0;
    font-size: 14px;
    color: gray;
    font-weight: 600;
}

.section1 a {
    display: block;
    margin: 30px;
    text-decoration: none;
    color: #007bff;
}

.section1 a:hover {
    color: #0355cc;
}
.about  {
     gap:40px;
    display: flex;
}

/* /End Section 1 (Welcome)  */

/*  Strat Section 2 (Features) */
.section2 {
    background-color: #bbd2f8;
    height: 120vh;
    margin: 100px auto;
    text-align: center;
}

.section2 .overlay-image {
    margin: auto;
    width: 972px;
}

.section2 .title h2 {
    padding: 60px 0 0;
}

.section2 .image {
    float: left;
    height: 200px;
    width: 300px;
    margin: 12px;
    position: relative;
}

.section2 .image:hover .content {
    visibility: visible;
}

.section2 .image .content {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
}

.section2 .image .content h4 {
    margin-top: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #ddd;
    text-transform: uppercase;
}

.section2 .image .content p {
    margin: 20px auto;
    font-size: 22px;
    color: white;
    font-weight: 600;
}

.section2 img {
    height: 100%;
    max-width: 100%;
}

.section2 .image .content i {
    font-size: 20px;
    padding: 6px 12px;
    background-color: white;
    color: gray;
    border-radius: 10px;
    cursor: pointer;
}

.section2 .image i:hover {
    background-color: #ddd;
}

/* /End Section 2 (Features) */

/* Start Section 3 (Our Offers) */
.our-offers h2 {
    text-align: center;
}

.our-offers .container {

    overflow: auto;
}

.our-offers .offer-items .item {
    float: left;
    width: 30%;
    height: 200px;
    border: 1px solid #007bff;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.offer-items .item2,
.offer-items .item5 {
    margin-left: 5%;
    margin-right: 5%;
}

.our-offers .offer-items .item::after {
    content: "";
    width: 0%;
    height: 0%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #bbd2f8;
    transition: 0.5s;
}

.our-offers .offer-items .item:hover::after {
    width: 100%;
    height: 100%;
}

.our-offers .offer-items .item:hover h4 {
    color: #0355cc;
}

.our-offers .offer-items .item:hover p {
    color: black;
}

.our-offers .item i {
    float: left;
    color: #0355cc;
    font-size: 22px;
    padding: 16px 10px;
    cursor: pointer;
}

.our-offers .item h4 {
    margin: 10px 5px;
    font-size: 24px;
    font-weight: 700;
}

.our-offers .item p {
    color: gray;
    font-weight: 600;
    padding-left: 42px;
    line-height: 1.5;
}

/*/End Section 3 (Our Offers) */

/* Start Section 4 (Choose Us) */
.choose-us {
    height: 100vh;
    padding-top: 100px;
}

.choose-us .container {
    position: relative;
}

.choose-us .container p {
    font-weight: 550;
}

.choose-us .title h2 {
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 750;
}

.choose-us .title span {
    padding: 8px 0;
    border-bottom: 2px solid #0355cc;
}

.choose-us .title p {
    width: 40%;
    margin: 20px 0;
    line-height: 1.3;
    color: gray;
}

.choose-us i {
    float: left;

    margin-right: 10px;
    color: #007bff;
}

.choose-us i:hover {
    color: #0355cc;
}

.choose-us .image {
    position: absolute;
    top: 0;
    right: 0;
}

.choose-us .image {
    width: 430px;
    height: 250px;
    max-width: 100%;
}

.choose-us .image .bullets {
    width: 30%;
    margin: auto;
}

.choose-us .image span {
    display: block;
    margin-top: 10px;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    float: left;
    background-color: #ddd;
}

.choose-us .image .active {
    background-color: #17a2b8;
}

.choose-us .image .not-active:hover {
    background-color: #17a2b8;
}

/*/End Section 4 (Choose Us) */

/* Start Section 5 (Statics) */
.stats {
    height: 60vh;
    background: url('../images/bench-accounting-C3V88BOoRoM-unsplash.jpg') center fixed no-repeat;
    background-size: cover;
    position: relative;
}

.stats .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.stats .items {
    width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.stats .items .item {
    float: left;
    width: 22%;
    margin-right: 1.5%;
    margin-left: 1.5%;
}

.stats .item i {
    font-size: 40px;
    color: #0355cc;
    padding: 10px;
}

.stats .item span {
    display: block;
    text-transform: capitalize;
    font-size: 20px;
    color: white;
    margin: 10px 0;
}

/*/End Section 5 (Statics) */

/* Start Section 5 (Pricing Table) */
.pricing-table {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    height: 100vh;
}

.pricing-table h2 {
    font-size: 32px;
}

.pricing-table .table .item {
    float: left;
    text-align: center;
    width: 30%;
    height: 400px;
    border: 1px solid #0355cc;
    border-radius: 10px;
    position: relative;
}

.pricing-table .table .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background-color: #bbd2f8;
    z-index: -1;
    transition: 0.5s;
}

.pricing-table .table .item:hover::after {
    height: 100%;
}

.pricing-table .table .item:hover .circle {
    border-color: #0355cc;
}

.pricing-table .table .item:hover h5 {
    color: #0355cc;
}

.table .item2 {
    margin: 0 5%;
}

.table .item h5 {
    font-size: 24px;
    padding: 40px 20px 20px;
}

.table .item .circle {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #bbd2f8;
    transition: 0.3s;
}

.table .num1 {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 700;
    display: block;
}

.table .num2 {
    font-weight: 700;
}

.table p {
    padding: 12px 0;
    font-weight: bold;
}

.table button {
    margin: 8px auto 0;
    width: 70%;
    font-size: 18px;
    padding: 12px 0;
    border-radius: 20px;
    border: 2px solid #0355cc;
    cursor: pointer;
}

/*/End Section 5 (Pricing Table) */

/* Start Section 6 (Clients) */
.clients {
    margin-top: 60px;
    margin-bottom: 60px;
    height: 400px;
    background: url('../images/bench-accounting-C3V88BOoRoM-unsplash.jpg') fixed center;
    background-size: cover;
    position: relative;
}

.clients .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.clients .items {
    position: absolute;
    color: white;
    width: 1000px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.clients .items .item {
    width: 50%;
    height: 100%;
    padding: 20px 0;
}

.clients .item1 {
    float: left;
}

.clients .item2 {
    float: right;
}

.clients .figure {
    overflow: auto;
}

.clients .figure img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    float: left;
    margin-right: 20px;
}

.clients .details .name {
    padding: 12px;
    font-size: 24px;
    font-weight: 700;
}

.clients .details span {
    color: #0355cc;
    font-size: 22px;
    font-weight: bold;
}

.clients p {
    margin: 30px 10px 0;
    text-transform: capitalize;
    font-weight: 600;
}

/*/End Section 6 (Clients) */

/* Start Section 7 (Our Team) */
.our-team {
    text-align: center;
    height: 100vh;
}

.our-team .title h2 {
    font-size: 32px;
}

.our-team .item {
    background-color: #ddd;
    float: left;
    width: 30%;
    height: 400px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.our-team .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
}

.our-team .item:hover::after {
    height: 100%;
}

.our-team .item:hover div {
    color: white;
}

.our-team .item:hover p {
    color: #007bff;
}

.our-team .item:hover .icons {
    visibility: visible;
}

.our-team .item2 {
    margin: 0 5%;
}

.our-team .items .image {
    position: relative;
}

.our-team .items img {
    width: 100%;
    height: 270px;
}

.our-team .item .name {
    text-transform: capitalize;
    margin: 10px 0;
    color: rgb(20, 20, 20);
    font-weight: 700;
    font-size: 28px;
    transition: 0.5s;
}

.our-team .item p {
    padding-bottom: 10px;
    color: gray;
    font-weight: 750;
    font-size: 22px;
}

.our-team .icons a {
    text-decoration: none;
}

.our-team .icons {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    visibility: hidden;
}

.our-team .icons i {
    display: block;
    font-size: 20px;
    width: 40px;
    height: 45px;
    line-height: 45px;
    background-color: #007bff;
    color: white;
}

/*/End Section 7 (Our Team) */

/* Start Section 8 (News) */
.news {
    text-align: center;
    height: 120vh;
}

.news .item {
    float: left;
    width: 30%;
    height: 500px;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #007bff;
    position: relative;
}

.news .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background-color: rgb(0, 0, 0, 0.4);
    transition: 0.5s;
    z-index: -1;
}

.news .item:hover::after {
    height: 100%;
}

.news .item2 {
    margin: 0 5%;
}

.news .item img {
    max-width: 95%;
    height: 250px;
    border-radius: 10px;
}

.news .icons {
    margin: 14px 0;
}

.news .icons i {
    color: #0355cc;
}

.news .icons a {
    margin-right: 14px;
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.news .item:hover a {
    color: #0355cc;
}

.news .track-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.news .item:hover .track-name {
    color: white;
}

.news .details {
    font-size: 18px;
    font-weight: 750;
    opacity: 0.7;
    width: 100%;
}

.news .item:hover .details {
    color: #0355cc;
}

.news button {
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    margin-top: 25px;
}

.news button:hover {
    color: #0355cc;
    cursor: pointer;
}

/*/End Section 8 (News) */

/* Start Section 10 (Footer) */
.footer {
    height: 60vh;
    background-color: #bbd2f8;
    text-align: center;
}

.footer img {
    width: 300px;
    height: 220px;
    border-radius: 10px;
}

.footer .icons {
    margin: 12px 0;
}

.footer .icons i {
    font-size: 26px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    margin: 0 2px;
    background-color: white;
    color: #007bff;
}

.footer .icons i:hover {
    background-color: #007bff;
    color: white;
}

.footer .details {
    font-weight: 550;
    opacity: 0.8;
}

/*/End Section 10 (Footer) */