.wrapper {
    max-width: 1920px;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Oswald', sans-serif;
}

p {
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #c4c4cd !important;
}

/*************** INDEX PAGE STARTS HERE ****************/

/**** Navigation Section ****/
.navbar {
    padding-bottom: 0 !important;
}

.navbar-brand img {
    height: 150px;
    widows: 150px;
    padding-left: 20px;
}

.navbar-nav li a {
    color: #feeeee !important;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}


.navbar-light .navbar-toggler {
    color: #feeeee !important;
    font-size: 20px;
}

.nav-button {
    padding: 5px;
    /*    background: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);*/
    background-color: #3d3d3f;
    /*    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);*/
    color: white;
    box-shadow: 13px 3px 35px 25px rgba(54, 68, 86, 1) !important;
}

.nav-button:hover {
    background-color: transparent !important;
    color: white;
    border-radius: 4px 40px 20px 16px;
    border-color: blue !important;
    transition: ease-out 0.4s;
}

/**** Header Section ****/
#index-header-section {
    background-image: url(../Images/heroShowcase.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    top: 0px;
    bottom: 0px;
    height: auto;
}

#index-header-section::before {
    content: '';
    display: block;
    position: absolute;
    background-color: #000000;
    opacity: 0.6;
    width: 100%;
    height: 100%;
}

.main-content {
    position: relative;
}

.header-styling {
    margin-top: 114px;
}

.header-styling h1 {
    color: white;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 540;
    position: relative;
    bottom: 64px;
}




/****** Header Button *****/

.header-button {
    text-align: center;
    position: relative;
    bottom: 42px;
}

.header-button .btn {
    padding: 8px;
    border-radius: 15%;
    background-color: #3d3d3f;
    color: white;
    border-color: #0099ce;
}

.header-button .btn:hover {
    color: #303c4a !important;
    border-radius: 50px;
    border-color: #494949 !important;
    transition: ease-in 0.4s !important;
    background-color: lightgray;
    text-decoration: underline;

}



.common-sub-title h3 {
    color: white;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    padding: 20px;
    line-height: 1.5;
    font-family: 'Oswald', sans-serif;
    position: relative;
    bottom: 64px;
}



/******************** NEWSLETTER SECTION STARTS HERE **********************/
#newsletter-section {
    border-top: 5px solid #005e8a;
    border-bottom: 5px solid #005e8a;
    padding: 15px;
    color: #d4d4dc;
    background-color: #303c4a;
    text-align: center;
}

#newsletter-section h1 {
    display: inline-block;
    margin-right: 40px;
    font-family: 'Lora', serif;

}

#newsletter-section .form {
    display: inline-block;
    vertical-align: top;
}

/* This common button styling is for the newsletter section */
.common-btn-styling {
    font-size: 1.077em;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s ease-in-out;

}

/* This common button styling is for the newsletter section */
.common-btn-styling:hover {
    background-color: #d4d4dc;
    text-decoration: underline;
}

#newsletter-section input[type="email"] {
    padding: 5px;
    width: 225px;
    border-radius: 5px;

}

/* Newsletter buttion styles applied */
#newsletter-section .newsletter-btn {
    padding: 1px 15px;
    height: 34px;
    margin-left: 5px;
    background-color: #303c4a;
    color: white;
    border-radius: 15%;
    border-color: #0099ce;
}



#newsletter-section .newsletter-btn:hover {
    color: #303c4a !important;
    border-radius: 50px;
    border-color: #494949 !important;
    transition: ease-in 0.4s;
    background-color: lightgray;
}

/**************** NEWSLETTER SECTION ENDS HERE *******************/





/****** T-Blocks Section *****/

#t-blocks .img-responsive {
    width: 100%;
}

#t-blocks img:hover {
    cursor: pointer;
}

#t-blocks .t-blocks-title h1 {
    color: #4e4e67;
}

.t-block-btn {
    background-color: #16184c;
    border-radius: 20%;
    padding: 5px 7px;
    color: white;
    font-size: 12px;
    border: 2px solid #16184c;
}

.t-block-btn:hover {
    background-color: transparent;
    transition: ease-out 0.4s;
    border: 2px solid lightgray;
    border-radius: 30%;

}


#t-blocks .t-blocks-title {
    text-align: center;
    font-family: 'Lora', serif;
    font-weight: 500;
    padding-top: 20px;
}


/*FIGURE SECTION*/
/* Figure */

