.Support__FrameBtn a
{
    display : flex;
    flex-direction : row;
    align-items : center;
    justify-content : space-between;
    gap : 1rem;
}

.support__ImgContainer
{
    justify-content: flex-end;
}

.support__ArrowUp, .support__ArrowDown, .support__SettingDark, .support__SettingYellow 
{
    position : absolute;
}

.support__ArrowDown
{
    top : -70px;
    left : 200px;
    animation : shakeArrowUp 20s linear infinite;
}

@keyframes shakeArrowUp 
{
    0%, 100% 
    {
        transform : rotate(0deg);
        transform-origin : 100% 100%;
    }    

    10% 
    {
        transform : rotate(2deg);
    }

    20%, 40%, 60% 
    {
        transform : rotate(-4deg);
    }

    30%, 50%, 70% 
    {
        transform : rotate(4deg);
    }

    80% 
    {
        transform : rotate(-2deg);
    }

    90% 
    {
        transform : rotate(2deg);
    }
}

.support__ArrowUp
{
    bottom : -80px;
    right : 30px;
    animation : shakearrowdown 20s linear infinite;
}

@keyframes shakearrowdown 
{
    0%, 100% 
    {
        transform : rotate(0deg);
        transform-origin : 0 0;
    }

    10% 
    {
        transform : rotate(10deg);
    }
    
    20%, 40%, 60% 
    {
        transform : rotate(-4deg);
    }

    30%, 50%, 70% 
    {
        transform : rotate(4deg);
    }

    80% 
    {
        transform : rotate(-2deg);
    }

    90% 
    {
        transform : rotate(2deg);
    }
}

.support__SettingDark
{
    bottom : -5px;
    left : 200px;
    animation : rotateSetting 10s linear infinite;
}

.support__SettingYellow
{
    bottom : -60px;
    left : 250px;
    animation : rotateSetting 20s linear infinite;
}

@keyframes rotateSetting 
{
    100% 
    {
        transform : rotate(1turn);
    }    
}

.Support__MsgIcon
{
    position : absolute;
    top : -70px;
    right : 100px;
}

.Support__SettingIcon
{
    animation : rotateSetting 10s linear infinite;
}

.Support__PhoneIcon
{
    position : absolute;
    top : -40px;
    right : 45px;
}


/*==================================== DESING FRAME 2 ==================================*/
.support__Frame2MainContainer
{
    background-color : #f4f9ff;
}

.support__FrameTwo
{
    display : flex;
    flex-direction : column;
    align-items : center;
    justify-content : center;
    gap : 2rem;
    padding : 5rem 1rem;
    margin : 5rem 0rem;
}

.support__FrameTwoTxtContainer
{
    display : flex;
    flex-direction : column;
    align-items : center;
    justify-content : center;
}

.support__FrameTwoTxtContainer h4 
{
    font-size : 2rem;
    font-weight : 700;
    color : #2d3c58;
    margin-bottom : 1rem;
}

.support__FrameTwoTxtContainer p 
{
    font-size : 1rem;
    font-weight : 400;
    color : #4c5671;
    text-align: center;
    width : 80%;
}

.support__FrameTwo__CardContainer
{
    display : flex;
    flex-direction : row;
    align-items : center;
    justify-content : center;
    margin: 4rem auto;
}

.support__FrameTwoCard
{
    margin : 1rem;
    padding: 2rem;
    display : flex;
    flex-direction : column;
    align-items : center;
    justify-content : center;
    border: 1px solid #d4dcff;
    border-radius : 0.5rem;
    transition : all 0.3s ease;
}

.support__FrameTwoCard:hover 
{
    background-color : #007BFF;
    color : #fff;
}

.support__FrameTwoCard:hover svg path
{
    fill : #fff;
}

.support__FrameTwoCard:hover .support__CardTxtSmContainer h4 
{
    color : #fff;
}

.support__FrameTwoCard:hover .support__CardTxtSmContainer p 
{
    color : #fff;
}

.support__CardImgSmContainer
{
    margin-bottom : 1rem;
}

.support__CardTxtSmContainer
{
    display : flex;
    flex-direction : column;
    align-items : center;
    justify-content : center;
}

.support__CardTxtSmContainer h4 
{
    font-size : 1.2rem;
    font-weight : bold;
    color : #2d3c58;
    margin : 1rem 0;
}

.support__CardTxtSmContainer p 
{
    text-align: center;
    color : #4c5671;
    font-size : 0.9rem;
}

