/*
Theme Name: Divi Child Theme
Version: 1.0
Description: A child theme of Divi
Author: D. Selvaraj
Template: Divi
*/

@import url("../Divi/style.css");



/* Add drop cap to posts with default font */
.dm-dropcap::first-letter {
font-size: 75px;
float: left;
padding:0 12px 12px 0;
line-height: 60px;
color:#C2AB92;
}

 body {
            font-family: 'Latha', sans-serif; /* Replace 'Latha' with your chosen font */
        }

        h1, h2, h3 {
            font-family: 'TAM', serif; /* Replace 'TAM' with your chosen font */
        }

.et_slide_in_menu_container {
    width: 100% !important;
}

/* For dropdown menu items within the full-width container */
.et-menu li li a {
    width: 100% !important;
}/*set the Divi menu dropdown auto width*/
@media only screen and (min-width: 981px) {
	.nav li ul {
		width: fit-content;
		display: flex;
		flex-direction: column;
	}
	.nav li li {
		white-space: nowrap;
	}
	.nav li li a {
		width: auto !important;
	}
}
/* Center the default Divi menu submenu */
#main-header .nav li ul {
    left: 50% !important;
    right: auto !important;
    text-align: center !important;
    transform: translate(-50%, 0) !important;
}