:root {
    --background: #fff;
    --background1: #121212;
    --background2: #16171B;
    --head-bg: #F0F0EB;
    --primary-1: #393939;
    --primary-2: #FF6611;
    --primary-3: #FABC1C;
    --primary-4: #f1fbfb;
    --primary-5: #FEF6F0;
    --primary-6: #FAFAFA;
    --secondary: #666666;
    --secondary-2: #f9f9f9;
    --text-color: #292929; 

    --border-radius-1: 2000px;
    --border-radius-2: 30px;
    --border-radius-3: 60px;
    --border-radius-4: 10px;


    --z-index-1: 1;

    --font-family-1: 'Inter', sans-serif;
    --font-family-2: 'Sebenta', sans-serif;
    --font-family-3: 'Bueno', sans-serif;
    --font-family-4: 'Haffer', sans-serif;
}



/* Sebenta*/
@font-face {
    font-family: 'Sebenta';
	src: url('Assets/Font/Sebenta/Medium-Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
	font-family: 'Sebenta';
	src: url('Assets/Font/Sebenta/Medium.ttf') format('truetype');
    font-weight: 500;
}


/* Haffer*/
@font-face {
	font-family: 'Haffer';
	src: url('Assets/Font/Haffer/Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
	font-family: 'Haffer';
	src: url('Assets/Font/Haffer/SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
	font-family: 'Haffer';
	src: url('Assets/Font/Haffer/Regular.ttf') format('truetype');
    font-weight: 400;
}



/* Inter*/
@font-face {
	font-family: 'Inter';
	src: url('Assets/Font/Inter/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
	font-family: 'Inter';
	src: url('Assets/Font/Inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
	font-family: 'Inter';
	src: url('Assets/Font/Inter/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
	font-family: 'Inter';
	src: url('Assets/Font/Inter/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
}


/* Bueno*/
@font-face {
	font-family: 'Bueno';
	src: url('Assets/Font/Bueno/Black.ttf') format('truetype');
    font-weight: 900;
}




/* General settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--head-bg);
    height: 100vh;
    overflow-y: scroll;
}


h1, h2 {
    color: #000;
    font-family: var(--font-family-2);
    font-weight: 500;
    /* font-feature-settings: 'ss01'; */
}

h3, h4{
    color: #000;
    font-family: var(--font-family-2);
    font-weight: 500;
}

h1 {
    font-size: 80px;
    /* font-size: 64px; */
    letter-spacing: -3px;
    font-weight: 500;
    /* line-height: 1; */
}

h2 {
    font-size: 56px;
    letter-spacing: -2px;
    line-height: 1.1;
}

h3 {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -1px;
}

h4 {
    font-size: 34px;
}

h5 {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font-family-2);
    line-height: 1.4;
    color: var(--text-color);
    letter-spacing: -.5px;
}

p, a {
    font-size: 20px;
    line-height: 1.6;
    font-family: var(--font-family-1);
    color: var(--secondary);
    font-weight: 400;
}

small {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-family-1);
    color: var(--background2);
    font-weight: 400;
}

ul {
    list-style-type: none;
}

ul li {
    font-family: var(--font-family-1);
    color: var(--text-color);
    font-size: 18px;
    line-height: 28px;
    /* font-feature-settings: "ss03" 1, "ss04" 1; */
}

ul li a {
    text-decoration: none;

}

a {
    text-decoration: underline;
    color: var(--primary-1);
}

::placeholder {
    font-family: var(--font-family-4);
}

/* .section-p{
    letter-spacing: 2px;
    text-transform: uppercase;
} */

.section-1st {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 700px;
    /* border: 1px solid red; */
}

/* MOBILE - NAV */
.mob-nav {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 10;
    background-color: var(--head-bg);
    padding: 10%;
    /* display: flex;
    align-items: center; */

}

.closebtn1 {
    font-family: var(--font-family-4);
    font-size: 50px;
    position: fixed;
    right: 0;
    top: 0;
    margin: 5% 10% 0 0;
    /* align-self: flex-end; */
    cursor: pointer;
    /* border: 1px solid red; */

}

.mob-nav .mob-list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    /* border: 1px solid red; */
    margin-top: 40px;
    height: 80%;
    width: 100%;
}

.mob-nav .mob-list .mob-1{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mob-list .mob-1 a {
    text-decoration: none;
    font-family: var(--font-family-2);
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -2px;
}

.mob-list .mob-2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mob-list .mob-2 a {
    text-decoration: none;
    /* font-weight: 500;
    font-size: 20px; */
}

.mob-list .mob-2 h3 {
    font-size: 24px;
}

/* .mob-nav .mob-list .mob-e {
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
} */


/* Nav bar */
nav {
    /* position: relative; */
    width: 100%;
    margin: 0 auto;
    padding: 24px 5% 24px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: var(--head-bg) */
}

nav a img {
    width: 180px;
}

nav .nav-icon {
    width: 42px;
    display: none;
}

nav ul {
    display: flex;
    gap: 24px;
}

nav ul li:hover{
    opacity: 0.6;
}

.logo2 {
    display: none;
}

button {
    background-color: var(--background2);
    border: none;
    color: var(--background);
    padding: 16px 32px;
    font-family: var(--font-family-1);
    font-size: 18px;
    /* border-radius: var(--border-radius-4); */
    font-weight: 500;
    cursor: pointer;
    Min-width: 180px;
}

button:hover {
    opacity: 0.8;
}




header {
    width: 90%;
    /* height: 700px; */
    /* min-height: 500px; */
    margin: 0 auto; 
    background-color: var(--head-bg);
    position: relative;
    padding: 60px 0 340px 0;
    /* border: 1px solid blue; */
}



header .head-div {
    /* border: 1px solid red; */
    width: 800px;
        /* border: 1px solid blue; */
}

header div p {
    margin-bottom: 40px;
}

header .head-div small {
    font-weight: 500;
}



/* ABOUT */
.abt {
    width: 100%;
    background-color: #FFDA40;
    padding: 160px 0;
    /* border: 1px solid red; */
}

.abt .abt-sec {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.abt .abt-sec div:nth-child(2) {
    align-self: flex-end;
}

.abt .abt-sec div {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
    /* border: 1px solid black; */
}

.abt .abt-sec div small {
    color: #000;
    font-weight: 500;
}



/* WORKS */
.int {
    width: 100%;
    /* padding: 160px 0 160px 0; */
    /* background-color: #e7e7e4; */
}

.int .section-1st {
    padding: 0 5% 0 5%;
}

.int .int-body {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 20px;
    row-gap: 40px;
    padding: 0 5%;
    /* margin: 50px 0; */
    overflow-x: scroll;
    cursor: pointer;
    transition: 0.5s; 
}

.int .int-body::-webkit-scrollbar {
    display: none;
}

.int-body .int-sec {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* min-width: 500px; */
    transition: 0.5s;
}

.int-body .int-sec p {
    color: var(--background1)
}

.int-body .int-sec:hover {
    opacity: .9;
    /* transform: scale(0.99); */
}

.int-body .int-sec .int-head {
    border-radius: 8px;
    /* height: 600px;
    position: relative; */
}

.int-sec .int-img {
    /* border-radius: 8px; */
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
    image-rendering: auto;   
}

.int-sec video {
    /* border-radius: 8px; */
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
    image-rendering: auto;   
}

/* .int-sec p {
    font-family: var(--font-family-2);
} */

.int-sec .int-b h5 {
    color: var(--background);
}


.int a {
    text-decoration: none;
}






.trust {
    width: 90%;
    margin: 0 auto;
}

.trust h5 {
    text-align: center;
}

.trust .logs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* justify-content: space-between; */
    align-items: center;
    /* gap: 24px; */
    row-gap: 64px;
    column-gap: 24px;
    margin-top: 64px;
}

.trust .logs div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
}

.trust .logs img {
    height: 52px;
}




.img-div {
    width: 100%;
    height: 700px;
}

.img-div img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center center;
    object-fit: cover;
    image-rendering: auto;
}



/* BENEFIT */

.benefit {
    width: 100%;
    /* margin: 160px auto 160px auto; */
    display: flex;
    flex-direction: column; 
    /* background-color: #E7E7E4; */
    background-color: #181B21;
    padding: 160px 0;
}

.benefit .section-1st {
    padding: 0 5% 0 5%;
}

.benefit .section-1st h3, .benefit .section-1st p {
    color: var(--background);
}

/* .wedo .section-1st h3, .wedo .section-1st p {
} */

.benefit .benefit-grid {
    margin: 50px 0;
    display: flex;
    gap: 24px;
    padding: 0 5%;
    overflow-x: scroll;
    transition: 0.5s;
}

.benefit .benefit-grid::-webkit-scrollbar {
    display: none;
}

.benefit .benefit-grid .benefit-single {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 600px;
    min-width: 500px;
    overflow: hidden;
    padding: 40px;
    width: 500px;
    background-color: #cfd6e5;
}

.benefit .benefit-grid .benefit-single .single1 {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    gap: 16px;
}

.benefit .benefit-grid .benefit-single img {
    /* width: 100px; */
    height: 80px;
    align-self: flex-start;
}
 

/* WEDO */

/* .wedo {
    width: 100%;
    margin: 160px auto;
    display: flex;
    flex-direction: column;
    background-color: #181B21;
    padding: 160px 0;
}

.wedo .section-1st {
    padding: 0 5% 0 5%;
}

.wedo .section-1st h3, .wedo .section-1st p {
    color: var(--background);
}

.wedo .do-grid {
    margin: 50px 0;
    display: flex;
    gap: 24px;
    padding: 0 5%;
    overflow-x: scroll;
    transition: 0.5s;
}

.wedo .do-grid::-webkit-scrollbar {
    display: none;
}

.wedo .do-grid .do-single {
    position: relative;
    height: 600px;
    min-width: 500px;
    overflow: hidden;
}

.wedo .do-grid .do-single .do-img {
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
    image-rendering: auto;
}

.do-single .single-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 40px 40px 40px;
}

.do-single .single-box .single1 {
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 230px;
}

.do-single .single-box .single2 {
    display: flex;
    justify-content: flex-end;
    padding: 20px 26px;
}

.do-single .single-box .single2 img {
    width: 40px;
}*/

.do-arrow {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.do-arrow img {
    width: 60px;
    cursor: pointer;
    opacity: .4;
}

.do-arrow img:hover {
    opacity: .6;
} 





/* insight */
.insight {
    width: 90%;
    margin: 0 auto;
    /* border: 1px solid red; */
}

.insight .in-grid {
    /* margin-top: 50px; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.insight .in-grid .in-single {
    position: relative;
    height: 600px;
}

.insight .in-grid .in-single .in-img {
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
    image-rendering: auto;
}

.in-single .single-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 40px 40px 40px;
}

.in-single .single-box .single1 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    height: 200px;
}

.in-single .single-box .single1 a {
    text-decoration: none;
}

.single-box .single1 a:hover {
    text-decoration: underline;
}

.in-single .single-box .single2 {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
}

.in-single .single-box .single2 img {
    width: 56px;
}



/* .Testimonial */
.testimonial {
    width: 90%;
    margin: 160px auto;   
}


.testimonial .test-sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    cursor: pointer;
    margin-top: 50px;
}


.test-sec .single-test {
    display: flex;
    flex-direction: column-reverse;
    gap: 80px;
    justify-content: space-between;
    background-color: #E7E7E4;
    padding: 80px;
}

.test-sec .single-test h5, .test-sec .single-test p {
    color: #000;
}

.test-q {
    font-size: 100px;
    color: #000;
    line-height: 1;
}

/* .test-sec .single-test:last-child {
    display: none;
} */

.test-sec .single-test .title {
    display: flex;
    align-items: center;
    gap: 40px;
}


.test-sec .single-test img {
    width: 80px;
}

.single-test .title p {
    font-weight: 500;
}



/* call to action */
.call-to-action {
    width: 100%;
    text-align: center;
    margin: 160px auto 0 auto;
    background-color: #FF82C2;
    padding: 200px 10%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.call-to-action h2 {
    /* margin-bottom: 40px; */
    font-family: var(--font-family-2);
    font-size: 100px;
    font-weight: 400;

}

.call-to-action p {
    color: #000;
}

.call-to-action span {
    font-style: italic;
}

.call-to-action button {
    align-self: center;
}

.call-to-action a {
    text-decoration: none;
    color: #000;
}

/* .membership {
    width: 100%;
    text-align: center;
    margin: 0 auto 160px auto;
    background-color: var(--background2);
    padding: 200px 10%;

} */




/* FAQS */
.faqs {
    width: 90%;
    margin: 0 auto;
}


.all-questions {
    margin-top: 50px;
}

.all-questions ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.all-questions ul li label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: #E7E7E4;
    padding: 24px;
}

.all-questions ul li label p {
    font-weight: 600;
    color: #000;
}

.all-questions ul li label span {
    font-size: 30px;
}

.all-questions label + input[type="radio"] {
    display: none;
}

.all-questions ul li .answer {
    margin: 20px;
    max-height: 0;
    overflow: hidden;
    display: none;
    /* padding: 20px; */
}

.all-questions label + input[type="radio"]:checked + .answer {
    max-height: 400px;
    display: block;
}



/* contact */
.contact {
    position: fixed;
    z-index: 2;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--head-bg);
    padding: 80px 0;
    overflow-y: scroll;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.closebtn {
    font-family: var(--font-family-4);
    font-size: 50px;
    align-self: flex-end;
    cursor: pointer;
}

.mail {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.mail a {
    text-decoration: none;
    background-color: var(--background2);
    color: var(--background);
    padding: 16px 24px;
    /* border-radius: var(--border-radius-4); */
    display: block;
    margin: 0 auto 0 auto;
    width: 270px;
}

.mail a:hover {
    opacity: .8;
}

.mail-int {
 position: relative;
 width: 90%;
 display: flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
}

.mail-int:hover .mail-det {
    display: block;
}

.mail-det {
    display: none;
    position: absolute;
    background-color: var(--background);
    width: 600px;
    padding: 40px;
    border-radius: var(--border-radius-4);
    bottom: 40px;
    right: 50%;
    transform: translate(50%);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.03),0 8px 10px -6px rgba(0,0,0,.03);;
}

.mail-det div {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mail-det h3 {
    margin-bottom: 20px;
    line-height: 1;
}



/* Footer */

footer {
    background-color: var(--background2);
    width: 100%;
    margin: 0 auto 0 auto;
    text-align: center;
    padding: 100px 0;
}

footer div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 5% 0 5%;
}

footer div a {
    text-decoration: none;
}

footer div a p, footer small {
    color: var(--background);
}



/* media queries */

@media screen and (max-width: 1200px) { 

    /* header .head-div {
        width: 800px;
    } */

    .img-div {
        height: 600px;
    }


    .trust .logs img {
        height: 40px;
    }

    .test-sec .single-test {
        padding: 60px;
    }

    .call-to-action h2 {
        font-size: 70px;  
    }
}



@media screen and (max-width: 1050px) {

    /* h1 {
        font-size: 80px;
    } */

    .testimonial .test-sec {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .do-single .single-box {
        margin: 0 20px 20px 20px;
    } */

    .in-single .single-box .single1 {
        height: 250px;
    }

    .in-single .single-box {
        margin: 0 20px 20px 20px;
    }

    .in-single .single-box .single2 img {
        width: 40px;
    }
}



@media screen and (max-width: 960px) {
    h3 {
        font-size: 30px;
    }

    h5 {
        font-size: 26px;
    }

    small {
        font-size: 14px;
        line-height: 22px;
    }

    header .head-div {
        width: 600px;
    }

    .section-1st {
        width: 600px;
    }

    /* .int {
        padding: 80px 0;
    } */

    .int .int-body {
    grid-template-columns: repeat(1, auto);
    /* grid-gap: 40px; */
    }

    .abt {
        padding: 80px 0;
    }

    .abt .abt-sec {
        width: 90%;
    }


    /* .wedo {
        margin: 80px auto;
        padding: 80px 0;
    } */


    .benefit {
        /* margin: 80px auto; */
        padding: 80px 0;
        margin-bottom: 80px;
    }

    .benefit .benefit-grid .benefit-single {
        min-width: 350px;
    }

    .trust .logs {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 80px;
    }


    /* .wedo .do-grid .do-single {
        min-width: 350px;
    } */

    .testimonial {
        margin: 120px auto;
    }

    .call-to-action {
        margin: 80px auto 0 auto;
    }
    
}



@media screen and (max-width: 900px) {

    button {
        font-size: 16px;
        min-width: 160px;
    }

    nav a img {
        width: 150px;
    }

    .img-div {
        /* width: 100%; */
        height: 500px;
    }

    .faqs {
        flex-direction: column;
        gap: 80px;
    }


}


@media screen and (max-width: 840px) {

    nav ul {
        display: none;
    }

    nav .nav-icon {
        display: block;
    }

}



@media screen and (max-width: 800px) {

   .test-sec .single-test .title {
    gap: 20px;
    }

    .call-to-action {
        padding: 100px 10%;
    }

    .insight .in-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .in-single .single-box .single1 {
        height: 200px;
    }


}


@media screen and (max-width: 700px) {


    h1 {
        font-size: 64px;
        /* font-size: 48px; */
    }

    .logo2 {
        display: block;
        width: 50px;
    }

    nav {
        padding: 24px 5% 24px 5%;
    }

    nav a img {
        display: none;
    }


    .logo-slide img {
        height: 40px;
        margin: 0 30px;
    }

    .logo-slide {
        animation: 10s slide infinite linear;
    }

    button {
        font-size: 14px;
        Min-width: 160px;
    }

    nav a img {
        width: 130px;
    }

    header .head-div {
        width: 500px;
    }

    .abt .abt-sec div {
        padding: unset;
    }

    .section-1st {
        width: 450px;
    }


    .img-div {
        height: 400px;
    }

    /* .do-single .single-box .single2 {
        padding: 20px;
    } */

    .benefit-single .single-box .single2 {
        padding: 20px;
    }


    .infos form {
        padding: 30px;
    }

    .mail-det {
        width: 100%;
    }

    .test-sec .single-test {
        padding: 60px 40px;
    }

    .test-sec .single-test img {
        width: 60px;
    }

    .test-q {
        font-size: 60px;
    }


    .in-single .single-box .single1 {
        gap: 20px;
    }

    .call-to-action h2 {
        font-size: 50px;  
    }

}



@media screen and (max-width: 600px) {

    header {
        padding: 60px 0 300px 0;
    }

    header .head-div {
        width: 100%
    }

    /* .do-single .single-box .single2 img {
        width: 32px;
    } */   

    .benefit .benefit-grid .benefit-single {
        padding: 32px;
    }

    .benefit-single .single-box .single2 img {
        width: 32px;
    }

    .insight .in-grid .in-single {
        height: 450px;
    }

    .in-single .single-box .single1 {
        height: 150px;
        gap: 20px;
    }

    .in-single .single-box .single2 img {
        width: 32px;
    }
}



@media screen and (max-width: 500px) {

    ::placeholder {
        font-size: 16px;
    }

    .all-questions ul li .answer p {
        font-size: 16px;
    }

    /* header .head-div h1 {
        font-size: 56px;
    } */

    h1 {
        font-size: 48px;
        line-height: 1.03;
    }

    h5 {
        font-size: 22px;
    }


    p, a{
        font-size: 16px;
    }

    ul li {
        font-size: 16px;
    }

    small {
        font-size: 14px;
    }

    .logo2 {
        width: 40px;
    }

    .logo-slide img {
        height: 35px;
    }

    button {
        font-size: 14px;
        Min-width: 100px;
    }

    header {
        padding-top: 40px;
    }

    .section-1st {
        width: 100%;
    }

    .do-arrow {
        display: none;
    }


    .img-div {
        height: 270px;
    }

    .abt .abt-sec {
        gap: 48px;
    }

    .abt .abt-sec div:nth-child(2) {
        align-self: unset;
    }
    
    .abt .abt-sec div {
        width: 100%;
    }

    .abt .abt-sec div h3 {
        font-size: 22px;
    }

    .trust .logs img {
        height: 26px;
    }

    .trust .logs {
        row-gap: 40px;
    }

    .benefit .benefit-grid {
        gap: 16px;
    }

    .benefit .benefit-grid .benefit-single {
        height: 500px;
    }

    .benefit-single .single-box .single1 {
        padding: 16px;
        height: 180px;
    }

    .benefit-single .single-box .single2 img {
        width: 24px;
    }

    /* .wedo .do-grid .do-single {
        height: 500px;
    } */

    /* .do-single .single-box .single1 {
        padding: 16px;
        height: 180px;
    }

    .do-single .single-box .single2 img {
        width: 24px;
    } */

    .test-sec .single-test {
        padding: 40px 24px;
    }  

    /* .test-sec .single-test:last-child {
        display: flex;
    } */

    .alert .alert-box {
        width: 100%;
        border-radius: unset;
    }

    .call-to-action h2 {
        font-size: 40px;  
    }

    footer small {
        font-size: 12px;
    }
}

@media screen and (max-width: 430px) {
    /* .wedo .do-grid .do-single {
        min-width: 305px;
    } */

    .benefit .benefit-grid .benefit-single {
        min-width: 300px;
    }

}

/* @media screen and (max-width: 359px) {

    h1 {
        font-size: 70px;
    }
} */

 