figcaption {
    background: rgba(59, 75, 194, 0.42);
    font-family: Arial;
    text-align: center;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    position: absolute;
    padding-top: 1px;
    visibility: hidden;
    color: black;
    height: 100%;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

figure:hover > figcaption {
    visibility: visible;
}


/*Body*/


figure {
    position: relative;
    align-items: center;
    margin: 0px 0px 0px !important;
}




figure:hover > img {
    filter: brightness(0.4);
    transition: 0.7s !important;
}


/*T-block title section */
#t-blocks .common-title {
    font-weight: 500;
    margin-top: 50px;
    font-size: 30px;


}

#t-blocks .common-para {
    padding: 10px;
    font-size: 14px;
}

/*Figure Section Ends Here*/


#t-blocks .t-blocks-title::before {
    content: '';
    background-color: #1f226f;
    height: 4px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(63px);
}

#t-blocks .t-blocks-title::after {
    content: '';
    background-color: #5a64b7;
    height: 9px;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
    display: block;
    transform: translateY(0px);
    text-shadow: 11px 13px 11px black, 0 0 13px blue, 0 0 13px darkblue;
}


/****** Video Embed Section ******/
#video-embed-1 .video-title {
    text-align: center;
    font-family: 'Lora', serif;
    font-weight: 500;
    padding-top: 20px;
}

#video-embed-1 .video-title h1 {
    color: #4e4e67;

}

#video-embed-1 .video-title::before {
    content: '';
    background-color: #1f226f;
    height: 4px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(63px);
}

#video-embed-1 .video-title::after {
    content: '';
    background-color: #5a64b7;
    height: 9px;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
    display: block;
    transform: translateY(0px);
    text-shadow: 11px 13px 11px black, 0 0 13px blue, 0 0 13px darkblue;
}


/****** Second Background Image Section *****/
#second-background-img {
    background-image: url(../Images/second-back-img3.jpg);
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
    background-size: cover;
    height: 100vh;
}

/***** Footer Section ******/

#footer-section {
    background-color: #313c4b;

}

#footer-section h1 {
    font-family: 'Oswald', sans-serif;
    color: #feeeeeee;
}

#footer-section p {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 12px;

}

#footer-section .navbar-nav .nav-link {
    font-size: 12px !important;
}

#footer-section .footer-copyright-section {
    margin-top: 20px;
}

#footer-section .col-md-4 {
    margin-top: 53px;
    text-align: center;
}

#footer-section .footer-text-highlight {
    color: #0194c8;

}

.fa-facebook {
    margin-right: 30px;
    background-color: #3B5998;
    color: #feeeee;
    padding: 10px;
    border-radius: 20%;
}


.fa-facebook:hover {
    background-color: transparent;
    border: 3px solid #3B5998;
    transition: ease-out 0.4s;
    text-decoration: none;
}

.fa-twitter {
    margin-right: 30px;
    background-color: #55ACEE;
    color: #feeeee;
    padding: 10px;
    border-radius: 20%;
}


.fa-twitter:hover {
    background-color: transparent;
    border: 3px solid #55ACEE;
    transition: ease-out 0.4s;
    text-decoration: none;
}



.fa-instagram {
    margin-right: 30px;
    background-color: #125688;
    color: #feeeee;
    padding: 10px;
    border-radius: 20%;
}


.fa-instagram:hover {
    background-color: transparent;
    border: 3px solid #125688;
    transition: ease-out 0.4s;
    text-decoration: none;
}


.fa-google {
    margin-right: 30px;
    background-color: #dd4b39;
    color: #feeeee;
    padding: 10px;
    border-radius: 20%;
}

.fa-google:hover {
    background-color: transparent;
    border: 3px solid #dd4b39;
    transition: ease-out 0.4s;
    text-decoration: none;
}





/**************** MACHINE LEARNING PAGE STARTS HERE **************/


#machine-header-section {
    background-image: url(../Images/machine-header-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    top: 0px;
    bottom: 0px;
    height: auto;
    border-bottom: 4px solid #005e8a;
}

#machine-header-section::before {
    content: '';
    display: block;
    position: absolute;
    background-color: #000000;
    opacity: 0.7;
    width: 100%;
    height: 100%;
}

.main-content {
    position: relative;
}


/************** C - BLOCK SECTION ***********/

.text-container {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;

}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}


.content {
    color: black;
    font-size: 15px;
    position: relative;
    bottom: 0px;


}

.content p {
    font-weight: 600;
}

/* COL-MD 6 - SECTION*/