/*========================= Design Frame Three =======================*/
.support__FrameThree
{
    min-width : 100%;
    margin : 5rem auto;
    padding : 3rem 1rem;
}

.support__FAQs
{
    width : 70%;
    margin : 0 auto;
    display : flex;
    flex-direction : column;
    align-items : center;
    justify-content : center;
}

.support__FAQHeader
{
    margin : 1rem auto 6rem;
}

.support__FAQHeader h3 
{
    font-size : 3rem;
    font-weight : 700;
    color : #2d3c58;
    text-transform: capitalize;
}

.support__FAQsContainer
{
    width : 100%;
    display : flex;
    flex-direction : column;
    align-items: flex-start;
    justify-content : center;
    gap : 1rem;
}

.support__FAQ1
{
    min-width : 100%;
    margin: 1rem auto;
    background-color: #f4f9ff;
    padding : 1rem 2rem;
    border-radius: 0.5rem;
    border-bottom : 2px solid #d4dcff;
}

.support__Que
{
    width : 100%;
    display : flex;
    flex-direction : row;
    align-items : center;
    justify-content : space-between;
    width: fixed;
    cursor: pointer;
}

.support__Que h4 
{
    font-size : 1.3rem;
    font-weight : 700;
    color : #2d3c58;
}

.support__Ans1 p 
{
    color : #2d3c58;
    margin-bottom: 0.5rem;
    display : none;
}

.active 
{
    display : block;
}


.support__Ans1.active p
{
    display : block;
}


/*============================== Design Frame Four ========================*/
.FrameFour
{
    margin : 3rem 0rem;
    padding : 5rem 4rem;
    background : #f4f9ff;
}

.support__SendMsgContainer
{
    display : flex;
    flex-direction : row;
    align-items : flex-start;
    justify-content : space-between;
}

.support__MsgImgContainer, 
.support__MsgFormContainer
{
    width : 50%;

}

.support__MsgImg
{
    display : flex;
    flex-direction : row;
    align-items : center;
    justify-content : center;
    margin-bottom : 1rem;
}

.support__MsgTxt
{
    display : flex;
    flex-direction : column;
    align-items : flex-start;
    justify-content : flex-start;
    gap : 1rem;
    position : relative;
}

.support__MsgTxt h1 
{
    margin-top : 3rem;
    font-size : 5rem;
    font-weight : 700;
    line-height : 6rem;
    display : flex;
    flex-direction : row;
    align-items: flex-start;
    justify-content: flex-start;
    color : #2d3c58;
}

.support__MsgTxt p 
{
    width : 60%;
    font-size : 1.1rem;
    line-height : 1.8rem;
    font-weight : 400;
    color : #4c5671;
}

.support__MsgTxt img 
{
    position : absolute;
    top : 5%;
    right : 10%;
}

.support__MsgFormContainer
{
    display : flex;
    flex-direction : column;
    align-items : flex-start;
    justify-content : flex-start;
    gap : 1rem;
}

.support__MsgFormContainer h4 
{
    font-size: 1.3rem;
    font-weight: 700;
    color : #2d3c58;
}

.support__MsgFormContainer form 
{
    display : flex;
    flex-direction : column;
    align-items : flex-start;
    justify-content : center;
    width : 80%;
    margin : 1.1rem 0;
    padding : 2rem;
    border: 1px solid #d4dcff;
    border-radius : 0.3rem;
}

.supportInputOne
{
    width : 100%;
    display : flex;
    flex-direction : row;
    align-items : center;
    justify-content : space-between;
    gap : 1rem;
    margin : 0.5rem 0 1rem;
}

.supportInputOne input 
{
    border: none;
    outline : none;
    border-bottom : 1px solid #d4dcff;
    margin : 0.5rem 0;
    padding-bottom : 0.5rem;
    width : 50%;
}

.supportInputOne select 
{
    border: none;
    outline : none;
    border-bottom : 1px solid #d4dcff;
    color : #4c5671;
    margin : 0.5rem 0;
    padding-bottom : 0.5rem;
    width : 50%;
}

#SupportTextArea
{
    width: 100%;
    height : 100px;
    border: none;
    outline : none;
    border-bottom : 1px solid #d4dcff;
    resize : none;
}

.supportInputTwo
{
    align-items : flex-start;
}

.supportInputOne__Icon input 
{
    padding : 0.5rem 1rem;
    border : none;
    outline : none;
    width : 15px;
    height : 15px;
}

