.Cokkie_Popup{
    width: 350px;
    
    background-color: white;

    position: fixed;
    bottom: 50px;
    left: 50px;

    z-index: 100;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;

    display: flex;
    flex-direction: column;
}
.cokkie_Para{
    margin: 20px 0px;
}
    .cokkie_Para span{
        color: #25346d;
        font-size: 25px;
    }
    .cokkie_Para p{
        font-size: 16px;
        margin: 0;
    }


.cokkie_CTA{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cokkie_CTA button{
    width: 100%;
    border: 1px solid #25346d;
    margin: 0;
    padding: 0;
    font-size: 16px;
    margin-right: 20px;
    padding: 7px 0px;
    border-radius: 10px;
}
.Accept_BTN{
    background-color: hsl(228, 49%, 29%);
    color: white;
}
.Accept_BTN:hover{
    background-color: hsl(228, 49%, 39%);
}
.Decline_BTN{
    background-color: transparent;
    color: #25346d;
}
.Decline_BTN:hover{
    background-color:#e4ebff;
}






















/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background: #888; 
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
html {
    scroll-behavior: smooth;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

@font-face {
    font-family: Poppins;
    src: url(Poppins-Regular.ttf);
}

body{
    font-family: Poppins;
    margin:0;
    background-color: #fcfcfc;
} 
b{
    font-weight: 600;
}





.Navigation_Bar {
	position: fixed;
	top: 0;
	width: 100%;

    padding: 20px 200px 20px 150px;

	background-color: transparent;
    display: flex;
    justify-content: space-between;

    transition: .3s ease-in-out;

    z-index: 10;
}
.Navigation_Bar_Scroll {
	background-color: #fdeb43;
	transition: .3s ease-in-out;
}
    .Navigation_Bar_Content_Left{
        display: flex;
    }

        /* Navbar logo */
        .Navigation_Bar_Logo{
            margin-top: 5px;
        }
            .Navigation_Bar_Logo span{
                font-size: 20px;
            }
            .Navigation_Bar_Logo a{
                color: black;
                text-decoration: none;
            }

        /* Links */
		.links{
            display: flex;
            justify-content: space-between;
			align-items: center;
            margin: 5px 0 0 30px;
		}
		.links a{
			font-size: 15px;
			text-decoration: none;
            cursor: pointer;
			color: #25346d;
            padding-bottom: 24px;
		}
		.ArrowIMg{
			width: 10px;
			height: 10px;
			visibility:hidden;

            transition: .2s ease-in-out;
		}

    /* Service Mega Menu */
    .Services{
        margin: 3px 0 0 20px;
    }
    .Services::after{
        content: '';
        border-bottom: 3px solid #000;
        width: 100%;
        display: block;
        position: relative;
        top:21px;
        visibility:hidden;
    }

    .Services:hover .ArrowIMg{
        transition: .1s ease-in-out;
        visibility:visible;
    }
    .Services:hover::after{
        visibility:visible;
    }
    .Services_Mega_Menu{
        width: 100%;
        padding: 35px 130px 0px 150px;

        position: absolute;
        top: 100%;
        left: 0;

        background-color: #f3f3f4;

        color: black;

        display: grid;
        grid-template-columns: auto auto auto auto;

        opacity: 0;
        visibility: hidden;
    }    
    .Services:hover .Services_Mega_Menu {
        transition: .4s ease-in-out;
        opacity: 1;
        visibility: visible;
    }
        .Service_Box{
            display: flex;
            flex-direction: column;
            padding: 0px 0px 30px 0px;
            text-align: left;
        }
        .Service_Box h6{
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 5px;
        }
        .Service_Box span{
            margin-left: -20px;
        }

        .Service_Box a{
            text-decoration: none;
            font-size: 14px;
            padding-bottom: 5px;
            margin-left: 20px;
            color: hsl(0, 0%, 40%);
        }
        .Service_Box a:hover{
            border: 0;
            padding-bottom: 0px;
            color: #53BBD9;
        }

        .Service_Box img{
            width: 270px;
            height: 130px;
            margin-left: -20px;
        }


    .How_It_Works{
        margin: 0 30px 0 20px;
    }
    .How_It_Works a:hover{
        border-bottom: 3px solid #000;
    }

    /* Resources Mega menu */
    .Resources::after{
        content: '';
        border-bottom: 3px solid #000;
        width: 100%;
        display: block;
        position: relative;
        top:21px;
        visibility:hidden;
    }

    .Resources:hover .ArrowIMg{
        transition: .1s ease-in-out;
        visibility:visible;
    }
    .Resources:hover::after{
        visibility:visible;
    }
    .Resources_Mega_Menu{
        width: 100%;
        height: 335px;
        padding: 0px 160px 0px 150px;

        position: absolute;
        top: 100%;
        left: 0;

        background-color: #f3f3f4;

        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 20px;

        opacity: 0;
        visibility: hidden;
    }    
    .Resources_Mega_Menu a{
        margin: 0;
        padding: 0;
    }
    .Resources:hover .Resources_Mega_Menu {
        transition: .4s ease-in-out;
        opacity: 1;
        visibility: visible;
    }
        .Resources_Mega_Menu a:hover{
            border: 0;
            padding: 0;
        }
        .Resources_Box{
            width: 100%;
            height: 260px;
            background-color: white;
    
            margin: 35px 0px;
            transition: .3s ease-in-out;
            display: flex;

            padding: 20px;
            border-radius: 10px;
        }
        .Resources_Box:hover{
            transition: .3s ease-in-out;
            transform: scale(1.05);
        }
        .Resources_Box_Content{
            width: 150px;
            margin: 70px 0px 0px 30px;
            height: 100%;
            font-size: 20px;
        }
        .Resources_Box_Content span{
            color: black;
        }
        .Resources_Box_Content b{
            color: black;
        }
        .Resources_Box_Content p:hover{
            font-weight: 600;
        }
    


    .Navigation_Bar_Content_Right{
        background-color: transparent;
    }

        .Login_Button{
            border-radius: 5px;
            border: 1px solid #707070;
            background-color: transparent;
            padding: 5px 0px;
            text-align: center;
        }
        .Login_Button:hover {
            background-color: #e4ebff;
        }
            .Login_Button a{
                color: black;
                font-size: 14px;
                text-decoration: none;
            }
        .consultation_Button{
			border: 0;
			background-color:hsl(228, 49%, 39%);
			padding: 7px 20px;
			border-radius: 5px;
			font-size: 14px;
            margin-left: 10px;
			color: white;
            z-index: 1;
		}
            .consultation_Button:hover{
                background-color:hsl(228, 49%, 49%);
            }
            


        /* The Modal (background) */
        .modal {
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            

            display: none; /* Hidden by default */

            position: fixed; /* Stay in place */
            left: 0;
            top: 0;

            z-index: 10; /* Sit on top */
            padding: 50px 30px 0px 30px; /* Location of the box */

            overflow: auto; /* Enable scroll if needed */

            background-color: rgb(0,0,0); /* Fallback color */
            background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
        }
        .modal_Show{
            display: block;
        }

        /* Modal Content */
        .modal_content {
            width: 700px;
            height: 100%;
            margin: 0 auto;

            border-radius: 10px;

            position: relative;
            overflow: hidden;
        }
        
        /* The Close Button */
        .close {
            color: #25346d;

            position: absolute;
            right: 0;
            margin: 10px 30px 0px 0px;

            font-size: 40px;
            font-weight: 500;

            cursor: pointer;
            z-index: 15;
        }

        .Back_Arrow{
            color: #25346d;

            position: absolute;
            left: 0;
            margin: -5px 0px 0px 30px;

            font-size: 40px;
            font-weight: 500;

            cursor: pointer;
        }
        .modal_Button{
            width: 100%;
            text-align: center;

            display: block;
			background-color:hsl(228, 49%, 39%);
			padding: 7px 20px;

			border-radius: 5px;
			font-size: 20px;
			color: white;

            cursor: pointer;
        }





            /* First Screen Styling */
            .Screen_First{

                position: absolute;
                top: 0;
                left: 0;

                width: 100%;
                height: 650px;

                padding: 50px 125px 0px 125px;

                background-color: #fcfcfc;

                z-index: 11;
            }
                    .Screen_First h1{
                        font-size: 36px;
                        color: #25346d;
                        text-align: center;
                    }
                    .Screen_First p {
                        text-align: center;
                        font-size: 18px;
                    }

                    .Date_Selection{
                        padding: 40px 0px;
                    }
                    .Screen_First label{
                        font-size: 18px;
                        color: #25346d;
                        margin-bottom: 10px;

                        text-transform: uppercase;
                    }
                    .booking_dates{
                        width: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                    }
                        .booking_dates img{
                            width: 35px;
                            height: 35px;
                            cursor: pointer;
                        }
                            .dates_Wrapper{
                                overflow-y: hidden;
                                overflow-x: scroll;
                                width: 360px;
                            }
                            .dates_Wrapper::-webkit-scrollbar {
                                display: none;
                            }
                                .dates {
                                    width: max-content;
                                    display: flex;
                                }
                                    .date_box{
                                        text-align: center;
                                        margin: 0px 5px 0px 5px;
                                        padding: 0px 10px 0px 5px;
                                        border-radius: 5px;
                                    }
                                    .date_box:hover{
                                        border: 1px solid #25346d;
                                        font-weight: 600;
                                        background-color: #e4ebff;
                                    }
                                    .date_box_Active{
                                        border: 1px solid #25346d;
                                        font-weight: 600;
                                        background-color: #e4ebff;
                                    }
                                    .date_box input[type="radio"]{
                                        opacity: 0;
                                    }
                                    .date_box label{
                                        font-size: 18px;
                                        margin: 5px 0px 5px -15px;
                                        cursor: pointer;
                                        text-transform: none;
                                    }


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

                        .selected_Style{
                            font-size: 10px;
                            font-weight: 600;
                            color: #25346d;
                            padding: 3px 10px;
                            border-radius: 5px;

                            background-color: #e4ebff;
                        }
                        .Unavailable_Style{
                            font-size: 10px;
                            font-weight: 600;
                            color: white;
                            padding: 3px 10px;
                            border-radius: 5px;

                            background-color: hsl(0, 0%, 80%)
                        }
                        
                        .booking_Time{
                            display: grid;
                            grid-template-columns: auto auto auto;
                            grid-gap: 20px ;

                            margin: 20px 0px 80px 0px;
                        }
                            .time_box{
                                border: 1px solid #25346d;
                                border-radius: 5px;
                                text-align: center;
                            }
                            .time_box:hover{
                                background-color: #e4ebff;
                                font-weight: 600;
                            }
                            .time_box_active{
                                background-color: #e4ebff;
                                font-weight: 600;
                            }
                            .time_box input[type="radio"]{
                                opacity: 0;
                            }
                            .time_box label{
                                font-size: 18px;
                                margin: 5px 0px 5px -15px;
                                cursor: pointer;
                            }


                            
            /* Second Screen Styling */
            .Screen_Second{

                position: absolute;
                top: 0;
                left: 0;

                width: 100%;
                height: 650px;

                padding: 20px 125px;

                background-color: #fcfcfc;

                z-index: 12;
                
                transform: translateX(100%);
                transition: .5s all ease-in-out;
            }
            .Screen_Second_Show{
                transform: translateX(0%);
                transition: .5s all ease-in-out;
            }

                .Screen_Second span img{
                    width: 30px;
                }
                .Screen_Second h1{
                    color: #25346d;
                    text-align: center;
                    font-size: 40px;
                    margin-bottom: 32px;
                }
                .form_field{
                    display: flex;
                    flex-direction: column;
                    margin-top: 20px;
                }
                    .form_field label{
                        color: #25346d;
                        font-size: 16px;
                        margin-bottom: 5px;
                    }

                    .BookingForm_Field{
                        width: 100%; 
                        display: flex;
                        justify-content: space-between;
                    }

                    .form_field input{
                        padding: 7px 15px;
                        font-size: 16px;
                        border-radius: 5px;
                        border: 1px solid rgba(0, 0, 0, 0.5);
                    }
                    .form_field input:focus{
                        outline: none;
                        border: 1px solid #25346d;
                    }
                    .form_field input:active{
                        outline: none;
                        border: 1px solid #25346d;
                    }

                    .SelectState{
                        width: 200px;
                    }
                    .form_field select{
                        padding: 10px;
                        font-size: 15px;
                        border-radius: 5px;
                        border: 1px solid rgba(0, 0, 0, 0.5);
                    }
                        .form_field select:active{
                            outline: none;
                            border: 1px solid #25346d;
                        }
                        .form_field select:focus{
                            outline: none;
                            border: 1px solid #25346d;
                        }
                        select:required:invalid {
                            color: gray;
                        }
                        option[value=""][disabled] {
                            display: none;
                        }
                        option {
                            color: black;
                        }
                .Screen_Second hr{
                    margin: 35px 0px 25px 0px;
                    background-color:rgba(0, 0, 0, 0.5);
                }
                .Second_Screen_Button{
                    margin-top: 15px;
                }
                    .Second_Screen_Button p {
                        display: inline-block;
                        opacity: 0.6;
                        margin-bottom: 5px;
                        font-size: 15px;
                    }




            /* Third Screen Styling */
            .Screen_Third{

                position: absolute;
                top: 0;
                left: 0;

                width: 100%;
                height: 650px;

                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

                background-color: #fcfcfc;

                z-index: 13;
                transform: translateX(100%);
                transition: .5s all ease-in-out;

                text-align: center;
            }
            .Screen_Third_Show{
                transform: translateX(0%);
                transition: .5s all ease-in-out;
            }
            .Screen_Third h3{
                color: #25346d;
            }
            .Mobile_Line{
                display: none;
                text-align: center;
            }

            .Screen_Third img{
                width: 50%;
                margin: 30px auto;
            }
            .Screen_Third p{
                line-height: 1;
            }
            .Screen_Third button{
                margin-top: 15px;
            }



    .Hamburger{
        position: absolute;
        right:105px;
    }
        .checkbox {
            position: absolute;
            right: 0px;

            margin: 3px 50px 0px 0px;

            height: 30px;
            width: 30px;
            
            z-index: 50;
            opacity: 0;

            cursor: pointer;
        }
        .hamburger_lines {
            position: absolute;
            top:1px;
            right: 0;

            margin: 10px 55px 0px 0px;
    
            height: 16px;
            width: 20px;

            z-index: 30;

            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .checkbox_Adjustment {
            margin: 3px -70px 0px 0px;
        }
        .hamburger_lines_Adjusment {
            margin: 10px -70px 0px 0px;
        }


        .hamburger_lines .line { 
            height: 2px;
            border-radius: 10px;
            background: hsl(228, 49%, 29%);;
        }
        
            .hamburger_lines .line1 {
                transform-origin: 0% 0%;
                transition: transform 0.4s ease-in-out;
            }

            .hamburger_lines .line2 {
                transition: transform 0.2s ease-in-out;
            }

            .hamburger_lines .line3 {
                transform-origin: 0% 100%;
                transition: transform 0.4s ease-in-out;
            }


            .Hamburger input:checked~.hamburger_lines .line{
                background: #24336D;;
            }


            .Hamburger input:checked~.hamburger_lines .line1 {
                transform: rotate(45deg);
            }

            .Hamburger input:checked~.hamburger_lines .line2 {
                opacity: 0;
                visibility: hidden;
            }

            .Hamburger input:checked~.hamburger_lines .line3 {
                transform: rotate(-45deg);
            }


        .hamburger_Items{
            position: absolute;
            top: 0;
            right:0;

            width: 350px;
            height: 100vh;

            overflow: auto;

            z-index: 20;

            padding: 60px 0px 0px 0px;

            background: linear-gradient(to bottom, #f3f3f4 10%, #e4eafe 100%);
            transform: translateX(100%);
            transition: 0.5s ease-in-out;

            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .hamburger_Items::-webkit-scrollbar {
            display: none;
          }
        .hamburger_Items_Show {
            transform: translateX(0);
        }
            .hamburger_Items a{
                width:100%;
                font-size: 16px;
                text-decoration: none;
                color:#24336D;
                opacity: 1;
                margin: 0px 0px 18px 30px;
                display: block;
            }
            .hamburger_Items a:hover{
                font-weight: 600;
            }
            .Mobile_Once{
                display: none;
            }

        .hamburger_links{
            display: flex;
            flex-direction: column;
        }


        .Hamburger_Others{
            display: flex;
            flex-direction: column;
        }
        .Social_mediaIcons{
            width: 160px;
            margin: 0px 0px 0px 30px;
            display: flex;
            justify-content: space-between;
        }
        .Social_mediaIcons a{
            margin: 0;
        }


        .banner{
            background-color: white;
            margin: 20px 30px;
            padding: 15px 25px;
            border-radius: 18px;
        }
        .banner p{
            width: 190px;
            font-weight: 600;
            margin: 10px 0px 20px 0px; 

            font-size: 16px;
        }
        .ClaimNow_Btn{
            width: 130px;
            background-color: #24336D;
            padding: 7px 25px;
            border-radius: 8px;
            display: block;
        }
            .ClaimNow_Btn a{
                margin: 0;
                font-size: 16px;
                color: white;
            }
            .banner img{
                float: right;
            }
        .CopyRight_text{
            color:#24336D;
            text-align: center;
            font-size: 16px;
        }
        

         /*-------------------------------------------------------------
        
        -----------Hamburger Service / Knowledge styling---------------
        
        --------------------------------------------------------------*/
        .Hamburger_accordion hr{
            margin: 0;
            opacity: 0.5;
            color: #24336D;
            height: .1px;
        }
        .Hamburger_accordion h3 {
            position: relative;
            padding: 0px 0px 8px 30px;
            font-size: 16px;
            cursor: pointer;    
            color: #24336D; 
        }
        .Hamburger_accordion h3:hover {
            font-weight: 600;
        }
        .Hamburger_accordion h6 {
            position: relative;        
            font-size: 16px;
            cursor: pointer;    
            color: #24336D; 
        }
        .Hamburger_accordion h3:hover {
            font-weight: 600;
        }

        .downArrow_IMG{
            float: right;
            position: relative;
            right: 40px;
            top: 7px;
            transition: all 0.3s ease-in-out;
        }
        .downArrow_IMG_Rotate{
            transform: rotate(180deg);
        }

        .active{
            cursor: pointer;
        }
        .serice_Answer{
            padding: 25px 55px 15px 30px;
            margin-bottom: 15px;
            border-bottom: .1px solid rgb(36, 51, 109,0.5); 
            background:  #fcfcfc;
        }
        .serice_Answer hr{
            margin: 15px 0px;
        }

        .answer_Inner{
            padding-bottom: 10px;
        }
        .answer_Inner a{
            margin: 0px 0px 15px 0px;
        }
        

        .knowledge_Answer{
            background:  transparent;
            padding: 20px 0px 10px 0px;
            border-bottom: .1px solid rgb(36, 51, 109,0.5); 
        }
        .KnowledgeBox{
            width: 84%;
            padding: 10px 20px;
            border-radius: 10px;
            background-color: white;

            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }

        .KnowledgeBox_IMG {
            width: 40%;
            text-align: center;
        }
            .KnowledgeBox_IMG img{
                width: 70px;
            }
        .KnowledgeBox p{
            width: 50%;
            padding: 10px 0px 0px 0px;

            color: black;
            font-size: 16px;
            font-weight: 600;
        }

           
        /*-------------------------------------------------------------
        
        -----------Hamburger Service / Knowledge styling---------------
        
        --------------------------------------------------------------*/
        .cover_Body{
            position: absolute;
            top:0;
            left:0;

            width: 100%;
            height: 100vh;

            background-color: transparent;

            opacity: 0;
            visibility: hidden;
        }
            .cover_Body_show{
                transition: .3s ease-in-out;

                background-color: transparent;

                opacity: 1;
                visibility: visible;
            }

        .stop-scrolling {
            height: 100%;
            overflow: hidden;
        }
        
.Mobile_Buttons{
    position: fixed;
    bottom: 0;
    padding: 16px;

    width: 100%;
    background-color: white;

    display: none;
    justify-content: space-evenly;

    z-index: 10;
}
.Mobile_Buttons button{
    border: 0;
	background-color:hsl(228, 49%, 39%);
	padding: 7px 20px;
	border-radius: 5px;
	font-size: 13px;
	color: white;
    z-index: 1;
}
.Login_Button{
    width: 125px;
}

/*--------------------------------------------------------------------

--------------------------media Querie--------------------------------

----------------------------------------------------------------------*/
@media screen and (max-width:1300px){
.Resources_Mega_Menu{
    padding: 0px 30px 0px 30px;
}
}
@media screen and (max-width:1173px){
    .Hamburger{
        position: absolute;
        right:10px;
    }
    .Navigation_Bar{
        padding: 20px 75px 20px 25px;
    }
    .checkbox {
        margin: 3px 15px 0px 0px;
    }
    .hamburger_lines {
        margin: 10px 25px 0px 0px;
    }
    .Services_Mega_Menu{
        width: 100%;
        padding: 20px 30px 0px 30px;
    }    

    /* Resources Mega menu */
    .Resources_Mega_Menu{
        padding: 0px 30px 0px 20px;
    }    


}
@media screen and (max-width:920px){
    .links{
        display: none;
    }
    .Mobile_Once{
        display: flex;
        flex-direction: column;
    }
    .Social_mediaIcons{
        margin: 0px auto 20px auto;
    }
    .banner{
        display: none;
    }
}


/* Mobile Responsive Modal */
@media screen and (max-width:770px){
    .modal_content {
        width: 100%;
    }
    .Screen_First{
        width: 100%;
    }
    .Screen_Second{
        width: 100%;
    }
    .Screen_Third{
        width: 100%;
    }
}
@media screen and (max-width:750px){
    .Screen_First{
        padding: 40px 80px;
    }
    .Screen_Second{
        padding: 20px 80px;
    }
}
@media screen and (max-width:662px){
    .Screen_First{
        padding:40px;
    }
    .Screen_Second{
        padding:20px;
    }
}
@media screen and (max-width:581px){
    .Screen_First{
        padding:70px 20px 0px 20px;
    }
}
@media screen and (max-width:550px){
    .modal_content {
        height: 550px;
    }
    .close {
        margin: 5px 15px 0px 0px;
    }
    .Back_Arrow{
        position: absolute;
        top: 12px;
        left: 20px;
        margin: 0;
    }

    .Screen_First{
        height: 550px;
    }

    .Date_Selection{
        padding: 10px 0px 20px 0px;
    }
    .booking_Time{
        margin: 20px 0px 40px 0px;
    }

    .Screen_First h1{
        font-size: 25px;
    }
        .Screen_First p{
            width: 200px;
            margin: 0 auto;
            font-size: 14px;
        }
    .Screen_First label{
        font-size: 14px;
    }
        .SlectTime_Header{
            flex-direction: column;
            justify-content: start;
            align-items: flex-start;
        }
        .For_information{
            margin-top: 10px
        }
        .selected_Style{
            font-size: 8px;
        }
        .Unavailable_Style{
            font-size: 8px;
        }



    .Screen_Second{
        height: 550px;
    }
    .Screen_Second h1{
        font-size: 25px;
        margin: 45px 0px 10px 0px;
    }
        .form_field label{
            font-size: 14px;
        }
        .form_field{
            margin-top: 10px;
        }
        .form_field input{
            font-size: 12px;
        }
        .SelectState{
            width: 80px;
        }
        .form_field select{
            padding: 8px 0px;
            font-size: 13px;
        }
        .Screen_Second hr{
            margin: 30px 0px 20px 0px;
            background-color:rgba(0, 0, 0, 0.5);
        }
            .Second_Screen_Button img{
                width: 12px;
            }
        .Second_Screen_Button p {
            font-size: 10px;
        }




    .Screen_Third{
        height: 550px;
        padding: 40px 20px 20px 20px;
    }
        .web_Line{
            display: none;
        }
        .Mobile_Line{
            display: block;
            font-size: 25px;
        }

        .Screen_Third img{
            width: 80%;
        }
        .Screen_Third p{
            font-size: 12px;
            line-height: 0.3;
        }
}



/* for Mobile */
@media screen and (max-width:530px){

    .Hamburger{
        position: absolute;
        right:10px;
    }

    .Navigation_Bar{
        padding: 20px 0px 20px 30px;
    }
    .checkbox {
        margin: 3px 12px 0px 0px;
    }
    .hamburger_lines {
        margin: 10px 20px 0px 0px;
    }

    /* button Out */
    .Navigation_Bar_Content_Right{
        display: none;
    }
    .Mobile_Buttons{
        display: flex;
    }
    .hamburger_Items{
        padding: 50px 0px 70px 0px;
    }
}

@media screen and (max-width:400px){
    .Screen_Third img{
        width: 100%;
    }
}
/*-----------------------------------------------------------------------------------------

----------------------------------------------Footer---------------------------------------

-------------------------------------------------------------------------------------------*/
.footer{
    width: 100%;
    z-index: 0;
    padding: 50px 10px 0px 10px;
    background: linear-gradient(to bottom, #171B1D 0%, #031A40 100%);
    color: white;
}
    .footer_Wrapper{
        width: 100%;
        border-top:1px solid hsl(0, 0%, 50%);

        padding: 20px 140px;
    }

        .footer_firstSection{
            padding: 20px 0px;
            border-bottom:1px solid hsl(0, 0%, 50%);

            display: flex;
            justify-content: space-between;
        }
                .firstSection_left{
                    display: flex;
                }
                    .FirstSection_Content{
                        width: 300px;
                    }
                            .FirstSection_Content p{
                                font-size: 16px;
                                padding: 20px 0px 0px 0px;
                            }
                    .linksToOtherPages{
                        display: flex;
                        flex-direction: column;
                        margin: 0px 0px 0px 50px;
                    }
                        .footerHeading{
                            font-size: 20px;
                            font-weight: 600;
                            margin-bottom: 20px;
                        }
                        .footer_links{
                            display: flex;
                            flex-direction: column;
                        }
                            .footer_links a{
                                color: white;
                                text-decoration: none;
                                font-size: 16px;
                                opacity: 0.5;
                            }
                            .footer_links a:hover{
                                opacity: 1;
                            }

                .firstSection_right{
                    display: grid;
                    grid-template-columns: auto auto auto;
                    column-gap: 50px;
                }
                    .flexDisplay{
                        display: flex;
                        flex-direction: column;
                    }
                        .flexDisplay a{
                            color: white;
                            font-size: 16px;
                            opacity: 0.5;
                            text-decoration: none;
                        }
                        .flexDisplay a:hover{
                            opacity: 1;
                        }





        .footer_SecondSection{
            padding: 25px 0px 10px 0px;
            border-bottom:1px solid hsl(0, 0%, 50%);

            display: flex;
            justify-content: space-between;
        }

            .secondSection_right{
                display: flex;
                align-items: center;
            }

                    .secondSection_right form{
                        display: flex;
                    }
                    .secondSection_right form input{
                        width: 250px;
                        cursor: pointer;
                        background-color: transparent;
                        border: 1px solid white;
                        border-top-left-radius: 8px;
                        border-bottom-left-radius: 8px;
                        padding: 7px 0px 7px 20px;
                        font-size: 12px;
                        color: white;

                        position: relative;
                        left:10px
                    }
                        .secondSection_right form input:focus {
                            outline: none;
                        }
                        .secondSection_right form input:active {
                            outline: none;
                        }
                    .secondSection_right form button{
                        border: 0;
                        border-radius: 8px;
                        padding: 8px 30px 8px 30px;
                        font-size: 16px;
                    }
                    .secondSection_right form button:hover{
                        background-color: #53BBD9;
                        color: white;
                    }

            .socialIcons{
                width: 100px;
                display: flex;
                justify-content: space-evenly;

                margin-left: 20px;
            }
                    .socialIcons a{
                        padding: 5px 10px;
                    }
                    .socialIcons a:hover{
                        border-radius: 50%;
                        background-color: rgba(225, 225, 225, 0.2);
                    }





        .footer_ThirdSection{
            width: 100%;
            padding: 20px 0px;

            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
                .footer_ThirdSection a{
                    color: white;
                    letter-spacing: 1px;
                    opacity: 0.5;
                    text-decoration: none;
                }
                .footer_ThirdSection a:hover{
                    opacity: 1;
                }




    .mobile_firstSection_left{
        display: none;
    }
        .mobile_firstSection_left_Heading{
            font-size: 20px;
            margin: 0px 0px 10px 0px;
        }
        .mobile_firstSection_left a{
            color: white;
            font-size: 16px;
            text-decoration: none;
        }
        




    .mobile_firstAddress{
        display: none;
    }
        .mobile_firstAddress a{
            color: white;
            font-size: 16px;
            text-decoration: none;
            margin-top: 5px;
        }
        




    .mobileSection{
        display: none;

        padding:20px 0px;
        border-bottom:1px solid hsl(0, 0%, 50%);
    }
        .mobileSection_Pages{
            width: 100%;
            display: flex;
            align-items: center;
        }
            .mobileSection_links{
                width: 100%;
                margin: 0px 0px 0px 20px;
                display: flex;
                justify-content: space-between;
            }
                .mobileSection_Heading{
                    font-size: 20px;
                }
                .mobileSection_links a{
                    color: white;
                    text-decoration: none;
                    font-size: 16px;
                    margin-left: 10px;
                }






/* media quries */
@media screen and (max-width:1334px){
    .linksToOtherPages{
        margin: 0px 0px 0px 20px;
    }
    .firstSection_right{
        column-gap: 20px;
    }
}

@media screen and (max-width:1246px){
    .FirstSection_Content p{
        padding: 10px 0px 0px 0px;
    }
    .footerHeading{
        margin-bottom: 10px;
    }
    .firstSection_right{
        grid-template-columns: auto auto;
        row-gap: 10px;
    }
}

@media screen and (max-width:1173px){
    .footer_Wrapper{
        padding: 20px;
    }
}
/* for Mobile */
@media screen and (max-width:850px){
    .linksToOtherPages{
        display: none;
    }
    .firstSection_right{
        display: none;
    }
    .footer_firstSection{
        flex-direction: column;
    }
    .mobileSection{
        display: flex;
        justify-content: space-between;
        align-self:center;
    }
    .mobile_firstSection_left{
        display: block;
    }
    .mobile_firstAddress{
        display: flex;
    }
    .firstSection_left{
        justify-content: space-between;
    }

    .footer_SecondSection{
        flex-direction: column;
        padding: 25px 0px 15px 0px;
    }
        .secondSection_left{
            text-align: center;
        }
        .secondSection_right{
            flex-direction: column;
            margin-top: 10px;
        }
        .socialIcons{
            width: 200px;
            margin-top: 10px;
        }

}
@media screen and (max-width:600px){
    .secondSection_right form input{
        width: 100%;
    }
}
@media screen and (max-width:530px){
    .footer{
        padding: 50px 10px 50px 10px;
    }

    .secondSection_right form input{
        width: 100%;
    }
    .mobileSection_links{
        margin: 0px 0px 0px 10px;
    }
        .mobileSection_links a{
            margin-left: 5px;
        }

    .FirstSection_Content p{
        font-size: 12px;  
    }

    .mobile_firstSection_left_Heading{
        font-size: 16px;
    }
    .mobile_firstSection_left a{
        font-size: 12px;  
    }

    .mobile_firstAddress a{
        font-size: 12px;  
    }

    .mobileSection_Heading{
        font-size: 16px;
    }
    .mobileSection_links a{
        font-size: 12px;  
    }

    .secondSection_left p{
        font-size: 12px;  
    }

    .secondSection_right{
        margin-top: 5px;
    }
    .secondSection_right form input{
        padding: 7px 0px 7px 20px;
    }
    .secondSection_right form button{
        border: 0;
        border-radius: 8px;
        padding: 8px 30px 8px 30px;
        font-size: 12px;
    }

    
    .footer_ThirdSection{
       font-size: 10px;
    }
    .footer_ThirdSection span{
        font-size: 9px;
    }
           

}
@media screen and (max-width:450px){

    .footer_firstSection{
        padding: 0px 0px 20px 0px;

    }

    .FirstSection_Content p{
        padding: 0px 2px 0px 0px;
    }

    .mobile_firstSection_left_Heading{
        margin: 5px 0px 0px 0px;
    }
    
    .mobile_firstAddress a{
        margin: 0;
    }
    .mobileSection_socialIcons{
        margin-top: 10px;
    }
}



/* SalesIQ */

@media screen and (max-width:530px){
.zsiq_theme1.zsiq_floatmain{
    bottom:70px !important;
}
}

.whats-app {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 75px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    right: 15px;
    z-index: 100;
}

.my-float {
    margin-top: 10px;
}
.backtotop {
    position: fixed;
    bottom: 75px;
    right: 70px;

    border: 0;
    background-color: transparent;

    display: none;
}

/* preloader */
.lottee_Animation {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    z-index: 1000;

    background: linear-gradient(to bottom, #171B1D 0%, #031A40 100%);


    display: flex;
    justify-content: center;
    align-items: center;
}

.show {
    opacity: 1;
    visibility: visible;
    transition: .3s all ease-out;
}