#c-blocks .col-md-6:hover {
    opacity: 10;
    filter: brightness(0.6) !important;
    transition: 0.7s !important;
    border-radius: 10% !important;
    clear: both;
    /*
    margin-left: 2px;
    margin-top: 2px;
    margin-right: 1px;
    margin-bottom: 0px;
*/


}

.text-center {
    position: relative !important;
    width: 100% !important;
    margin-top: 15px;
}



#c-blocks .col-md-6:hover .text-container {
    opacity: 2;
}

#c-blocks .col-md-6:hover .text-container .content {
    color: #ffffff;

}

#c-blocks .col-md-6:hover .c-block-img1 {
    filter: brightness(0.6) !important;
    transition: 0.7s !important;
    border-radius: 20% !important;
    cursor: pointer;


}



#c-blocks .col-md-6:hover .c-block-img2 {
    filter: brightness(0.6) !important;
    transition: 0.7s !important;
    border-radius: 20% !important;
    cursor: pointer;


}




#c-blocks .col-md-6:hover .c-block-img4 {
    filter: brightness(0.6) !important;
    transition: 0.7s !important;
    border-radius: 20% !important;
    cursor: pointer;


}

#c-blocks .col-md-6:hover .c-block-img5 {
    filter: brightness(0.6) !important;
    transition: 0.7s !important;
    border-radius: 20% !important;
    cursor: pointer;
}



/* COL-MD 12 - SECTION */


.col-md-12:hover {
    opacity: 10;
    filter: brightness(0.6) !important;
    transition: 0.7s !important;
    border-radius: 20% !important;
    clear: both;
    /*
    margin-left: 1px;
    margin-top: 2px;
    margin-right: 2px;
    margin-bottom: 0px;
*/

}

.col-md-12:hover .c-block-img3 {
    filter: brightness(0.6) !important;
    transition: 0.7s !important;
    border-radius: 20% !important;
    margin: 10px 0px 0px 0px;
    cursor: pointer;

}

.col-md-12:hover .c-block-img6 {
    filter: brightness(0.6) !important;
    transition: 0.7s !important;
    border-radius: 20% !important;
    margin: 10px 0px 0px 0px;
    cursor: pointer;

}


.col-md-12:hover .text-container {
    opacity: 2;
}

.col-md-12:hover .text-container .content {
    color: #ffffff;

}






/*********************** DATA VISUALISATION PAGE STARTS HERE *********************/

#data-visual-header-section {
    background-image: url(../Images/dataVisImage.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    top: 0px;
    bottom: 0px;
    height: auto;
    border-bottom: 4px solid #005e8a;
}


#data-visual-header-section::before {
    content: '';
    display: block;
    position: absolute;
    background-color: #000000;
    opacity: 0.6;
    width: 100%;
    height: 100%;
}

.main-content {
    position: relative;
}




/******************* WORLD MAP PAGE STARTS HERE *****************/

#world-header-section {
    background-image: url(../Images/worldMap.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    top: 0px;
    bottom: 0px;
    height: auto;
    border-bottom: 4px solid #005e8a;
}

#world-header-section::before {
    content: '';
    display: block;
    position: absolute;
    background-color: #000000;
    opacity: 0.6;
    width: 100%;
    height: 100%;
}

.main-content {
    position: relative;
}



#common-section .common-section-title h1 {
    color: #4e4e67;
}

#common-section .common-section-title {
    text-align: center;
    font-family: 'Lora', serif;
    font-weight: 500;
    padding-top: 20px;
}

#common-section .common-section-title::before {
    content: '';
    background-color: #1f226f;
    height: 4px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(63px);
}

#common-section .common-section-title::after {
    content: '';
    background-color: #5a64b7;
    height: 9px;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
    display: block;
    transform: translateY(0px);
    text-shadow: 11px 13px 11px black, 0 0 13px blue, 0 0 13px darkblue;
}





/********************* CONTACT US PAGE STARTS HERE ***************/

#contactUs-header-section {
    background-image: url(../Images/contact-us-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    top: 0px;
    bottom: 0px;
    height: auto;
    border-bottom: 4px solid #005e8a;
}

#contactUs-header-section::before {
    content: '';
    display: block;
    position: absolute;
    background-color: #000000;
    opacity: 0.7;
    width: 100%;
    height: 100%;
}

#aboutUs-section .col-md-6 {
    padding: 0px !important;
    text-align: center !important;
}



/* TEAM MEMBERS SECTION */

