.sec1, .sec2, .sec3, .sec4, .contact_us{
    overflow: hidden;
}
/**********************sec1***************************/

.sec1 {
    height: 70vh;
    overflow: hidden;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.background_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/****************nav**************/

.nav_bar_ {
    padding: 25px 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.nav_bar_ i {
    color: white;
}

.navbar-light .navbar-toggler {
    color: white;
    border-color: white;
}

.nav-link {
    color: white !important;
    font-size: 20px;
    padding: 0 25px !important;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.nav-link:hover {
    color: #1befc5 !important;
}

.nav-link.active {
    color: #1befc5 !important;
}

.navbar-brand img {
    width: 50px;
}

.nav_ul_ {
    margin: auto;
}

._form_user_ {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: white;
    font-size: 19px;
}

._form_user_ p {
    padding-top: 11px;
}

.a_login, .a_register {
    color: white;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

.a_login:hover {
    color: #1befc5;
    text-decoration: none;
}

.a_register:hover {
    color: #1befc5;
    text-decoration: none;
}

.nav_bar_.black {
    background-color: #200E35;
    padding: 5px 10px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

/**************Home********************/

.home {
    width: 100%;
    height: 100vh;
}

.home_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4d1d85;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#200e35), to(#4d1d85));
    background-image: -webkit-linear-gradient(top, #200e35, #4d1d85);
    background-image: -o-linear-gradient(top, #200e35, #4d1d85);
    background-image: linear-gradient(to bottom, #200e35, #4d1d85);
    background: #4d1d85;
    background: -webkit-gradient(linear, left top, left bottom, from(#200e35), to(#4d1d85));
    background: -webkit-linear-gradient(top, #200e35, #4d1d85);
    background: -o-linear-gradient(top, #200e35, #4d1d85);
    background: linear-gradient(to bottom, #200e35, #4d1d85);
    z-index: 1;
}

.background_city {
    z-index: 3;
}

.cloud {
    position: absolute;
    width: 138px;
    height: 57px;
    z-index: 4;
}

.cloud img {
    max-width: 100%;
}

.cloud_1 {
    top: 137px;
    left: -138px;
    -webkit-animation: cloud_anim 60s -39s linear infinite;
    animation: cloud_anim 60s -39s linear infinite;
}

.cloud_2 {
    top: 192px;
    left: -138px;
    -webkit-animation: cloud_anim 60s -6s linear infinite;
    animation: cloud_anim 60s -6s linear infinite;
}

.cloud_3 {
    top: 322px;
    left: -138px;
    -webkit-animation: cloud_anim 60s -45s linear infinite;
    animation: cloud_anim 60s -45s linear infinite;
}

.cloud_4 {
    top: 343px;
    left: -138px;
    -webkit-animation: cloud_anim 60s -15s linear infinite;
    animation: cloud_anim 60s -15s linear infinite;
    z-index: 2;
}

@-webkit-keyframes cloud_anim {
    0% {
        left: -138px;
    }
    100% {
        left: calc(100vw + 138px);
    }
}

@keyframes cloud_anim {
    0% {
        left: -138px;
    }
    100% {
        left: calc(100vw + 138px);
    }
}

.home_container {
    position: absolute;
    left: 0;
    top: 40.9%;
    width: 100%;
    z-index: 5;
}

.home_title {
    text-align: left;
    font-size: 50px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}

.home_text {
    text-align: left;
    max-width: 750px;
    line-height: 2.14;
    margin-top: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #1befc5;
}

.home_text a {
    text-decoration: none;
    color: #1befc5;
}

.home_text span a {
    cursor: pointer;
    color: #FFFFFF;
    text-decoration: none;
}

/**********************sec1***************************/

/***************************sec2************************/

.sec2 {
    padding: 50px 10px;
    text-align: center;
}

.div_all_sec2 h2 {
    color: #333333;
    font-weight: bold;
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.content_sec2 {
    margin: 10px;
    padding: 50px 10px;
    border: 5px solid white;
    background-color: #F4F7F8;
    border-radius: 10px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.content_sec2:hover {
    border: 2px solid #1BEFC5;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}

.content_sec2:hover i {
    color: #1BEFC5;
}

.content_sec2:hover button {
    background-color: gray;
    color: white;
}

.content_sec2 i {
    font-size: 80px;
    color: #999999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.content_sec2 h4 {
    font-weight: bold;
    color: #333333;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content_sec2 p {
    color: #999999;
}

.content_sec2 button {
    border: none;
    background-color: #F4F7F8;
    border-radius: 10px;
    padding: 10px 20px;
    color: #999999;
    margin-top: 40px;
    font-size: 18px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.content_sec2 button:hover {
    background-color: #1BEFC5;
    color: white;
}

/***************************sec2************************/

/*************************sec3******************************/

.sec3 {
    background-image: url(../images/tabs.jpg);
    background-color: rebeccapurple;
    padding: 70px 20px;
    background-size: cover;
}

.div_all_sec3 ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.div_all_sec3 li a {
    padding: 17px 40px !important;
    background-color: #7836C6;
    color: white;
    margin: 0px 0px 0px 30px;
    border-radius: 10px !important;
    font-weight: bold;
    margin: 5px;
}

.div_all_sec3 li a:hover {
    color: white !important;
}

.sec3 li a.active {
    background-color: #1BEFC5 !important;
    color: #35214D !important;
    font-weight: bold;
    font-size: 18px;
    padding: 19px 45px !important;
}

.sec3 .cards {
    width: 100%;
    border-radius: 10px;
    margin: 0 auto;
    background-color: white;
    padding: 80px 10px;
}

.sec3 .cards .content_img_sec3 {
    height: 100%;
    text-align: center;
}

.sec3 .cards .content_img_sec3 img {
    width: 100%;
    text-align: center;
}

.sec3 .cards .para_content {
    margin-top: 21px;
}

.sec3 .para_content h2 {
    color: #333333;
    font-weight: bold;
    font-size: 35px;
}

.sec3 .para_content p {
    color: #999999
}

/*************************sec3******************************/

/****************************sec4***********************/

.sec4 {
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.background_image_sec4 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/support.jpg);
    background-size: cover;
}

.div_allsec4 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 70px 0px;
}

.div_allsec4 h2 {
    font-weight: bold;
    font-size: 40px;
    color: #5f5f5f;
}

.div_allsec4 span {
    color: #1BEFC5;
    font-size: 60px;
    font-weight: bold;
}

.div_allsec4 p {
    font-size: 20px;
    color: #999999;
    margin: 30px 0px;
}

.div_allsec4 h4 {
    color: #1BEFC5;
    font-weight: bold;
    font-size: 20px;
}

.div_allsec4 h4 span {
    font-size: 35px;
}

.div_allsec4 h4 sub {
    font-size: 38px;
}

.div_allsec4 button {
    background-color: #1BEFC5;
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    color: #35214D;
    margin-top: 10px;
    font-weight: bold;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
}

.div_allsec4 button:hover {
    color: white;
    background-color: #7836C6;
}

/****************************sec4***********************/

/***************contact_us***************************/

.contact_us {
    width: 100%;
    background-color: #26064C;
}

.div_allcontact_us {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.div_allcontact_us h2 {
    margin-bottom: 30px;
    color: #1BEFC5;
    font-size: 50px;
    text-align: left;
    font-weight: bold;
}

.div_6_content {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input {
    background-color: #715691;
    border-radius: 10px;
    border: none;
    height: 40px !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 14px;
    width: 100%;
    margin-bottom: 20px;
    color: #1BEFC5;
}

textarea {
    background-color: #715691;
    border-radius: 5px;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 14px;
    padding-top: 10px;
    resize: none;
    margin-bottom: 20px;
    color: #1BEFC5;
}

::-webkit-input-placeholder {
    color: rgb(175, 174, 174);
}

:-ms-input-placeholder {
    color: rgb(175, 174, 174);
}

::-ms-input-placeholder {
    color: rgb(175, 174, 174);
}

::placeholder {
    color: rgb(175, 174, 174);
}

.editText_message {
    width: 100%;
    height: 90px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.editText_message::-webkit-input-placeholder {
    padding: 10px;
    font-family: 'Source Sans Pro', sans-serif;
}

textarea:focus, input:focus {
    border-color: #FF305B;
}

.div_content_us button {
    border: none;
    background-color: #1BEFC5;
    border-radius: 5px;
    color: #26064C;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 22px;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 20px;

}

.div_content_us button:hover {
    background-color: #7836C6;
    color: white;
}

.contact_us label {
    color: #1BEFC5;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
    margin-bottom: 15px;
}

.contact_us ul {
    list-style-type: none;
    text-align: left;
    padding: 0px 4px;
    color: white;
    line-height: 40px;
}

.contact_us ul li a {
    color: white !important;
    text-decoration: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 16px;
}

.contact_us ul li a:hover {
    color: #1BEFC5 !important;
}

/***************contact_us***************************/

/******footer*************************/

footer{
    position: relative;
    padding: 1px;
    background-color: #31214D;
    overflow: hidden;
}

.icons_footer{
    color: white;
    text-align: left;
}

.icons_footer .fa-facebook-f{
    position: relative;
    z-index: 5;
    margin: 10px;
    font-size: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.icons_footer .fa-twitter{
    margin: 10px;
    font-size: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.icons_footer .fa-linkedin-in{
    position: relative;
    z-index: 5;
    margin: 5px 5px;
    font-size: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

 .icons_footer .fa-facebook-f:hover,
 .icons_footer .fa-twitter:hover,
 .icons_footer .fa-linkedin-in:hover{
    color: #1BEFC5;
 }

footer .par p{
    position: relative;
    z-index: 5;
    text-align: right;
    margin: 6px 0px;
    color: white;
}

footer span {
    font-family: 'Righteous', cursive;
    position: relative;
    z-index: 6;
	color: #1BEFC5;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

footer span:hover {
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	
}

footer .img_cloud_footer_1{
    width: 50px;
    position: absolute;
    top: 6px;
    animation: cloud_anim 60s -15s linear infinite;
    z-index: 6;
}

footer .img_cloud_footer_2{
    width: 50px;
    position: absolute;
    bottom: 6px;
    -webkit-animation: cloud_anim 60s -45s linear infinite;
	animation: cloud_anim 60s -40s linear infinite;
    z-index: 2;
}
@-webkit-keyframes cloud_anim
{
	0%
	{
		left: -138px;
	}
	100%
	{
		left: calc(100vw + 138px);
	}
}

/******footer*************************/