.supportInputOne__Txt p 
{
    font-size : 0.9rem;
    color : #000;
}

.supportInputOne button 
{
    margin-top : 1rem;
    padding : 0.9rem 1rem;
    width : 100%;
    display : flex;
    flex-direction : row;
    align-items : center;
    justify-content : center;
    color : #fff;
    background-color : #007BFF;
    border-radius : 0.3rem;
    cursor : pointer;
    transition : all 0.3s ease;
}

.supportInputOne button:hover 
{
    color : #2d3c58;
    background-color : #ffc107;
}









/*======================== MEDIA QUERY FOR MEDIUM SIZE DEVICES =========================*/
@media screen and (max-width : 768px)
{
    .blog__FrameTwo 
    {
        flex-direction: column;
        gap : 3rem;
    }

    .blog__FrameTwoTxtContainer,
    .blog__FrameTwoImgContainer 
    {
        width : 100%;
    }

    .blog__FrameTwoTxtContainer h3 
    {
        line-height: 3.4rem;
    }

    .blog__FrameTwoImgContainer 
    {
        padding: 3rem 0rem;
    }

    .support__ArrowUp
    {
        bottom : -35px;
        right : 18px;
    }

    .support__ArrowDown 
    {
        top: 0px;
        left: 350px;
    }

    .support__SettingDark 
    {
        bottom: 10%;
        left: 350px;
    }

    .support__SettingYellow 
    {
        bottom: -7%;
        left: 390px;
    }

    .Support__MsgIcon 
    {
        top: -2rem;
        right: 7rem;
    }

    .Support__PhoneIcon
    {
        top: 0rem;
        right: 3rem;
    }

    /*======================= MEDIA QUERY FOR SUPPORT FRAME2 ========================*/
    .support__FrameTwo__CardContainer
    {
        display : grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .support__CardTxtSmContainer h4 
    {
        font-size: 1.4rem;
    }

    .support__CardTxtSmContainer p 
    {
        font-size : 1.1rem;
    }

    .support__SendMsgContainer 
    {
        flex-direction: column;
        gap : 3rem;
    }

    .support__MsgImgContainer,
    .support__MsgFormContainer
    {
        width : 100%;
    }

    .support__MsgTxt h1 
    {
        font-size : 4rem;
        line-height : 4.5rem;
    }

    .support__MsgTxt p 
    {
        width: 70%;
        font-size: 1.2rem;
        line-height: 1.6rem;
        padding : 1rem 0rem;
    }

    .support__MsgTxt img 
    {
        top: -1%;
        right: 28%;
    }

    .support__MsgFormContainer 
    {
        align-items : center;
        justify-content : center;
    }

    .support__FAQHeader h3 
    {
        text-align: center;
    }
}


@media screen and (max-width : 525px)
{
    .blog__FrameTwo 
    {
        margin: 1rem auto;
        padding : 2rem 1rem;
    }

    .blog__FrameTwoTxtContainer h3 {
        font-size: 2.2rem;
        line-height: 2.5rem;
    }

    .blog__FrameSmallTxt {
        font-size: 0.9rem;
    }

    .blog__FrameSmallTxt br
    {
        display : none;
    }

    .Support__FrameBtn a 
    {
        font-size: 0.9rem;
    }

    .support__ImgContainer 
    {
        justify-content: center;    
    }

    .support__ArrowDown 
    {
        left: 7%;
    }

    .support__SettingDark 
    {
        bottom: 12%;
        left: 10%;
    }

    .support__SettingYellow 
    {
        bottom: -5%;
        left: 18%;
    }

    .support__ArrowUp 
    {
        bottom: -4%;
        right: 15%;
    }

    .Support__MsgIcon 
    {
        top: -1rem;
        right: 11rem;
    }

    .Support__PhoneIcon 
    {
        top: 1rem;
        right: 8rem;
    }

    .support__FrameTwo__CardContainer 
    {
        margin : 2rem auto;
    }

    .support__FrameTwoCard 
    {
        padding : 1rem;
    }

    .support__CardTxtSmContainer h4 
    {
        font-size: 1.2rem;
    }

    .support__FAQHeader 
    {
        margin: 1rem auto 3rem;
    }

    .support__Que h4 
    {
        font-size: 1rem;
    }

    .support__Ans1 p {
        padding: 1rem 0rem;
        font-size: 0.9rem;
        line-height: 1.1rem;
    }


    .support__FAQs 
    {
        width: 90%;
    }

    .support__CardTxtSmContainer p 
    {
        font-size: 1rem;
    }

    .support__FAQHeader h3 
    {
        font-size: 2.2rem;
        line-height: 2.5rem;
    }

    .support__FrameThree 
    {
        margin: 2rem auto;
        padding: 1rem 1rem;
    }

    .FrameFour 
    {
        margin: 3rem auto;
        padding: 2rem 2rem;
    }

    .support__MsgImg img 
    {
        width : 200px;
        height : 150px;
    }

    .support__MsgTxt h1 
    {
        font-size: 2.5rem;
        line-height: 2.8rem;
    }

    .support__MsgTxt br 
    {
        display : block;
    }

    .support__MsgTxt img 
    {
        top: -10%;
        right: 33%;
    }

    .support__MsgTxt p 
    {
        width: 100%;
        font-size: 1rem;
        line-height: 1.2rem;
    }

    
    .support__MsgFormContainer form 
    {
        width : 90%;
        padding : 2rem 1rem;
    }
}


@media screen and (max-width : 425px)
{
    .blog__FrameSmTagTxt p 
    {
        font-size : 0.8rem;
    }

    .blog__FrameTwoTxtContainer h3 
    {
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .blog__FrameSmallTxt 
    {
        font-size: 0.8rem;
    }

    .about__BlogFirstImg 
    {
        width: 50%;
    }

    .support__ArrowUp {
        width: 40%;
        bottom: -1%;
        right: 19%;
    }

    .support__ArrowDown {
        width: 40%;
        left: 7%;
    }

    .support__SettingDark {
        width: 10%;
        bottom: 14%;
        left: 12%;
    }

    .support__SettingYellow {
        width: 15%;
        bottom: -3%;
        left: 20%;
    }

    .Support__MsgIcon {
        width: 10%;
        top: 0rem;
        right: 10rem;
    }

    .Support__PhoneIcon 
    {
        width: 10%;
        top: 1rem;
        right: 7.4rem;
    }

    .support__FrameTwo 
    {
        padding : 2rem 1rem;
    }

    .Support__SettingIcon {
        width: 10%;
    }

    .support__FrameTwo__CardContainer 
    {
        grid-template-columns: repeat(1, 1fr);
    }

    .support__FrameTwoTxtContainer h4 
    {
        font-size: 1.8rem;
    }

    .support__FAQHeader h3 
    {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }

    .support__MsgTxt h1 {
        font-size: 2rem;
        line-height: 2rem;
    }

    .support__MsgTxt img {
        width: 40%;
        top: -7%;
        right: 31%;
    }

    .support__MsgTxt p 
    {
        font-size: 0.9rem;
        line-height: 1.1rem;
    }

    .supportInputOne 
    {
        flex-direction : column;
    }

    .supportInputOne input 
    {
        width : 100%;
    }

    .supportInputOne select 
    {
        width : 100%;
    }

    #SupportTextArea 
    {
        height: 140px;
    }

    .supportInputOne button 
    {
        padding: 0.5rem 0.8rem;
        width: 60%;
    }
}

@media screen and (max-width : 325px)
{
    .support__ArrowUp {
        width: 30%;
        bottom: 7%;
        right: 24%;
    }

    .support__ArrowDown 
    {
        width: 30%;
        top: 11%;
        left: 10%;
    }

    .support__SettingDark 
    {
        width: 8%;
        bottom: 22%;
        left: 14%;
    }

    .support__SettingYellow {
        width: 13%;
        bottom: 7%;
        left: 20%;
    }

    .Support__MsgIcon {
        width: 9%;
        top: 1rem;
        right: 7rem;
    }

    .Support__PhoneIcon {
        width: 9%;
        top: 2rem;
        right: 5.4rem;
    }

    .support__MsgTxt h1 {
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .support__MsgTxt img 
    {
        width: 30%;
        top: 10%;
        right: 30%;
    }

    .FrameFour 
    {
        padding : 2rem 1rem;
    }

    .supportInputOne input,
    .supportInputOne select,
    .supportInputOne textarea
    {
        font-size: 0.8rem;
    }
}




/* media query for larger devices */
@media screen and (min-width : 1024px)
{
    /* Navigation Bar */
    .navBar__Container {
        max-width: 100%;
        margin: 0;
        padding: 0rem;
    }

    .navBar__Links ul li a {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

     .navBar__Button button {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    /* Blog Frame Two (Support Banner) */
    .blog__FrameTwo {
        max-width: 1200px;
        margin: 0 auto;
        padding: 9rem 2rem 3rem;
    }

    .blog__FrameTwoTxtContainer h3 
    {
        font-size: 3rem;
        line-height: 3.4rem;
    }

    .support__ArrowDown 
    {
        left : 100px;
    }

    .support__ArrowUp 
    {
        right: 10px;
    }

    .support__SettingDark {
        bottom: -25px;
        left: 100px;
    }

    .support__SettingYellow {
        bottom: -90px;
        left: 150px;
    }

    /* media query for frame 2 of support */
    .support__FrameTwo 
    {
        max-width : 1200px;
        padding : 4rem 2rem;
        margin : 4rem auto;
    }

    .support__CardTxtSmContainer h4 {
        font-size: 1.3rem;
    }
    
    .support__CardTxtSmContainer p {
        font-size: 1rem;
    }

    .support__CardTxtSmContainer h4 {
        text-align : center;
    }

    /* media query for support frame 4 */
    .FrameFour 
    {
        width: 100%;
        padding : 4rem 2rem;
    }

    .support__SendMsgContainer
    {
        max-width : 1200px;
        margin :2rem auto;
    }

    .support__MsgImgContainer,
    .support__MsgFormContainer {
        width: 100%;
    }

    .support__SendMsgContainer 
    {
        gap : 3rem;
    }

    .support__MsgTxt h1 {
        font-size: 3.5rem;
        line-height: 4rem;
        margin-top: 2rem;
    } 

    .support__MsgTxt br 
    {
        display : none;
    }

    .support__MsgTxt p {
        width: 89%;
        font-size: 1.1rem;
    }

    .support__MsgFormContainer form {
        width: 90%;
        margin: 1rem auto;
    }

    .support__MsgTxt img 
    {
        top: 13%;
        right: 0%;
    }

    .support__MsgFormContainer h4 {
        width : 90%;
        margin : 1rem auto;
    }
}

@media screen and (min-width : 1344px)
{
    .blog__FrameTwo
    {
        max-width : 1300px;
    }

    .support__ArrowDown
    {
        top : -70px;
        left : 200px;
        animation : shakeArrowUp 20s linear     infinite;
    }

    .support__ArrowUp
    {
        bottom : -80px;
        right : 30px;
        animation : shakearrowdown 20s linear infinite;
    }

    .support__SettingDark
    {
        bottom : -5px;
        left : 200px;
        animation : rotateSetting 10s linear infinite;
    }

    .support__SettingYellow
    {
        bottom : -60px;
        left : 250px;
        animation : rotateSetting 20s linear infinite;
    }

    .support__MsgTxt img 
    {
        position : absolute;
        top : -13%;
        right : 28%;
    }
}

@media screen and (min-width: 1440px) {
    .sale__infoContainer,
    .navBar__Container,
    .blog__FrameTwo {
        max-width: 1400px;
    }

    .support__ArrowDown {
        left: 300px;
    }

    .support__ArrowUp {
        bottom: -60px;
        right: 10px;
    }

    .support__SettingYellow
    {
        left: 340px;
    }

    .support__SettingDark 
    {
        left: 300px;
    }

     .support__FrameTwo {
        max-width: 1400px;
        padding: 7rem 2rem;
    }
    
    .support__FrameTwoTxtContainer h4 {
        font-size: 3.2rem;
    }
    
    .support__FrameTwoTxtContainer p {
        font-size: 1.3rem;
        width: 60%;
    }

    .support__FrameTwo__CardContainer 
    {
        max-width: 1300px;
        gap: 2.5rem;
    }

    .support__FrameTwoCard {
        margin: 1rem auto;  
        padding: 3.5rem 2rem;
    }

    .support__CardImgSmContainer svg {
        width: 80px;
        height: 80px;
    }

    .support__CardTxtSmContainer {
        align-items: center;
    }
    
    .support__CardTxtSmContainer h4 {
        font-size: 1.5rem;
    }
    
    .support__CardTxtSmContainer p {
        text-align: center;
        font-size: 1.1rem;
    }
}


@media screen and (min-width: 1440px) {
   
}


@media screen and (min-width : 3840px)
{
    .support__FrameTwo 
    {
        max-width : 1600px;
        margin : 5rem auto;
    }
}