#team-info .name-container {
    text-align: center;
}




#team-info .name-container {
    transition: ease-out 0.7s;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    margin-top: 30px;

}

#team-info .name-container h4 {
    font-size: 15px;
    font-weight: 600;
}




#team-info .content {
    color: black;
    font-size: 15px;
    position: relative;
    bottom: 33px;

}

#team-info .content h1 {
    font-size: 32px;
    padding: 15px;
}

/*
#team-info .member-image:hover {
    opacity: 2;
    transition: 0.7s !important;
}
*/

#team-info .carousel-inner:hover .member-image img {
    filter: brightness(0.5) !important;
    transition: 0.7s !important;
}

#team-info .carousel-inner:hover .name-container {
    opacity: 9;
    filter: brightness(0.9) !important;
    transition: 0.7s !important;
}

#team-info .carousel-inner:hover .content {
    color: #ffffff;

}

#team-info .text-container .buttons .common-btn {
    margin: 10px;
    background-color: #494b61;
    color: #ffffff;
    border-radius: 16%;
    padding: 3px 10px;
    border-color: transparent !important;
}

#team-info .text-container .buttons .common-btn:hover {
    background-color: transparent;
    transition: ease-in-out 0.6s;
    border-radius: 30%;
    border-color: lightgray !important;
}


#aboutUs-second-background-img {
    background-image: url(../Images/aboutUsBack2.jpg);
    background-position: center;
    background-attachment: fixed;
    opacity: 0.6;
    background-size: cover;
    height: 100vh;
}

/* Contact Us Section */

.contact-us-section {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    background: rgb(48, 60, 75);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgb(5, 121, 182);
}

#contact-us-section .contactInfo {
    background-color: #313c4b;
}

#contact-us-section .contactInfo .contact-subtitle h3 {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    padding: 30px;
    font-weight: lighter;
}

#contact-us-section .common-contact-section .title {
    text-align: center;
    color: #ffffff;
}

#contact-us-section .common-contact-section .common-para {
    text-align: center;
    color: #ffffff;
    font-weight: 300;
}

.input-sections {
    display: flex;
    flex-direction: column;
    margin-right: 4%;
}

.input-sections,
.message-section {
    width: 48%;
}

.input-sections .input,
.message-section textarea {
    margin: 10px 0;
    background: transparent;
    border: 0px;
    border-bottom: 2px solid #3989b2;
    padding: 10px;
    color: white;
    width: 100%;
}

.message-section textarea {
    height: 212px;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #c5ecfd;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #c5ecfd;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #c5ecfd;
}

.button {
    background: #6cbbdf;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.button:hover {
    background-color: transparent !important;
    transition: ease-in-out 0.7s;
    border-radius: 30%;
    border: 2px solid white;
}

.map-card {
    margin-bottom: 40px;
}



/* MEDIA QUERY SECTION */

/*********** MEDIA QUERY FOR IPHONE 6, 7, 8 PLUS ******************* */

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) {
    /* STYLES GO HERE */
    /* For IPhone 6,7,8 Plus: */

    .media-section {
        text-align: center !important;
        margin-left: 36px;
    }

    #index-header-section {
        background-image: url(../Images/heroShowcase-iphoneplus.jpg);
        background-size: cover;
        height: auto;
        min-height: 100%;
        background-position: center;
    }

    button,
    input {
        text-align: center !important;
    }

    #common-section .common-section-title::after {
        position: relative !important;
        top: 6px !important;
    }

    #common-section .common-section-title h1 {
        font-size: 36px !important;
    }

}


@media only screen and (min-device-width : 375px) and (max-device-width : 834px) {
    .media-section {
        text-align: center !important;
        margin-left: 36px;
    }
}


/* MEDIA QUERY FOR IPHONE 6, 6s, 7, 8 */

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) {}






@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    /* STYLES GO HERE */
    /* For IPad Mini and IPad Air ************/


    #t-blocks .common-title {
        margin-top: 8px !important;
        font-size: 27px !important;
    }

    #t-blocks .common-para {
        padding: 4px !important;
        font-size: 12px !important;
    }

    #t-blocks .t-block-btn {
        position: relative !important;
        bottom: 13px !important;
    }

    #footer-section .common-links {
        margin: 0 auto !important;


    }
}


@media only screen and (min-device-width : 1024px) and (max-device-width : 1024px) {

    #t-blocks .common-title {
        margin-top: 40px !important;
        font-size: 27px !important;
    }
}
