@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

body {
    font-family: 'Roboto Condensed';
    box-sizing: border-box;
    margin:0;
}
*{
    margin:0;
    max-width: 100%;
}
.front {
    height: 65vh;
    background: url('../resources/bgMain.png');
    background-size: cover;
    background-position: center;
}

/* container and row */
.container{
    max-width: 100%;
    height: 100vh;
    margin-right: 250px;
    margin-left: 250px;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
/* container and row */

/* header start */
.header {
    display: flex;
    justify-content: space-between;
    width: 1150px;
    margin: 0 auto;
    padding-top: 50px;
}

.logo img {
    width: 300px;
}

.navigation {
    display: flex;
    color: white;
    align-items: center;
}

.navigation ul {
    display: flex;
    align-items: center;
}

.navigation ul li {
    display: inline;
    margin-left: 20px;
    margin-right: 20px;
}

.navigation ul .home {
    font-size: 1.5rem;
}

.navigation ul li a {
    color: white;
    padding-bottom: 5px;
    letter-spacing: 1px;
}


.navigation ul li .active{
    color: #fc8c03;
}

.navigation ul li a:hover {
    text-shadow: 0 0 20px #fc8c03, 1px 1px 20px #fc8c03, -1px -1px 20px #fc8c03;
    transition: 0.5s;
    color: #fc8c03;
    border-bottom: 1px solid #fc8c03;
}

.navigation p {
    margin-left: 20px;
}

.show {
    display: flex;
    width: 1150px;
    margin: 0 auto;
}

.message {
    text-align: center;
    width: 100%;
    height: 90vh;
    color: white;
    margin:14% 25% 0 25%;
}
.message > h1{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 40px;
}
.message > p{
    margin-top: 20px;
}
/* header end */
/* Part 1 Start */
.part1{
    max-width: 100%;
}
.part1 .part1-content{
    text-align: center;
    display: flex;
    margin-top: 100px;
}
.part1 .part1-content .left-side{
    width: 30%;
    padding: 30px 30px;
    box-shadow: 0 0 20px;
    border-radius: 20px 0px 0px 20px;
    margin: 50px 0px;
}
.part1 .part1-content .left-side h1{
    color:#10054d;
    margin-top: 25px;
    font-weight: 900;
    font-family: 'Roboto';
}
.part1 .part1-content .left-side h3{
    color:#10054d;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.part1 .part1-content .left-side img{
    width: 230px;
    height: 400px;
}
.part1 .part1-content .left-side button{
    padding: 18px 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 0;
    border-radius: 100px;
    font-size: 12px;
    margin-bottom: 60px;
    margin-top: 60px;
    color: #fc8c03;
    background-color: #fff;
    border: 2px solid #fc8c03;
    font-weight: 790;
    transition: ease .5s;
}
.part1 .part1-content .left-side button:hover{
    color: #fff;
    background: #ffae4c;
    box-shadow: 0 10px 60px #fc8c0399;
    border: none;
}
.part1 .part1-content .center-side{
    width: 40%;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px;
    background-color: #45108a;
    color: #fff;
}
.part1 .part1-content .center-side .bordered{
    border: 1px solid;
    margin: 0px 198px;
    padding: 5px;
    letter-spacing: 1px;
    margin-top: 20px;
    text-transform: uppercase;
}
.part1 .part1-content .center-side h1{
    margin-top: 25px;
    font-weight: 900;
    font-family: 'Roboto';
}
.part1 .part1-content .center-side h3{
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.part1 .part1-content .center-side p{
    margin-bottom: 35px;
    margin: 0 50px;
}
.part1 .part1-content .center-side button{
    padding: 18px 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 0;
    border-radius: 100px;
    font-size: 12px;
    margin-bottom: 60px;
    margin-top: 60px;
    color: white;
    background: #fc8c03;
    box-shadow: 0 10px 30px #fc8c0399;
    font-weight: 790;
    transition: ease .5s;
}
.part1 .part1-content .center-side button:hover{
    background: #ffae4c;
    box-shadow: 0 10px 60px #fc8c0399;
}
.part1 .part1-content .right-side{
    width: 30%;
    padding: 30px 30px;
    border-radius: 0px 20px 20px 0px;
    box-shadow: 0 0 20px;
    margin: 50px 0px;
}
.part1 .part1-content .right-side h1{
    color:#10054d;
    margin-top: 25px;
    font-weight: 900;
    font-family: 'Roboto';
}
.part1 .part1-content .right-side h3{
    color:#10054d;
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.part1 .part1-content .right-side button{
    padding: 18px 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 0;
    border-radius: 100px;
    font-size: 12px;
    margin-bottom: 60px;
    margin-top: 60px;
    color: #fc8c03;
    background-color: #fff;
    border: 2px solid #fc8c03;
    font-weight: 790;
    transition: ease .5s;

}
.part1 .part1-content .right-side button:hover{
    color: #fff;
    background: #ffae4c;
    box-shadow: 0 10px 60px #fc8c0399;
    border: none;
}
.part1 .part1-content img{
    width: 320px;
    height: 400px;
}
.part1 .part1-content ul li{
    list-style: square;
    text-align: left;
    padding-top: 10px;
    margin: 20px 30px;
}
/* Part 1 End */
/* part 2 start */
.part2{
    max-width: 100%;
}
.part2 .part2-content{
    display: flex;
    justify-content: space-between;
    margin-top: 450px;
}
.part2 .part2-content .left-part2{
    width: 30%;
    margin-top: 50px;
}
.part2 .part2-content .left-part2 h1{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    color: #10054d;
}
.part2 .part2-content .left-part2 p{
    line-height: 20px;
    margin: 35px 0;
    width: 70%;
}
.part2 .part2-content .left-part2 button{
    padding: 18px 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 0;
    border-radius: 100px;
    font-size: 12px;
    margin-bottom: 60px;
    margin-top: 20px;
    color: white;
    background: #fc8c03;
    box-shadow: 0 10px 30px #fc8c0399;
    font-weight: 790;
    transition: ease 1s;
}
.part2 .part2-content .left-part2 button:hover{
    background: #ffae4c;
    box-shadow: 0 10px 60px #fc8c0399;
}
.part2 .part2-content .right-part2{
    width: 50%;
}
.part2 .part2-content .right-part2 .topCom1, .topCom2{
    width: 60%;
    margin-left: 100px;
    display: flex;
    margin-bottom: 50px;
}
.part2 .part2-content .right-part2 .topCom1 img{
    width: 100px;
    height: 100px;
    border: 2px solid black;
    border-radius: 100px;
    margin: 20px;
}
.part2 .part2-content .right-part2 .topCom1 p{
    margin-top: 20px;
}
.part2 .part2-content .right-part2 .topCom1 h3{
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-top: 20px;
}
.part2 .part2-content .right-part2 .topCom2 img{
    width: 100px;
    height: 100px;
    border: 2px solid black;
    border-radius: 100px;
    margin: 20px;
}
.part2 .part2-content .right-part2 .topCom2 p{
    margin-top: 20px;
}
.part2 .part2-content .right-part2 .topCom2 h3{
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-top: 20px;
}
/* part 2 end */
/* part 3 start */
.part3{
    max-width: 100%;
}
.part3 .part3-content{
    display: flex;
    margin-top: 100px;
    justify-content: space-between;
}
.part3 .part3-content .left-part3 img{
    width: 55%;
}
.part3 .part3-content .right-part3{
    width: 60%;
    margin-top: 145px;

}
.part3 .part3-content .right-part3 h1{
    color: #10054d;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 2px;
}
.part3 .part3-content .right-part3 p{
    line-height: 24px;
    margin-bottom: 20px;
}
.part3 .part3-content .right-part3 button{
    padding: 18px 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 0;
    border-radius: 100px;
    font-size: 12px;
    margin-bottom: 60px;
    margin-top: 60px;
    color: white;
    background: #fc8c03;
    box-shadow: 0 10px 30px #fc8c0399;
    font-weight: 790;
    transition: ease 1s;
}
.part3 .part3-content .right-part3 button:hover{
    background: #ffae4c;
    box-shadow: 0 10px 60px #fc8c0399;
}
/* part 3 end */
/* footer start */
.footer1{
    text-align: center;
    background-image: url(/resources/bgMain.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 55vh;
}
.footer1 .footer1-content{
    padding-top: 140px;
}
.footer1 .footer1-content h1{
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-size: 35px;
}
.footer1 .footer1-content p{
    color: #fff;
    margin-bottom: 60px;
    font-family: 'roboto';
    font-weight: 100;
    font-size: 14px;
}
.footer1 .footer1-content button{
    padding: 18px 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 0;
    border-radius: 100px;
    font-size: 12px;
    margin-bottom: 60px;
    color: white;
    background: #fc8c03;
    box-shadow: 0 10px 30px #fc8c0399;
    font-weight: 790;
    transition: ease 1s;
}

.footer1 .footer1-content button:hover{
    background: #ffae4c;
    box-shadow: 0 10px 60px #fc8c0399;
}
.footer2{
    text-align: center;
}
.footer2 .footer2-content img{
    width: 35%;
    margin-top: 120px;
}
.footer2 ul{
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.footer2 ul li{
    margin-right: 20px;
    text-transform: uppercase;
}
.footer2 ul li .active{
    color: #fc8c03;
}
.footer2 ul li a{
    padding-bottom: 5px;
    letter-spacing: 1px;
    color: #10054d;
}
.footer2 ul li a:hover{
    text-shadow: 0 0 20px #fc8c03, 1px 1px 20px #fc8c03, -1px -1px 20px #fc8c03;
    transition: 0.5s;
    color: #fc8c03;
    border-bottom: 1px solid #fc8c03;
}


.footer3{
    margin-top: 40px;
    text-align: center;
}
.footer3 .fa{
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 10px;
}
.footer3 .fa-facebook{
    border: 3px solid #10054d;
    color: #10054d;
    padding: 10px 13px;
    border-radius: 50px;
    transition: ease .4s;
}
.footer3 .fa-facebook:hover{
    background-color: #10054d;
    color: #fff;
    padding: 10px 13px;
    border-radius: 50px;
    transition: ease .4s;
}
.footer3 .fa-twitter{
    border: 3px solid #10054d;
    color: #10054d;
    padding: 10px;
    border-radius: 50px;
    transition: ease .4s;
}
.footer3 .fa-twitter:hover{
    background-color: #10054d;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    transition: ease .4s;
}
.footer3 .fa-linkedin{
    border: 3px solid #10054d;
    color: #10054d;
    padding: 10px;
    border-radius: 50px;
    transition: ease .4s;
}
.footer3 .fa-linkedin:hover{
    background-color: #10054d;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    transition: ease .4s;
}
.copy-right{
    height: 10px;
    position: absolute;
    border-top: 1px solid #acacacab;
    color: #acacac;
    padding: 25px 0px;
    max-width: 100%;
    left: 200px;
    right: 200px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.copy-right a{
    margin-left: 10px;
    color: #acacac;
}
/* footer end */

@media all and (max-width:1640px){
    /* .logo img {width: 300px; margin: 0 150px}
    .navigation p {margin-left: 10px;margin-top: 20px;}
    .part1{ width: 100%;}*/
    .front{height:50vh; }
    .message {margin:90px 20px;}
    .container{max-width: 100%;height: 110vh;margin-right: 100px;margin-left: 100px;}

    .part1 .part1-content .left-side{width: 35%;padding: 30px 10px;}
    .part1 .part1-content .center-side .bordered{margin: 0px 160px;}
    .part1 .part1-content .center-side{width: 35%;padding: 30px 40px;}
    .part1 .part1-content .right-side{width: 35%;padding: 30px 10px;}

    .part1 .part1-content .left-side img{ height: 200px; width: 130px;}
    .part1 .part1-content .center-side img{ height: 200px; width: 210px;}
    .part1 .part1-content .right-side img{ height: 200px; width: 185px;}

    .part2 .part2-content{margin-top: 10%;}
    .part2 .part2-content .left-part2{width: 120%;}
    .part2 .part2-content .right-part2{width: 200%;}

    .part3 .part3-content{margin-top: -400px;}
    .part3 .part3-content .right-part3{width: 120%;margin-top: 180px;}
    .part3 .part3-content .left-part3 img{width:80%; }
    .part3 .part3-content .right-part3 button{margin: 20px 30px;}

    .footer1{height: 36vh; margin-top: -400px;}
    .footer1 .footer1-content{padding-top: 40px;}
    
    .footer2 .footer2-content img{margin-top: 40px;}
}

@media all and (max-width:1460px){
    /* .logo img {width: 300px; margin: 0 150px}
    .navigation p {margin-left: 10px;margin-top: 20px;}
    .part1{ width: 100%;}*/
    .front{height:50vh; }
    .message {margin:90px 20px;}
    .container{max-width: 100%;height: 110vh;margin-right: 100px;margin-left: 100px;}

    .part1 .part1-content .left-side{width: 35%;padding: 30px 10px;}
    .part1 .part1-content .center-side .bordered{margin: 0px 110px;}
    .part1 .part1-content .center-side{width: 35%;padding: 30px 40px;}
    .part1 .part1-content .right-side{width: 35%;padding: 30px 10px;}

    .part1 .part1-content .left-side img{ height: 200px; width: 130px;}
    .part1 .part1-content .center-side img{ height: 200px; width: 210px;}
    .part1 .part1-content .right-side img{ height: 200px; width: 185px;}

    .part2 .part2-content{margin-top: 10%;}
    .part2 .part2-content .left-part2{width: 120%;}
    .part2 .part2-content .right-part2{width: 200%;}

    .part3 .part3-content{margin-top: -400px;}
    .part3 .part3-content .right-part3{width: 150%;margin-top: 180px;}
    .part3 .part3-content .left-part3 img{width:100%; }
    .part3 .part3-content .right-part3 button{margin: 20px 30px;}

    .footer1{height: 36vh; margin-top: -400px;}
    .footer1 .footer1-content{padding-top: 40px;}
    
    .footer2 .footer2-content img{margin-top: 40px;}
}


@media all and (max-width:1366px){
    /* .logo img {width: 300px; margin: 0 150px}
    .navigation p {margin-left: 10px;margin-top: 20px;}
    .part1{ width: 100%;}*/
    .message {margin:60px 20px;}
    .container{max-width: 100%;height: 140vh;margin-right: 100px;margin-left: 100px;}

    .part1 .part1-content .left-side{width: 35%;padding: 30px 30px;}
    .part1 .part1-content .center-side .bordered{margin: 0px 110px;}
    .part1 .part1-content .center-side{width: 35%;padding: 30px 30px;}
    .part1 .part1-content .right-side{width: 35%;padding: 30px 30px;}

    .part3 .part3-content{margin-top: 200px;}
    .part3 .part3-content .right-part3{width: 100%;margin-top: 20px;}
    .part3 .part3-content .left-part3 img{width:70%; }
    .part3 .part3-content .right-part3 button{margin: 20px 30px;}

    .footer1{height: 53vh; margin-top: 100px;}
    .footer1 .footer1-content{padding-top: 40px;}
    
    .footer2 .footer2-content img{margin-top: 40px;}
}
@media all and (max-width:1024px){
    /* .logo img {width: 300px; margin: 0 150px}
    .navigation p {margin-left: 10px;margin-top: 20px;}
    .part1{ width: 100%;}*/
    .message {margin:160px 90px;}
    .container{max-width: 100%;height: 90vh;margin-right: 50px;margin-left: 50px;}

    .part1 .part1-content .left-side{width: 35%;padding: 20px 30px;}
    .part1 .part1-content .center-side .bordered{margin: 0px 75px;}
    .part1 .part1-content .center-side{width: 35%;padding: 20px 30px;}
    .part1 .part1-content .right-side{width: 35%;padding: 20px 30px;}

    .part1 .part1-content .left-side img{ height: 210px; width: 150px;}
    .part1 .part1-content .center-side img{ height: 210px;}
    .part1 .part1-content .right-side img{ height: 210px;}
    
    .part2 .part2-content{display: flex;justify-content: space-between;margin-top: 350px;}
    /* .part2 .part2-content{width: 100%;}
    /* .part2 .part2-content */
    .part2 .part2-content .left-part2{width: 40%;}
    .part2 .part2-content .right-part2{width: 52%;}
    .part2 .part2-content .right-part2 .topCom1, .topCom2{width: 100%;margin-left: 0px;display: flex;margin-bottom: 50px;}
    
    .part3 .part3-content{margin-top: 00px;}
    .part3 .part3-content .right-part3{width: 100%;margin-top: 20px;}
    .part3 .part3-content .left-part3 img{width:70%; }
    .part3 .part3-content .right-part3 button{margin: 20px -10px; padding: 20px 30px;}

    .footer1{height: 53vh; margin-top: 100px;}
    .footer1 .footer1-content{padding-top: 40px;}
    
    .footer2 .footer2-content img{margin-top: 40px;}
}

@media all and (max-width:860px){
    .logo img {width: 200px; margin-top: 23px; margin-left: 0;}
    .navigation p {margin-left: 10px;margin-top: 20px; display:flex;}
    .navigation{justify-content: center;}
    /* .header {display: block;} margin: 0 150px*/
    .message {margin:40px 20px;}
    .navigation ul li {margin-top: 20px; margin-left: 5px;margin-right: 5px;}
    
    .part1{ width: 100%;}
    .container{max-width: 100%;height: 130vh;margin-right: 10px;margin-left: 10px;}
    
    .part1 .part1-content .center-side .bordered{margin: 0px 80px;}

    .part1{ width: 100%;}
    .part1 .part1-content{max-width: 102%;}
    .part1 .part1-content .left-side{width: 45%; padding: 30px 0px;}
    .part1 .part1-content .center-side{width: 45%; padding: 30px 0px;}
    .part1 .part1-content .right-side{width: 45%; padding: 30px 0px;}
    
    .part1 .part1-content .left-side button{padding: 18px 20px;margin-bottom: 10px;margin-top: 60px;}
    .part1 .part1-content .center-side button{padding: 18px 20px;margin-bottom: 10px;margin-top: 10px;}
    .part1 .part1-content .right-side button{padding: 18px 20px;margin-bottom: 10px;margin-top: 60px;}

    .part1 .part1-content ul li{padding-top: 5px;margin: 3px 30px;}

    .part1 .part1-content .center-side p{margin: 0 10px;}
    .part1 .part1-content .left-side img{ height: 190px; width: 120px;}
    .part1 .part1-content .center-side img{ height: 190px;}
    .part1 .part1-content .right-side img{ height: 190px;}

    
    .part2 .part2-content{display: flex;justify-content: space-between;margin-top: 300px;}
    /* .part2 .part2-content{width: 100%;}
    /* .part2 .part2-content */
    .part2 .part2-content .left-part2{width: 40%;}
    .part2 .part2-content .right-part2{width: 60%;}
    .part2 .part2-content .right-part2 .topCom1, .topCom2{
        width: 100%;
        margin-left: 0px;
        display: flex;
        margin-bottom: 50px;
    } */

    .part2 .part2-content .right-part2 .topCom1, .topCom2{width: 100%;margin-left: -10px;}
    .part2 .part2-content .left-part2{width: 50%;}
    .part2 .part2-content .right-part2{width: 90%;}

    .part3 .part3-content{margin-top: 100px;}
    .part3 .part3-content .right-part3{width: 216%;margin-top: 20px;}
    .part3 .part3-content .left-part3 img{width:95%; }
    .part3 .part3-content .right-part3 button{margin: 20px 30px;}

    .footer1{height: 60vh;}
    .footer1 .footer1-content{padding-top: 40px;}
    
    .footer2 .footer2-content img{margin-top: 50px;}
    .copy-right{left: 20px;right: 20px;}
    .footer2 ul li{margin-right: 3px; margin-left: 3px;}
}